:root {
    --navy: #07152F;
    --blue: #0D6EFD;
    --green: #10B981;
    --green-2: #22C55E;
    --teal: #14B8A6;
    --bg: #F5F7FA;
    --white: #FFFFFF;
    --ink: #0A1730;
    --muted: #647084;
    --line: #E3E9F1;
    --soft-green: #EAFBF3;
    --soft-blue: #EAF2FF;
    --shadow: 0 24px 70px rgba(7, 21, 47, .12);
    --shadow-sm: 0 12px 35px rgba(7, 21, 47, .08);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.narrow { max-width: 820px; }
.center { text-align: center; }
.section { padding: 105px 0; }

.top-strip {
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
}
.top-strip__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}
.top-strip__price { color: #72F2B1; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(227,233,241,.8);
}
.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.brand img { width: 220px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a:not(.btn) { font-size: 14px; font-weight: 600; color: #364158; transition: color .2s ease; }
.main-nav > a:not(.btn):hover { color: var(--green); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 23px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--small { min-height: 42px; padding-inline: 18px; border-radius: 11px; background: var(--green); color: var(--white); box-shadow: 0 10px 24px rgba(16,185,129,.22); }
.btn--primary { background: linear-gradient(135deg, var(--green), var(--green-2)); color: var(--white); box-shadow: 0 15px 32px rgba(16,185,129,.25); }
.btn--primary:hover { box-shadow: 0 19px 38px rgba(16,185,129,.32); }
.btn--large { min-height: 60px; padding-inline: 28px; border-radius: 16px; font-size: 15px; }
.btn--ghost { background: #F4F7FA; color: var(--ink); border-color: var(--line); }
.btn--outline { border-color: #B9C5D5; color: var(--navy); background: transparent; }
.btn--white { background: var(--white); color: var(--green); box-shadow: 0 15px 30px rgba(4,61,40,.18); }
.btn--checkout { min-height: 58px; }

.hero {
    position: relative;
    background:
        radial-gradient(circle at 15% 10%, rgba(16,185,129,.12), transparent 32%),
        radial-gradient(circle at 90% 20%, rgba(13,110,253,.08), transparent 28%),
        linear-gradient(180deg, #FFFFFF 0%, #F8FBFD 100%);
    padding: 86px 0 30px;
    overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 76px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--green);
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 800;
}
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(16,185,129,.12); }
.hero h1 {
    font-size: clamp(42px, 5.2vw, 69px);
    line-height: 1.04;
    letter-spacing: -.045em;
    margin: 22px 0 22px;
    max-width: 700px;
}
.hero h1 em { font-style: normal; color: var(--green); }
.hero-lead { margin: 0; max-width: 650px; color: var(--muted); font-size: 18px; }
.hero-offer {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255,255,255,.83);
    border: 1px solid rgba(213,225,235,.95);
    border-radius: 20px;
    padding: 18px 21px;
    box-shadow: 0 16px 45px rgba(7,21,47,.08);
    width: fit-content;
}
.price-block { padding-right: 28px; border-right: 1px solid var(--line); }
.price-block span { display: block; font-size: 12px; color: var(--muted); font-weight: 600; }
.price-block strong { display: block; font-size: 38px; letter-spacing: -.04em; line-height: 1.05; color: var(--navy); }
.price-block small { font-size: 18px; }
.offer-checks { display: grid; gap: 6px; font-size: 13px; font-weight: 600; color: #2E3A50; }
.offer-checks span::first-letter { color: var(--green); }
.hero-actions { margin-top: 28px; display: flex; align-items: center; gap: 22px; }
.text-link { font-size: 14px; font-weight: 700; color: var(--navy); border-bottom: 1px solid #AAB5C4; }
.microcopy { margin-top: 13px; color: #7B8798; font-size: 11px; max-width: 620px; }

.hero-visual { position: relative; min-height: 550px; display: flex; align-items: center; justify-content: center; }
.browser-card {
    width: 100%;
    max-width: 540px;
    background: var(--white);
    border: 1px solid #DCE4EC;
    border-radius: 22px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transform: rotate(1.5deg);
}
.browser-top { height: 48px; background: #F1F4F8; border-bottom: 1px solid #DFE5EC; display: flex; align-items: center; gap: 7px; padding: 0 16px; }
.browser-top > span { width: 9px; height: 9px; border-radius: 50%; background: #CBD4DF; }
.browser-top > span:first-child { background: #FF8E83; }
.browser-top > span:nth-child(2) { background: #FFD067; }
.browser-top > span:nth-child(3) { background: #72D59E; }
.browser-url { margin-left: 10px; width: 66%; height: 26px; border-radius: 8px; background: var(--white); color: #98A3B2; font-size: 9px; display: flex; align-items: center; padding-left: 12px; }
.browser-body { padding: 20px; background: linear-gradient(150deg, #fff 0 62%, #EEFBF5 62%); }
.mock-nav { display: flex; align-items: center; }
.mock-logo { width: 68px; height: 17px; border-radius: 6px; background: var(--navy); }
.mock-links { margin-left: auto; display: flex; gap: 13px; }
.mock-links i { display: block; width: 28px; height: 5px; border-radius: 4px; background: #D8DEE7; }
.mock-button { width: 55px; height: 20px; border-radius: 7px; background: var(--green); margin-left: 14px; }
.mock-hero { display: grid; grid-template-columns: 1fr .85fr; align-items: center; gap: 25px; padding: 55px 12px 42px; }
.mock-label { width: 80px; height: 9px; background: #BFF3D6; border-radius: 6px; margin-bottom: 14px; }
.mock-title { height: 18px; border-radius: 8px; background: var(--navy); margin-bottom: 8px; }
.mock-title--1 { width: 100%; }
.mock-title--2 { width: 76%; }
.mock-text { width: 92%; height: 7px; border-radius: 5px; background: #DDE4EC; margin-top: 18px; }
.mock-text--short { width: 67%; margin-top: 7px; }
.mock-cta { width: 92px; height: 28px; border-radius: 9px; background: var(--green); margin-top: 20px; }
.mock-image { height: 220px; border-radius: 24px; background: linear-gradient(145deg, #E4FFF0, #BFF4D6); display: grid; place-items: center; position: relative; overflow: hidden; }
.mock-image__shape { width: 130px; height: 130px; background: linear-gradient(145deg, var(--green), var(--teal)); border-radius: 38% 62% 54% 46% / 44% 42% 58% 56%; box-shadow: 0 20px 40px rgba(16,185,129,.28); }
.mock-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.mock-features span { height: 55px; border-radius: 14px; background: #F5F7FA; border: 1px solid #E6EBF1; }
.floating-card { position: absolute; display: flex; align-items: center; gap: 12px; background: var(--white); border: 1px solid #E2E8EF; border-radius: 15px; padding: 12px 14px; box-shadow: var(--shadow-sm); z-index: 3; }
.floating-card--time { left: -32px; top: 80px; }
.floating-card--responsive { right: -36px; bottom: 66px; }
.floating-icon { width: 40px; height: 40px; border-radius: 11px; background: var(--soft-green); color: var(--green); display: grid; place-items: center; font-size: 12px; font-weight: 800; }
.floating-card strong, .floating-card span { display: block; white-space: nowrap; }
.floating-card strong { font-size: 12px; }
.floating-card span { color: var(--muted); font-size: 9px; }
.price-stamp { position: absolute; right: -12px; top: 38px; background: var(--navy); color: var(--white); border-radius: 18px; padding: 14px 18px; box-shadow: 0 17px 35px rgba(7,21,47,.25); transform: rotate(5deg); z-index: 4; }
.price-stamp span, .price-stamp strong { display: block; }
.price-stamp span { font-size: 9px; text-transform: uppercase; letter-spacing: .08em; color: #9EEBC2; }
.price-stamp strong { font-size: 22px; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .4; }
.hero-orb--one { width: 150px; height: 150px; background: rgba(20,184,166,.14); right: 5%; top: 8%; }
.hero-orb--two { width: 240px; height: 240px; background: rgba(13,110,253,.07); left: -100px; bottom: 0; }
.trust-row { margin-top: 58px; display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); border-radius: 19px; background: rgba(255,255,255,.9); box-shadow: 0 11px 35px rgba(7,21,47,.06); overflow: hidden; }
.trust-row div { min-height: 62px; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12px; font-weight: 700; color: #3D485A; border-right: 1px solid var(--line); }
.trust-row div:last-child { border: 0; }
.trust-row span { color: var(--green); }

.section-kicker { margin-bottom: 16px; }
.section-kicker--light { color: #A9F3CC; }
.section h2, .final-cta h2 { font-size: clamp(34px, 4vw, 52px); letter-spacing: -.04em; line-height: 1.12; margin: 0 0 18px; }
.section p { color: var(--muted); }
.problem-section { background: var(--white); }
.problem-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.problem-card { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px; box-shadow: 0 10px 30px rgba(7,21,47,.045); transition: transform .2s ease, border-color .2s ease; }
.problem-card:hover { transform: translateY(-5px); border-color: #BFEAD1; }
.problem-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--soft-green); color: var(--green); font-weight: 800; margin-bottom: 20px; }
.problem-card h3 { margin: 0 0 9px; font-size: 18px; }
.problem-card p { font-size: 14px; margin: 0; }

.included-section { background: var(--bg); }
.included-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: center; }
.included-copy { position: sticky; top: 125px; align-self: start; }
.included-copy > p { font-size: 17px; }
.price-highlight { background: var(--navy); color: var(--white); border-radius: 22px; padding: 22px; margin: 28px 0 24px; max-width: 360px; box-shadow: 0 20px 45px rgba(7,21,47,.18); }
.price-highlight span, .price-highlight small, .price-highlight strong { display: block; }
.price-highlight span { font-size: 12px; color: #C4D0E0; }
.price-highlight strong { font-size: 46px; line-height: 1.05; color: #75EBAA; letter-spacing: -.04em; }
.price-highlight small { font-size: 11px; color: #C4D0E0; }
.stack-card { background: var(--white); border: 1px solid #DEE6EE; border-radius: 26px; padding: 14px; box-shadow: var(--shadow-sm); }
.stack-item { display: grid; grid-template-columns: 50px 1fr auto; align-items: center; gap: 15px; padding: 17px 12px; border-bottom: 1px solid var(--line); }
.stack-icon { width: 44px; height: 44px; border-radius: 13px; background: var(--soft-green); color: var(--green); display: grid; place-items: center; font-size: 11px; font-weight: 800; }
.stack-item strong, .stack-item span { display: block; }
.stack-item strong { font-size: 14px; }
.stack-item span { font-size: 11px; color: var(--muted); margin-top: 2px; }
.stack-item b { font-size: 11px; color: var(--green); background: var(--soft-green); border-radius: 20px; padding: 6px 9px; }
.stack-total { margin-top: 14px; padding: 18px 20px; border-radius: 16px; background: linear-gradient(135deg, var(--green), var(--teal)); color: var(--white); display: flex; align-items: center; justify-content: space-between; }
.stack-total span { font-size: 13px; font-weight: 600; }
.stack-total strong { font-size: 28px; }
.domain-note { margin: 13px 8px 2px; font-size: 10px; line-height: 1.5; color: #7B8798 !important; }

.process-section { background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 55px; }
.step-card { position: relative; border-radius: 24px; padding: 30px; border: 1px solid var(--line); min-height: 300px; overflow: hidden; }
.step-card::after { content: ''; position: absolute; width: 140px; height: 140px; border-radius: 50%; background: rgba(16,185,129,.06); right: -60px; bottom: -60px; }
.step-number { position: absolute; right: 22px; top: 18px; font-size: 42px; font-weight: 800; color: #EEF2F6; }
.step-icon { width: 58px; height: 58px; border-radius: 17px; background: linear-gradient(145deg, #E7FBF1, #CFF6E1); color: var(--green); display: grid; place-items: center; font-weight: 800; margin-bottom: 40px; }
.step-card h3 { margin: 0 0 10px; font-size: 21px; }
.step-card p { margin: 0; font-size: 14px; }

.comparison-section { background: var(--navy); color: var(--white); }
.comparison-section p { color: #BAC6D6; }
.comparison-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: center; }
.comparison-table { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.comparison-col { border-radius: 23px; padding: 28px; display: grid; gap: 16px; }
.comparison-col h3 { margin: 0 0 4px; font-size: 18px; }
.comparison-col span { font-size: 13px; font-weight: 600; }
.comparison-col--muted { background: #101F3A; color: #B7C4D6; border: 1px solid rgba(255,255,255,.08); }
.comparison-col--brand { background: linear-gradient(145deg, #0EA96F, #17BD99); box-shadow: 0 24px 50px rgba(4,92,64,.3); }
.mini-brand { height: 44px; }
.mini-brand img { height: 44px; width: auto; background: white; border-radius: 9px; padding: 5px 9px; }

.order-section { background: linear-gradient(145deg, #07152F 0%, #0A2344 100%); color: var(--white); position: relative; overflow: hidden; }
.order-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 15% 20%, rgba(16,185,129,.2), transparent 34%), radial-gradient(circle at 90% 70%, rgba(13,110,253,.14), transparent 30%); }
.order-wrap { position: relative; z-index: 2; display: grid; grid-template-columns: .72fr 1.28fr; gap: 58px; align-items: start; }
.order-intro { position: sticky; top: 125px; }
.order-intro p { color: #C0CAD8; }
.order-summary { margin: 28px 0; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; overflow: hidden; }
.order-summary div { padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,.09); }
.order-summary div:last-child { border: 0; }
.order-summary span, .order-summary strong { display: block; }
.order-summary span { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: #8EA0B8; }
.order-summary strong { font-size: 14px; margin-top: 2px; }
.security-note { font-size: 11px; color: #9FB0C5; background: rgba(255,255,255,.06); border-radius: 12px; padding: 12px; }
.form-shell { background: var(--white); color: var(--ink); border-radius: 28px; padding: 28px; box-shadow: 0 30px 70px rgba(0,0,0,.24); }
.form-alert { margin-bottom: 18px; padding: 13px 15px; background: #FFF0F0; color: #B42318; border: 1px solid #FFD0CC; border-radius: 11px; font-size: 13px; }
.form-progress { margin-bottom: 28px; position: relative; }
.progress-line { position: absolute; left: 9%; right: 9%; top: 18px; height: 3px; background: #E6EBF0; border-radius: 10px; overflow: hidden; }
.progress-line span { display: block; width: 0%; height: 100%; background: var(--green); transition: width .3s ease; }
.progress-steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); }
.progress-step { border: 0; background: transparent; text-align: center; color: #94A0AF; padding: 0; cursor: pointer; }
.progress-step span { width: 36px; height: 36px; margin: 0 auto 7px; border-radius: 50%; background: #EEF2F6; color: #8390A1; display: grid; place-items: center; font-size: 12px; font-weight: 800; border: 3px solid var(--white); box-shadow: 0 0 0 1px #E2E8EF; transition: .2s ease; }
.progress-step small { font-size: 10px; font-weight: 700; }
.progress-step.is-active span, .progress-step.is-complete span { background: var(--green); color: white; box-shadow: 0 0 0 1px var(--green); }
.progress-step.is-active small, .progress-step.is-complete small { color: var(--green); }
.form-step { display: none; }
.form-step.is-active { display: block; animation: fadeUp .25s ease; }
.form-heading { margin-bottom: 22px; }
.form-heading > span { color: var(--green); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.form-heading h3 { font-size: 25px; letter-spacing: -.025em; margin: 4px 0 3px; }
.form-heading p { margin: 0; font-size: 12px; color: var(--muted); }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.field-grid--three { grid-template-columns: repeat(3, 1fr); }
.field { display: block; margin-bottom: 15px; }
.field > span, .choice-group legend { display: block; font-size: 11px; color: #3A465A; font-weight: 700; margin-bottom: 7px; }
.field input, .field textarea, .field select {
    width: 100%;
    border: 1px solid #DCE3EA;
    border-radius: 12px;
    background: #FBFCFD;
    color: var(--ink);
    padding: 12px 13px;
    outline: none;
    font-size: 13px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input { height: 46px; }
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(16,185,129,.1); background: white; }
.field input.is-invalid, .field textarea.is-invalid, .field select.is-invalid { border-color: #E5484D; box-shadow: 0 0 0 3px rgba(229,72,77,.08); }
.choice-group { margin: 0 0 20px; padding: 0; border: 0; }
.choice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.choice-grid label { cursor: pointer; }
.choice-grid input { position: absolute; opacity: 0; pointer-events: none; }
.choice-grid span { display: flex; align-items: center; justify-content: center; min-height: 42px; border: 1px solid #DCE3EA; border-radius: 11px; background: #FBFCFD; color: #5C687A; font-size: 11px; font-weight: 700; transition: .2s ease; }
.choice-grid input:checked + span { color: var(--green); background: var(--soft-green); border-color: #9DE6BE; box-shadow: 0 0 0 2px rgba(16,185,129,.08); }
.domain-box { background: #F4FBF7; border: 1px solid #D3F0E1; border-radius: 15px; padding: 15px; margin-bottom: 16px; }
.domain-box > div:first-child { margin-bottom: 13px; }
.domain-box strong, .domain-box span { display: block; }
.domain-box strong { font-size: 12px; }
.domain-box span { font-size: 10px; color: var(--muted); margin-top: 2px; }
.upload-area { min-height: 190px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border: 1.5px dashed #A9B8C8; border-radius: 17px; background: #F8FAFC; padding: 25px; cursor: pointer; transition: .2s ease; margin-bottom: 14px; }
.upload-area:hover, .upload-area.is-dragging { border-color: var(--green); background: var(--soft-green); }
.upload-area input { position: absolute; opacity: 0; pointer-events: none; }
.upload-icon { width: 46px; height: 46px; border-radius: 14px; background: var(--soft-green); color: var(--green); display: grid; place-items: center; font-size: 23px; margin-bottom: 11px; }
.upload-area strong { font-size: 13px; }
.upload-area small { display: block; color: var(--muted); font-size: 10px; max-width: 440px; margin-top: 4px; }
.file-list { display: grid; gap: 7px; margin-bottom: 14px; }
.file-pill { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: #F3F7FA; border: 1px solid #E0E7EE; padding: 8px 10px; border-radius: 9px; font-size: 10px; color: #536073; }
.consent { display: flex; align-items: flex-start; gap: 10px; font-size: 10px; color: #5E6979; line-height: 1.55; cursor: pointer; }
.consent input { margin-top: 3px; accent-color: var(--green); }
.final-review { margin-top: 18px; background: var(--navy); color: white; border-radius: 15px; padding: 15px 17px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.final-review span, .final-review strong { display: block; }
.final-review span { color: #9FB0C6; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.final-review strong { font-size: 13px; }
.final-review > div:last-child strong { font-size: 25px; color: #78EFB0; }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 24px; }
.checkout-note { font-size: 9px; color: #8A96A5 !important; text-align: center; margin: 10px 0 0; }

.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 75px; align-items: start; }
.faq-intro { position: sticky; top: 125px; }
.accordion { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; min-height: 74px; border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; text-align: left; gap: 20px; padding: 0; color: var(--ink); cursor: pointer; font-weight: 700; font-size: 14px; }
.faq-item button b { width: 28px; height: 28px; border-radius: 50%; background: var(--soft-green); color: var(--green); display: grid; place-items: center; flex: 0 0 28px; transition: transform .2s ease; }
.faq-item > div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-item > div p { overflow: hidden; margin: 0; font-size: 13px; }
.faq-item.is-open > div { grid-template-rows: 1fr; }
.faq-item.is-open > div p { padding-bottom: 22px; }
.faq-item.is-open button b { transform: rotate(45deg); }

.final-cta { padding: 74px 0; background: linear-gradient(135deg, var(--green), var(--teal)); color: var(--white); }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-cta h2 { max-width: 760px; margin-bottom: 12px; }
.final-cta p { margin: 0; color: rgba(255,255,255,.84); }

.site-footer { background: #040E20; color: var(--white); padding: 70px 0 25px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .9fr; gap: 60px; }
.footer-brand img { width: 220px; background: white; border-radius: 13px; padding: 8px 12px; }
.footer-brand p { max-width: 370px; font-size: 13px; color: #91A0B5; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 11px; }
.footer-grid strong { font-size: 13px; margin-bottom: 4px; }
.footer-grid a, .footer-grid span { color: #91A0B5; font-size: 12px; }
.footer-grid a:hover { color: #7FE6B1; }
.footer-bottom { margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 20px; color: #728197; font-size: 10px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-sm { transition-delay: .08s; }
.reveal--delay { transition-delay: .16s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1040px) {
    .hero-grid { gap: 38px; }
    .hero-visual { min-height: 480px; }
    .floating-card--time { left: 0; }
    .floating-card--responsive { right: 0; }
    .included-grid, .comparison-grid, .order-wrap, .faq-grid { gap: 45px; }
    .choice-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .section { padding: 80px 0; }
    .menu-toggle { display: block; }
    .main-nav {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 10px);
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        background: white;
        border: 1px solid var(--line);
        border-radius: 16px;
        box-shadow: var(--shadow-sm);
    }
    .main-nav.is-open { display: flex; }
    .main-nav a { text-align: center; }
    .hero { padding-top: 65px; }
    .hero-grid, .included-grid, .comparison-grid, .order-wrap, .faq-grid { grid-template-columns: 1fr; }
    .hero-copy { text-align: center; }
    .hero h1, .hero-lead, .microcopy { margin-left: auto; margin-right: auto; }
    .hero-offer { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-visual { max-width: 650px; margin: 20px auto 0; }
    .trust-row { grid-template-columns: repeat(2, 1fr); }
    .trust-row div { border-bottom: 1px solid var(--line); }
    .problem-grid, .steps-grid { grid-template-columns: 1fr; }
    .included-copy, .order-intro, .faq-intro { position: static; }
    .comparison-copy { text-align: center; }
    .order-intro { text-align: center; }
    .order-summary { max-width: 520px; margin-left: auto; margin-right: auto; text-align: left; }
    .security-note { max-width: 520px; margin-inline: auto; }
    .faq-intro { text-align: center; }
}

@media (max-width: 620px) {
    .container { width: min(100% - 26px, 1160px); }
    .top-strip__inner { min-height: 44px; gap: 0; }
    .top-strip__price { display: none; }
    .header-inner { min-height: 68px; }
    .brand img { width: 175px; }
    .hero { padding-top: 48px; }
    .hero h1 { font-size: 39px; }
    .hero-lead { font-size: 16px; }
    .hero-offer { width: 100%; align-items: stretch; gap: 16px; text-align: left; }
    .price-block { padding-right: 16px; }
    .price-block strong { font-size: 31px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .text-link { align-self: center; }
    .hero-visual { min-height: 385px; }
    .browser-card { transform: none; }
    .mock-hero { padding: 35px 4px 28px; }
    .mock-image { height: 150px; }
    .mock-image__shape { width: 90px; height: 90px; }
    .floating-card--time { top: 15px; left: -5px; }
    .floating-card--responsive { display: none; }
    .price-stamp { top: auto; bottom: 6px; right: 3px; }
    .trust-row { grid-template-columns: 1fr; }
    .trust-row div { border-right: 0; }
    .section { padding: 68px 0; }
    .section h2, .final-cta h2 { font-size: 34px; }
    .problem-card, .step-card { padding: 24px; }
    .included-grid, .comparison-grid, .order-wrap, .faq-grid { gap: 35px; }
    .stack-item { grid-template-columns: 44px 1fr; }
    .stack-item b { grid-column: 2; justify-self: start; }
    .comparison-table { grid-template-columns: 1fr; }
    .form-shell { padding: 20px 16px; border-radius: 21px; }
    .progress-step small { display: none; }
    .progress-line { left: 12%; right: 12%; }
    .field-grid, .field-grid--three { grid-template-columns: 1fr; gap: 0; }
    .choice-grid { grid-template-columns: repeat(2, 1fr); }
    .form-heading h3 { font-size: 22px; }
    .form-actions { align-items: stretch; }
    .form-actions .btn { flex: 1; padding-inline: 15px; }
    .btn--checkout { font-size: 12px; }
    .final-review { align-items: flex-end; }
    .final-cta__inner { flex-direction: column; text-align: center; }
    .final-cta__inner .btn { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* Correção estrutural da marca: usa o arquivo oficial completo, sem recorte. */
.brand,
.mini-brand,
.footer-brand {
    overflow: visible;
}
.brand img,
.mini-brand img,
.footer-brand img {
    display: block;
    object-fit: contain;
    object-position: center;
    max-width: 100%;
    height: auto;
    overflow: visible;
}
.brand img { width: 220px; }
.mini-brand {
    height: auto;
    min-height: 44px;
    display: flex;
    align-items: center;
}
.mini-brand img {
    width: 190px;
    height: auto;
    max-height: none;
    background: #fff;
    border-radius: 9px;
    padding: 3px 7px;
}
.footer-brand img {
    width: 220px;
    height: auto;
    background: #fff;
    border-radius: 13px;
    padding: 4px 8px;
}
@media (max-width: 620px) {
    .brand img { width: 175px; }
    .mini-brand img { width: 165px; }
}

/* Confirmação final do briefing: destaque claro quando estiver pendente. */
.consent-block {
    margin-top: 18px;
    padding: 14px 16px;
    border: 1px solid #DCE3EA;
    border-radius: 14px;
    background: #FBFCFD;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.consent-block .consent {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 0;
    color: #465267;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.55;
    cursor: pointer;
}
.consent-block .consent input {
    width: 20px;
    height: 20px;
    margin: 0;
    flex: 0 0 20px;
    accent-color: var(--green);
    cursor: pointer;
}
.consent-block .consent input:focus-visible {
    outline: 3px solid rgba(16,185,129,.22);
    outline-offset: 3px;
}
.consent-error {
    display: none;
    margin: 9px 0 0 31px;
    color: #B42318 !important;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.35;
}
.consent-block.has-error {
    border-color: #E5484D;
    background: #FFF4F3;
    box-shadow: 0 0 0 4px rgba(229,72,77,.12);
}
.consent-block.has-error .consent {
    color: #7A271A;
}
.consent-block.has-error .consent input {
    accent-color: #E5484D;
}
.consent-block.has-error .consent-error {
    display: block;
}
.consent-block.is-shaking {
    animation: consentShake .38s ease;
}
@keyframes consentShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    50% { transform: translateX(6px); }
    75% { transform: translateX(-3px); }
}
@media (prefers-reduced-motion: reduce) {
    .consent-block.is-shaking { animation: none; }
}
@media (max-width: 620px) {
    .consent-block { padding: 13px 14px; }
    .consent-block .consent { font-size: 10.5px; }
    .consent-error { margin-left: 31px; }
}
