/*
   landing/landing-v4.css
   Calm Clinical Light — elegant, trust-first B2B aesthetic for "сказано".
   Warm bone canvas, deep navy ink, brand electric blue used sparingly,
   hairline rules, generous whitespace, mono medical-term motifs.
*/

:root {
    /* Surfaces */
    --canvas: #f7f6f3;
    --surface: #ffffff;
    --surface-2: #fbfaf7;
    --navy: #00103f;
    --navy-band: #021244;

    /* Ink */
    --ink: #00103f;
    --ink-2: #0a1c44;
    --muted: #566075;
    --muted-2: #8b94a4;

    /* Accent — brand electric blue, used sparingly */
    --accent: #003efb;
    --accent-2: #1b4dff;
    --accent-soft: rgba(0, 62, 251, 0.07);
    --accent-soft-2: rgba(0, 62, 251, 0.04);
    --accent-line: rgba(0, 62, 251, 0.22);

    /* Hairlines */
    --line: rgba(0, 16, 63, 0.10);
    --line-soft: rgba(0, 16, 63, 0.06);
    --line-strong: rgba(0, 16, 63, 0.16);

    /* Status */
    --ok: #15803d;

    /* Radii — one scale, locked */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-pill: 999px;

    /* Shadows — tinted to navy, soft */
    --sh-sm: 0 1px 2px rgba(0, 16, 63, 0.04);
    --sh-md: 0 2px 6px rgba(0, 16, 63, 0.05), 0 14px 34px rgba(0, 16, 63, 0.06);
    --sh-lg: 0 4px 14px rgba(0, 16, 63, 0.06), 0 28px 64px rgba(0, 16, 63, 0.08);
    --sh-accent: 0 8px 24px rgba(0, 62, 251, 0.18);

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --container: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--canvas);
    color: var(--ink);
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

::selection {
    background: rgba(0, 62, 251, 0.16);
    color: var(--ink);
}

h1, h2, h3, h4, h5 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: var(--ink);
}

p {
    color: var(--muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s var(--ease);
}

.mono {
    font-family: ui-monospace, SFMono-Regular, 'SF Mono', Consolas, 'Liberation Mono', monospace;
    font-variant-numeric: tabular-nums;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
}

/* ---------- Navbar ---------- */
.navbar-header {
    height: 72px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 246, 243, 0.82);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--line-soft);
    display: flex;
    align-items: center;
}
.navbar-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.navbar-logo {
    display: flex;
    align-items: center;
    width: 132px;
    flex: 0 0 auto;
}
.navbar-logo img {
    display: block;
    width: 100%;
    height: auto;
}
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}
.navbar-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    position: relative;
}
.navbar-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.28s var(--ease);
}
.navbar-link:hover {
    color: var(--ink);
}
.navbar-link:hover::after {
    width: 100%;
}
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--r-md);
    padding: 11px 20px;
    cursor: pointer;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
    border: 1px solid transparent;
    user-select: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--sh-accent);
}
.btn-primary:hover {
    background: var(--accent-2);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0, 62, 251, 0.26);
}
.btn-primary:active {
    transform: translateY(0);
}
.btn-secondary {
    background: var(--surface);
    border-color: var(--line);
    color: var(--ink);
    box-shadow: var(--sh-sm);
}
.btn-secondary:hover {
    border-color: var(--line-strong);
    transform: translateY(-1px);
}
.btn-sm {
    padding: 9px 16px;
    font-size: 13px;
}
.btn-lg {
    padding: 15px 30px;
    font-size: 15px;
    border-radius: var(--r-md);
}

/* ---------- Eyebrow (used sparingly, max 1 per 3 sections) ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--accent);
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.eyebrow::before {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--accent);
    opacity: 0.6;
}

/* ---------- Section scaffolding ---------- */
.section {
    padding: 132px 0;
    position: relative;
}
.section-alt {
    background: var(--surface-2);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}
.section-head {
    max-width: 720px;
    margin-bottom: 68px;
}
.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.section-title {
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}
.section-head p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--muted);
    max-width: 60ch;
}
.section-head.center p {
    margin: 0 auto;
}

/* ---------- Hero ---------- */
.hero-section {
    padding: 56px 0 96px;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22'%3E%3Ccircle cx='1.2' cy='1.2' r='1.2' fill='%2300103f' fill-opacity='0.05'/%3E%3C/svg%3E");
    background-position: 0 0;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
    mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-copy {
    max-width: 620px;
}
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 14px;
    border: 1px solid var(--accent-line);
    border-radius: var(--r-pill);
    background: var(--accent-soft);
    color: var(--accent);
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.hero-kicker::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 62, 251, 0.12);
}
.hero-copy h1 {
    font-size: clamp(40px, 5.2vw, 66px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.04em;
    margin-bottom: 22px;
}
.hero-copy h1 .accent-word {
    color: var(--accent);
}
.hero-copy .hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 54ch;
    margin-bottom: 36px;
}
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* ---------- Proof band (under hero) ---------- */
.proof-band-section {
    padding: 0 0 24px;
}
.proof-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.proof-item {
    padding: 34px 30px 34px 0;
    border-right: 1px solid var(--line);
}
.proof-item:not(:first-child) {
    padding-left: 30px;
}
.proof-item:last-child {
    border-right: none;
    padding-right: 0;
}
.proof-item .proof-label {
    display: block;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}
.proof-item h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}
.proof-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}

/* Hero transcript preview card — real component preview */
.hero-preview {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    padding: 22px 22px 24px;
    position: relative;
}
.hero-preview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line-soft);
    margin-bottom: 18px;
}
.hero-preview-head .hp-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
}
.hp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft);
}
.hp-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ok);
    background: rgba(21, 128, 61, 0.08);
    border: 1px solid rgba(21, 128, 61, 0.18);
    padding: 4px 9px;
    border-radius: var(--r-pill);
}
.hp-chip i {
    width: 11px;
    height: 11px;
}
.hp-line {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    padding: 12px 0;
    border-top: 1px solid var(--line-soft);
}
.hp-line:first-of-type {
    border-top: none;
}
.hp-speaker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    padding-top: 3px;
}
.hp-line:nth-child(even) .hp-speaker {
    color: #1e3a8a;
}
.hp-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-2);
}
.hp-ts {
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 11px;
    color: var(--accent);
    opacity: 0.8;
    margin-right: 7px;
    font-weight: 500;
}
.hp-term {
    border-bottom: 1px dashed rgba(0, 62, 251, 0.4);
    cursor: default;
}
.hp-foot {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--line-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11.5px;
    color: var(--muted-2);
}
.hp-foot .hp-terms {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}
.hp-foot .hp-term-pill {
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 10.5px;
    color: var(--muted);
    background: var(--surface-2);
    border: 1px solid var(--line-soft);
    padding: 3px 8px;
    border-radius: var(--r-sm);
}

/* ---------- Problem — numbered editorial rows ---------- */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
}
.problem-row {
    padding: 36px 30px 8px 0;
    border-right: 1px solid var(--line);
    transition: border-color 0.3s var(--ease);
}
.problem-row:last-child {
    border-right: none;
    padding-right: 0;
}
.problem-row:not(:first-child) {
    padding-left: 30px;
}
.problem-num {
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.04em;
    margin-bottom: 18px;
}
.problem-row h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.problem-row p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--muted);
}

/* ---------- Done-for-you handoff flow ---------- */
.handoff {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}
.handoff-step {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 30px 28px;
    position: relative;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.handoff-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-md);
}
.handoff-step.is-primary {
    border-color: var(--accent-line);
    background: linear-gradient(180deg, var(--accent-soft) 0%, var(--surface) 70%);
}
.handoff-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.handoff-step:not(.is-primary) .handoff-label {
    color: var(--muted-2);
}
.handoff-step h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}
.handoff-step p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}
.handoff-arrow {
    position: absolute;
    top: 50%;
    right: -16px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--canvas);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    z-index: 2;
}
.handoff-arrow i {
    width: 15px;
    height: 15px;
}
.handoff-step:last-child .handoff-arrow {
    display: none;
}

.done-for-you-copy {
    max-width: 560px;
    margin-bottom: 56px;
}
.done-for-you-copy .section-title {
    margin-bottom: 20px;
}
.done-for-you-copy p {
    font-size: 16.5px;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* ---------- Features bento ---------- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.feature-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
    position: relative;
}
.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-md);
    border-color: var(--line-strong);
}
.feature-card.featured {
    grid-column: span 2;
    border-color: var(--accent-line);
    background: linear-gradient(180deg, var(--accent-soft) 0%, var(--surface) 60%);
}
.feature-card.featured::after {
    content: 'ГОТОВО К АНАЛИЗУ';
    position: absolute;
    top: 22px;
    right: 24px;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--accent);
    background: var(--surface);
    border: 1px solid var(--accent-line);
    padding: 4px 10px;
    border-radius: var(--r-pill);
}
.feature-card .icon-chip {
    width: 42px;
    height: 42px;
    border-radius: var(--r-sm);
    background: var(--accent-soft);
    border: 1px solid var(--accent-line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 20px;
}
.feature-card .icon-chip i {
    width: 19px;
    height: 19px;
}
.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}
.feature-card .term-chip {
    margin-top: 16px;
    align-self: flex-start;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 10.5px;
    color: var(--muted);
    background: var(--surface-2);
    border: 1px solid var(--line-soft);
    padding: 4px 9px;
    border-radius: var(--r-sm);
}

/* ---------- Transcript demo widget ---------- */
.transcript-demo {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-md);
    overflow: hidden;
}
.transcript-demo-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 22px 28px;
    border-bottom: 1px solid var(--line-soft);
    background: var(--surface-2);
}
.td-title {
    display: flex;
    align-items: center;
    gap: 12px;
}
.td-title h3 {
    font-size: 16px;
    font-weight: 700;
}
.td-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ok);
    background: rgba(21, 128, 61, 0.08);
    border: 1px solid rgba(21, 128, 61, 0.18);
    padding: 4px 10px;
    border-radius: var(--r-pill);
}
.td-badge i {
    width: 12px;
    height: 12px;
}
.td-tools {
    display: flex;
    align-items: center;
    gap: 18px;
}
.toggle-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s var(--ease);
}
.toggle-pill:hover {
    color: var(--ink);
}
.pill {
    width: 30px;
    height: 17px;
    border-radius: var(--r-pill);
    background: var(--line-strong);
    position: relative;
    display: inline-block;
    transition: background 0.25s var(--ease);
}
.pill::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--sh-sm);
    transition: transform 0.25s var(--ease);
}
.pill.on {
    background: var(--accent);
}
.pill.on::after {
    transform: translateX(13px);
}

.transcript-body {
    padding: 34px 32px;
    max-height: 460px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 26px;
    background: var(--surface);
}
.transcript-body::-webkit-scrollbar {
    width: 8px;
}
.transcript-body::-webkit-scrollbar-track {
    background: transparent;
}
.transcript-body::-webkit-scrollbar-thumb {
    background: var(--line-strong);
    border-radius: var(--r-pill);
}

.paragraph-block {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.speaker-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: none;
}
.paragraph-block:nth-child(odd) .speaker-label {
    color: var(--accent);
}
.paragraph-block:nth-child(even) .speaker-label {
    color: #1e3a8a;
}
.paragraph-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink-2);
}
.paragraph-text .word {
    display: inline;
    cursor: pointer;
    border-radius: 3px;
    padding: 0 1px;
    transition: color 0.15s var(--ease), background 0.15s var(--ease);
}
.paragraph-text .word:hover,
.paragraph-text .word.active {
    color: var(--accent);
    background: var(--accent-soft);
}
.paragraph-text .ts {
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 11px;
    color: var(--accent);
    opacity: 0.75;
    margin-right: 7px;
    font-weight: 500;
    display: none;
}
.transcript-body.show-speakers .speaker-label {
    display: block;
}
.transcript-body.show-ts .ts {
    display: inline;
}

/* ---------- Security ---------- */
.security-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-md);
    padding: 64px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}
.security-card h2 {
    font-size: clamp(26px, 2.8vw, 34px);
    font-weight: 700;
    margin-bottom: 18px;
}
.security-card p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 52ch;
}
.security-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.security-badge {
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.security-badge:hover {
    border-color: var(--accent-line);
    transform: translateY(-2px);
}
.security-badge i {
    width: 22px;
    height: 22px;
    color: var(--accent);
}
.security-badge span {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}

/* ---------- Pricing ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
    align-items: stretch;
    max-width: 880px;
    margin: 0 auto;
}
.pricing-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 40px 34px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-md);
}
.pricing-card.popular {
    border-color: var(--accent-line);
    background: linear-gradient(180deg, var(--accent-soft) 0%, var(--surface) 55%);
    box-shadow: var(--sh-md);
}
.popular-tag {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    padding: 5px 14px;
    border-radius: var(--r-pill);
    white-space: nowrap;
}
.pricing-header h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}
.pricing-price {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--ink);
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
}
.pricing-price .price-currency {
    font-size: 22px;
    font-weight: 600;
}
.pricing-price .price-duration {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
    margin-left: 4px;
}
.pricing-header p {
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 28px;
    min-height: 42px;
}
.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
    flex-grow: 1;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-2);
}
.pricing-features li i {
    color: var(--accent);
    width: 15px;
    height: 15px;
    margin-top: 3px;
    flex: 0 0 auto;
}
.pricing-card .btn {
    width: 100%;
}

/* ---------- FAQ ---------- */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
}
.faq-item {
    border-bottom: 1px solid var(--line);
    transition: border-color 0.25s var(--ease);
}
.faq-item:hover {
    border-color: var(--line-strong);
}
.faq-item.active {
    border-color: var(--accent-line);
}
.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 26px 6px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    color: var(--ink);
}
.faq-trigger h4 {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.faq-trigger .faq-icon {
    color: var(--muted-2);
    transition: transform 0.3s var(--ease), color 0.25s var(--ease);
    flex: 0 0 auto;
}
.faq-trigger .faq-icon i {
    width: 18px;
    height: 18px;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent);
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
    padding: 0 6px;
}
.faq-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
    padding-bottom: 26px;
    max-width: 70ch;
}

/* ---------- Final CTA — single deliberate navy color block ---------- */
.final-cta {
    padding: 120px 0;
}
.cta-band {
    background: var(--navy-band);
    border-radius: var(--r-lg);
    padding: 80px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--sh-lg);
}
.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22'%3E%3Ccircle cx='1.2' cy='1.2' r='1.2' fill='%23ffffff' fill-opacity='0.06'/%3E%3C/svg%3E");
    pointer-events: none;
}
.cta-band::after {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 680px;
    height: 680px;
    background: radial-gradient(circle, rgba(0, 62, 251, 0.28) 0%, transparent 62%);
    pointer-events: none;
}
.cta-band > * {
    position: relative;
    z-index: 1;
}
.cta-band h2 {
    color: #fff;
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 18px;
}
.cta-band p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 17px;
    line-height: 1.6;
    max-width: 56ch;
    margin: 0 auto 36px;
}
.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    margin-bottom: 38px;
}
.cta-benefit {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}
.cta-benefit i {
    color: #6fa8ff;
    width: 17px;
    height: 17px;
}
.cta-band .btn-primary {
    background: var(--accent);
}
.cta-band .btn-primary:hover {
    background: #2f5fff;
}

/* ---------- Contact ---------- */
.contact-section {
    background: var(--surface-2);
    border-top: 1px solid var(--line-soft);
}
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 56px;
    align-items: start;
}
.contact-copy {
    position: sticky;
    top: 100px;
}
.contact-copy .section-title {
    margin-bottom: 20px;
}
.contact-copy p {
    font-size: 16.5px;
    line-height: 1.7;
    max-width: 48ch;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: var(--surface);
    box-shadow: var(--sh-md);
}
.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-2);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    background: var(--surface);
    color: var(--ink);
    font: inherit;
    font-size: 14.5px;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--muted-2);
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}
.contact-form textarea {
    resize: vertical;
    min-height: 108px;
}
.contact-consent {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 10px !important;
    font-weight: 500 !important;
    color: var(--muted) !important;
    font-size: 13.5px !important;
}
.contact-consent input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--accent);
}
.contact-form-message {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}
.contact-form-message.is-success {
    color: var(--ok);
}
.contact-form-message.is-error {
    color: #c0392b;
}
.contact-form-message.hidden {
    display: none;
}

/* ---------- Footer ---------- */
.footer-section {
    background: var(--canvas);
    border-top: 1px solid var(--line);
    padding: 72px 0 36px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 52px;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-col .navbar-logo {
    width: 128px;
    margin-bottom: 6px;
}
.footer-col p {
    font-size: 13.5px;
    line-height: 1.65;
    max-width: 42ch;
}
.footer-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted-2);
    font-weight: 700;
    margin-bottom: 4px;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.footer-col ul li a {
    font-size: 14px;
    color: var(--muted);
}
.footer-col ul li a:hover {
    color: var(--accent);
}
.footer-bottom {
    border-top: 1px solid var(--line-soft);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12.5px;
    color: var(--muted-2);
}
.footer-bottom a {
    color: var(--muted);
}
.footer-bottom a:hover {
    color: var(--accent);
}
.footer-links-bottom {
    display: flex;
    gap: 22px;
}

/* ---------- Scroll reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    will-change: opacity, transform;
}
.reveal.is-in {
    opacity: 1;
    transform: none;
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-card.featured {
        grid-column: span 2;
    }
    .security-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px;
    }
}

@media (max-width: 860px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-preview {
        max-width: 520px;
    }
    .problem-grid {
        grid-template-columns: 1fr;
        border-top: none;
    }
    .problem-row {
        border-right: none;
        border-top: 1px solid var(--line);
        padding: 28px 0 4px;
    }
    .problem-row:not(:first-child) {
        padding-left: 0;
    }
    .handoff {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .handoff-arrow {
        display: none;
    }
    .proof-band {
        grid-template-columns: 1fr;
    }
    .proof-item {
        border-right: none;
        border-bottom: 1px solid var(--line);
        padding: 26px 0 22px;
    }
    .proof-item:not(:first-child) {
        padding-left: 0;
    }
    .proof-item:last-child {
        border-bottom: none;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .contact-copy {
        position: static;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 88px 0;
    }
    .navbar-menu {
        display: none;
    }
    .navbar-logo {
        width: 118px;
    }
    .navbar-actions .btn-sm {
        padding: 9px 14px;
        font-size: 12.5px;
    }
    .hero-section {
        padding: 40px 0 64px;
    }
    .hero-copy h1 {
        font-size: clamp(34px, 9.5vw, 48px);
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .feature-card.featured {
        grid-column: span 1;
    }
    .feature-card.featured::after {
        position: static;
        margin-bottom: 14px;
        align-self: flex-start;
    }
    .security-card {
        padding: 32px 24px;
    }
    .security-badges {
        grid-template-columns: 1fr;
    }
    .transcript-demo-head {
        padding: 18px 20px;
    }
    .transcript-body {
        padding: 26px 20px;
        max-height: none;
    }
    .pricing-grid {
        max-width: 420px;
    }
    .cta-band {
        padding: 56px 24px;
    }
    .cta-benefits {
        gap: 18px;
    }
    .contact-form {
        padding: 24px;
    }
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-col:first-child {
        grid-column: span 2;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
