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

:root {
    --bg:        #0d0f0e;
    --bg2:       #131615;
    --bg3:       #1a1e1c;
    --surface:   #1f2421;
    --border:    rgba(255,255,255,0.08);
    --border2:   rgba(255,255,255,0.04);
    --white:     #f4f6f4;
    --off:       #a8b4ac;
    --muted:     #5c6660;
    --green:     #4ade80;
    --green-dk:  #22c55e;
    --green-glow:rgba(74,222,128,0.15);
    --blue:      rgba(37,99,235,0.88);
    --blue-dk:   rgba(29,78,216.1);
    --blue-glow: rgba(37,99,235,.25);
    --red:       #f87171;
    --amber:     rgba(255,192,0,0.9);

    --f-head:    'Nobile', Arial, sans-serif;
    --f-body:    'Manrope', sans-serif;

    --max:       1060px;
    --pad:       clamp(1.25rem, 5vw, 2.5rem);
    --radius:    12px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--f-body);
    background: var(--bg);
    color: var(--white);
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
}
section { padding: clamp(4rem,9vw,7rem) 0; }

footer.wrap { padding: 1rem var(--pad);}

.underline { position: relative; }
.underline::after {
    content: '';
    position: absolute;
    bottom: 0rem;
    left: -0.5rem;
    right: -0.5rem;
    height: 0.75rem;
    z-index: -1;
    background-image: url('/images/underline.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

/* ──────────────────────────────────────────── TYPOGRAPHY */
h1, h2, h3 {
    font-family: var(--f-head);
    font-weight: 500;
    line-height: 1.15; 
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
em { font-style: italic; }
a { color: var(--green); transition: color 0.5s; }
a:hover { color: var(--white); }
.accent { color: var(--green); }
.label {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: .75rem;
    display: block;
}

/* ──────────────────────────────────────────── NAV */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    padding: 1rem var(--pad);
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(13,15,14,0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: all .3s;
}
.nav-name {
    font-family: var(--f-head); font-size: 1.1rem; font-weight: 400;
    color: var(--white); text-decoration: none;
}
.nav-name em { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
    font-size: .8rem; font-weight: 500;
    color: var(--off); text-decoration: none;
    transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-btn {
    background: var(--green); color: var(--bg) !important;
    padding: .55rem 1.2rem; border-radius: 6px;
    font-weight: 600 !important; font-size: .8rem !important;
    transition: opacity .2s, transform .15s !important;
}
.nav-btn:hover { opacity: .85; transform: translateY(-1px); }

/* ──────────────────────────────────────────── STICKY CTA BAR */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 150;
    background: var(--green);
    padding: 1rem var(--pad);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar p {
    font-size: .88rem; font-weight: 600;
    color: var(--bg);
}
.sticky-bar a {
    background: var(--bg);
    color: var(--green);
    font-size: .82rem;
    font-weight: 700;
    padding: .55rem 1.4rem;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .2s;
}
.sticky-bar a:hover { opacity: .85; }
.sticky-close {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--bg);
    font-size: 1.1rem;
    opacity: .6;
    line-height: 1;
}

/* ──────────────────────────────────────────── BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: var(--f-body);
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
}
.btn-green {
    background: var(--green);
    color: var(--bg);
    padding: 1rem 2.25rem;
    font-size: 1rem;
}
.btn-green:hover {
    background: var(--green-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--green-glow); 
}
.btn-blue {
    background: var(--blue);
    color: var(--white);
    padding: 1rem 2.25rem;
    font-size: 1rem;
}
.btn-blue:hover {
    background: var(--blue-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--blue-glow); 
}
.btn-ghost {
    background: transparent;
    color: var(--off);
    border: 1px solid var(--border);
    padding: 1rem 1.75rem;
    font-size: .9rem;
}
.btn-ghost:hover {
    border-color: var(--off);
    color: var(--white); 
}

/* ──────────────────────────────────────────── HERO */
#hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.hero-glow {
    position: absolute;
    top: -200px;
    width: 100%;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74,222,128,.07) 0%, transparent 65%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1; 
}

.hero-heading {
    margin-bottom: 1.5rem;
    color: var(--white); 
}
.hero-heading em { color: var(--green); }

.hero-sub {
    font-size: clamp(.95rem, 2vw, 1.2rem);
    color: var(--off);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3rem; 
}

.cta-subtext {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-bottom: 0.56em;
    font-size: .8rem;
    color: var(--off);
}
.cta-subtext::before {
    content: '🔒';
    font-size: .8rem; 
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    max-width: 680px;
}
.hstat {
    flex: 1;
    min-width: 140px;
    padding: 1.1rem 1.4rem;
    border-right: 1px solid var(--border);
}
.hstat:last-child { border-right: none; }
.hstat-val {
    font-family: var(--f-head);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1;
    color: var(--green);
}
.hstat-label { 
    font-size: .85rem;
    color: var(--off);
    margin-top: .25rem; 
}

/* ──────────────────────────────────────────── AGITATION */
#agitate {
    background: var(--bg2);
    border-bottom: 1px solid var(--border); 
}
.agitate-intro {
    max-width: 660px;
    margin-bottom: 3rem;
}
.agitate-intro h2 { margin-bottom: 1rem; }
.agitate-intro p {
    color: var(--off);
    font-size: 1rem;
    line-height: 1.8; 
}

.pain-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.pain-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.4rem 1.6rem;
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    transition: border-color .25s;
}
.pain-item:hover { border-color: rgba(248,113,113,.25); }
.pain-x {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(248,113,113,.1);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    flex-shrink: 0;
    margin-top: .1rem;
}
.pain-item p {
    font-size: .9rem;
    color: var(--off);
    line-height: 1.7; 
}
.pain-item strong {
    color: var(--white);
    font-weight: 500; 
}

.agitate-bridge {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(74,222,128,.06) 0%, transparent 60%);
    border: 1px solid rgba(74,222,128,.2);
    border-radius: var(--radius);
}
.agitate-bridge p {
    font-family: var(--f-head);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
}
.agitate-bridge strong {
    color: var(--green); 
}

/* ──────────────────────────────────────────── CREDIBILITY */
#credibility { border-bottom: 1px solid var(--border); }
.cred-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem,5vw,5rem);
    align-items: center;
}
.cred-photo {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px; aspect-ratio: 4/5;
    display: flex; flex-direction: column;
    align-items: center; justify-content: flex-end;
    padding: 2rem; position: relative; overflow: hidden;
}
.cred-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(74,222,128,.06) 0%, transparent 50%);
}
.cred-photo-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cred-photo-inner svg { opacity: .25; }
.cred-nameplate {
    position: relative;
    z-index: 1;
    width: 100%;
    background: rgba(13,15,14,.8);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem 1.25rem;
}
.cred-nameplate .nm {
    font-family: var(--f-head);
    font-size: 1.1rem;
    color: var(--white); 
}
.cred-nameplate .nr {
    font-size: .72rem;
    color: var(--green);
    margin-top: .15rem;
    font-weight: 500;
    letter-spacing: .06em; 
}

.cred-points {
    display: flex;
    flex-direction: column;
    gap: 1.75rem; 
}
.cp-head {
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: .4rem;
}
.cp-text {
    font-size: 1rem;
    color: var(--off);
    line-height: 1.75; 
}
.cp-text strong {
    color: var(--white);
    font-weight: 500; 
}

/* ──────────────────────────────────────────── COMPARISON */
#comparison {
    background: var(--bg2);
    border-bottom: 1px solid var(--border); 
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 2.5rem;
    font-size: .88rem;
}
.compare-table thead tr {
    background: var(--surface);
}
.compare-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    color: var(--off);
}
.compare-table th:last-child { border-right: none; }
.compare-table th.you-col {
    background: rgba(74,222,128,.08);
    color: var(--green);
}
.compare-table td {
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    color: var(--off);
    vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:last-child { border-right: none; }
.compare-table td.you-col {
    background: rgba(74,222,128,.04);
    color: var(--green); font-weight: 500;
}
.compare-table td:first-child { color: var(--muted); font-size: .82rem; }
.bad { color: var(--red) !important; }
.good { color: var(--green) !important; font-weight: 500; }
.compare-table tbody tr:hover td { background: rgba(255,255,255,.02); }
.compare-table tbody tr:hover td.you-col { background: rgba(74,222,128,.07); }

/* ──────────────────────────────────────────── SERVICES */
#services { border-bottom: 1px solid var(--border); }
.services-group h3 {
    margin-top: 1.5rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 1rem;
}
.services-grid details > summary { list-style: none; }
.services-grid details > summary::-webkit-details-marker { display: none; }
.services-grid details > summary::before {
    content: '\002B'; /* plus */
    padding-right: 0.5rem; 
    font-weight: 900;
}
.services-grid details[open] > summary::before { content: '\2212'; /* minus */ }
.svc {
    background: var(--bg);
    padding: 1.75rem;
    transition: background .2s;
}
.svc:hover { background: var(--surface); }
.svc h3 {
    font-family: var(--f-head);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: .5rem;
}
.svc p {
    font-size: .82rem;
    color: var(--off);
    line-height: 1.65; 
}

/* ──────────────────────────────────────────── RESULTS */
#results {
    background: var(--bg2);
    border-bottom: 1px solid var(--border); 
}
.results-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.res-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: border-color .2s, transform .2s;
}
.res-card:hover {
    border-color: rgba(74,222,128,.3);
    transform: translateY(-3px); 
}
.res-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green), transparent);
}
.res-num {
    font-family: var(--f-head);
    font-size: 2.6rem;
    font-weight: 400;
    color: var(--green);
    font-style: italic;
    line-height: 1;
    margin-bottom: .6rem;
}
.res-desc {
    font-size: .92rem;
    color: var(--off);
    line-height: 1.7; 
}
.res-tag {
    margin-top: 1.1rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ──────────────────────────────────────────── SOCIAL PROOF */
#proof { border-bottom: 1px solid var(--border); }
.proof-quote {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}
.quote-glyph {
    font-family: var(--f-head);
    font-size: 6rem;
    line-height: .7;
    color: rgba(74,222,128,.2);
    margin-bottom: .5rem;
}
.quote-body {
    font-family: var(--f-head);
    font-size: clamp(1.4rem,3vw,2rem);
    font-style: italic;
    font-weight: 300;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.quote-attr {
    font-size: .82rem;
    color: var(--muted); 
}
.quote-attr strong { color: var(--off); }

.proof-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}
.logo-item {
    font-family: var(--f-head);
    font-size: 1rem;
    font-style: italic;
    font-weight: 300;
    color: var(--muted);
    letter-spacing: .04em;
    transition: all .2s;
    filter: grayscale(1);
}
.logo-item:hover {
    color: var(--off);
    filter: grayscale(0); 
}

/* ──────────────────────────────────────────── PRICING */
#pricing {
    background: var(--bg2);
    border-bottom: 1px solid var(--border); 
}
.pricing-wrapper, .pricing-wrapper-full { margin-top: 2.5rem; }
.pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
.pricing-wrapper-full { grid-template-columns: 1fr; }
.price-card {
    border: 1px solid rgba(74,222,128,.35);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg);
}
.price-top {
    background: linear-gradient(135deg, rgba(74,222,128,.1) 0%, transparent 70%);
    padding: 2rem;
    border-bottom: 1px solid rgba(74,222,128,.15);
}
.price-badge {
    display: inline-block;
    background: var(--green);
    color: var(--bg);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .25rem .7rem;
    border-radius: 99px;
    margin-bottom: 1rem;
}
.price-name {
    font-family: var(--f-head);
    font-size: 1.4rem;
    margin-bottom: .5rem; 
}
.price-amount {
    font-family: var(--f-head);
    font-size: 3rem;
    font-weight: 500;
    color: var(--green);
    line-height: 1;
}
.price-amount sup {
    font-size: 1.3rem;
    vertical-align: super; 
}
.price-period {
    font-size: .75rem;
    color: var(--off);
    margin-top: .3rem;
}
.price-body { padding: 2rem; }
.price-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    margin-bottom: 1.75rem; 
}
.price-list li {
    display: flex;
    gap: .7rem;
    font-size: .9rem;
    color: var(--off);
    align-items: flex-start;
}
.price-list li .ck {
    color: var(--green);
    flex-shrink: 0;
    font-weight: 700; 
}

.price-context {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.ctx-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.ctx-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .5rem;
}
.ctx-val {
    font-family: var(--f-head);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: .35rem; 
}
.ctx-desc {
    font-size: .9rem;
    color: var(--off);
    line-height: 1.65; 
}
.ctx-card.highlight-card { border-color: rgba(74,222,128,.25); }
.ctx-card.highlight-card .ctx-val { color: var(--green); }

.cta-wrapper { margin-top: 1.5em; }

/* ──────────────────────────────────────────── GUARANTEE */
#guarantee { border-bottom: 1px solid var(--border); }
.guarantee-wrap {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(2rem,5vw,5rem);
    align-items: center;
}
.g-seal {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px solid var(--green);
    background: radial-gradient(circle, rgba(74,222,128,.08) 0%, transparent 70%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 0 40px rgba(74,222,128,.15);
}
.g-seal .g-big {
    font-family: var(--f-body);
    font-size: 2.2rem;
    font-style: italic;
    font-weight: 600;
    color: var(--green);
    line-height: 1;
}
.g-seal .g-sm {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--off);
    margin-top: .35rem;
}
.guarantee-body h2 { margin-bottom: 1rem; }
.guarantee-body p {
    color: var(--off);
    font-size: .95rem;
    line-height: 1.8;
    max-width: 580px;
}
.guarantee-body strong {
    color: var(--white);
    font-weight: 500;
}

/* ──────────────────────────────────────────── OBJECTIONS */
#objections {
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
}
.obj-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 2.5rem;
}
.obj-item {
    background: var(--bg2);
    padding: 1.75rem;
}
.obj-q {
    font-family: var(--f-head);
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: .75rem;
}
.obj-a {
    font-size: .92rem;
    color: var(--off);
    line-height: 1.75;
}
.obj-a strong {
    color: var(--white);
    font-weight: 500;
}

/* ──────────────────────────────────────────── FREE TRIAL */
#trial { border-bottom: 1px solid var(--border); }
.trial-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem,5vw,5rem);
    align-items: center;
}
.trial-copy h2 { margin-bottom: 1rem; }
.trial-copy p {
    color: var(--off);
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem; 
}
.trial-copy p strong {
    color: var(--white);
    font-weight: 500;
}
.trial-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.trial-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.ts-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(74,222,128,.1);
    border: 1px solid rgba(74,222,128,.25);
    color: var(--green);
    font-size: .8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ts-body { padding-top: .25rem; }
.ts-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .2rem;
}
.ts-desc {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ──────────────────────────────────────────── URGENCY */
#urgency {
    background: var(--green);
    padding: 2.5rem 0;
}
.urgency-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.urgency-inner p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--bg);
}
.urgency-inner p span {
    opacity: .7;
    font-weight: 400;
    font-size: .88rem;
    display: block;
    margin-top: .2rem;
}
.btn-urgency {
    background: var(--bg);
    color: var(--green);
    padding: .9rem 2rem;
    font-size: .95rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .2s;
}
.btn-urgency:hover { opacity: .88; }

/* ──────────────────────────────────────────── FINAL CTA */
#cta {
    border-bottom: 1px solid var(--border);
    text-align: center;
    position: relative; overflow: hidden;
}
#cta::before {
    content: '';
    position: absolute;
    bottom: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74,222,128,.06) 0%, transparent 65%);
    pointer-events: none;
}
.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.free-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(74,222,128,.1);
    border: 1px solid rgba(74,222,128,.25);
    color: var(--green);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .4rem 1rem;
    border-radius: 99px;
    margin-bottom: 1.75rem;
}
#cta h2 {
    margin-bottom: 1.25rem;
    font-size: clamp(2rem,5vw,3.5rem);
}
#cta p {
    color: var(--off);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}
.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.cta-micro {
    font-size: .75rem;
    color: var(--muted);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.cta-micro span::before {
    content: '✓';
    padding-right: 0.4rem;
    color: var(--green);
}

/* ──────────────────────────────────────────── CONTACT */
#contact {
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
}
.contact-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--off);
    font-size: .88rem;
    font-weight: 500;
    transition: all .2s;
}
.contact-item:hover {
    border-color: rgba(74,222,128,.3);
    color: var(--white);
}

/* ──────────────────────────────────────────── FOOTER */
footer {
    padding: 1.75rem var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-name {
    font-family: var(--f-head);
    font-size: 1rem;
    color: var(--off);
}
.footer-name em { color: var(--green); }
.footer-copy {
    font-size: .75rem;
    color: var(--muted);
}
.footer-copy ul.links { list-style: none; }

/* ──────────────────────────────────────────── SCROLL REVEAL */
.r {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}
.r.in { opacity: 1; transform: none; }
.r2 { transition-delay: .1s; }
.r3 { transition-delay: .2s; }

/* ──────────────────────────────────────────── RESPONSIVE */
@media (max-width: 860px) {
    .cred-grid { grid-template-columns: 1fr; }
    .cred-photo { display: none; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .results-grid { grid-template-columns: 1fr 1fr; }
    .pricing-wrapper { grid-template-columns: 1fr; }
    .price-context { flex-direction: row; flex-wrap: wrap; }
    .ctx-card { flex: 1; min-width: 200px; }
    .guarantee-wrap { grid-template-columns: 1fr; text-align: center; }
    .g-seal { margin: 0 auto; }
    .obj-grid { grid-template-columns: 1fr; }
    .trial-inner { grid-template-columns: 1fr; }
    .compare-table { font-size: .78rem; }
    .compare-table th, .compare-table td { padding: .85rem 1rem; }
}
@media (max-width: 580px) {
    .nav-links li:not(:last-child) { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: 1fr; }
    .btn { width: 100%; }
    .hero-stats { flex-direction: column; }
    .hstat {
        border-right: none;
        border-bottom: 1px solid var(--border); 
    }
    .hstat:last-child { border-bottom: none; }
    .urgency-inner { 
        flex-direction: column;
        text-align: center; 
    }
    .hero-cta-group, .cta-btns, .contact-row { gap: 2rem; }
    .contact-row .contact-item { width: 100%; }
    .sticky-bar { flex-direction: column; gap: .75rem; }
}