
:root {
    --blue-950: #081336;
    --blue-900: #11235a;
    --blue-800: #17327d;
    --blue-700: #2348a8;
    --blue-600: #2e63d6;
    --blue-100: #eaf0ff;
    --blue-050: #f5f8ff;
    --red-700: #c8102e;
    --red-600: #e21a3a;
    --red-050: #fff0f3;
    --white: #ffffff;
    --ink: #121826;
    --muted: #5c667a;
    --muted-2: #7b8496;
    --line: #dce2ef;
    --soft: #f7f9fc;
    --green: #12824c;
    --gold: #ffbf3c;
    --shadow-sm: 0 8px 24px rgba(8, 19, 54, .08);
    --shadow-md: 0 18px 48px rgba(8, 19, 54, .14);
    --shadow-lg: 0 30px 80px rgba(8, 19, 54, .22);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --container: 1180px;
    --header-height: 76px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img, svg {
    max-width: 100%;
    display: block;
}

button, input {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    z-index: 999;
    background: var(--white);
    color: var(--blue-900);
    border: 2px solid var(--blue-900);
    padding: 10px 14px;
    border-radius: 10px;
}

.skip-link:focus {
    left: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--header-height);
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(220, 226, 239, .8);
}

.nav-wrap {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    letter-spacing: -.03em;
    color: var(--blue-950);
    white-space: nowrap;
}

.brand img {
    height: 25px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(8, 19, 54, .08);
    display: grid;
    grid-template-columns: 1fr;
}

.brand-mark span:nth-child(1) { background: #0055a4; }
.brand-mark span:nth-child(2) { background: #ffffff; }
.brand-mark span:nth-child(3) { background: #ef4135; }

.brand-text {
    display: grid;
    line-height: 1.05;
}

.brand-text small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    font-weight: 750;
    color: var(--muted);
    font-size: 14px;
}

.nav-links a:hover {
    color: var(--blue-800);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    background: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 14px;
    color: var(--blue-900);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
    border-radius: 999px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 900;
    letter-spacing: -.01em;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: var(--white);
    background: #009ef7;
    box-shadow: 0 16px 32px rgba(50, 188, 212, 0.18), 0 16px 32px rgba(46, 99, 214, .14);
}

.btn-primary:hover {
    box-shadow: 0 16px 32px rgba(50, 188, 212, 0.22), 0 16px 32px rgba(46, 99, 214, .18);
}

.btn-secondary {
    color: var(--blue-900);
    background: var(--white);
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: rgba(35, 72, 168, .35);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    color: var(--blue-900);
    background: transparent;
    border-color: rgba(17, 35, 90, .16);
}

.btn-small {
    min-height: 42px;
    padding: 10px 15px;
    font-size: 14px;
}

.section {
    padding: 92px 0;
}

.section-tight {
    padding: 68px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-800);
    background: var(--blue-050);
    border: 1px solid rgba(46, 99, 214, .15);
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: .01em;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--red-600);
    box-shadow: 0 0 0 5px rgba(226, 26, 58, .12);
}

.section-head {
    max-width: 780px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-head h2,
.hero h1 {
    margin: 0;
    color: var(--blue-950);
    letter-spacing: -.055em;
    line-height: .96;
}

.section-head h2 {
    font-size: clamp(34px, 5vw, 58px);
}

.section-head p {
    margin: 18px auto 0;
    max-width: 700px;
    color: var(--muted);
    font-size: clamp(17px, 2.2vw, 20px);
}

.hero {
    position: relative;
    overflow: hidden;
    background:
    radial-gradient(circle at 10% 10%, rgba(46, 99, 214, .15), transparent 34%),
    radial-gradient(circle at 85% 10%, rgba(226, 26, 58, .13), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
    padding: 74px 0 62px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto -140px -250px auto;
    width: 520px;
    height: 520px;
    background: conic-gradient(from 180deg, #0055a4, #ffffff, #ef4135, #0055a4);
    opacity: .08;
    border-radius: 999px;
    filter: blur(2px);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr);
    align-items: center;
    gap: 58px;
}

.hero-copy {
    max-width: 680px;
}

.hero h1 {
    margin-top: 18px;
    font-size: clamp(44px, 6.6vw, 78px);
}

.hero-lead {
    margin: 22px 0 0;
    max-width: 650px;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 22px);
}

.hero-bullets {
    display: grid;
    gap: 10px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
    color: var(--ink);
    font-weight: 720;
}

.hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: rgba(18, 130, 76, .1);
    color: var(--green);
    font-size: 14px;
    font-weight: 1000;
    margin-top: 1px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.microcopy {
    margin-top: 12px;
    color: var(--muted-2);
    font-size: 14px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(220, 226, 239, .92);
    color: var(--muted);
    font-weight: 850;
    font-size: 13px;
    box-shadow: 0 8px 20px rgba(8, 19, 54, .05);
}

.hero-media {
    position: relative;
}

.product-frame {
    position: relative;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .82));
    border: 1px solid rgba(17, 35, 90, .11);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: rotate(1deg);
}

.browser-top {
    height: 48px;
    background: linear-gradient(180deg, #f6f8fc, #eef2f9);
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
}

.browser-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: var(--line);
}

.browser-dot:nth-child(1) { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #ffbd2e; }
.browser-dot:nth-child(3) { background: #28c840; }

.mockup {
    padding: 22px;
    background:
    linear-gradient(135deg, rgba(46, 99, 214, .06), transparent 40%),
    #ffffff;
}

.mockup-grid {
    display: grid;
    grid-template-columns: 1fr .74fr;
    gap: 14px;
}

.mock-card {
    border-radius: 20px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 16px;
}

.mock-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    color: var(--blue-950);
    letter-spacing: -.02em;
}

.mock-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.mock-card.big {
    min-height: 255px;
}

.lesson-line {
    height: 12px;
    border-radius: 999px;
    background: #edf2fb;
    margin: 11px 0;
}

.lesson-line:nth-of-type(2) { width: 92%; }
.lesson-line:nth-of-type(3) { width: 72%; }
.lesson-line:nth-of-type(4) { width: 84%; }

.highlight-word {
    display: inline-flex;
    margin: 8px 0 2px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--red-050);
    color: var(--red-700);
    font-weight: 950;
    font-size: 13px;
}

.ai-answer {
    margin-top: 12px;
    padding: 12px;
    border-radius: 16px;
    background: var(--blue-050);
    color: var(--blue-900);
    font-size: 13px;
    font-weight: 720;
    line-height: 1.45;
}

.score-circle {
    width: 86px;
    height: 86px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    margin: 4px auto 12px;
    background: conic-gradient(var(--green) 0 82%, #e7ecf5 82% 100%);
    position: relative;
}

.score-circle::after {
    content: "82%";
    width: 62px;
    height: 62px;
    border-radius: 999px;
    background: #fff;
    display: grid;
    place-items: center;
    color: var(--green);
    font-weight: 1000;
}

.floating-card {
    position: absolute;
    right: -18px;
    bottom: -24px;
    width: 260px;
    border-radius: 22px;
    background: var(--blue-950);
    color: var(--white);
    padding: 18px;
    box-shadow: var(--shadow-lg);
    transform: rotate(-3deg);
}

.floating-card strong {
    display: block;
    font-size: 27px;
    line-height: 1;
    letter-spacing: -.04em;
}

.floating-card span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, .76);
    font-weight: 700;
    font-size: 13px;
}

.stats-strip {
    background: var(--blue-950);
    color: var(--white);
    padding: 28px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.stat {
    border-left: 1px solid rgba(255, 255, 255, .14);
    padding-left: 18px;
}

.stat strong {
    display: block;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1;
    letter-spacing: -.04em;
}

.stat span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 800;
}

.pain {
    background: var(--white);
}

.pain-grid {
    display: grid;
    grid-template-columns: .84fr 1.16fr;
    gap: 34px;
    align-items: start;
}

.quote-panel {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--blue-950), var(--blue-800));
    color: var(--white);
    padding: 34px;
    box-shadow: var(--shadow-md);
}

.quote-panel p {
    margin: 0;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.05;
    letter-spacing: -.04em;
    font-weight: 950;
}

.quote-panel span {
    display: block;
    margin-top: 18px;
    color: rgba(255, 255, 255, .74);
    font-weight: 750;
}

.pain-list { display: grid; gap: 14px; }

.pain-item {
    display: flex;
    gap: 14px;
    padding: 18px;
    border-radius: var(--radius-xs);
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.pain-item strong { display: block; margin-bottom: 4px; color: var(--blue-950); }
.pain-item span span { display: block; color: var(--muted); }

.pain-icon {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: var(--red-050);
    color: var(--red-700);
    font-weight: 800;
}

.goal-box {
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #fff, var(--blue-050));
    border: 1px solid rgba(46, 99, 214, .15);
    padding: 34px;
    box-shadow: var(--shadow-md);
    margin-top: 34px;
}

.goal-box h3 {
    margin: 0;
    color: var(--blue-950);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.goal-box p {
    margin: 10px 0 0;
    color: var(--muted);
}

.goal-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.goal-btn {
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--blue-900);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 900;
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.goal-btn:hover,
.goal-btn[aria-pressed="true"] {
    background: var(--blue-900);
    border-color: var(--blue-900);
    color: var(--white);
    transform: translateY(-1px);
}

.goal-note {
    margin-top: 16px;
    color: var(--muted);
    font-size: 14px;
    min-height: 22px;
}

.features {
    background: var(--soft);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--line);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    min-height: 252px;
}

.feature-card.feature-wide {
    grid-column: span 2;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, #f5ffce, #009ef7);
    font-size: 22px;
    box-shadow: 0 12px 24px rgba(46, 99, 214, .18);
}

.feature-card h3 {
    margin: 18px 0 8px;
    color: var(--blue-950);
    font-size: 22px;
    line-height: 1.12;
    letter-spacing: -.03em;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
}

.demo-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 40px;
    align-items: center;
}

.demo-card {
    position: relative;
    border-radius: var(--radius-lg);
    background: var(--blue-950);
    color: var(--white);
    padding: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 390px;
    display: grid;
    align-content: end;
}

.demo-card::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 24px;
    background:
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 32px 32px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92px;
    height: 92px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .95);
    color: var(--blue-900);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-lg);
}

.play-button::before {
    content: "";
    display: block;
    margin-left: 6px;
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 23px solid currentColor;
}

.demo-card h3,
.demo-copy h2 {
    position: relative;
    margin: 0;
    letter-spacing: -.05em;
    line-height: 1;
    font-size: clamp(32px, 4vw, 52px);
}

.demo-card p {
    position: relative;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .76);
    font-weight: 700;
}

.demo-copy p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.demo-list {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.demo-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--ink);
    font-weight: 750;
}

.path {
    background: linear-gradient(180deg, var(--blue-950), #0d1b4a);
    color: var(--white);
}

.path .section-head h2,
.path .section-head p {
    color: var(--white);
}

.path .section-head p {
    color: rgba(255, 255, 255, .72);
}

.path-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    counter-reset: day;
}

.path-card {
    position: relative;
    min-height: 235px;
    border-radius: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .18);
    overflow: hidden;
}

.path-card::before {
    counter-increment: day;
    content: counter(day);
    position: absolute;
    top: 14px;
    right: 16px;
    color: rgba(255, 255, 255, .1);
    font-size: 82px;
    font-weight: 1000;
    line-height: 1;
    letter-spacing: -.08em;
}

.path-card strong {
    display: inline-flex;
    color: var(--blue-950);
    background: var(--white);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 1000;
}

.path-card h3 {
    position: relative;
    margin: 18px 0 8px;
    color: var(--white);
    font-size: 21px;
    line-height: 1.12;
    letter-spacing: -.03em;
}

.path-card p {
    position: relative;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
}

.compare {
    background: var(--white);
}

.compare-box {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.compare-row,
.compare-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.compare-head div {
    padding: 22px;
    font-weight: 1000;
    color: var(--white);
    background: var(--blue-950);
    font-size: 18px;
}

.compare-head div:nth-child(2) {
    background: linear-gradient(135deg, #009ef7, #f5ffce);
}

.compare-row div {
    padding: 18px 22px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-weight: 720;
}

.compare-row div:nth-child(2) {
    color: var(--ink);
    background: var(--blue-050);
}

.pricing {
    background: var(--soft);
}

.offer-card {
    max-width: 900px;
    margin: 0 auto 28px;
    border-radius: var(--radius-lg);
    padding: 28px;
    background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
    color: var(--white);
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 22px;
    align-items: center;
}

.offer-card h3 {
    margin: 0;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.02;
    letter-spacing: -.04em;
}

.offer-card p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .74);
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    padding: 26px;
    box-shadow: var(--shadow-sm);
}

.price-card.featured {
    border: 2px solid rgb(26 152 226 / 50%);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--red-700);
    background: var(--red-050);
    font-size: 12px;
    font-weight: 1000;
    margin-bottom: 14px;
}

.price-card h3 {
    margin: 0;
    color: var(--blue-950);
    font-size: 26px;
    letter-spacing: -.03em;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 16px;
    color: var(--blue-950);
}

.price strong {
    font-size: 46px;
    line-height: .9;
    letter-spacing: -.06em;
}

.price span {
    color: var(--muted);
    font-weight: 850;
}

.price-desc {
    min-height: 48px;
    margin: 14px 0 0;
    color: var(--muted);
}

.price-list {
    margin: 20px 0 26px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 11px;
}

.price-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--ink);
    font-weight: 720;
    font-size: 15px;
}

.price-card .btn {
    margin-top: auto;
    width: 100%;
}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 26px;
}

.risk-card {
    border-radius: 22px;
    border: 1px solid var(--line);
    background: var(--white);
    padding: 22px;
    box-shadow: var(--shadow-sm);
}

.risk-card strong {
    display: block;
    color: var(--blue-950);
    font-size: 18px;
    margin-bottom: 6px;
}

.risk-card p {
    margin: 0;
    color: var(--muted);
}

.testimonials {
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    background: var(--white);
}

.stars {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 18px;
    margin-bottom: 12px;
}

.testimonial-card blockquote {
    margin: 0;
    color: var(--ink);
    font-weight: 760;
    font-size: 17px;
    line-height: 1.45;
}

.testimonial-card cite {
    display: block;
    margin-top: 16px;
    color: var(--muted);
    font-style: normal;
    font-weight: 850;
    font-size: 14px;
}

.founder-card {
    margin-top: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(46, 99, 214, .15);
    background: linear-gradient(135deg, var(--blue-050), #fff);
    padding: 30px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.founder-avatar {
    width: 86px;
    height: 86px;
    border-radius: 26px;
    background-image: url('/assets/media/avatars/nikola.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.founder-card h3 {
    margin: 0;
    color: var(--blue-950);
    font-size: 25px;
    line-height: 1.1;
    letter-spacing: -.03em;
}

.founder-card p {
    margin: 8px 0 0;
    color: var(--muted);
}

.faq {
    background: var(--soft);
}

.faq-wrap {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    border: 0;
    background: transparent;
    color: var(--blue-950);
    font-weight: 950;
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--blue-050);
    color: var(--blue-900);
    font-size: 20px;
    transition: transform .18s ease;
}

.faq-answer {
    display: none;
    padding: 0 22px 20px;
    color: var(--muted);
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.final-cta {
    position: relative;
    overflow: hidden;
    background:
    radial-gradient(circle at 15% 30%, rgba(255, 255, 255, .15), transparent 24%),
    linear-gradient(135deg, #009ef7, var(--blue-700) 55%, #f5ffce);
    color: var(--white);
    text-align: center;
    padding: 86px 0;
}

.final-cta h2 {
    margin: 0 auto;
    max-width: 850px;
    font-size: clamp(36px, 5vw, 64px);
    line-height: .98;
    letter-spacing: -.055em;
}

.final-cta p {
    margin: 18px auto 0;
    max-width: 650px;
    color: rgba(255, 255, 255, .78);
    font-size: 19px;
    font-weight: 720;
}

.final-cta .hero-ctas {
    justify-content: center;
}

.final-cta .btn-secondary {
    background: rgba(255, 255, 255, .12);
    color: var(--white);
    border-color: rgba(255, 255, 255, .22);
    box-shadow: none;
}

.site-footer {
    padding: 36px 0;
    color: var(--muted);
    background: #fff;
    border-top: 1px solid var(--line);
    font-size: 14px;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-weight: 800;
}

.footer-links a:hover {
    color: var(--blue-800);
}

.mobile-sticky-cta {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 28px rgba(8, 19, 54, .09);
}

.mobile-sticky-cta .btn {
    width: 100%;
}

@media (max-width: 1040px) {
    .hero-grid,
    .demo-grid,
    .pain-grid {
    grid-template-columns: 1fr;
    }

    .hero-copy {
    max-width: none;
    }

    .hero-media {
    max-width: 720px;
    margin-inline: auto;
    width: 100%;
    }

    .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    }

    .feature-grid,
    .pricing-grid,
    .testimonial-grid,
    .risk-grid {
    grid-template-columns: 1fr 1fr;
    }

    .feature-card.feature-wide {
    grid-column: span 1;
    }

    .path-grid {
    grid-template-columns: repeat(2, 1fr);
    }

    .quote-panel {
    position: static;
    }
}

@media (max-width: 820px) {
    :root {
    --header-height: 68px;
    }

    .container {
    width: min(var(--container), calc(100% - 30px));
    }

    .nav-links,
    .nav-actions .btn-secondary,
    .nav-actions .btn-primary {
    display: none;
    }

    .menu-toggle {
    display: inline-block;
    }

    .site-header.open .nav-links {
    display: grid;
    position: absolute;
    left: 15px;
    right: 15px;
    top: calc(var(--header-height) + 8px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow-lg);
    }

    .site-header.open .nav-links a {
    padding: 10px 4px;
    }

    .brand-text small {
    display: none;
    }

    .hero {
    padding: 50px 0 44px;
    }

    .section,
    .section-tight {
    padding: 66px 0;
    }

    .hero-ctas .btn {
    width: 100%;
    }

    .mockup-grid,
    .feature-grid,
    .pricing-grid,
    .testimonial-grid,
    .risk-grid,
    .stats-grid,
    .path-grid,
    .compare-row,
    .compare-head,
    .offer-card,
    .founder-card {
    grid-template-columns: 1fr;
    }

    .stat {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding-top: 14px;
    }

    .stat:first-child {
    border-top: 0;
    padding-top: 0;
    }

    .floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 14px 14px 18px;
    }

    .product-frame {
    transform: none;
    }

    .price-card.featured {
    transform: none;
    }

    .compare-row div:nth-child(2) {
    border-top: 0;
    }

    .mobile-sticky-cta {
    display: block;
    }

    body {
    padding-bottom: 82px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
    font-size: 41px;
    }

    .hero-lead,
    .section-head p {
    font-size: 17px;
    }

    .mockup {
    padding: 14px;
    }

    .mock-card.big {
    min-height: auto;
    }

    .goal-box,
    .quote-panel,
    .offer-card,
    .founder-card {
    padding: 22px;
    }
}