/* ============================================
   OBL — Optimised By Life
   styles.css
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand gradient colours */
    --green-bright: #8DC63F;
    --green-mid:    #4CAF50;
    --yellow:       #FFE000;
    --cyan:         #00C8E0;
    --blue-mid:     #1E88E5;
    --blue-deep:    #1040A0;

    /* Gradient definitions */
    --grad-brand: linear-gradient(135deg, #8DC63F 0%, #FFE000 25%, #4CAF50 50%, #00C8E0 75%, #1E88E5 100%);
    --grad-brand-h: linear-gradient(135deg, #9ED44F 0%, #FFE840 25%, #5DBF60 50%, #10D8F0 75%, #2E98F5 100%);
    --grad-dark:  linear-gradient(180deg, #080C18 0%, #0D1225 100%);

    /* Neutrals */
    --bg-dark:    #080C18;
    --bg-dark-2:  #0D1225;
    --bg-light:   #F5F7FA;
    --bg-card:    #111827;
    --bg-card-2:  #161E2E;
    --white:      #FFFFFF;
    --text-main:  #E8ECF4;
    --text-muted: #8896B0;
    --text-dark:  #1A2035;
    --border:     rgba(255,255,255,0.08);
    --border-2:   rgba(255,255,255,0.14);

    /* Spacing */
    --section-py: 100px;
    --container:  1160px;

    /* Typography */
    --font: 'Inter', system-ui, -apple-system, sans-serif;

    /* Transitions */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font);
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- UTILITY ---------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: rgba(141,198,63,0.12);
    border: 1px solid rgba(141,198,63,0.3);
    color: var(--green-bright);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

/* Headline word colours */
.hl-green  { color: #8DC63F; }
.hl-yellow { color: #FFE000; }
.hl-cyan   { color: #00C8E0; }
.hl-blue   { color: #1E88E5; }

/* Package billing note */
.pkg-billing {
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 12px;
    opacity: 0.7;
}
.pkg-note-elite {
    text-align: center;
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 4px 0 18px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.25s var(--ease);
    text-align: center;
    white-space: nowrap;
}

.btn-gradient {
    background: var(--grad-brand);
    color: var(--bg-dark);
    box-shadow: 0 4px 24px rgba(141,198,63,0.25);
}
.btn-gradient:hover {
    background: var(--grad-brand-h);
    box-shadow: 0 6px 32px rgba(141,198,63,0.4);
    transform: translateY(-2px);
}

.btn-primary {
    background: rgba(141,198,63,0.15);
    color: var(--green-bright);
    border: 1px solid rgba(141,198,63,0.35);
}
.btn-primary:hover {
    background: rgba(141,198,63,0.25);
    border-color: var(--green-bright);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border-2);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal, .reveal-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    transition-delay: var(--delay, 0s);
}
.reveal.visible, .reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Extra-animated section titles (Complete System / We Teach You Everything) ---- */
.reveal-title {
    opacity: 0;
    transform: translateY(34px) scale(0.9);
    filter: blur(6px);
    transition: opacity 0.9s var(--ease),
                transform 1s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.9s var(--ease);
    transition-delay: var(--delay, 0s);
}
.reveal-title.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* ---- Varied scroll-in heading animations (different directions + timings) ---- */
.reveal-left, .reveal-right, .reveal-down, .reveal-zoom { opacity: 0; }
.reveal-left  { transform: translateX(-58px); transition: opacity 0.75s var(--ease), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); transition-delay: var(--delay, 0s); }
.reveal-right { transform: translateX(58px);  transition: opacity 0.75s var(--ease), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); transition-delay: var(--delay, 0s); }
.reveal-down  { transform: translateY(-46px); transition: opacity 0.7s var(--ease),  transform 1.15s cubic-bezier(0.22, 1, 0.36, 1); transition-delay: var(--delay, 0s); }
.reveal-zoom  { transform: scale(0.8);        transition: opacity 0.55s var(--ease), transform 1.1s cubic-bezier(0.34, 1.56, 0.64, 1); transition-delay: var(--delay, 0s); }
.reveal-left.visible, .reveal-right.visible, .reveal-down.visible, .reveal-zoom.visible {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    .reveal-left, .reveal-right, .reveal-down, .reveal-zoom { transition: opacity 0.4s var(--ease); transform: none; }
}
/* Rotating results headline (sells outcomes, not the service) */
.results-rotator .rotator {
    display: inline-grid;
    justify-items: center;
    align-items: center;
}
.results-rotator .rotator-item {
    grid-area: 1 / 1;
    opacity: 0;
    transform: translateY(16px) scale(0.98);
    transition: opacity 0.55s var(--ease), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}
.results-rotator .rotator-item.is-active {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}
.results-band {
    position: relative;
    padding: clamp(28px, 4vw, 44px) 0;
    background: var(--bg-dark-2);
    text-align: center;
}
.results-band .section-header { margin-bottom: 0; }
.results-band .results-rotator { margin-bottom: 0; }
.results-band-sub {
    margin-top: 18px;
    font-size: clamp(1rem, 3.5vw, 1.2rem);
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.35;
}

/* Gentle continuous gradient flow through the coloured word */
.shimmer-text {
    background-size: 220% auto;
    animation: text-flow 5.5s ease-in-out infinite;
}
@keyframes text-flow {
    0%   { background-position: 0% center; }
    50%  { background-position: 100% center; }
    100% { background-position: 0% center; }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(8,12,24,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo img {
    height: 58px;
    width: auto;
}
.nav-logo-text {
    font-size: 1.4rem;
    font-weight: 900;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 14px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.05);
}

.nav-cta {
    background: var(--grad-brand);
    color: var(--bg-dark);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 8px;
    transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--grad-dark);
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
    animation: orb-float 8s ease-in-out infinite;
}
.orb-1 {
    width: 600px; height: 600px;
    background: var(--green-mid);
    top: -100px; left: -100px;
    animation-delay: 0s;
}
.orb-2 {
    width: 500px; height: 500px;
    background: var(--blue-mid);
    bottom: -80px; right: -80px;
    animation-delay: -3s;
}
.orb-3 {
    width: 400px; height: 400px;
    background: var(--yellow);
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s;
    opacity: 0.08;
}

@keyframes orb-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    min-width: 0;
    width: 100%;
    margin: 0 auto;
}

.hero-logo-wrap {
    margin-bottom: 24px;
}
.hero-logo-icon {
    width: 90px;
    height: auto;
    margin: 0 auto;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 30px rgba(141,198,63,0.4));
    animation: logo-pulse 3s ease-in-out infinite;
}
@keyframes logo-pulse {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(141,198,63,0.4)); }
    50%       { filter: drop-shadow(0 0 50px rgba(141,198,63,0.7)); }
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 16px;
    line-height: 1.7;
}

.hero-focus {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    max-width: 600px;
    margin: 0 auto 22px;
}

.hero-focus span {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--text-main);
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(141, 198, 63, 0.09);
    border: 1px solid rgba(141, 198, 63, 0.22);
    white-space: nowrap;
    line-height: 1.3;
}
/* Hide the Body Composition pill on mobile so the hero stays compact and the client photo strip stays visible */
@media (max-width: 768px) {
    .hero-focus .bc-pill { display: none; }
}

.hero-carousel {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 860px;
    margin: 0 auto 40px;
    width: 100%;
}

.hc-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 2px;
    flex: 1;
    min-width: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.hc-track::-webkit-scrollbar {
    display: none;
}

.hc-card {
    flex: 0 0 calc((100% - 40px) / 3.35);
    min-width: 150px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 18px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(8px);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hc-card:hover {
    transform: translateY(-3px);
    border-color: rgba(141, 198, 63, 0.5);
    background: rgba(141, 198, 63, 0.08);
}

.hc-label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--text-main);
    line-height: 1.4;
}

.hf-icon {
    line-height: 1;
    color: var(--green-bright);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(141, 198, 63, 0.1);
    border: 1px solid rgba(141, 198, 63, 0.2);
}

.hf-icon svg {
    width: 19px;
    height: 19px;
    display: block;
}

.hc-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-main);
    cursor: pointer;
    transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.hc-arrow:hover {
    background: rgba(141, 198, 63, 0.15);
    border-color: rgba(141, 198, 63, 0.4);
}

.hc-arrow svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 640px) {
    .hc-card {
        flex: 0 0 calc((100% - 12px) / 2);
        min-width: 132px;
        padding: 14px 10px;
    }

    .hc-label {
        font-size: 0.78rem;
    }

    .hc-arrow {
        width: 32px;
        height: 32px;
    }
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.scroll-dot {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    position: relative;
}
.scroll-dot::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--green-bright);
    border-radius: 2px;
    animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50%       { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

/* ============================================
   WHAT WE DO
   ============================================ */
.what-we-do {
    padding: var(--section-py) 0;
    background: var(--bg-dark);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: border-color 0.3s ease, transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.feature-card:hover {
    border-color: rgba(141,198,63,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}
.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}
.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}
.feature-card .feature-note {
    margin-top: 12px;
    font-weight: 600;
    color: var(--green-bright);
}

/* ---- WHAT WE PROVIDE: full-bleed swipe carousel ---- */
.what-we-do .section-header { margin-bottom: 36px; }

.wwp-carousel {
    position: relative;
    width: 100%;
    margin-top: 12px;
}

.wwp-track {
    display: flex;
    align-items: stretch;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scroll-padding-left: 24px;
    padding: 8px 24px 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.wwp-track::-webkit-scrollbar { display: none; }

/* Photo-background cards: food photography behind darkened, readable text */
.wwp-track .feature-card {
    position: relative;
    overflow: hidden;
    flex: 0 0 clamp(280px, 30vw, 400px);
    scroll-snap-align: start;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 30px 24px;
    border: 1px solid var(--border-2);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.wwp-track .feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,12,24,0.32) 0%, rgba(8,12,24,0.30) 45%, rgba(8,12,24,0.44) 100%);
}
.wwp-track .feature-text {
    width: 100%;
    background: rgba(8,12,24,0.62);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;
    padding: 14px 16px;
}
.wwp-track .feature-card > * { position: relative; z-index: 1; }
.wwp-track .feature-card { cursor: pointer; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease); }
.wwp-track .feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); border-color: rgba(141,198,63,0.55); }
.wwp-track .feature-card:focus-visible { outline: 2px solid var(--green-bright); outline-offset: 3px; }

.wwp-track .feature-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--green-bright);
    background: rgba(8,12,24,0.5);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(141,198,63,0.4);
    margin-bottom: 16px;
    flex: 0 0 auto;
    font-size: 0;
}
.wwp-track .feature-icon svg { width: 25px; height: 25px; }
.wwp-track .feature-card h3 { margin-bottom: 10px; font-size: 1.1rem; font-weight: 800; color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,0.55); }
.wwp-track .feature-card p { font-size: 0.88rem; line-height: 1.55; color: rgba(255,255,255,0.9); text-shadow: 0 1px 10px rgba(0,0,0,0.5); }
.wwp-track .feature-card .feature-note { margin-top: 10px; font-weight: 700; color: var(--green-bright); }
.wwp-track .feature-card .feature-note.note-orange { color: #FFA733; }

.wwp-track .food-1 { background-image: url('assets/food/crop/nutrition-meal.jpg'); }
.wwp-track .food-2 { background-image: url('assets/food/crop/training-gym.jpg'); }
.wwp-track .food-3 { background-image: url('assets/food/crop/athlete-boxing.jpg'); }
.wwp-track .food-4 { background-image: url('assets/food/crop/direct-access.jpg'); }
.wwp-track .food-5 { background-image: url('assets/food/crop/calls-desk.jpg'); }
.wwp-track .food-6 { background-image: url('assets/food/crop/obl-app.jpg'); }
.wwp-track .food-7 { background-image: url('assets/food/crop/support-coach.jpg'); }

.wwp-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 18, 37, 0.82);
    border: 1px solid var(--border-2);
    color: var(--white);
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.wwp-arrow:hover {
    background: rgba(141, 198, 63, 0.2);
    border-color: rgba(141, 198, 63, 0.5);
    color: var(--green-bright);
}
.wwp-arrow svg { width: 20px; height: 20px; }
.wwp-prev { left: 14px; }
.wwp-next { right: 14px; }

.wwp-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
}
.wwp-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--border-2);
    cursor: pointer;
    transition: background 0.3s var(--ease), width 0.3s var(--ease);
}
.wwp-dot:hover { background: var(--text-muted); }
.wwp-dot.active {
    width: 26px;
    border-radius: 5px;
    background: var(--grad-brand);
}

@media (max-width: 640px) {
    .wwp-track {
        gap: 11px;
        padding: 6px 14px 14px;
        scroll-padding-left: 14px;
    }
    /* ~1.5 cards visible: one full square + half of the next */
    .wwp-track .feature-card {
        flex-basis: clamp(200px, 62vw, 280px);
        aspect-ratio: 1 / 1;
        min-height: 0;
        padding: 11px 10px;
    }
    .wwp-track .feature-text { padding: 9px 11px; border-radius: 12px; }
    .wwp-track .feature-icon { width: 36px; height: 36px; border-radius: 10px; margin-bottom: 7px; }
    .wwp-track .feature-icon svg { width: 19px; height: 19px; }
    .wwp-track .feature-card h3 { margin-bottom: 5px; font-size: 0.86rem; }
    .wwp-track .feature-card p { font-size: 0.7rem; line-height: 1.34; }
    .wwp-track .feature-card .feature-note { margin-top: 3px; font-size: 0.68rem; line-height: 1.26; }
    .wwp-arrow { width: 34px; height: 34px; }
    .wwp-arrow svg { width: 15px; height: 15px; }
    .wwp-prev { left: 5px; }
    .wwp-next { right: 5px; }
}

/* ============================================
   LEVEL UP LEAD CAPTURE (under transformations)
   ============================================ */
.levelup {
    max-width: 680px;
    margin: 56px auto 0;
    scroll-margin-top: 120px;
    padding: 40px 40px 36px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(10px);
}

.levelup-lead {
    text-align: center;
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.55;
    color: var(--white);
    max-width: 34ch;
    margin: 0 auto 30px;
}
.levelup-lead .gradient-text { text-transform: uppercase; }

.levelup-form .form-group { margin-bottom: 16px; }
.levelup-form .form-row { margin-bottom: 0; }
.levelup-form textarea { min-height: 84px; }

.levelup-btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
    margin-top: 6px;
}

/* ============================================
   WE TEACH YOU EVERYTHING
   ============================================ */
.teach {
    position: relative;
    padding: clamp(52px, 7vw, 76px) 0;
    background: var(--bg-dark-2);
    overflow: hidden;
}

.teach-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(60% 55% at 50% 0%, rgba(141,198,63,0.09) 0%, transparent 70%),
        radial-gradient(50% 50% at 50% 100%, rgba(0,200,224,0.06) 0%, transparent 70%);
}

.teach .container { position: relative; z-index: 1; }

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

/* Photo-background cards with frosted text bubble (matches "What We Provide") */
.teach-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    aspect-ratio: 1 / 1;
    min-width: 0;
    padding: 18px 16px;
    border-radius: 18px;
    border: 1px solid var(--border-2);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: border-color 0.3s ease, transform 0.35s var(--ease), box-shadow 0.3s ease;
}
.teach-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(8,12,24,0.30) 0%, rgba(8,12,24,0.34) 45%, rgba(8,12,24,0.62) 100%);
}
.teach-card > * { position: relative; z-index: 1; }
.teach-card:hover {
    border-color: rgba(141, 198, 63, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 18px 46px rgba(0,0,0,0.45);
}

.teach-card .hf-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(8,12,24,0.5);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(141,198,63,0.4);
}
.teach-card .hf-icon svg {
    width: 21px;
    height: 21px;
}

.teach-text {
    margin-top: auto;
    width: 100%;
    min-height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(8,12,24,0.62);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 12px;
    padding: 11px 13px;
}
.teach-card h3 {
    margin-bottom: 8px;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #fff;
    text-shadow: 0 1px 12px rgba(0,0,0,0.55);
}
.teach-card p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 10px rgba(0,0,0,0.5);
    max-width: none;
}

.teach-card.tc-food  { background-image: url('assets/food/crop/food-beet-plate.jpg'); }
.teach-card.tc-train { background-image: url('assets/food/crop/training-gym.jpg'); }
.teach-card.tc-perf  { background-image: url('assets/food/crop/athlete-boxing.jpg'); }
.teach-card.tc-accnt { background-image: url('assets/food/crop/support-coach.jpg'); }

/* Quote pull-out */
.teach-quote {
    position: relative;
    max-width: 660px;
    margin: 56px auto 0;
    padding: 34px 24px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.teach-quote-mark {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3.4rem;
    line-height: 1;
    color: var(--green-bright);
    opacity: 0.28;
}

.teach-quote blockquote {
    font-size: 1.08rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-main);
}

/* Closing statement */
.teach-close {
    margin-top: 48px;
    text-align: center;
}

.teach-close-lead {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--white);
    max-width: 620px;
    margin: 0 auto;
}
.teach-close-lead .gradient-text { text-transform: uppercase; }

.teach-close-sub {
    margin-top: 14px;
    font-size: 1rem;
    color: var(--text-muted);
}

.teach-cta {
    margin-top: 28px;
}

/* ============================================
   PACKAGES
   ============================================ */
.services {
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0A1020 50%, var(--bg-dark) 100%);
}

.services .container { position: relative; z-index: 1; }

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.package-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
}
/* keeps the three buttons on one line when the feature lists differ in length */
.package-card .pkg-btn { margin-top: auto; }
.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.package-card.package-featured {
    border-color: rgba(141,198,63,0.4);
    background: linear-gradient(160deg, #0F1E12 0%, #0D1225 100%);
}
.package-card.package-featured:hover {
    box-shadow: 0 20px 60px rgba(141,198,63,0.15);
}

.package-glow {
    position: absolute;
    top: -80px; left: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(141,198,63,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.featured-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--grad-brand);
    color: var(--bg-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
}

.package-top { margin-bottom: 24px; }

.package-icon-wrap {
    width: 56px; height: 56px;
    background: rgba(141,198,63,0.1);
    border: 1px solid rgba(141,198,63,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.package-emoji { font-size: 1.6rem; }

.package-top h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}
.package-tagline {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.package-price-wrap {
    margin-bottom: 28px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.price-amount {
    font-size: 3rem;
    font-weight: 900;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.price-per {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.package-features {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-main);
}
.package-features .pkg-more {
    padding-left: 26px;
    color: var(--text-muted);
    font-size: 0.85rem;
    opacity: 0.8;
}
.check {
    color: var(--green-bright);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.pkg-btn { width: 100%; justify-content: center; padding: 16px; }

/* Elite Package */
.btn-elite {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    color: #080C18;
    box-shadow: 0 4px 24px rgba(255,165,0,0.3);
}
.btn-elite:hover {
    box-shadow: 0 6px 32px rgba(255,165,0,0.5);
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.package-elite {
    border-color: rgba(255,165,0,0.4);
    background: linear-gradient(160deg, #1E1508 0%, #0D1225 100%);
}
.package-elite:hover {
    box-shadow: 0 20px 60px rgba(255,165,0,0.15);
    border-color: rgba(255,165,0,0.6);
}
.package-glow-elite {
    background: radial-gradient(circle, rgba(255,165,0,0.12) 0%, transparent 70%);
}
.featured-badge-elite {
    background: linear-gradient(135deg, #FFD700, #FF6B35) !important;
}
.package-icon-elite {
    background: rgba(255,165,0,0.1) !important;
    border-color: rgba(255,165,0,0.2) !important;
}

.cta-card-elite {
    border-color: rgba(255,165,0,0.4);
    background: linear-gradient(160deg, #1E1508 0%, #0D1225 100%);
}
.cta-elite-badge {
    background: linear-gradient(135deg, #FFD700, #FF6B35) !important;
}

/* ============================================
   TRANSFORMATIONS
   ============================================ */
.transformations {
    padding: var(--section-py) 0;
    background: var(--bg-dark);
    overflow: hidden;
}

/* Full-bleed stepped carousel (auto-advances, arrows for manual control) */
.marquee {
    position: relative;
    width: 100%;
    margin-top: 48px;
}

.marquee-viewport {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.marquee-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.marquee-track::-webkit-scrollbar {
    display: none;
}

.marquee-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 18, 37, 0.75);
    border: 1px solid var(--border-2);
    color: var(--white);
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.marquee-arrow:hover {
    background: rgba(141, 198, 63, 0.2);
    border-color: rgba(141, 198, 63, 0.5);
    color: var(--green-bright);
}

.marquee-hint {
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.7;
    margin: 0 0 14px;
    font-weight: 500;
}

.marquee-arrow svg { width: 22px; height: 22px; }

.marquee-arrow.is-disabled {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.m-prev { left: 18px; }
.m-next { right: 18px; }

.transformation-slide {
    flex-shrink: 0;
    width: 320px;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
}

.transformation-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
    transition: transform 0.4s ease;
}

.transformation-slide:hover img {
    transform: scale(1.04);
}

/* ---- Lightbox (click a client photo to enlarge) ---- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(4, 6, 12, 0.9);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: zoom-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.lightbox.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.lightbox-img {
    max-width: min(92vw, 560px);
    max-height: 88vh;
    width: auto;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
    cursor: default;
    transform: scale(0.94);
    transition: transform 0.28s var(--ease);
}
.lightbox.open .lightbox-img {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.06);
}
.lightbox-close svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 1024px) {
    .transformation-slide { width: 260px; }
}

@media (max-width: 640px) {
    .marquee { margin-top: 32px; }
    .marquee-track { gap: 10px; }
    .transformation-slide { width: 200px; }
    .marquee-arrow { width: 38px; height: 38px; }
    .marquee-arrow svg { width: 18px; height: 18px; }
    .m-prev { left: 8px; }
    .m-next { right: 8px; }
}

.placeholder-photo {
    background: linear-gradient(135deg, #1a2030 0%, #0f1520 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}
.placeholder-content svg { opacity: 0.3; }

/* ============================================
   MEET YOUR COACH
   ============================================ */
.coach {
    padding: var(--section-py) 0;
    background: var(--bg-dark);
}

.coach-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.coach-photo img {
    display: block;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 60px rgba(141, 198, 63, 0.08);
}

.coach-text .section-badge {
    margin-bottom: 16px;
}

.coach-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.coach-lead {
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
}

.coach-body {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
    max-width: 480px;
}

.coach-body:last-of-type {
    margin-bottom: 22px;
}

.coach-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.coach-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
}

.cp-tick {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(141, 198, 63, 0.12);
    border: 1px solid rgba(141, 198, 63, 0.3);
    color: var(--green-bright);
    font-size: 0.72rem;
    flex-shrink: 0;
}

@media (max-width: 820px) {
    .coach-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .coach-photo img {
        max-width: 340px;
    }

    .coach-body {
        margin-left: auto;
        margin-right: auto;
    }

    .coach-points {
        align-items: center;
    }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: var(--section-py) 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0A1020 100%);
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(141,198,63,0.25);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.quote-mark {
    font-size: 5rem;
    line-height: 0.5;
    font-family: Georgia, serif;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    display: block;
    opacity: 0.6;
}

.stars {
    color: #FFD700;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px; height: 42px;
    background: var(--grad-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: var(--bg-dark);
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}
.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---- TESTIMONIALS: full-bleed swipe carousel ---- */
.tst-carousel {
    position: relative;
    width: 100%;
    margin-top: 40px;
}

.tst-track {
    display: flex;
    align-items: stretch;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    padding: 14px 24px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.tst-track::-webkit-scrollbar { display: none; }

.tst-track .testimonial-card {
    flex: 0 0 clamp(300px, 30vw, 400px);
    scroll-snap-align: center;
}

/* Featured (main) review */
.tst-track .testimonial-card.featured {
    border-color: rgba(141, 198, 63, 0.55);
    box-shadow: 0 0 0 1px rgba(141, 198, 63, 0.35), 0 24px 70px rgba(141, 198, 63, 0.14);
}
.tst-featured-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--green-bright);
    background: rgba(141, 198, 63, 0.12);
    border: 1px solid rgba(141, 198, 63, 0.35);
    padding: 5px 11px;
    border-radius: 100px;
}

.tst-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 18, 37, 0.82);
    border: 1px solid var(--border-2);
    color: var(--white);
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.tst-arrow:hover {
    background: rgba(141, 198, 63, 0.2);
    border-color: rgba(141, 198, 63, 0.5);
    color: var(--green-bright);
}
.tst-arrow svg { width: 20px; height: 20px; }
.tst-prev { left: 14px; }
.tst-next { right: 14px; }

.tst-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
}
.tst-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--border-2);
    cursor: pointer;
    transition: background 0.3s var(--ease), width 0.3s var(--ease);
}
.tst-dot:hover { background: var(--text-muted); }
.tst-dot.active {
    width: 26px;
    border-radius: 5px;
    background: var(--grad-brand);
}

@media (max-width: 640px) {
    .tst-track {
        gap: 14px;
        padding: 12px 16px 18px;
    }
    .tst-track .testimonial-card { flex-basis: clamp(280px, 84vw, 340px); }
    .tst-arrow { width: 38px; height: 38px; }
    .tst-arrow svg { width: 16px; height: 16px; }
    .tst-prev { left: 6px; }
    .tst-next { right: 6px; }
}

/* ============================================
   CTA / GET STARTED
   ============================================ */
.cta-section {
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark-2);
}

.cta-bg {
    position: absolute;
    inset: 0;
}
.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
}
.cta-orb-1 {
    width: 500px; height: 500px;
    background: var(--green-mid);
    top: -100px; left: -100px;
}
.cta-orb-2 {
    width: 400px; height: 400px;
    background: var(--blue-mid);
    bottom: -80px; right: -80px;
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-inner h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 14px;
}
.cta-inner > p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 52px;
}

.cta-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 32px;
}

.cta-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
    text-align: left;
    position: relative;
    transition: transform 0.3s var(--ease), border-color 0.3s ease;
}
.cta-card:hover {
    transform: translateY(-4px);
}

.cta-card.cta-card-featured {
    border-color: rgba(141,198,63,0.4);
    background: linear-gradient(160deg, #0F1E12 0%, #0D1225 100%);
}

.cta-featured-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--grad-brand);
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.cta-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-price {
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.cta-amount {
    font-size: 2.4rem;
    font-weight: 900;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.cta-freq {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cta-card > p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.stripe-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
}

.stripe-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.stripe-trust svg { flex-shrink: 0; color: var(--green-bright); }

/* ============================================
   STORE
   ============================================ */
.store {
    padding: var(--section-py) 0;
    background: var(--bg-dark);
}

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

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border-color: rgba(141,198,63,0.25);
}

.product-image-wrap {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #111827 0%, #0d1420 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    transition: background 0.3s ease;
}
.product-card:hover .product-placeholder {
    background: linear-gradient(135deg, #141f2e 0%, #0f1a20 100%);
}
.product-emoji { font-size: 3rem; }

.product-info {
    padding: 24px;
}

.product-type {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 8px;
    display: block;
}

.product-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.product-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: var(--section-py) 0;
    background: linear-gradient(180deg, #0A1020 0%, var(--bg-dark) 100%);
    scroll-margin-top: 86px; /* clear the fixed navbar so #contact links land on the heading, not behind the nav / on the Store CTA above */
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon-wrap {
    width: 44px; height: 44px;
    background: rgba(141,198,63,0.1);
    border: 1px solid rgba(141,198,63,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.contact-detail span,
.contact-detail a {
    font-size: 0.875rem;
    color: var(--text-muted);
}
.contact-detail a:hover { color: var(--green-bright); }

.contact-socials {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 8px;
    width: fit-content;
    transition: all 0.2s ease;
}
.social-pill:hover {
    background: rgba(141,198,63,0.1);
    border-color: rgba(141,198,63,0.3);
    color: var(--green-bright);
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}

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

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-2);
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 0.9rem;
    font-family: var(--font);
    color: var(--white);
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238896B0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(136,150,176,0.5);
}

.form-group select option {
    background: var(--bg-card-2);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(141,198,63,0.5);
    background: rgba(141,198,63,0.04);
}

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

.submit-btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
    margin-top: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #050810;
    border-top: 1px solid var(--border);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
}

.footer-brand-col p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 24px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}
.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.25s ease;
}
.footer-social a:hover {
    background: rgba(141,198,63,0.1);
    border-color: rgba(141,198,63,0.3);
    color: var(--green-bright);
}

.footer-links-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links-col a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color 0.2s ease;
}
.footer-links-col a:hover { color: var(--green-bright); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .teach-grid { grid-template-columns: repeat(2, 1fr); }
    .packages-grid { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
    .cta-packages { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-info-col { flex-direction: row; flex-wrap: wrap; gap: 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    :root { --section-py: 72px; }

    .nav-menu {
        position: fixed;
        top: 0; right: 0;
        height: 100vh;
        width: 280px;
        max-width: 85vw;
        background: rgba(8,12,24,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 106px 34px 44px;
        gap: 6px;
        transform: translateX(100%);
        transition: transform 0.35s var(--ease);
        border-left: 1px solid var(--border);
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-link { font-size: 1.12rem; width: 100%; padding: 15px 0; }
    .nav-menu li:last-child { margin-top: 44px; }
    .nav-cta { margin-top: 0; }
    .hamburger { display: flex; }

    .hero h1 { font-size: 2.8rem; }
    /* MOBILE PERF: stop the giant blurred hero orbs from animating (huge GPU cost
       recomputing a 120px blur every frame). Keep them static + lighter blur for the glow. */
    .hero-orb { animation: none !important; filter: blur(70px); opacity: 0.14; }
    .orb-3 { display: none; }
    /* MOBILE PERF: drop backdrop-filter blurs that recompute on every scroll frame.
       Backgrounds are already near-opaque, so use a slightly more solid fill instead. */
    .navbar.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(8,12,24,0.97); }
    .wwp-track .feature-text { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(8,12,24,0.72); }
    /* Shorter hero so the scrolling client photos peek in on load */
    .hero { min-height: 86vh; padding-top: 104px; padding-bottom: 14px; flex-direction: column; }
    .hero-buttons { flex-direction: row; flex-wrap: nowrap; gap: 10px; align-items: stretch; margin-bottom: 24px; }
    .hero-buttons .btn { flex: 1 1 0; min-width: 0; justify-content: center; padding-left: 12px; padding-right: 12px; font-size: 0.95rem; white-space: nowrap; }
    /* Stats: 300+ Goals and 7+ Years side by side on one row */
    .hero-stats { display: flex; flex-wrap: nowrap; justify-content: center; align-items: center; gap: 22px; }
    .hero-stats .stat-number { font-size: 1.45rem; }
    .hero-stats .stat-label { font-size: 0.68rem; letter-spacing: 0.06em; }
    /* Scroll wheel: in-flow below the stats, smaller than default */
    .hero-scroll-indicator { position: static; transform: none; margin-top: 30px; }
    .scroll-dot { width: 18px; height: 29px; border-radius: 9px; }
    .scroll-dot::after { top: 5px; width: 3px; height: 6px; }

    /* Compact feature cards on mobile: icon sits inline with the title
       instead of stacked above it, which cuts a lot of scroll height. */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .feature-card {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        column-gap: 12px;
        row-gap: 6px;
        padding: 18px 18px;
    }
    .feature-icon {
        grid-column: 1;
        grid-row: 1;
        font-size: 1.5rem;
        margin-bottom: 0;
        line-height: 1;
    }
    .feature-card h3 {
        grid-column: 2;
        grid-row: 1;
        font-size: 1rem;
        margin-bottom: 0;
    }
    .feature-card p {
        grid-column: 1 / -1;
        grid-row: 2;
        font-size: 0.86rem;
        line-height: 1.55;
    }

    .packages-grid { grid-template-columns: 1fr; max-width: 440px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cta-packages { grid-template-columns: 1fr; max-width: 400px; }
    .package-elite { order: 3; }
    .store-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

    .contact-form { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .stat-divider { display: none; }

    .levelup { margin-top: 40px; padding: 26px 20px 24px; border-radius: 16px; }
    .levelup-lead { font-size: 1rem; margin-bottom: 24px; }

    .teach-grid { grid-template-columns: repeat(2, 1fr); gap: 9px; }
    .teach-card { padding: 11px 9px; gap: 6px; }
    .teach-card .hf-icon { width: 38px; height: 38px; border-radius: 11px; }
    .teach-card .hf-icon svg { width: 18px; height: 18px; }
    .teach-text { padding: 8px 10px; border-radius: 11px; min-height: 78px; }
    .teach-card h3 { margin-bottom: 4px; font-size: 0.72rem; }
    .teach-card p { max-width: none; font-size: 0.72rem; line-height: 1.36; }
    .teach-quote { margin-top: 40px; padding-top: 30px; }
    .teach-quote blockquote { font-size: 1rem; }
    .teach-close { margin-top: 36px; }
    .teach-close-lead { font-size: 1.2rem; }
    .teach-close-sub { font-size: 0.92rem; }
}

/* ---------- WHY WE'RE DIFFERENT ---------- */
/* ===== PROBLEM / SOLUTION (combined) ===== */
.probsol {
    padding: var(--section-py) 0;
    background: var(--bg-dark-2);
    position: relative;
}
.probsol .section-header { margin-bottom: 32px; }
.probsol-toggle {
    display: flex;
    width: fit-content;
    margin: 0 auto;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: var(--bg-card);
    border: 1px solid rgba(141,198,63,0.3);
    border-radius: 100px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.probsol-toggle:hover {
    border-color: var(--green-bright);
    background: rgba(141,198,63,0.08);
    transform: translateY(-2px);
}
.probsol-chevron {
    width: 18px;
    height: 18px;
    color: var(--green-bright);
    transition: transform 0.35s ease;
}
.probsol-toggle[aria-expanded="true"] .probsol-chevron { transform: rotate(0deg); }
.probsol-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4,0,0.2,1);
}
.probsol-collapse .probsol-grid { margin-top: 32px; }
.probsol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1080px;
    margin: 0 auto;
}
.probsol-card {
    text-align: left;
    padding: 22px 22px 8px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.probsol-card:hover {
    transform: translateY(-5px);
    border-color: rgba(141,198,63,0.4);
    box-shadow: 0 18px 40px -22px rgba(141,198,63,0.35);
}
.ps-problem, .ps-fix {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
}
.ps-problem {
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ps-problem p, .ps-fix p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
}
.ps-problem p { color: var(--text-muted); }
.ps-fix p { color: var(--text-main); font-weight: 500; }
.ps-x, .ps-check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
}
.ps-x svg, .ps-check svg { width: 15px; height: 15px; }
.ps-x {
    color: #FF6B6B;
    background: rgba(255,107,107,0.12);
    border: 1px solid rgba(255,107,107,0.25);
}
.ps-check {
    color: var(--green-bright);
    background: rgba(141,198,63,0.14);
    border: 1px solid rgba(141,198,63,0.32);
}

/* Scroll-reveal: problem (question) reveals first, then the fix (answer) unveils after */

/* 1. The problem (X + text) fades in first */
.ps-problem {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.probsol-card.revealed .ps-problem {
    opacity: 1;
    transform: translateY(0);
}
.ps-x {
    transform: scale(0.4);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1) 0.1s, opacity 0.3s ease 0.1s;
}
.probsol-card.revealed .ps-x {
    transform: scale(1);
    opacity: 1;
}

/* 2. The fix (tick + solution) unveils after a beat */
.ps-fix {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.55s ease 0.5s, transform 0.55s cubic-bezier(0.22,1,0.36,1) 0.5s;
}
.probsol-card.revealed .ps-fix {
    opacity: 1;
    transform: translateY(0);
}
.ps-check {
    transform: scale(0.4);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.6s, opacity 0.3s ease 0.6s;
}
.probsol-card.revealed .ps-check {
    transform: scale(1);
    opacity: 1;
}
.ps-check svg polyline {
    stroke-dasharray: 26;
    stroke-dashoffset: 26;
    transition: stroke-dashoffset 0.5s ease 0.85s;
}
.probsol-card.revealed .ps-check svg polyline {
    stroke-dashoffset: 0;
}
@media (prefers-reduced-motion: reduce) {
    .ps-problem, .ps-fix, .ps-x, .ps-check { opacity: 1; transform: none; transition: none; }
    .ps-check svg polyline { stroke-dashoffset: 0; }
}

/* Pain-points list "Does this sound like you?" (27 Aug) */
.probsol-collapse .probsol-painlist { margin-top: 32px; }
.probsol-painlist {
    max-width: 620px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.probsol-painlist .pspoint p { color: var(--text-main); font-weight: 500; }
@media (max-width: 560px) {
    .probsol-painlist { gap: 14px; }
}

/* Problem -> fix pairs, flat arrow style (27 Aug rebuild) */
.probsol-collapse .probsol-pairs { margin-top: 32px; }
.probsol-pairs {
    max-width: 660px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.pspair {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    border-left: 2px solid rgba(141,198,63,0.28);
    padding-left: 22px;
}
.pspoint {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}
.pspoint-x, .pspoint-arrow {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    margin-top: 1px;
}
.pspoint-x {
    color: #FF6B6B;
    background: rgba(255,107,107,0.12);
    border: 1px solid rgba(255,107,107,0.25);
}
.pspoint-arrow {
    color: var(--green-bright);
    background: rgba(141,198,63,0.14);
    border: 1px solid rgba(141,198,63,0.32);
}
.pspoint-x svg, .pspoint-arrow svg { width: 15px; height: 15px; }
.pspoint p {
    margin: 0;
    font-size: clamp(0.98rem, 2.3vw, 1.08rem);
    line-height: 1.5;
}
.pspoint-problem p { color: var(--text-muted); font-weight: 400; }
.pspoint-fix p { color: var(--text-main); font-weight: 500; }
@media (max-width: 560px) {
    .probsol-pairs { gap: 26px; }
    .pspair { padding-left: 16px; }
    .pspoint { gap: 12px; }
    .pspoint-x, .pspoint-arrow { width: 27px; height: 27px; }
}

.probsol-line {
    text-align: center;
    max-width: 680px;
    margin: 44px auto 0;
    font-size: clamp(1.3rem, 3.4vw, 1.65rem);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.42;
}
.probsol-cta {
    text-align: center;
    margin-top: 28px;
}
.probsol-cta-note {
    margin-top: 14px;
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

@media (max-width: 940px) {
    .probsol-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .probsol-grid { grid-template-columns: 1fr; }
}

/* ===== CLIENT STORIES ===== */
.client-stories {
    padding: var(--section-py) 0;
    background: var(--bg-dark-2);
}
.stories-list {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.story {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: center;
    padding: 22px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.story:hover {
    transform: translateY(-4px);
    border-color: rgba(141,198,63,0.35);
    box-shadow: 0 18px 40px -22px rgba(141,198,63,0.3);
}
.story-photo img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    cursor: zoom-in;
    transition: transform 0.4s var(--ease, ease), box-shadow 0.3s ease;
}
.story-photo img:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 40px -20px rgba(0,0,0,0.5);
}
.story-text h3 {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-main);
}
.story-write {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}
.story-quote {
    margin: 16px 0 0;
    padding-left: 16px;
    border-left: 3px solid var(--green-bright);
    color: var(--text-main);
    font-style: italic;
    font-weight: 500;
    font-size: 1.02rem;
    line-height: 1.6;
}
@media (max-width: 680px) {
    .story {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
        padding: 20px;
    }
    .story-photo img { max-width: 260px; margin: 0 auto; }
    .story-quote { border-left: none; padding-left: 0; }
}

/* ===== STATEMENT BAND ===== */
.statement-band {
    padding: clamp(56px, 8vw, 96px) 0;
    background: var(--bg-dark);
    text-align: center;
}
.statement-heading {
    font-size: clamp(1.9rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.01em;
    max-width: 820px;
    margin: clamp(60px, 8vw, 92px) auto clamp(44px, 6vw, 64px);
    text-align: center;
}
.statement-heading .sw {
    display: inline-block;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.statement-heading.visible .sw { opacity: 1; transform: translateY(0); }
.statement-heading.visible .sw-1 { transition-delay: 0.05s; }
.statement-heading.visible .sw-2 { transition-delay: 0.25s; }
.statement-heading.visible .sw-3 { transition-delay: 0.45s; }
@media (prefers-reduced-motion: reduce) {
    .statement-heading .sw { opacity: 1; transform: none; transition: none; }
}

.different {
    padding: var(--section-py) 0;
    background: var(--bg-dark);
    position: relative;
}

.different-body {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding-top: 40px;
}

.different-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    border-radius: 3px;
    background: var(--grad-brand);
}

.different-body p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 22px;
}

.different-lead {
    color: var(--text-main) !important;
    font-size: 1.5rem !important;
    font-weight: 600;
    line-height: 1.55 !important;
    margin-bottom: 28px !important;
}

.different-subhead {
    color: var(--text-main) !important;
    font-size: clamp(1.5rem, 4.5vw, 1.95rem) !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    margin-top: 10px !important;
    margin-bottom: 30px !important;
}

.different-close {
    color: var(--text-main) !important;
    font-weight: 500;
    margin-bottom: 0 !important;
}

.different-tag {
    color: var(--text-main) !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
    margin-top: 26px !important;
    margin-bottom: 0 !important;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.levelup-trust {
    text-align: center;
    margin-top: 28px;
}
.levelup-trust .trust-badge { margin-top: 0; }
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 6px 15px 6px 7px;
    background: rgba(141,198,63,0.1);
    border: 1px solid rgba(141,198,63,0.35);
    border-radius: 100px;
    box-shadow: 0 8px 22px -16px rgba(141,198,63,0.6);
}
.trust-badge-icon {
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green-bright);
    color: var(--bg-dark);
}
.trust-badge-icon svg { width: 12px; height: 12px; }
.trust-badge-text {
    font-weight: 700;
    font-size: 0.86rem;
    letter-spacing: 0.02em;
    color: var(--text-main);
}
.trust-badge-flag {
    font-size: 1.05rem;
    line-height: 1;
}

@media (max-width: 640px) {
    .different-body { padding-top: 32px; }
    .different-lead { font-size: 1.25rem !important; }
    .different-body p { font-size: 1rem; }
}

/* ---------- HOW IT WORKS (ACCORDION) ---------- */
.how-it-works {
    padding: var(--section-py) 0;
    background: var(--bg-dark-2);
}

.hiw-accordion {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hiw-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.hiw-item.is-open {
    border-color: rgba(141, 198, 63, 0.35);
    background: var(--bg-card-2);
}

.hiw-head {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 26px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font);
    color: var(--text-main);
}

.hiw-num {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    min-width: 26px;
}

.hiw-title {
    flex: 1;
    font-size: 1.15rem;
    font-weight: 700;
}

.hiw-chevron {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-bright);
    transition: transform 0.35s var(--ease);
}

.hiw-chevron svg { width: 20px; height: 20px; }

.hiw-item.is-open .hiw-chevron { transform: rotate(180deg); }

.hiw-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.hiw-panel-inner {
    padding: 0 26px 26px 62px;
}

.hiw-panel-inner p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.hiw-panel-inner p:last-child { margin-bottom: 0; }

@media (max-width: 640px) {
    .hiw-head { padding: 20px 18px; gap: 14px; }
    .hiw-title { font-size: 1.02rem; }
    .hiw-panel-inner { padding: 0 18px 22px 18px; }
    .hiw-panel-inner p { font-size: 0.95rem; }
}

/* ============================================
   SIGN-UP / INFO COLLECTION PAGE
   ============================================ */
.signup-body {
    background:
        radial-gradient(1100px 600px at 80% -10%, rgba(30, 136, 229, 0.14), transparent 60%),
        radial-gradient(900px 500px at 0% 10%, rgba(141, 198, 63, 0.10), transparent 55%),
        var(--bg-dark);
    min-height: 100vh;
}

.signup-header {
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.signup-logo img { height: 40px; width: auto; }
.signup-logo-text { font-size: 1.3rem; font-weight: 800; color: var(--white); }

.signup-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.25s var(--ease);
}
.signup-back:hover { color: var(--green-bright); }

.signup-main { padding: 20px 24px 80px; }

.signup-container { max-width: 1100px; margin: 0 auto; }

.signup-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}
.signup-intro .section-badge { margin-bottom: 18px; }
.signup-intro h1 {
    font-size: clamp(1.9rem, 4.2vw, 2.9rem);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}
.signup-intro p {
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto;
}

.signup-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: start;
}

/* ---- PLAN SUMMARY ---- */
.signup-summary {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 34px 32px;
    position: sticky;
    top: 28px;
}

.ss-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}
.ss-emoji {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    flex-shrink: 0;
}
.ss-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 4px;
}
.ss-head h2 { font-size: 1.4rem; font-weight: 800; color: var(--white); }

.ss-tagline {
    color: var(--text-muted);
    font-size: 0.98rem;
    margin-bottom: 22px;
}

.ss-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.ss-price {
    font-size: 2.6rem;
    font-weight: 800;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ss-per { color: var(--text-muted); font-size: 1rem; font-weight: 500; }

.ss-includes-title {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.ss-features { display: flex; flex-direction: column; gap: 12px; }
.ss-features .ss-more {
    padding-left: 32px;
    color: var(--text-muted);
    font-size: 0.85rem;
    opacity: 0.8;
}
.ss-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.96rem;
    line-height: 1.5;
    color: var(--text-main);
}
.ss-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(141, 198, 63, 0.15);
    color: var(--green-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    margin-top: 1px;
}

.ss-billing {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 22px;
}

.ss-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
}
.ss-trust svg { flex-shrink: 0; color: var(--green-bright); }

/* ---- SIGN-UP FORM ---- */
.signup-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-2);
    border-radius: 22px;
    padding: 40px 38px;
    position: relative;
    overflow: hidden;
}
.signup-form-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--grad-brand);
}

.sf-title { font-size: 1.55rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.sf-sub { color: var(--text-muted); font-size: 0.98rem; margin-bottom: 28px; }

.signup-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.signup-form .form-group { margin-bottom: 18px; }
.signup-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}
.signup-form label .optional { color: var(--text-muted); font-weight: 400; }
.signup-form input,
.signup-form textarea {
    width: 100%;
    background: var(--bg-dark-2);
    border: 1px solid var(--border-2);
    border-radius: 12px;
    padding: 14px 16px;
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--text-main);
    transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.signup-form input::placeholder,
.signup-form textarea::placeholder { color: #55617A; }
.signup-form input:focus,
.signup-form textarea:focus {
    outline: none;
    border-color: var(--green-bright);
    box-shadow: 0 0 0 3px rgba(141, 198, 63, 0.15);
}
.signup-form textarea { resize: vertical; min-height: 96px; }

.sf-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    padding: 16px;
    font-size: 1rem;
}

.sf-reassure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 0.82rem;
}
.sf-reassure svg { flex-shrink: 0; color: var(--green-bright); }

/* ---- SUCCESS STATE ---- */
.sf-success { text-align: center; padding: 20px 0; }
.sf-success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(141, 198, 63, 0.15);
    border: 1px solid rgba(141, 198, 63, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-bright);
}
.sf-success-icon svg { width: 34px; height: 34px; }
.sf-success h2 { font-size: 1.7rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.sf-success-lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 14px;
}
.sf-success p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; max-width: 420px; margin: 0 auto; }
.sf-success-btn { margin-top: 28px; }

/* ---- SIGN-UP RESPONSIVE ---- */
@media (max-width: 880px) {
    .signup-grid { grid-template-columns: 1fr; gap: 22px; }
    .signup-summary { position: static; order: 2; }
    .signup-form-card { order: 1; }
}

@media (max-width: 640px) {
    .signup-header { padding: 20px 18px; }
    .signup-main { padding: 12px 18px 60px; }
    .signup-summary { padding: 28px 24px; }
    .signup-form-card { padding: 30px 24px; }
    .signup-form .form-row { grid-template-columns: 1fr; gap: 0; }
}


/* ===== CLIENT PHOTO STRIP (fast full-bleed auto-scroll) ===== */
.photo-strip {
    display: block;
    width: 100%;
    overflow: hidden;
    background: #080C18;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    text-decoration: none;
}
.photo-strip-track {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: ps-scroll 30s linear infinite;
    will-change: transform;
}
.photo-strip:hover .photo-strip-track { animation-play-state: paused; }
.ps-item {
    flex: 0 0 auto;
    width: 130px;
    height: 130px;
    border-radius: 10px;
    overflow: hidden;
}
.ps-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@keyframes ps-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .photo-strip-track { animation: none; }
    .shimmer-text { animation: none; }
    .reveal-title { filter: none; transform: none; transition: opacity 0.6s var(--ease); }
    .results-rotator .rotator-item { transform: none; transition: opacity 0.4s var(--ease); }
}
@media (max-width: 768px) {
    .ps-item { width: 92px; height: 92px; }
    .photo-strip-track { gap: 8px; animation-duration: 22s; }
}

/* Emphasis words in the "Why We're Different" paragraph */
.different-body .di-em {
    font-style: italic;
    color: #8DC63F;
    font-weight: 500;
}

/* Metallic green emphasis on the closing "complete system" phrase */
.different-body .di-metal {
    font-weight: 600;
    background: linear-gradient(115deg, #4e7d1f 0%, #8DC63F 20%, #f2fff0 42%, #a8e05a 52%, #8DC63F 66%, #5f8f28 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 1px 6px rgba(141, 198, 63, 0.18);
}

/* Reusable italic metallic-green text (used for emphasis words in the hero) */
.metal-text {
    font-style: italic;
    font-weight: 600;
    background: linear-gradient(115deg, #4e7d1f 0%, #8DC63F 20%, #f2fff0 42%, #a8e05a 52%, #8DC63F 66%, #5f8f28 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 1px 6px rgba(141, 198, 63, 0.18);
}

/* ===== "Not sure which plan" CTA (between packages and reviews) ===== */
.plan-help {
    padding: 24px 24px 72px;
    text-align: center;
}
.plan-help-viewall {
    text-align: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 30px;
}
.plan-help-viewall a {
    color: var(--brand-green, #8DC63F);
    text-decoration: none;
    border-bottom: 1px solid rgba(141,198,63,0.4);
    padding-bottom: 1px;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.plan-help-viewall a:hover {
    color: #a8e05a;
    border-color: #a8e05a;
}

/* ===== "Extended Packages" divider (homepage mobile + reused) ===== */
.extended-divider {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 860px;
    margin: 40px auto 0;
}
.extended-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-2), transparent);
}
.extended-label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
}
.extended-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 12px auto 0;
}

/* Homepage packages: keep 3-across on desktop, reflow on mobile.
   The Stripe line + Extended divider live inside the grid but only show on mobile. */
.pkg-mobile-break { display: none; }
.pkg-viewall { margin-top: 22px; }
@media (max-width: 768px) {
    .pkg-mobile-break {
        display: block;
        grid-column: 1 / -1;
        order: 2;            /* sits after the two core cards, before Fight Camp (order:3) */
        margin: 0;
    }
    .pkg-mobile-break .stripe-trust { margin-top: 0; }   /* sit right under Nutrition + Training */
    .pkg-mobile-break .extended-divider { margin-top: 26px; }
    .pkg-stripe-desktop { display: none; }   /* the mobile break shows its own Stripe line */
}

.plan-help-inner {
    max-width: 600px;
    margin: 0 auto;
}
.plan-help-inner h2 {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
    line-height: 1.25;
}
.plan-help-inner p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 26px;
}
@media (max-width: 768px) {
    .plan-help { padding: 12px 24px 56px; }
    .plan-help-inner h2 { font-size: 1.35rem; }
    .plan-help-inner p { font-size: 0.98rem; }
}

/* ===== Store link line on main page (full store now lives in store.html) ===== */
.store-cta {
    padding: 16px 24px 72px;
    text-align: center;
}
.store-cta-line {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
}
.store-cta-line a {
    color: var(--green-bright);
    text-decoration: none;
    font-weight: 700;
}
.store-cta-line a:hover { text-decoration: underline; }
.store-cta-faq { margin-top: 16px; margin-bottom: 0; text-align: center; }
.store-cta-faq-top { margin-bottom: 34px; }

/* ===== store.html standalone page ===== */
.store-page { padding-top: 60px; }
.store-back {
    text-align: center;
    margin-top: 52px;
}
@media (max-width: 768px) {
    .store-cta { padding: 44px 24px 56px; }
    .store-cta-line { font-size: 0.98rem; }
    .store-page { padding-top: 32px; }
    /* Store page: keep all 3 products SIDE BY SIDE on mobile, compacted to fit */
    .store-page .store-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; max-width: none; margin: 0; }
    .store-page .product-image-wrap { height: 82px; }
    .store-page .product-emoji { font-size: 1.5rem; }
    .store-page .product-placeholder { font-size: 0.55rem; gap: 3px; }
    .store-page .product-info { padding: 11px 9px; }
    .store-page .product-type { font-size: 0.5rem; letter-spacing: 0.05em; margin-bottom: 4px; }
    .store-page .product-info h4 { font-size: 0.72rem; margin-bottom: 4px; line-height: 1.2; }
    .store-page .product-info p { font-size: 0.6rem; line-height: 1.35; margin-bottom: 10px; }
    .store-page .product-bottom { flex-direction: column; align-items: stretch; gap: 8px; }
    .store-page .product-price { font-size: 0.95rem; }
    .store-page .product-btn { width: 100%; justify-content: center; padding: 8px 6px; font-size: 0.66rem; }
}
