/* ==============================================
   InboxIntelligence — v2
   Palette: Black / White / Grey / Gold
   Fonts: Instrument Serif + DM Sans
   ============================================== */

:root {
    --black: #0A0A0A;
    --black-2: #0F0F0F;
    --surface: #151515;
    --surface-2: #1A1A1A;
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(212,168,67,0.25);
    --text: #E8E8E8;
    --text-dim: #999999;
    --text-muted: #666666;
    --white: #FFFFFF;
    --gold: #C9A84C;
    --gold-light: #DBBF6A;
    --gold-dim: rgba(201,168,76,0.12);
    --gold-glow: rgba(201,168,76,0.08);
    --serif: 'Instrument Serif', Georgia, serif;
    --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --r: 10px;
    --r-lg: 16px;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--sans);
    background: var(--black);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

/* --- Grain overlay --- */
.grain {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px;
}

/* --- Tag pill --- */
.tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 6px 16px;
    border: 1px solid rgba(201,168,76,0.22);
    border-radius: 100px;
    background: var(--gold-dim);
    margin-bottom: 20px;
}

/* --- Section head --- */
.section-head { text-align: center; margin-bottom: 72px; }
.section-head h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: -0.01em;
    color: var(--white);
}
.section-head h2 em {
    font-style: italic;
    color: var(--gold);
}
.section-head__sub {
    font-size: 1.05rem;
    color: var(--text-dim);
    max-width: 540px;
    margin: 16px auto 0;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: var(--r);
    transition: all 0.35s var(--ease);
    white-space: nowrap;
}
.btn--gold {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 24px rgba(201,168,76,0.18), 0 2px 8px rgba(0,0,0,0.4);
}
.btn--gold:hover {
    background: var(--gold-light);
    box-shadow: 0 0 40px rgba(201,168,76,0.3), 0 4px 16px rgba(0,0,0,0.5);
    transform: translateY(-2px);
}
.btn--outline {
    border: 1px solid var(--border);
    color: var(--text);
    background: transparent;
}
.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.btn--lg { padding: 18px 42px; font-size: 0.95rem; border-radius: var(--r-lg); }
.btn--sm { padding: 12px 24px; font-size: 0.82rem; }

/* ==============================================
   Navigation
   ============================================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 28px;
    transition: all 0.4s var(--ease);
}
.nav.scrolled {
    background: rgba(10,10,10,0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 14px 28px;
}
.nav__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav__logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--serif);
    font-size: 0.85rem;
    font-weight: 400;
    font-style: italic;
    border-radius: 7px;
    letter-spacing: -0.04em;
}
.nav__logo-text {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--white);
}
.nav__logo-text em {
    font-style: normal;
    color: var(--gold);
}
.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav__links a {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-dim);
    transition: color 0.3s var(--ease);
    letter-spacing: 0.01em;
}
.nav__links a:hover { color: var(--white); }
.nav__cta {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 10px 22px;
    background: var(--gold);
    color: var(--black);
    border-radius: var(--r);
    transition: all 0.3s var(--ease);
}
.nav__cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 6px;
    z-index: 110;
}
.nav__hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.35s var(--ease);
    transform-origin: center;
}
.nav__hamburger.active span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav__hamburger.active span:last-child  { transform: translateY(-3.75px) rotate(-45deg); }

/* ==============================================
   Hero
   ============================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 100px;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero__grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201,168,76,0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.028) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 65% 55% at 50% 45%, black 15%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 45%, black 15%, transparent 70%);
}
.hero__radial {
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 55%);
}
.hero__wrap {
    position: relative;
    text-align: center;
    max-width: 820px;
}
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 8px 20px;
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: 100px;
    background: rgba(201,168,76,0.04);
    margin-bottom: 36px;
}
.hero__pulse {
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(201,168,76,0.45); }
    50% { opacity: 0.6; box-shadow: 0 0 0 7px rgba(201,168,76,0); }
}
.hero__title {
    font-family: var(--serif);
    font-size: clamp(3rem, 6.5vw, 5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 28px;
}
.hero__title em {
    font-style: italic;
    color: var(--gold);
}
.hero__sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--text-dim);
    max-width: 620px;
    margin: 0 auto 44px;
    line-height: 1.75;
}
.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 72px;
}
.hero__proof {
    display: inline-flex;
    align-items: center;
    gap: 36px;
    padding: 24px 44px;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    background: rgba(255,255,255,0.015);
}
.hero__stat { text-align: center; }
.hero__stat strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
}
.hero__stat span {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}
.hero__stat-sep {
    width: 1px;
    height: 36px;
    background: var(--border);
}
.hero__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
}
.hero__scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 0.7; }
}

/* ==============================================
   Problem
   ============================================== */
.problem {
    padding: 140px 0;
    background: var(--surface);
}
.problem__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.problem__text h2 {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 28px;
}
.problem__text h2 em { font-style: italic; color: var(--gold); }
.problem__text p {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 16px;
}
.problem__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.problem__card {
    padding: 28px;
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: border-color 0.3s var(--ease);
}
.problem__card:hover { border-color: var(--border-hover); }
.problem__card-num {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 8px;
}
.problem__card p {
    font-size: 0.88rem;
    color: var(--text-dim);
    line-height: 1.55;
}

/* ==============================================
   Steps
   ============================================== */
.steps {
    padding: 140px 0;
    background: var(--black);
}
.steps__track { position: relative; }
.steps__line {
    position: absolute;
    top: 38px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}
.steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
}
.steps__item {
    padding: 36px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: all 0.4s var(--ease);
}
.steps__item:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}
.steps__num {
    font-family: var(--serif);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}
.steps__item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
}
.steps__item p {
    font-size: 0.88rem;
    color: var(--text-dim);
    line-height: 1.65;
}

/* ==============================================
   Services
   ============================================== */
.services {
    padding: 140px 0;
    background: var(--surface);
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.services__card {
    padding: 40px 36px;
    background: rgba(255,255,255,0.018);
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: all 0.4s var(--ease);
    position: relative;
}
.services__card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
.services__card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(0,0,0,0.25);
}
.services__card:hover::after { opacity: 1; }
.services__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-dim);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 10px;
    color: var(--gold);
    margin-bottom: 24px;
}
.services__card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}
.services__card p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 20px;
}
.services__badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: 100px;
    background: rgba(201,168,76,0.04);
}

/* ==============================================
   Offer Stack
   ============================================== */
.offer {
    padding: 140px 0;
    background: var(--black);
}
.offer__inner {
    max-width: 700px;
    margin: 0 auto;
}
.offer__inner .section-head { margin-bottom: 48px; }
.offer__stack {
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--surface);
}
.offer__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 32px;
    border-bottom: 1px solid var(--border);
    transition: background 0.25s var(--ease);
}
.offer__row:hover { background: rgba(255,255,255,0.02); }
.offer__row:last-of-type { border-bottom: none; }
.offer__row--bonus .offer__item {
    color: var(--gold);
}
.offer__row--bonus .offer__item strong {
    font-weight: 700;
    margin-right: 4px;
}
.offer__row--featured {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 28px 32px;
    background: var(--gold-dim);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    position: relative;
}
.offer__row--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.offer__row--featured .offer__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.offer__row--featured .offer__value {
    align-self: flex-end;
    font-size: 1rem;
    color: var(--gold);
}
.offer__item-desc {
    display: block;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-dim);
    line-height: 1.65;
    max-width: 560px;
}
.offer__item {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--white);
}
.offer__value {
    font-family: var(--serif);
    font-size: 0.92rem;
    font-style: italic;
    color: var(--text-dim);
    white-space: nowrap;
}
.offer__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    background: var(--gold-dim);
    border-top: 2px solid var(--gold);
}
.offer__total span:first-child {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.offer__total span:last-child {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}
.offer__price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px;
    background: var(--black-2);
    border-top: 2px solid var(--border);
}
.offer__price-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.offer__price-amount {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    line-height: 1;
}
.offer__price-amount span {
    font-family: var(--sans);
    font-size: 1rem;
    font-style: normal;
    color: var(--text-dim);
    font-weight: 500;
}
.offer__pitch {
    text-align: center;
    padding: 28px 32px;
    background: rgba(255,255,255,0.02);
    border-radius: 0 0 var(--r-lg) var(--r-lg);
}
.offer__pitch p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
}
.offer__pitch-sub {
    font-size: 0.82rem !important;
    font-weight: 400 !important;
    color: var(--text-dim) !important;
    margin-top: 6px;
}
.offer__footer {
    text-align: center;
    margin-top: 40px;
}
.offer__footer p {
    font-size: 0.88rem;
    color: var(--text-dim);
    margin-bottom: 20px;
}

/* ==============================================
   Guarantee
   ============================================== */
.guarantee {
    padding: 140px 0;
    background: var(--surface);
    overflow: hidden;
}
.guarantee__inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.guarantee__inner h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.8vw, 2.6rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 28px;
}
.guarantee__inner h2 em {
    font-style: italic;
    color: var(--gold);
}
.guarantee__inner > p {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 16px;
}
.guarantee__why {
    font-size: 0.88rem !important;
    color: var(--text-muted) !important;
    font-style: italic;
    margin-top: 24px !important;
}

/* ==============================================
   Built for Pest Control (Niche)
   ============================================== */
.niche {
    padding: 140px 0;
    background: var(--black);
    overflow: hidden;
}
.niche__layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
    align-items: start;
}
.niche__content h2 {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}
.niche__content h2 em { font-style: italic; color: var(--gold); }
.niche__content > p {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 36px;
}
.niche__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.niche__list li {
    padding-left: 20px;
    border-left: 2px solid var(--gold);
}
.niche__list li strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.niche__list li span {
    font-size: 0.88rem;
    color: var(--text-dim);
    line-height: 1.6;
}
.niche__scenarios {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.niche__scenario {
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: border-color 0.3s var(--ease);
}
.niche__scenario:hover { border-color: var(--border-hover); }
.niche__scenario-icon {
    color: var(--gold);
    margin-bottom: 14px;
}
.niche__scenario h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}
.niche__scenario p {
    font-size: 0.82rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ==============================================
   Demo / Phone
   ============================================== */
.demo {
    padding: 140px 0;
    background: var(--black);
    overflow: hidden;
}
.demo__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.demo__content h2 {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
}
.demo__content h2 em { font-style: italic; color: var(--gold); }
.demo__content p {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Phone mockup */
.demo__phone {
    display: flex;
    justify-content: center;
}
.demo__phone-frame {
    width: 300px;
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}
.demo__phone-notch {
    width: 100px;
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    margin: 8px auto 16px;
}
.demo__phone-screen {
    padding: 12px 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 460px;
    overflow: hidden;
}
.demo__msg {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.78rem;
    line-height: 1.55;
    max-width: 85%;
    opacity: 0;
    transform: translateY(10px);
    animation: chatIn 0.4s var(--ease-out) forwards;
}
.demo__msg--them {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    color: var(--text);
}
.demo__msg--you {
    background: var(--gold);
    color: var(--black);
    border-bottom-right-radius: 4px;
    align-self: flex-end;
    font-weight: 500;
}
.demo__msg-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 4px;
}
.demo__msg[data-chat="1"] { animation-delay: 0.2s; }
.demo__msg[data-chat="2"] { animation-delay: 0.9s; }
.demo__msg[data-chat="3"] { animation-delay: 1.6s; }
.demo__msg[data-chat="4"] { animation-delay: 2.3s; }
.demo__msg[data-chat="5"] { animation-delay: 3.0s; }
.demo__msg[data-chat="6"] { animation-delay: 3.7s; }
.demo__msg[data-chat="7"] { animation-delay: 4.4s; }
@keyframes chatIn {
    to { opacity: 1; transform: translateY(0); }
}

/* ==============================================
   Qualifier (Is This For You?)
   ============================================== */
.qualifier {
    padding: 140px 0;
    background: var(--surface);
}
.qualifier__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 880px;
    margin: 0 auto;
}
.qualifier__col {
    padding: 40px 36px;
    border-radius: var(--r);
    border: 1px solid var(--border);
}
.qualifier__col h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 24px;
}
.qualifier__col--yes {
    background: rgba(201,168,76,0.04);
    border-color: rgba(201,168,76,0.2);
}
.qualifier__col--yes h3 { color: var(--gold); }
.qualifier__col--no {
    background: rgba(255,255,255,0.015);
}
.qualifier__col--no h3 { color: var(--text-dim); }
.qualifier__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.qualifier__col li {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-dim);
    padding-left: 24px;
    position: relative;
}
.qualifier__col--yes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.7;
}
.qualifier__col--no li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.4;
}

/* ==============================================
   Results
   ============================================== */
.results {
    position: relative;
    padding: 140px 0;
    background: var(--surface);
    overflow: hidden;
}
.results__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 45% 45% at 20% 50%, rgba(201,168,76,0.035) 0%, transparent 55%),
        radial-gradient(ellipse 45% 45% at 80% 50%, rgba(201,168,76,0.035) 0%, transparent 55%);
}
.results__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.results__card {
    position: relative;
    padding: 40px 36px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: all 0.35s var(--ease);
    overflow: hidden;
}
.results__card:hover {
    border-color: var(--border-hover);
}
.results__card-accent {
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.35s var(--ease);
}
.results__card:hover .results__card-accent { opacity: 1; }
.results__card strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 12px;
}
.results__card p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ==============================================
   FAQ
   ============================================== */
.faq {
    padding: 140px 0;
    background: var(--black);
}
.faq__list {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq__item {
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: border-color 0.3s var(--ease);
    overflow: hidden;
}
.faq__item[open] { border-color: var(--border-hover); }
.faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    list-style: none;
    transition: background 0.3s var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { content: ''; }
.faq__q:hover { background: rgba(255,255,255,0.02); }
.faq__icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}
.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    background: var(--gold);
    border-radius: 1px;
    transition: transform 0.35s var(--ease);
}
.faq__icon::before {
    width: 12px; height: 1.5px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.faq__icon::after {
    width: 1.5px; height: 12px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__a {
    padding: 0 28px 24px;
}
.faq__a p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.75;
}

/* ==============================================
   CTA
   ============================================== */
.cta {
    position: relative;
    padding: 160px 0;
    background: var(--surface);
    overflow: hidden;
    text-align: center;
}
.cta__glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 55%);
    pointer-events: none;
}
.cta__inner { position: relative; }
.cta__inner h2 {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}
.cta__inner h2 em { font-style: italic; color: var(--gold); }
.cta__inner > p {
    font-size: 1.05rem;
    color: var(--text-dim);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.cta__note {
    display: block;
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==============================================
   Footer
   ============================================== */
.footer {
    padding: 72px 0 36px;
    background: var(--black);
    border-top: 1px solid var(--border);
}
.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    margin-bottom: 56px;
}
.footer__brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 14px;
    max-width: 280px;
}
.footer__cols { display: flex; gap: 64px; }
.footer__col h4 {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-dim);
    margin-bottom: 16px;
}
.footer__col a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: color 0.3s var(--ease);
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
    padding-top: 28px;
    border-top: 1px solid var(--border);
    text-align: center;
}
.footer__bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==============================================
   Reveal Animations
   ============================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==============================================
   Responsive
   ============================================== */
@media (max-width: 1024px) {
    .steps__grid { grid-template-columns: repeat(2, 1fr); }
    .steps__line { display: none; }
    .problem__layout { grid-template-columns: 1fr; gap: 56px; }
    .niche__layout { grid-template-columns: 1fr; gap: 48px; }
    .demo__layout { grid-template-columns: 1fr; gap: 56px; text-align: center; }
    .demo__content .tag { display: inline-block; }
}

@media (max-width: 768px) {
    .nav__links, .nav__cta { display: none; }
    .nav__hamburger { display: flex; }

    /* Mobile menu */
    .nav__links.open {
        display: flex;
        position: fixed;
        inset: 0;
        background: rgba(10,10,10,0.97);
        backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        z-index: 105;
    }
    .nav__links.open a {
        font-size: 1.3rem;
        color: var(--text);
    }
    .nav__cta.open {
        display: inline-flex;
        position: fixed;
        bottom: 60px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 106;
        padding: 14px 36px;
        font-size: 0.9rem;
    }

    .hero { padding: 120px 0 80px; min-height: auto; }
    .hero__title { font-size: clamp(2.4rem, 9vw, 3.2rem); }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .hero__proof {
        flex-direction: column;
        gap: 20px;
        padding: 28px 24px;
    }
    .hero__stat-sep { width: 40px; height: 1px; }

    .steps__grid { grid-template-columns: 1fr; }
    .services__grid { grid-template-columns: 1fr; }
    .results__grid { grid-template-columns: 1fr; }

    .footer__top { flex-direction: column; }
    .footer__cols { gap: 40px; }

    .qualifier__grid { grid-template-columns: 1fr; }
    .offer__row { padding: 16px 20px; }
    .offer__row--featured { padding: 24px 20px; }
    .offer__total { padding: 20px; }

    .problem, .steps, .services, .offer, .guarantee, .niche, .demo, .qualifier, .results, .faq, .cta {
        padding: 100px 0;
    }
    .section-head { margin-bottom: 52px; }
}

@media (max-width: 480px) {
    .wrap { padding: 0 18px; }
    .nav { padding: 14px 18px; }
    .demo__phone-frame { width: 260px; }
    .demo__phone-screen { max-height: 380px; }
    .demo__msg { font-size: 0.72rem; }
}
