:root {
    --primary: #e8442c;
    --primary-hover: #ff684d;
    --primary-active: #c93420;
    --primary-soft: #f7b8aa;
    --primary-tint: rgba(232, 68, 44, .12);
    --ink: #101216;
    --ink-soft: #171a1f;
    --surface-dark: #20242a;
    --surface-dark-2: #2a2f37;
    --cream: #f4f5f7;
    --sand: #e3e6ea;
    --white: #fff;
    --text: #2d3137;
    --muted: #69717c;
    --muted-dark: #aeb5bf;
    --border: #d8dce2;
    --success: #2e9f65;
    --error: #d63b4a;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-pill: 999px;
    --shadow-soft: 0 18px 50px rgba(15, 18, 24, .08);
    --shadow-dark: 0 28px 90px rgba(0, 0, 0, .30);
    --container: 1320px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    background: var(--ink);
    color: var(--white);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
textarea {
    font: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
.brand {
    font-family: "Be Vietnam Pro", sans-serif;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

.site-main {
    min-height: 60vh;
}

section {
    position: relative;
    padding: 112px 0;
}

.on-light {
    background: var(--cream);
    color: var(--text);
}

.dark-section,
.results-section,
.pricing-section,
.contact-section {
    background: var(--ink);
}

.eyebrow {
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.section-title {
    max-width: 19ch;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
}

.section-heading>p {
    max-width: 520px;
    color: var(--muted);
}

.section-heading-dark>p {
    color: var(--muted-dark);
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 24px;
    border: 0;
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

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

.btn:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(232, 68, 44, .28);
    outline-offset: 3px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(232, 68, 44, .22);
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 16px 38px rgba(232, 68, 44, .30);
}

.btn-primary:active {
    background: var(--primary-active);
    transform: translateY(0);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, .45);
    background: transparent;
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(232, 68, 44, .08);
}

.btn-block {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    color: var(--white);
    font-weight: 700;
}

.text-link span {
    color: var(--primary);
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    border-bottom: 1px solid transparent;
    background: rgba(16, 18, 22, .72);
    backdrop-filter: blur(16px);
    transition: border-color .2s ease, background .2s ease;
}

.site-header.scrolled {
    border-color: rgba(255, 255, 255, .08);
    background: rgba(16, 18, 22, .95);
}

.nav-inner {
    width: min(100% - 96px, var(--container));
    min-height: 78px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    color: var(--white);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -.03em;
}

.brand-dot {
    color: var(--primary);
}

.custom-logo-link {
    display: flex;
    align-items: center;
}

.custom-logo {
    width: auto;
    max-height: 48px;
}

.primary-navigation {
    display: flex;
    align-items: center;
    gap: 34px;
}

.menu-list {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.menu-list a {
    position: relative;
    color: #cbd0d7;
    font-size: 14px;
    font-weight: 600;
}

.menu-list a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    background: var(--primary);
    transition: right .2s ease;
}

.menu-list a:hover {
    color: var(--white);
}

.menu-list a:hover::after {
    right: 0;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
    transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    min-height: 790px;
    padding: 180px 0 110px;
    overflow: hidden;
    background: radial-gradient(circle at 10% 10%, rgba(232, 68, 44, .17), transparent 34%), linear-gradient(135deg, #101216 0%, #15181d 52%, #0c0e12 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .22;
    background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(3px);
    pointer-events: none;
}

.hero-orb-one {
    width: 460px;
    height: 460px;
    right: -120px;
    top: 120px;
    border: 1px solid rgba(232, 68, 44, .22);
    box-shadow: inset 0 0 120px rgba(232, 68, 44, .07);
}

.hero-orb-two {
    width: 220px;
    height: 220px;
    left: 48%;
    bottom: -120px;
    background: rgba(232, 68, 44, .07);
    filter: blur(40px);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr .95fr;
    align-items: center;
    gap: 76px;
}

.hero h1 {
    max-width: 800px;
    color: var(--white);
    font-size: clamp(44px, 5.4vw, 76px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.hero h1 span {
    color: var(--primary);
}

.hero .lede {
    max-width: 620px;
    margin-top: 28px;
    color: #bfb2ad;
    font-size: 17px;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
    margin-top: 34px;
    color: #8f827d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.trust-row span::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(232, 68, 44, .12);
}

.dashboard-card {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(42, 32, 29, .94), rgba(27, 22, 20, .96));
    box-shadow: var(--shadow-dark);
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
}

.dashboard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.dashboard-kicker {
    color: #8d807b;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.dashboard-top strong {
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 20px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-pill);
    color: #baaEaa;
    font-size: 11px;
}

.status-badge i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(46, 159, 101, .14);
}

.chart {
    position: relative;
    height: 220px;
    margin: 28px 0 20px;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, .018);
}

.chart-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 100% 44px, 65px 100%;
}

.chart svg {
    position: absolute;
    inset: 20px 12px 12px;
    width: calc(100% - 24px);
    height: calc(100% - 32px);
    overflow: visible;
}

.chart .area {
    fill: url(#gsaChartFill);
}

.chart .line {
    fill: none;
    stroke: var(--primary);
    stroke-width: 4;
    stroke-linecap: round;
    filter: drop-shadow(0 5px 8px rgba(232, 68, 44, .35));
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.stat-tile {
    padding: 14px 10px;
    border: 1px solid rgba(255, 255, 255, .065);
    border-radius: 10px;
    background: rgba(255, 255, 255, .025);
}

.stat-tile .num {
    color: var(--white);
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.stat-tile .lbl {
    margin-top: 3px;
    color: #8f827d;
    font-size: 10px;
    text-transform: uppercase;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 58px;
}

.problem-card {
    position: relative;
    min-height: 260px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform .25s ease, border-color .25s ease;
}

.problem-card::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -70px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--primary-tint);
    transition: transform .25s ease;
}

.problem-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 68, 44, .45);
}

.problem-card:hover::after {
    transform: scale(1.18);
}

.card-index {
    position: relative;
    z-index: 1;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}

.problem-card h3 {
    position: relative;
    z-index: 1;
    margin: 64px 0 12px;
    color: var(--ink);
    font-size: 21px;
}

.problem-card p {
    position: relative;
    z-index: 1;
    color: var(--muted);
    font-size: 14px;
}

.offer-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    align-items: start;
}

.offer-copy {
    position: sticky;
    top: 120px;
}

.offer-copy .section-title {
    color: var(--white);
}

.offer-lede {
    max-width: 520px;
    margin-top: 26px;
    color: var(--muted-dark);
}

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

.offer-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 24px;
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-md);
    background: linear-gradient(140deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018));
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.offer-item:hover {
    transform: translateX(8px);
    border-color: rgba(232, 68, 44, .42);
    background: rgba(232, 68, 44, .055);
}

.offer-num {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 12px;
    background: var(--primary-tint);
    color: var(--primary);
    font-weight: 800;
}

.offer-item h3 {
    margin-bottom: 7px;
    color: var(--white);
    font-size: 17px;
}

.offer-item p {
    color: #a99d98;
    font-size: 14px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 58px;
}

.process-card {
    min-height: 275px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #fff, #fbf8f6);
}

.process-num {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(232, 68, 44, .25);
}

.process-card h3 {
    margin: 74px 0 10px;
    color: var(--ink);
    font-size: 19px;
}

.process-card p {
    color: var(--muted);
    font-size: 14px;
}

.results-section {
    overflow: hidden;
}

.results-section::before {
    content: "";
    position: absolute;
    top: -220px;
    left: 45%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(232, 68, 44, .08);
    filter: blur(90px);
}

.results-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 60px;
}

.result-card {
    min-height: 230px;
    padding: 34px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, #20242a, #15181d);
}

.result-card .big {
    color: var(--primary);
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -.04em;
}

.result-card .lbl {
    margin-top: 10px;
    color: #a99d98;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.results-note {
    margin-top: 20px;
    color: #766a65;
    font-size: 12px;
    text-align: right;
}

.testimonial-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-button {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.carousel-button:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.testimonial-viewport {
    margin-top: 52px;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform .45s cubic-bezier(.22, .61, .36, 1);
}

.testi-card {
    min-width: 100%;
    padding: 48px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
}

.quote-mark {
    height: 52px;
    color: var(--primary);
    font-family: Georgia, serif;
    font-size: 74px;
    line-height: 1;
}

.testi-card .quote {
    max-width: 900px;
    color: var(--ink);
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -.025em;
}

.testi-card .who {
    margin-top: 28px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.testi-card .who span {
    color: var(--muted);
    font-weight: 500;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.carousel-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #cfc4bf;
    cursor: pointer;
    transition: width .2s ease, background .2s ease, border-radius .2s ease;
}

.carousel-dots button.active {
    width: 28px;
    border-radius: 5px;
    background: var(--primary);
}

.pricing-section {
    padding-top: 0;
}

.price-card {
    display: grid;
    grid-template-columns: 1.1fr .65fr;
    gap: 70px;
    padding: 58px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 85% 10%, rgba(232, 68, 44, .16), transparent 36%), var(--surface-dark);
    box-shadow: var(--shadow-dark);
}

.plan-name,
.price-label {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.price-copy h2 {
    margin: 14px 0 14px;
    color: var(--white);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.price-copy>p:not(.plan-name) {
    color: var(--muted-dark);
}

.price-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 22px;
    margin-top: 30px;
    list-style: none;
}

.price-checklist li {
    display: flex;
    gap: 10px;
    color: #c1b5b0;
    font-size: 13px;
}

.price-checklist li::before {
    content: "✓";
    color: var(--primary);
    font-weight: 800;
}

.price-box {
    align-self: center;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .035);
}

.price-amount {
    margin: 14px 0 4px;
    color: var(--white);
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 700;
    line-height: 1.1;
}

.price-per {
    margin-bottom: 24px;
    color: #8f827d;
    font-size: 12px;
}

.faq-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 100px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.faq-intro>p:last-child {
    max-width: 380px;
    margin-top: 22px;
    color: var(--muted);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
}

.faq-question {
    width: 100%;
    min-height: 76px;
    padding: 20px 24px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--ink);
    cursor: pointer;
    text-align: left;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.faq-question .plus {
    color: var(--primary);
    font-size: 24px;
    transition: transform .25s ease;
}

.faq-question[aria-expanded="true"] .plus {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .3s ease;
}

.faq-answer>div {
    overflow: hidden;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--muted);
    font-size: 14px;
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.contact-section {
    overflow: hidden;
    background: radial-gradient(circle at 0% 100%, rgba(232, 68, 44, .14), transparent 35%), #12151a;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.contact-copy h2 {
    max-width: 13ch;
    color: var(--white);
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.02;
    letter-spacing: -.05em;
}

.contact-copy>p:not(.eyebrow) {
    max-width: 580px;
    margin-top: 26px;
    color: var(--muted-dark);
}

.contact-direct {
    display: grid;
    gap: 10px;
    margin-top: 36px;
}

.contact-direct a {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.contact-direct span {
    color: #8f827d;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.contact-direct strong {
    color: var(--white);
    font-size: 14px;
}

.contact-card {
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--radius-lg);
    background: var(--cream);
    box-shadow: var(--shadow-dark);
}

.lead-form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.lead-form label {
    display: grid;
    gap: 8px;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

.lead-form input,
.lead-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    color: var(--ink);
    padding: 13px 14px;
    outline: 0;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(232, 68, 44, .09);
}

.lead-form textarea {
    resize: vertical;
    min-height: 130px;
}

.form-privacy {
    color: var(--muted);
    font-size: 11px;
    text-align: center;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.form-alert {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 13px;
}

.form-alert.success {
    border: 1px solid rgba(46, 159, 101, .26);
    background: rgba(46, 159, 101, .10);
    color: #23794d;
}

.form-alert.error {
    border: 1px solid rgba(214, 59, 74, .25);
    background: rgba(214, 59, 74, .09);
    color: #a82c38;
}

.site-footer {
    overflow: hidden;
    padding: 76px 0 42px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    background: #0b0d11;
}

.footer-headline-wrap {
    width: min(100% - 96px, var(--container));
    margin: 0 auto 70px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-headline {
    max-width: 12ch;
    color: #e8442c;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: clamp(48px, 8.2vw, 126px);
    font-weight: 700;
    line-height: .9;
    letter-spacing: -.075em;
    text-transform: uppercase;
}

.footer-headline span {
    color: var(--primary);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a,
.footer-note {
    color: #89919c;
    font-size: 12px;
}

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

.content-section {
    padding-top: 150px;
    min-height: 80vh;
}

.content-wrap {
    max-width: 960px;
}

.entry-card {
    padding: 48px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.entry-card h1 {
    margin-bottom: 24px;
    color: var(--ink);
    font-size: clamp(34px, 5vw, 58px);
}

.entry-content {
    color: var(--text);
}

.entry-content>*+* {
    margin-top: 1.2em;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1100px) {

    .wrap,
    .nav-inner {
        width: min(100% - 64px, var(--container));
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-card {
        max-width: 760px;
        transform: none;
    }

    .offer-layout {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .offer-copy,
    .faq-intro {
        position: static;
    }

    .process-grid,
    .results-grid {
        grid-template-columns: 1fr 1fr;
    }

    .price-card {
        grid-template-columns: 1fr;
    }

    .faq-layout,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 58px;
    }
}

@media (max-width: 860px) {
    .menu-toggle {
        display: block;
        z-index: 102;
    }

    .primary-navigation {
        position: fixed;
        inset: 0;
        padding: 110px 32px 40px;
        background: rgba(18, 16, 15, .985);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 34px;
        transform: translateX(100%);
        transition: transform .28s ease;
    }

    .primary-navigation.open {
        transform: translateX(0);
    }

    .menu-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .menu-list a {
        font-family: "Be Vietnam Pro", sans-serif;
        font-size: 28px;
        color: var(--white);
    }

    .nav-cta {
        margin-top: auto;
    }

    .section-heading,
    .testimonial-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .problem-card {
        min-height: 230px;
    }
}

@media (max-width: 640px) {

    .wrap,
    .nav-inner {
        width: min(100% - 40px, var(--container));
    }

    section {
        padding: 78px 0;
    }

    .nav-inner {
        min-height: 70px;
    }

    .hero {
        min-height: auto;
        padding: 132px 0 78px;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 58px);
    }

    .hero .lede {
        font-size: 15px;
    }

    .cta-row {
        align-items: stretch;
        flex-direction: column;
    }

    .cta-row .btn {
        width: 100%;
    }

    .dashboard-card {
        padding: 20px;
    }

    .chart {
        height: 180px;
    }

    .stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-title {
        font-size: 36px;
    }

    .offer-item {
        grid-template-columns: 46px 1fr;
        padding: 22px;
        gap: 18px;
    }

    .offer-num {
        width: 42px;
        height: 42px;
    }

    .process-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .result-card {
        min-height: 190px;
    }

    .testi-card {
        padding: 30px 24px;
    }

    .price-card {
        padding: 30px 22px;
        gap: 42px;
    }

    .price-checklist {
        grid-template-columns: 1fr;
    }

    .price-box {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 26px 20px;
    }

    .contact-direct a {
        flex-direction: column;
        gap: 6px;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .entry-card {
        padding: 28px 22px;
    }
}

/* ---------- COMPLEMENTOS DA VERSÃO PHP PURA ---------- */
.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 9999;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    transition: top .2s ease;
}

.skip-link:focus {
    top: 16px;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .28);
    transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .34);
}

.whatsapp-float svg {
    width: 29px;
    height: 29px;
    fill: currentColor;
}

.form-alert strong {
    display: block;
    margin-bottom: 2px;
}

.form-note-local {
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

button[disabled] {
    cursor: wait;
    opacity: .7;
}

@media (max-width: 640px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }
}

/* ---------- LOGO WEBP + SELETOR DE TEMA ---------- */
html {
    color-scheme: dark;
}

html[data-theme="light"] {
    color-scheme: light;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.brand {
    flex: 0 0 auto;
    min-width: 0;
}

.brand-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 210px;
    max-height: 52px;
    object-fit: contain;
}

.footer-logo {
    max-width: 185px;
    max-height: 46px;
}

.brand-text {
    white-space: nowrap;
}

.primary-navigation {
    margin-left: auto;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-toggle {
    position: relative;
    display: inline-grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    color: var(--white);
    cursor: pointer;
    transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    border-color: rgba(232, 68, 44, .55);
    background: rgba(232, 68, 44, .10);
    color: var(--primary-hover);
}

.theme-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.theme-icon-moon {
    display: none;
}

html[data-theme="light"] .theme-icon-sun {
    display: none;
}

html[data-theme="light"] .theme-icon-moon {
    display: block;
}

body,
.site-header,
.hero,
.on-light,
.dark-section,
.results-section,
.pricing-section,
.contact-section,
.site-footer,
.dashboard-card,
.problem-card,
.offer-item,
.process-card,
.result-card,
.testi-card,
.price-card,
.price-box,
.faq-item,
.contact-card,
.lead-form input,
.lead-form textarea {
    transition: background-color .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
}

/* Tema claro: a estrutura inteira muda, sem perder a cor principal #e8442c. */
html[data-theme="light"] body {
    background: #f4f5f7;
    color: #2d3137;
}

html[data-theme="light"] .on-light {
    background: #ffffff;
    color: #2d3137;
}

html[data-theme="light"] .dark-section,
html[data-theme="light"] .results-section,
html[data-theme="light"] .pricing-section,
html[data-theme="light"] .contact-section {
    background: #f4f5f7;
    color: #2d3137;
}

html[data-theme="light"] .site-header {
    background: rgba(248, 244, 241, .78);
    border-bottom-color: rgba(45, 49, 55, .06);
}

html[data-theme="light"] .site-header.scrolled {
    background: rgba(248, 244, 241, .96);
    border-bottom-color: rgba(45, 49, 55, .12);
    box-shadow: 0 10px 32px rgba(45, 49, 55, .06);
}

html[data-theme="light"] .brand {
    color: #20242a;
}

html[data-theme="light"] .menu-list a {
    color: #59616c;
}

html[data-theme="light"] .menu-list a:hover {
    color: #20242a;
}

html[data-theme="light"] .theme-toggle,
html[data-theme="light"] .menu-toggle {
    border-color: rgba(45, 49, 55, .14);
    background: rgba(255, 255, 255, .72);
    color: #2d3137;
    box-shadow: 0 8px 24px rgba(45, 49, 55, .06);
}

html[data-theme="light"] .menu-toggle span {
    background: #2d3137;
}

html[data-theme="light"] .hero {
    background:
        radial-gradient(circle at 10% 10%, rgba(232, 68, 44, .15), transparent 35%),
        linear-gradient(135deg, #fff 0%, #f4f5f7 56%, #eceff2 100%);
}

html[data-theme="light"] .hero::before {
    opacity: .7;
    background-image: linear-gradient(rgba(45, 49, 55, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(45, 49, 55, .055) 1px, transparent 1px);
}

html[data-theme="light"] .hero h1,
html[data-theme="light"] .offer-copy .section-title,
html[data-theme="light"] .price-copy h2,
html[data-theme="light"] .contact-copy h2 {
    color: #20242a;
}

html[data-theme="light"] .hero .lede,
html[data-theme="light"] .offer-lede,
html[data-theme="light"] .price-copy>p:not(.plan-name),
html[data-theme="light"] .contact-copy>p:not(.eyebrow),
html[data-theme="light"] .section-heading-dark>p {
    color: #69717c;
}

html[data-theme="light"] .trust-row {
    color: #69717c;
}

html[data-theme="light"] .btn-outline {
    border-color: rgba(45, 49, 55, .38);
    color: #2d3137;
}

html[data-theme="light"] .btn-outline:hover {
    border-color: var(--primary);
    color: #20242a;
    background: rgba(232, 68, 44, .08);
}

html[data-theme="light"] .text-link {
    color: #20242a;
}

html[data-theme="light"] .dashboard-card {
    border-color: rgba(45, 49, 55, .11);
    background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(248, 244, 241, .98));
    color: #2d3137;
    box-shadow: 0 28px 85px rgba(40, 46, 55, .15);
}

html[data-theme="light"] .dashboard-kicker,
html[data-theme="light"] .stat-tile .lbl {
    color: #69717c;
}

html[data-theme="light"] .status-badge {
    border-color: rgba(45, 49, 55, .11);
    color: #59616c;
    background: rgba(255, 255, 255, .7);
}

html[data-theme="light"] .chart {
    background: rgba(45, 49, 55, .025);
}

html[data-theme="light"] .chart-grid {
    background-image: linear-gradient(rgba(45, 49, 55, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(45, 49, 55, .07) 1px, transparent 1px);
}

html[data-theme="light"] .stat-tile {
    border-color: rgba(45, 49, 55, .09);
    background: rgba(255, 255, 255, .72);
}

html[data-theme="light"] .stat-tile .num {
    color: #20242a;
}

html[data-theme="light"] .problem-card,
html[data-theme="light"] .process-card,
html[data-theme="light"] .testi-card,
html[data-theme="light"] .faq-item,
html[data-theme="light"] .contact-card,
html[data-theme="light"] .entry-card {
    background: #fff;
    border-color: #d8dce2;
}

html[data-theme="light"] .offer-item {
    border-color: rgba(45, 49, 55, .11);
    background: linear-gradient(140deg, rgba(255, 255, 255, .9), rgba(250, 246, 243, .88));
    box-shadow: 0 14px 36px rgba(45, 49, 55, .05);
}

html[data-theme="light"] .offer-item h3 {
    color: #20242a;
}

html[data-theme="light"] .offer-item p {
    color: #69717c;
}

html[data-theme="light"] .offer-item:hover {
    border-color: rgba(232, 68, 44, .42);
    background: rgba(232, 68, 44, .055);
}

html[data-theme="light"] .result-card {
    border-color: rgba(45, 49, 55, .11);
    background: linear-gradient(145deg, #fff, #eef1f4);
    box-shadow: 0 18px 48px rgba(45, 49, 55, .07);
}

html[data-theme="light"] .result-card .lbl,
html[data-theme="light"] .results-note {
    color: #69717c;
}

html[data-theme="light"] .carousel-button {
    background: #fff;
    color: #20242a;
}

html[data-theme="light"] .price-card {
    border-color: rgba(45, 49, 55, .11);
    background: radial-gradient(circle at 85% 10%, rgba(232, 68, 44, .14), transparent 36%), #fff;
    box-shadow: 0 24px 70px rgba(45, 49, 55, .10);
}

html[data-theme="light"] .price-checklist li {
    color: #59616c;
}

html[data-theme="light"] .price-box {
    border-color: rgba(45, 49, 55, .11);
    background: #f4f5f7;
}

html[data-theme="light"] .price-amount {
    color: #20242a;
}

html[data-theme="light"] .price-per {
    color: #69717c;
}

html[data-theme="light"] .contact-section {
    background: radial-gradient(circle at 0% 100%, rgba(232, 68, 44, .12), transparent 35%), #f4f5f7;
}

html[data-theme="light"] .contact-direct a {
    border-bottom-color: rgba(45, 49, 55, .12);
}

html[data-theme="light"] .contact-direct span {
    color: #69717c;
}

html[data-theme="light"] .contact-direct strong {
    color: #20242a;
}

html[data-theme="light"] .contact-card {
    box-shadow: 0 24px 70px rgba(45, 49, 55, .10);
}

html[data-theme="light"] .site-footer {
    border-top-color: rgba(45, 49, 55, .10);
    background: #e8ebef;
}

html[data-theme="light"] .footer-headline-wrap {
    border-bottom-color: rgba(45, 49, 55, .12);
}

html[data-theme="light"] .footer-headline {
    color: #20242a;
}

html[data-theme="light"] .footer-links a,
html[data-theme="light"] .footer-note {
    color: #69717c;
}

@media (max-width: 860px) {
    .nav-inner {
        gap: 16px;
    }

    .brand-logo {
        max-width: 175px;
        max-height: 46px;
    }

    .primary-navigation {
        margin-left: 0;
    }

    html[data-theme="light"] .primary-navigation {
        background: rgba(248, 244, 241, .992);
    }

    html[data-theme="light"] .primary-navigation .menu-list a {
        color: #20242a;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding-top: 54px;
    }

    .footer-headline-wrap {
        width: min(100% - 48px, var(--container));
        margin-bottom: 42px;
        padding-bottom: 42px;
    }

    .footer-headline {
        max-width: 10ch;
        font-size: clamp(42px, 15vw, 70px);
        line-height: .92;
        letter-spacing: -.065em;
    }
}

@media (max-width: 640px) {
    .brand-logo {
        max-width: 145px;
        max-height: 40px;
    }

    .theme-toggle,
    .menu-toggle {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .header-controls {
        gap: 7px;
    }

    .footer-logo {
        max-width: 165px;
        max-height: 42px;
    }
}

@media (max-width: 860px) {
    .theme-toggle {
        z-index: 102;
    }
}