@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,700;1,800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* =========================================
   DESIGN TOKENS
   ========================================= */
:root {
    --fire: #e8511a;
    --fire-light: #f07040;
    --fire-dim: rgba(232, 81, 26, 0.15);
    --fire-glow: rgba(232, 81, 26, 0.25);

    --ink: #080808;
    --ink-1: #0e0e0e;
    --ink-2: #141414;
    --ink-3: #1a1a1a;

    --white: #ffffff;
    --white-80: rgba(255, 255, 255, 0.8);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-08: rgba(255, 255, 255, 0.08);
    --white-04: rgba(255, 255, 255, 0.04);

    --border: rgba(255, 255, 255, 0.07);
    --border-fire: rgba(232, 81, 26, 0.35);

    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --t: all 0.4s var(--ease-out);

    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.5);
    --shadow-fire: 0 16px 40px rgba(232, 81, 26, 0.2);

    --nav-h: 68px;
    --r: 10px;
    --r-sm: 6px;

    --sp-xs: 8px;
    --sp-sm: 16px;
    --sp-md: 24px;
    --sp-lg: 40px;
    --sp-xl: 64px;
    --sp-2xl: 100px;
}

/* =========================================
   BASE RESET
   ========================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background: var(--fire);
    color: #fff;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
    background: var(--ink);
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    background: var(--ink);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 0.95;
    text-transform: uppercase;
}

em {
    font-style: normal;
    color: var(--fire);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   UTILITY CLASSES
   ========================================= */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--fire);
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--fire);
}

.glass {
    background: var(--white-04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: var(--r-sm);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--t);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background 0.2s;
}

.btn:hover::after {
    background: rgba(255, 255, 255, 0.06);
}

.btn-primary {
    background: var(--fire);
    color: #fff;
    box-shadow: 0 4px 20px var(--fire-glow);
}

.btn-primary:hover {
    background: var(--fire-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-fire);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--white-08);
    color: var(--white);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--white-20);
    border-color: var(--white-20);
    transform: translateY(-2px);
}

/* =========================================
   SCROLL REVEAL ANIMATION
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   NAVIGATION
   ========================================= */
nav.glass {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: var(--nav-h);
    padding: 0;
    border-bottom: 1px solid var(--border);
    background: rgba(8, 8, 8, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo img {
    height: 36px;
    width: auto;
    border-radius: 4px;
}

.logo span {
    color: var(--fire);
}

.nav-btn {
    padding: 10px 22px;
    font-size: 12px;
    border-radius: var(--r-sm);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-h);
    overflow: hidden;
}

/* layered bg */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(232, 81, 26, 0.13) 0%, transparent 65%),
        linear-gradient(160deg, #0a0a0a 0%, #110a04 60%, #0a0a0a 100%);
    z-index: 0;
}

/* subtle noise texture */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.hero-bg {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: clamp(40px, 8vh, 80px);
    padding-bottom: clamp(40px, 8vh, 80px);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: var(--fire-dim);
    border: 1px solid var(--border-fire);
    color: var(--fire-light);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    border-radius: 2px;
}

.hero-tag::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--fire);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.hero h1 {
    font-size: clamp(52px, 10vw, 120px);
    line-height: 0.9;
    margin-bottom: 28px;
    color: var(--white);
    max-width: 560px;
}

.hero-sub {
    font-size: clamp(15px, 1.8vw, 19px);
    color: var(--white-50);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.65;
    font-weight: 400;
}

.cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

/* stats strip */
.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 20px 32px;
    background: var(--white-04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--r);
    max-width: fit-content;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.stat-item:first-child {
    padding-left: 0;
    align-items: flex-start;
    text-align: left;
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 900;
    color: var(--fire);
    line-height: 1;
    letter-spacing: 0.02em;
}

.stat-label {
    font-size: 10px;
    color: var(--white-50);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 5px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
    flex-shrink: 0;
}

/* =========================================
   VIDEO SECTION
   ========================================= */
.video-section {
    padding: var(--sp-2xl) 0;
    background: var(--ink-1);
}

.video-container {
    max-width: 860px;
    margin: 36px 0 0;
    padding: 8px;
    border-radius: var(--r);
    border: 1px solid var(--border);
}

.video-player-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.video-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 30px 20px 16px;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-player-wrapper:hover .custom-controls {
    opacity: 1;
}

.custom-controls button {
    background: none;
    border: none;
    color: var(--white);
    font-size: 17px;
    cursor: pointer;
    opacity: 0.75;
    transition: var(--t);
    padding: 4px;
}

.custom-controls button:hover {
    opacity: 1;
    transform: scale(1.15);
    color: var(--fire-light);
}

.video-caption {
    margin-top: 16px;
    font-size: 13px;
    color: var(--white-50);
    font-style: italic;
}

/* section headings shared */
.problem-section h2,
.transform-section h2,
.how-section h2,
.groups-section h2,
.testimonials-section h2,
.faq-section h2 {
    font-size: clamp(36px, 5.5vw, 72px);
    margin-bottom: 16px;
}

.section-desc {
    font-size: clamp(15px, 1.7vw, 18px);
    color: var(--white-50);
    max-width: 640px;
    margin-bottom: 56px;
    line-height: 1.7;
}

/* =========================================
   PROBLEM SECTION
   ========================================= */
.problem-section {
    padding: var(--sp-2xl) 0;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
}

.pain-card {
    padding: clamp(24px, 3vw, 36px);
    background: var(--ink-1);
    border: none;
    border-radius: 0;
    transition: var(--t);
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--fire);
    transition: height 0.4s var(--ease-out);
}

.pain-card:hover {
    background: var(--ink-2);
    transform: none;
    box-shadow: none;
}

.pain-card:hover::before {
    height: 100%;
}

.pain-icon {
    font-size: 28px;
    margin-bottom: 20px;
    display: block;
}

.pain-card h3 {
    font-size: clamp(20px, 2.5vw, 26px);
    margin-bottom: 12px;
    color: var(--white);
}

.pain-card p {
    font-size: 14px;
    color: var(--white-50);
    line-height: 1.65;
}

/* =========================================
   TRANSFORM SECTION
   ========================================= */
.transform-section {
    padding: var(--sp-2xl) 0;
    background: var(--ink-1);
}

.transform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 56px;
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--border);
}

.before-col,
.after-col {
    padding: clamp(28px, 4vw, 48px);
}

.before-col {
    background: var(--ink-2);
    border-right: 1px solid var(--border);
}

.after-col {
    background: linear-gradient(135deg, rgba(232, 81, 26, 0.07) 0%, var(--ink-1) 100%);
}

.col-label {
    display: inline-block;
    padding: 5px 12px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--white-08);
    color: var(--white-50);
    margin-bottom: 28px;
    border-radius: 2px;
}

.col-label.highlight {
    background: var(--fire-dim);
    color: var(--fire-light);
    border: 1px solid var(--border-fire);
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 15px;
    color: var(--white-50);
    line-height: 1.4;
}

.check-list li i {
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 13px;
}

.before-col .check-list li i {
    color: #333;
}

.after-col .check-list li {
    color: var(--white-80);
}

.after-col .check-list li i {
    color: var(--fire);
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-section {
    padding: var(--sp-2xl) 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2px;
    margin-top: 56px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
}

.step {
    padding: clamp(28px, 3.5vw, 44px);
    background: var(--ink-1);
    position: relative;
    transition: background 0.3s;
}

.step:hover {
    background: var(--ink-2);
}

.step-number {
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 900;
    color: rgba(232, 81, 26, 0.08);
    line-height: 1;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.step:hover .step-number {
    color: rgba(232, 81, 26, 0.18);
}

.step h3 {
    font-size: clamp(20px, 2.2vw, 26px);
    margin-bottom: 12px;
    color: var(--white);
}

.step p {
    font-size: 14px;
    color: var(--white-50);
    line-height: 1.65;
}

/* =========================================
   GROUPS SECTION
   ========================================= */
.groups-section {
    padding: var(--sp-2xl) 0;
    background: var(--ink-1);
}

.groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 44px;
}

.group-card {
    padding: clamp(28px, 3.5vw, 40px);
    border-radius: var(--r);
    border: 1px solid var(--border);
    transition: var(--t);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.group-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fire), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.group-card:hover::after {
    transform: scaleX(1);
}

.group-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-fire);
    box-shadow: var(--shadow-fire);
}

.fat-loss {
    background: linear-gradient(145deg, #120d06 0%, var(--ink) 100%);
}

.muscle {
    background: linear-gradient(145deg, #060c12 0%, var(--ink) 100%);
}

.cheatcode {
    background: linear-gradient(145deg, #0d0612 0%, var(--ink) 100%);
    border-color: rgba(200, 80, 180, 0.15);
}

.group-badge {
    display: inline-block;
    padding: 5px 12px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--white-08);
    color: var(--white-50);
    margin-bottom: 24px;
    border-radius: 2px;
    border: 1px solid var(--border);
    align-self: flex-start;
}

.group-card h3 {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 14px;
    line-height: 1;
}

.group-card p {
    font-size: 14px;
    color: var(--white-50);
    margin-bottom: 28px;
    line-height: 1.65;
    flex: 1;
}

.group-includes li {
    font-size: 13px;
    color: var(--white-50);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.group-includes li i {
    font-size: 9px;
    color: var(--fire);
    flex-shrink: 0;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section {
    padding: var(--sp-2xl) 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 44px;
}

.testimonial-card {
    padding: clamp(24px, 3vw, 36px);
    border-radius: var(--r);
    border: 1px solid var(--border);
    transition: var(--t);
    background: var(--ink-1);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-fire);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.stars {
    color: var(--fire);
    margin-bottom: 18px;
    font-size: 14px;
    letter-spacing: 3px;
}

blockquote {
    font-size: 15px;
    font-style: italic;
    color: var(--white-80);
    margin-bottom: 28px;
    line-height: 1.7;
    flex: 1;
}

.author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: var(--fire);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 1px;
}

.author-info strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
}

.author-info span {
    font-size: 12px;
    color: var(--white-50);
}

.result-badge {
    display: inline-flex;
    padding: 5px 14px;
    background: var(--fire-dim);
    color: var(--fire-light);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid rgba(232, 81, 26, 0.2);
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
    padding: var(--sp-2xl) 0;
    background: var(--ink-1);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 56px;
}

.faq-item {
    padding: clamp(20px, 3vw, 28px) clamp(24px, 4vw, 36px);
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: var(--t);
    cursor: pointer;
}

.faq-item:hover {
    background: var(--ink-3);
    border-color: var(--border-fire);
    transform: translateX(8px);
}

.faq-item h3 {
    font-size: clamp(17px, 2vw, 21px);
    margin-bottom: 0;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-item h3::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    color: var(--fire);
    transition: var(--t);
}

.faq-item.active {
    background: linear-gradient(135deg, var(--ink-2) 0%, #150d06 100%);
    border-color: var(--border-fire);
}

.faq-item.active h3::after {
    content: '\f068';
    transform: rotate(180deg);
}

.faq-item p {
    font-size: 14px;
    color: var(--white-50);
    line-height: 1.65;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s var(--ease-out);
}

.faq-item.active p {
    max-height: 200px;
    opacity: 1;
    margin-top: 16px;
}

/* =========================================
   FINAL CTA
   ========================================= */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(160deg, #0a0a0a 0%, #1a0f06 50%, #0a0a0a 100%);
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 81, 26, 0.1) 0%, transparent 65%);
    pointer-events: none;
}

.final-cta h2 {
    font-size: clamp(40px, 7vw, 96px);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.final-cta>.container>p {
    font-size: clamp(15px, 1.7vw, 18px);
    color: var(--white-50);
    max-width: 520px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.final-cta .reveal {
    position: relative;
    z-index: 1;
}

.guarantee {
    margin-top: 18px;
    font-size: 12px !important;
    color: var(--white-50) !important;
    letter-spacing: 0.5px;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    padding: clamp(28px, 4vw, 48px) 0;
    border-top: 1px solid var(--border);
    background: #050505;
}

footer .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    font-size: 12px;
    color: var(--white-50);
}

.footer-links a {
    font-size: 12px;
    color: var(--white-50);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

/* =========================================
   RESPONSIVE — TABLET  ≤ 900px
   ========================================= */
@media (max-width: 900px) {
    :root {
        --sp-2xl: 72px;
    }

    .transform-grid {
        grid-template-columns: 1fr;
    }

    .before-col {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   RESPONSIVE — MOBILE  ≤ 640px
   ========================================= */
@media (max-width: 640px) {
    :root {
        --nav-h: 60px;
        --sp-2xl: 56px;
        --sp-xl: 40px;
        --r: 8px;
    }

    /* NAV */
    .logo {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .nav-btn {
        padding: 8px 16px;
        font-size: 11px;
    }

    /* HERO */
    .hero {
        min-height: 100svh;
        padding-top: var(--nav-h);
        text-align: left;
    }

    .hero h1 {
        font-size: clamp(46px, 14vw, 72px);
    }

    .hero-sub {
        font-size: 14px;
        color: var(--white-50);
    }

    .cta-group {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
    }

    .cta-group .btn {
        width: 100%;
        padding: 16px 20px;
        font-size: 13px;
    }

    /* Hero stats — horizontal scroll */
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        max-width: 100%;
        border: 1px solid var(--border);
        border-radius: var(--r-sm);
        overflow: hidden;
        padding: 0;
    }

    .stat-item {
        padding: 16px 10px;
        align-items: center;
        text-align: center;
        border-right: 1px solid var(--border);
        background: var(--white-04);
    }

    .stat-item:first-child {
        align-items: center;
        text-align: center;
        padding-left: 10px;
    }

    .stat-item:last-child {
        border-right: none;
    }

    .stat-divider {
        display: none;
    }

    .stat-value {
        font-size: 22px;
    }

    .stat-label {
        font-size: 9px;
        letter-spacing: 1px;
    }

    /* SECTION HEADINGS */
    h2 {
        font-size: clamp(32px, 9vw, 52px) !important;
    }

    .section-desc {
        font-size: 14px;
        margin-bottom: 36px;
    }

    /* PAIN CARDS — single column */
    .pain-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .pain-card {
        padding: 24px 20px;
    }

    .pain-icon {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .pain-card h3 {
        font-size: 20px;
    }

    .pain-card p {
        font-size: 14px;
    }

    /* TRANSFORM */
    .transform-grid {
        grid-template-columns: 1fr;
        margin-top: 36px;
    }

    .before-col,
    .after-col {
        padding: 24px 20px;
    }

    .col-label {
        font-size: 9px;
    }

    .check-list li {
        font-size: 14px;
        gap: 10px;
        margin-bottom: 14px;
    }

    /* STEPS */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .step {
        padding: 24px 20px;
    }

    .step-number {
        font-size: 56px;
    }

    .step h3 {
        font-size: 20px;
    }

    .step p {
        font-size: 14px;
    }

    /* GROUP CARDS */
    .groups-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .group-card {
        padding: 24px 20px;
    }

    .group-card h3 {
        font-size: 26px;
    }

    /* TESTIMONIALS */
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    blockquote {
        font-size: 14px;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .faq-item {
        padding: 22px 20px;
    }

    .faq-item h3 {
        font-size: 18px;
    }

    .faq-item p {
        font-size: 14px;
    }

    /* FINAL CTA */
    .final-cta {
        padding: 72px 0;
    }

    .final-cta h2 {
        font-size: clamp(36px, 11vw, 56px);
    }

    .final-cta>.container>p {
        font-size: 14px;
    }

    .final-cta .btn {
        width: 100%;
        max-width: 360px;
        padding: 18px 24px;
        font-size: 14px;
    }

    /* VIDEO */
    .video-section {
        padding: 56px 0;
    }

    .video-container {
        margin-top: 24px;
        padding: 6px;
    }

    .custom-controls {
        gap: 16px;
    }

    .custom-controls button {
        font-size: 16px;
    }

    /* FOOTER */
    footer .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* =========================================
   RESPONSIVE — SMALL MOBILE  ≤ 380px
   ========================================= */
@media (max-width: 380px) {
    .hero h1 {
        font-size: 42px;
    }

    .stat-value {
        font-size: 19px;
    }

    .stat-label {
        font-size: 8px;
    }

    .btn {
        font-size: 12px;
        padding: 14px 16px;
    }
}

/* =========================================
   SCROLL REVEAL INIT (js adds .in-view)
   ========================================= */