/* Черновик главной: доп. блоки. База — styles.css */

/* Цвет как у hero-title «Ответ по вашим документам…» → var(--accent-text) */
.section-title {
  color: var(--accent-text);
}

[data-theme="light"] .section-title {
  color: var(--accent-text);
}

.draft-banner {
  margin: 0;
  padding: 10px 16px;
  background: color-mix(in srgb, var(--accent) 16%, var(--bg));
  border-bottom: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.draft-banner strong {
  color: var(--text);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 24px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.hero .hero-title {
  font-size: clamp(1.55rem, 3.6vw, 2.35rem);
  line-height: 1.15;
  max-width: 38rem;
}

.hero h2.hero-lead {
  margin: 0 0 28px;
  max-width: 38rem;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-muted);
}

.hero-lead-list {
  margin: 0 0 16px;
  padding: 0;
  max-width: 38rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-lead-list li {
  position: relative;
  padding-left: 1.1em;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-muted);
}

.hero-lead-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-text);
}

.pkg-final-cta p + p {
  margin-top: -12px;
}

.hero-actions--pair {
  gap: 12px;
}

.hero-actions--pair .btn {
  text-align: center;
  line-height: 1.25;
  padding: 14px 20px;
  max-width: 100%;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

[data-theme="light"] .value-card {
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

.value-stat {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--accent-text);
}

.value-card h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.value-card > p:not(.value-stat) {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.security-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

[data-theme="light"] .security-card {
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

.security-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
}

.security-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-text);
}

.security-icon svg {
  width: 22px;
  height: 22px;
}

.security-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.security-card > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.role-grid,
.pain-grid,
.proof-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.audience-grid--2x3 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.audience-grid--3x3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.role-card,
.pain-card,
.proof-card,
.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px 22px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

[data-theme="light"] .role-card,
[data-theme="light"] .pain-card,
[data-theme="light"] .proof-card,
[data-theme="light"] .audience-card {
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

.audience-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.role-card h3,
.pain-card h3,
.proof-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.audience-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.audience-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
}

.audience-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-text);
}

.audience-icon svg {
  width: 22px;
  height: 22px;
}

.audience-lead {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.audience-points {
  margin: 0;
  padding: 0 0 0 1.1em;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
  flex: 1;
}

.audience-points li {
  margin-bottom: 8px;
}

.audience-points li:last-child {
  margin-bottom: 0;
}

.role-kicker {
  margin: 0 0 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.role-lead {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.role-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
}

.role-benefits li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.role-benefits li:last-child {
  margin-bottom: 0;
}

.role-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pain-card p,
.proof-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.proof-cite {
  display: block;
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent) 10%, var(--bg));
  font-size: 0.82rem;
  color: var(--accent);
}

.proof-compare {
  margin-top: 48px;
}

.proof-compare > h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 600;
}

.proof-compare-lead {
  margin: 0 0 20px;
  max-width: 40rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.paths-grid,
.paths-grid--2x2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
  align-items: stretch;
}

#start .start-step,
#how .start-step,
#trial .start-step {
  overflow: hidden;
  padding-top: 28px;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

[data-theme="light"] #start .start-step,
[data-theme="light"] #how .start-step,
[data-theme="light"] #trial .start-step {
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

#start .start-step-num,
#how .start-step-num,
#trial .start-step-num {
  display: block;
  width: auto;
  height: auto;
  margin: 0 0 8px;
  border-radius: 0;
  background: none;
  color: transparent;
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.06em;
  -webkit-text-stroke: 2px var(--accent);
  text-stroke: 2px var(--accent);
  pointer-events: none;
}

#start .start-step-num--with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.12em;
  width: auto;
  color: transparent;
}

.start-step-brain {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.72em;
  height: 0.72em;
  margin: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  color: var(--accent);
  opacity: 0.9;
  -webkit-text-stroke: 0;
  text-stroke: 0;
}

.start-step-brain svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.35;
}

.path-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 26px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

[data-theme="light"] .path-card {
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

.path-card--featured {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.14);
}

[data-theme="light"] .path-card--featured {
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.12);
}

.path-card--soon {
  opacity: 0.92;
  border-style: dashed;
}

.path-kicker {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.path-kicker--live {
  color: #16a34a;
}

[data-theme="dark"] .path-kicker--live {
  color: #4ade80;
}

.path-kicker--soon {
  color: var(--text-muted);
}

.path-card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.path-card > .path-tagline {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  flex: 0;
  line-height: 1.4;
}

.path-price {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  flex: 0;
}

.path-price--soon {
  font-weight: 600;
  color: var(--text-muted);
}

.path-body {
  flex: 1;
  margin: 0 0 18px;
}

.path-body > p {
  margin: 0 0 12px;
  color: var(--text-muted);
  line-height: 1.55;
}

.path-body ul {
  margin: 0;
  padding-left: 1.15em;
  color: var(--text-muted);
  line-height: 1.5;
}

.path-body li {
  margin-bottom: 8px;
}

.path-body li:last-child {
  margin-bottom: 0;
}

.path-card ul {
  margin: 0 0 22px;
  padding-left: 18px;
  color: var(--text-muted);
  flex: 1;
}

.path-card li {
  margin-bottom: 8px;
}

.path-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.soon-row {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-note-list {
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
}

.contact-note-list li {
  margin-bottom: 10px;
  color: var(--text-muted);
}

.pricing-amount {
  margin: 0 0 6px;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.pricing-amount span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-card .pricing-amount + .pricing-desc {
  margin-bottom: 20px;
}

#pricing .pricing-card,
#proof .compare-card,
#faq .faq-item,
.contact-section .form-card,
.pkg-final-cta {
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

[data-theme="light"] #pricing .pricing-card,
[data-theme="light"] #proof .compare-card,
[data-theme="light"] #faq .faq-item,
[data-theme="light"] .contact-section .form-card,
[data-theme="light"] .pkg-final-cta {
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

@media (max-width: 900px) {
  .role-grid,
  .role-grid--2x2,
  .role-grid--3x3,
  .pain-grid,
  .proof-grid,
  .audience-grid,
  .audience-grid--2x3,
  .audience-grid--3x3,
  .audience-grid--2x2,
  .paths-grid,
  .paths-grid--2x2,
  .value-grid,
  .security-grid,
  .security-grid--2x2 {
    grid-template-columns: 1fr;
  }
}

/* Package pages in homepage style */
.hero--pkg {
  padding-bottom: 72px;
}

.hero--pkg .hero-grid {
  align-items: center;
}

.hero--pkg .hero-title {
  max-width: 40rem;
}

.docs-hero-visual {
  align-self: stretch;
  min-width: 0;
}

.docs-hero-mockup {
  height: 100%;
  min-height: 420px;
}

.docs-hero-mockup .chat-body {
  min-height: 340px;
}

.docs-hero-files {
  margin-bottom: 4px;
}

.docs-hero-mockup .bubble-bot .source-link {
  display: block;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .docs-hero-mockup {
    min-height: 0;
  }

  .docs-hero-mockup .chat-body {
    min-height: 280px;
  }
}

.hero-lead--wide {
  max-width: 42rem;
  margin: 0 0 20px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.pkg-hero-copy {
  max-width: 44rem;
  margin: 0 0 24px;
}

.pkg-hero-copy > p {
  margin: 0 0 12px;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.pkg-hero-copy > p:last-of-type {
  margin-bottom: 0;
}

.pkg-hero-subhead {
  margin: 22px 0 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.pkg-hero-copy .pkg-benefit-list {
  margin-top: 4px;
}

.hero--pkg .pkg-format-badges {
  margin: 0 0 20px;
}

.hero--pkg .hero-lead-list {
  max-width: 44rem;
  margin-bottom: 18px;
}

.hero--pkg .hero-pills {
  margin-bottom: 24px;
}

.pkg-back-inline {
  color: var(--text-muted);
  font-weight: 500;
}

.pkg-back-inline:hover {
  color: var(--accent-text);
}

.hero--pkg .path-kicker {
  margin: 0 0 14px;
}

.pkg-prose {
  margin-top: 28px;
  max-width: 48rem;
}

.pkg-prose p {
  margin: 0 0 16px;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.pkg-prose p:last-child {
  margin-bottom: 0;
}

.pkg-prose strong {
  color: var(--text);
}

.pkg-prose-subhead {
  margin: 28px 0 14px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.pkg-benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.pkg-benefit-list li {
  position: relative;
  padding: 12px 16px 12px 40px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.5;
}

.pkg-benefit-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 1.1em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-text);
  transform: translateY(-50%);
}

[data-theme="light"] .pkg-benefit-list li {
  background: #fff;
}

.pkg-formats-note {
  margin: 24px 0 0;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.pkg-formats-note strong {
  color: var(--text);
  font-weight: 700;
}

.pkg-trial-note {
  margin: 20px 0 0;
  padding: 0;
  border: none;
  background: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  font-style: italic;
}

.pkg-scenario-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pkg-scenario-list li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text-muted);
  font-style: italic;
}

.pkg-scenario-list li:last-child {
  margin-bottom: 0;
}

.pkg-format-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
}

.pkg-format-badges--section {
  margin-top: 28px;
}

.pkg-formats-block {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.pkg-formats-label {
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.pkg-formats-block .pkg-format-badges {
  margin: 0;
}

.pkg-format-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

[data-theme="light"] .pkg-format-badge {
  background: #fff;
}

.pkg-role-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.pkg-role-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent-text) 28%, var(--border));
  background: var(--accent-soft);
  color: var(--accent-text);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
}

.pkg-scenario-quote {
  font-style: italic;
}

.audience-grid--2x2,
.role-grid--2x2,
.security-grid--2x2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.role-grid--3x3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pkg-price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  gap: 28px 40px;
  align-items: start;
}

.pkg-price-copy .section-title {
  margin-bottom: 0;
}

.pkg-price-layout .pkg-price-note {
  margin-top: 24px;
  max-width: none;
}

.pkg-price-note {
  margin-top: 24px;
  max-width: 40rem;
}

.pkg-price-note p {
  margin: 0 0 12px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.pkg-price-note p:last-child {
  margin-bottom: 0;
}

.pkg-price-lead {
  font-size: 1.2rem !important;
  line-height: 1.5 !important;
  color: var(--text) !important;
}

.pkg-price-note strong {
  color: var(--accent-text);
  font-weight: 700;
}

.pkg-price-visual {
  display: flex;
  justify-content: stretch;
  align-items: flex-start;
  width: 100%;
}

.pkg-price-art {
  width: 100%;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(15, 23, 42, 0.08));
}

@media (max-width: 900px) {
  .pkg-price-layout {
    grid-template-columns: 1fr;
  }

  .pkg-price-art {
    max-width: none;
  }
}

.hero-title-note {
  display: inline;
  font-size: 0.52em;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  white-space: nowrap;
}

.expert-example-carousel {
  margin-top: 28px;
  width: 100%;
  max-width: none;
}

.expert-example-carousel .expert-demo {
  margin-top: 0;
  animation: expert-example-fade 0.35s ease;
}

@keyframes expert-example-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.expert-example-controls {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .expert-example-carousel .expert-demo {
    animation: none;
  }
}

.expert-why-grid {
  margin-top: 28px;
}

.expert-hero-mockup .chat-body {
  min-height: 300px;
}

.expert-demo {
  margin-top: 32px;
  width: 100%;
  max-width: none;
  padding: 28px 26px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
}

[data-theme="light"] .expert-demo {
  background: #fff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.expert-demo-kicker {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-text);
}

.expert-demo-label {
  margin: 0 0 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.expert-demo-quote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
}

.expert-demo-q {
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 72%, var(--bg-card));
}

.expert-demo-bridge {
  margin: 20px 0 14px;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.expert-demo-models {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.expert-demo-model {
  padding: 16px 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 55%, var(--bg-card));
}

.expert-demo-model p:last-child {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.expert-demo-model-tag {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.expert-demo-verdict {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.expert-demo-verdict--yes { color: #2f9e6b; }
.expert-demo-verdict--no { color: #d14b4b; }
.expert-demo-verdict--mid { color: #c48a1a; }

.expert-demo-arrow {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 16px 0 12px;
}

.expert-demo-arrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-text) 55%, transparent);
  animation: expert-flow-dot 1.2s ease-in-out infinite;
}

.expert-demo-arrow span:nth-child(2) { animation-delay: 0.15s; }
.expert-demo-arrow span:nth-child(3) { animation-delay: 0.3s; }

@keyframes expert-flow-dot {
  0%, 100% { opacity: 0.25; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(3px); }
}

.expert-demo-sum {
  padding: 20px 20px 18px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--accent-text) 35%, var(--border));
  background: var(--accent-soft);
}

.expert-demo-sum .expert-demo-label {
  color: var(--accent-text);
}

.expert-demo-sum .expert-demo-quote {
  font-size: 0.98rem;
}

.expert-demo-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.expert-demo-points li {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-text);
  background: color-mix(in srgb, var(--bg-card) 70%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent-text) 28%, var(--border));
}

@media (max-width: 900px) {
  .expert-demo {
    padding: 22px 18px;
  }

  .expert-demo-models {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .expert-demo-arrow span {
    animation: none;
    opacity: 0.7;
  }
}

body[data-page="expert-opinion"] #security .security-grid,
body[data-page="expert-opinion"] #security .security-grid--2x2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px) {
  body[data-page="expert-opinion"] #security .security-grid,
  body[data-page="expert-opinion"] #security .security-grid--2x2 {
    grid-template-columns: 1fr;
  }

  .hero-title-note {
    font-size: 0.48em;
  }
}

.pricing-grid--single {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.pkg-final-cta {
  margin-top: 0;
  padding: 36px 28px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg-soft) 100%);
  text-align: center;
}

.pkg-final-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 700;
  color: var(--accent-text);
}

.pkg-final-cta p {
  margin: 0 auto 24px;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.pkg-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

body[data-page="your-docs"] #security .security-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="tenders"] #security .security-grid,
body[data-page="tenders"] #security .security-grid--2x2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px) {
  body[data-page="your-docs"] #security .security-grid,
  body[data-page="tenders"] #security .security-grid,
  body[data-page="tenders"] #security .security-grid--2x2,
  .pricing-grid--single,
  .pricing-grid--2 {
    grid-template-columns: 1fr;
  }
}

/* Tenders package page */
.pkg-card-meta {
  margin: 12px 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-text);
  line-height: 1.4;
}

.tenders-report-mockup {
  background: var(--chat-bg, var(--bg-card));
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  align-self: stretch;
}

[data-theme="light"] .tenders-report-mockup {
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

.tenders-report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}

.tenders-report-head span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.tenders-report-live {
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  color: #22c55e !important;
}

.tenders-report-body {
  padding: 16px 18px 18px;
}

.tenders-report-verdict {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.15);
  color: #d97706;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.tenders-report-rows {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tenders-report-rows li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--bg-soft);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.tenders-report-rows li strong {
  color: var(--text);
  font-weight: 600;
}

.tenders-report-quote {
  margin-top: 14px;
  padding: 10px 12px;
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  background: var(--accent-soft);
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.tenders-report-quote cite {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 0.7rem;
  color: var(--accent-text);
}

body[data-page="tenders"] .hero-pills strong {
  color: var(--accent-text);
  font-weight: 600;
}

.trial-perks {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.trial-perk {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
}

.trial-perk .audience-head {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.trial-perk .audience-lead {
  text-align: center;
}

@media (max-width: 900px) {
  .trial-perks {
    grid-template-columns: 1fr;
  }
}

body[data-page="tenders"] #faq .faq-item {
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

[data-theme="light"] body[data-page="tenders"] #faq .faq-item {
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

@media (max-width: 900px) {
  .tenders-report-mockup {
    margin-top: 8px;
  }
}
