:root {
    --bg-dark: #050505;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    --accent-red: #FF453A;
    --accent-orange: #FF453A;
    --accent-glow: rgba(255, 59, 48, 0.4);
    --text-white: #ffffff;
    --text-muted: #b0b0b0;
    --font-heading: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --anim-curve: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-heading);
    margin: 0;
    overflow-x: hidden;
    width: 100%;
    /* Strict width */
    position: relative;
    -webkit-font-smoothing: antialiased;
}

html {
    overflow-x: hidden;
    width: 100%;
}

/* Typography */
h1,
h2,
h3 {
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.03em;
}

/* Fluid Typography System */
.display-title {
    font-size: clamp(2.5rem, 5vw + 1rem, 5.5rem);
    /* Scales from 2.5rem to 5.5rem */
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.small-title {
    font-size: clamp(2rem, 4vw, 3.5rem) !important;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.5;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 32px;
}

.text-outline {
    -webkit-text-stroke: 1px var(--text-white);
    color: transparent;
}

.text-red {
    color: var(--accent-red);
}

.text-rad-gradient {
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 450px;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
}

/* Buttons */
.btn {
    padding: 16px 32px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.4s var(--anim-curve);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--accent-red);
    color: white;
    border: none;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn:hover {
    transform: scale(1.05);
}

.glow-effect:hover {
    box-shadow: 0 0 40px var(--accent-glow);
}

/* Layouts */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 120px 0;
}

/* Specific spacing adjustments */
#who {
    padding-bottom: 60px;
}

#modules {
    padding-top: 60px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes floatMobile {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(0.6) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) scale(0.6) translateY(-20px);
    }
}

/* Floating Nav */
.floating-nav {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    z-index: 1000;
    width: max-content;
    max-width: 90vw;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-brand {
    font-weight: 900;
    letter-spacing: -1px;
    white-space: nowrap;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: white;
}

/* Hero Grid */
/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.hero-badge .star {
    color: #FFD700;
}

.hero-premium {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 160px;
    /* Ensure huge clearance for header */
    overflow: hidden;
    background: radial-gradient(circle at 80% 50%, #1a1a1a 0%, #050505 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    align-items: center;
}

/* CSS 3D Camera Rig */
.hero-visual {
    position: relative;
    height: 600px;
    perspective: 1000px;
}

.camera-rig {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 300px;
    background: #111;
    border-radius: 24px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
}

.cam-lens-mount {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #000;
    border: 4px solid #222;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.cam-lens {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #0a0a0a;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.lens-reflection {
    width: 120%;
    height: 120%;
    background: linear-gradient(45deg, rgba(255, 59, 48, 0.2), transparent 40%);
    position: absolute;
    top: -10%;
    left: -10%;
    border-radius: 50%;
}

.cam-flash {
    position: absolute;
    top: 20px;
    right: 40px;
    width: 60px;
    height: 10px;
    background: #333;
    border-radius: 4px;
}

.cam-shutter {
    position: absolute;
    top: -15px;
    right: 80px;
    width: 40px;
    height: 15px;
    background: var(--accent-red);
    border-radius: 4px 4px 0 0;
}

/* Floating Cards */
/* Pinned Floating Cards (Relative to Camera Rig) */
/* These are now absolutely positioned relative to the .hero-visual container */
.float-card {
    position: absolute;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 5;
    white-space: nowrap;
}

.float-card strong {
    display: block;
    font-size: 1.4rem;
    color: white;
}

/* Position values are relative to the 400x300 rig layout */
.card-1 {
    /* ISO - Top Right */
    top: -10%;
    right: -20%;
    transform: rotate(6deg);
}

.card-2 {
    /* f/ - Bottom Left */
    bottom: -10%;
    left: -15%;
    transform: rotate(-6deg);
}

.card-3 {
    /* 1/ - Right Side */
    top: 50%;
    right: -25%;
    transform: translateY(-50%);
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    border-left: 2px solid #333;
    padding-left: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 24px;
}

.bento-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: transform 0.3s var(--anim-curve);
    border: 1px solid transparent;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
    background: var(--bg-card-hover);
}

.card-lg {
    grid-column: span 2;
}

.card-tall {
    grid-column: span 1;
    grid-row: span 2;
    background: var(--accent-red) !important;
    color: white;
}

.card-tall h3,
.card-tall p {
    color: white !important;
}

/* Hero Grid */
.hero-premium {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 80% 50%, #1a1a1a 0%, #050505 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    align-items: center;
}

/* CSS 3D Camera Rig */
.hero-visual {
    position: relative;
    height: 600px;
    perspective: 1000px;
}

.camera-rig {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 300px;
    background: #111;
    border-radius: 24px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
}

.cam-lens-mount {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #000;
    border: 4px solid #222;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.cam-lens {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #0a0a0a;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.lens-reflection {
    width: 120%;
    height: 120%;
    background: linear-gradient(45deg, rgba(255, 59, 48, 0.2), transparent 40%);
    position: absolute;
    top: -10%;
    left: -10%;
    border-radius: 50%;
}

.cam-flash {
    position: absolute;
    top: 20px;
    right: 40px;
    width: 60px;
    height: 10px;
    background: #333;
    border-radius: 4px;
}

.cam-shutter {
    position: absolute;
    top: -15px;
    right: 80px;
    width: 40px;
    height: 15px;
    background: var(--accent-red);
    border-radius: 4px 4px 0 0;
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.float-card strong {
    display: block;
    font-size: 1.4rem;
    color: white;
}

.card-1 {
    top: 10%;
    right: 10%;
    transform: rotate(5deg);
}

.card-2 {
    bottom: 20%;
    left: 0%;
    transform: rotate(-5deg);
}

.card-3 {
    top: 40%;
    right: -5%;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    border-left: 2px solid #333;
    padding-left: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 24px;
}

.bento-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: transform 0.3s var(--anim-curve);
    border: 1px solid transparent;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
    background: var(--bg-card-hover);
}

.card-lg {
    grid-column: span 2;
}

.card-tall {
    grid-column: span 1;
    grid-row: span 2;
    background: var(--accent-red) !important;
    color: white;
}

.card-tall h3,
.card-tall p {
    color: white !important;
}

.card-wide {
    grid-column: span 2;
}

/* Modules Carousel */
.modules-carousel-container {
    width: 100%;
    overflow-x: auto;
    padding: 0 5vw 40px 5vw;
    scrollbar-width: none;
}

.modules-carousel-container::-webkit-scrollbar {
    display: none;
}

.modules-carousel {
    display: flex;
    gap: 32px;
    width: max-content;
}

.module-card {
    width: 280px;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.4s var(--anim-curve);
    position: relative;
}

.module-card:hover {
    transform: translateY(-12px);
}

.card-visual {
    height: 380px;
    width: 100%;
    border-radius: 20px;
    margin-bottom: 24px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* Gradient Placeholders & Images */
.visual-1 {
    background: url('assets/module_01.png');
    background-size: cover;
    background-position: center;
}

.visual-2 {
    background: url('assets/module_02.png');
    background-size: cover;
    background-position: center;
}

.visual-3 {
    background: url('assets/module_03.png');
    background-size: cover;
    background-position: center;
}

.visual-4 {
    background: url('assets/module_04.png');
    background-size: cover;
    background-position: center;
}

.visual-5 {
    background: url('assets/module_05.png');
    background-size: cover;
    background-position: center;
}

.visual-6 {
    background: url('assets/module_06.png');
    background-size: cover;
    background-position: center;
}

.visual-7 {
    background: url('assets/module_07.png');
    background-size: cover;
    background-position: center;
}

.card-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0.6;
}

.card-details {
    text-align: center;
}

.module-number {
    display: block;
    color: var(--accent-red);
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.module-card-title {
    font-size: 1.5rem;
    color: white;
    line-height: 1.2;
    margin-bottom: 8px;
    font-weight: 700;
}

.module-card-desc {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

/* Header Utilities */
.text-orange {
    color: var(--accent-red);
}

.ls-2 {
    letter-spacing: 2px;
}

.fw-bold {
    font-weight: 700;
}

.text-uppercase {
    text-transform: uppercase;
}

.small-title {
    font-size: 3rem !important;
}

.mb-60 {
    margin-bottom: 60px;
}

.center-text {
    text-align: center;
}

.btn-round-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: black;
    font-weight: bold;
    margin-right: 12px;
}

.section-desc {
    color: #888;
    margin-top: 16px;
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* Scroll Controls */
.scroll-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}

.btn-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-nav:hover {
    background: white;
    color: black;
    border-color: white;
}

/* Modules Strip */
.modules-heavy-grid {
    display: grid;
    gap: 8px;
}

.module-strip {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: #0f0f0f;
    border-bottom: 1px solid #222;
    transition: all 0.3s;
}

.module-strip:hover {
    background: #161616;
    padding-left: 48px;
}

.mod-num {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: monospace;
}

.highlight-border {
    border-left: 4px solid var(--accent-red);
}

/* Pricing */
.price-mega-card {
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 32px;
    padding: 60px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-red);
    color: white;
    padding: 4px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 100px;
}

.price-display {
    font-size: 4rem;
    font-weight: 800;
    margin: 24px 0;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    text-align: left;
}

.check-list li {
    margin-bottom: 12px;
    color: #ccc;
    border-bottom: 1px solid #222;
    padding-bottom: 12px;
}

.check-list-sm {
    display: flex;
    flex-direction: column;
}

/* Marquee */
/* Marquee */
.marquee-strip {
    background: var(--accent-red);
    color: white;
    padding: 16px 0;
    overflow: hidden;
    transform: rotate(-2deg) scale(1.05);
}

.marquee-content {
    white-space: nowrap;
    animation: scroll 20s linear infinite;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

@keyframes scroll {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Outcomes Grid Redesign */
.outcomes-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 48px;
    margin-top: 40px;
    max-width: 1000px;
}

.outcome-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 32px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.3s ease;
}

.outcome-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: var(--accent-red);
}

.outcome-icon {
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-red);
    opacity: 0.8;
}

.outcome-item p {
    margin: 0;
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.4;
}

.outcome-card {
    min-height: auto;
    padding: 24px;
}

/* Mobile */
/* Moved to centralized responsive section */

/* Moved to centralized responsive section */

/* Utilities */
.animated-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animated-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Three Column Grid (Replaces Bento) */
.three-col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bento-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* More subtle border */
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
}

.card-icon {
    margin-bottom: 24px;
    /* More breathing room */
    color: var(--accent-red);
}

.card-icon svg {
    width: 48px;
    height: 48px;
}

.bento-card h6 {
    font-size: 1.5rem;
    /* Larger Title */
    font-weight: 800;
    color: white;
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-group {
    display: flex;
    gap: 24px;
    align-items: center;
}

.btn-lg {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

/* Experience Grid (Methodology) */
.experience-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
}

.experience-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    /* Slight roundness */
    padding: 32px;
    flex: 1 1 250px;
    /* Responsive flex basis */
    max-width: 350px;
    /* Don't get too wide */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centered content */
    text-align: center;
    transition: all 0.4s var(--anim-curve);
    position: relative;
    overflow: hidden;
}

.experience-card:hover {
    background: rgba(255, 255, 255, 0.08);
    /* Brighter */
    transform: translateY(-8px);
    /* Lift */
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.experience-card:hover::before {
    transform: scaleX(1);
}

.exp-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Gradient Icon */
}

.experience-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: white;
}

.experience-card p {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.5;
    margin: 0;
}

/* Closing Highlight Box */
.highlight-box {
    text-align: center;
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.highlight-box p {
    font-size: 1.2rem;
    color: #ccc;
    margin: 0;
}

/* Methodology Section (2-Column Restructure) */
.methodology-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.sticky-column {
    position: sticky;
    top: 40px;
    align-self: start;
    /* Required for sticky to work in flex/grid */
    height: auto;
}

.methodology-right {
    padding-top: 24px;
}

.methodology-list {
    display: flex;
    flex-direction: column;
}

.methodology-item {
    display: flex;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    align-items: flex-start;
}

.methodology-item:hover {
    border-color: var(--accent-red);
}

.item-number {
    font-family: monospace;
    color: var(--accent-red);
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 4px;
    /* Align with title */
}

.item-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: white;
}

.item-content p {
    font-size: 1rem;
    color: #bbb;
    line-height: 1.6;
    margin: 0;
    max-width: 450px;
}

/* Closing Highlight within List */
.highlight-item {
    border-bottom: none;
    margin-top: 40px;
    padding-top: 0;
    padding-left: 40px;
    /* Indent slightly */
    border-left: 4px solid var(--accent-red);
}

/* Mobile Methodology */
/* Moved to centralized responsive section */

/* Trainer Section */
.trainer-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.trainer-left {
    flex: 1;
    min-width: 300px;
}

.trainer-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trainer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.gallery-item {
    aspect-ratio: 4/5;
    /* Portrait orientation */
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s var(--anim-curve);
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Rounded Pill Button */
.rounded-pill {
    border-radius: 50px;
    padding-left: 32px;
    padding-right: 32px;
}

/* Moved to centralized responsive section */

/* Premium Icon Circle Button */
.btn-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Center content */
    background-color: var(--accent-orange);
    color: white;
    padding: 10px 24px;
    /* Balanced padding */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s var(--anim-curve), box-shadow 0.3s ease;
    gap: 12px;
    /* Gap between text and icon */
    border: none;
}

.btn-icon-circle:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--accent-glow);
}

.btn-icon-circle .circle-icon {
    width: 32px;
    /* Slightly smaller icon container for better proportion */
    height: 32px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.btn-icon-circle:hover .circle-icon {
    transform: rotate(-45deg);
    /* Subtle arrow tilt or movement */
}

/* Trainer Typography Updates */
.trainer-lead {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.3;
    font-weight: 500;
    max-width: 90%;
}

.trainer-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.meta-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Moved to centralized responsive section */

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pricing-card {
    background: #141414;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s var(--anim-curve);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Featured Card (Orange) */
.pricing-card.featured {
    background: var(--accent-orange);
    border: none;
    color: white;
}

.pricing-card.featured h3,
.pricing-card.featured .price-row .amount,
.pricing-card.featured .price-row .currency,
.pricing-card.featured .check-list-sm li {
    color: white;
}

.pricing-card.featured .check-list-sm li {
    opacity: 0.9;
}

.pricing-card.featured .check-list-sm li::before {
    color: white;
}

.pricing-card.featured .card-badge {
    background-color: white;
    color: var(--accent-orange);
}

.card-badge {
    background-color: var(--accent-orange);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    display: inline-block;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    min-height: 1.5em;
}

.price-row {
    margin-bottom: 32px;
    min-height: 3.5rem;
    display: flex;
    align-items: baseline;
}

.price-row .currency {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-right: 4px;
}

.price-row .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
}

.text-xl {
    font-size: 1.5rem;
    line-height: 1.2;
}

/* Checkmarks */
.check-list-sm {
    list-style: none;
    /* Remove default bullets */
    padding: 0;
    margin: 0;
}

.check-list-sm li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    width: 100%;
    list-style: none !important;
}

/* Premium Icon Circle Button */
.btn-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Center content */
    background-color: var(--accent-orange);
    color: white;
    padding: 10px 24px;
    /* Balanced padding */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s var(--anim-curve), box-shadow 0.3s ease;
    gap: 12px;
    /* Gap between text and icon */
    border: none;
}

.btn-icon-circle:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--accent-glow);
}

.btn-icon-circle .circle-icon {
    width: 32px;
    /* Slightly smaller icon container for better proportion */
    height: 32px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.btn-icon-circle:hover .circle-icon {
    transform: rotate(-45deg);
    /* Subtle arrow tilt or movement */
}

/* Trainer Typography Updates */
.trainer-lead {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.3;
    font-weight: 500;
    max-width: 90%;
}

.trainer-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.meta-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Moved to centralized responsive section */

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pricing-card {
    background: #141414;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s var(--anim-curve);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Featured Card (Orange) */
.pricing-card.featured {
    background: var(--accent-orange);
    border: none;
    color: white;
}

.pricing-card.featured h3,
.pricing-card.featured .price-row .amount,
.pricing-card.featured .price-row .currency,
.pricing-card.featured .check-list-sm li {
    color: white;
}

.pricing-card.featured .check-list-sm li {
    opacity: 0.9;
}

.pricing-card.featured .check-list-sm li::before {
    color: white;
}

.pricing-card.featured .card-badge {
    background-color: white;
    color: var(--accent-orange);
}

.card-badge {
    background-color: var(--accent-orange);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    display: inline-block;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    min-height: 1.5em;
}

.price-row {
    margin-bottom: 32px;
    min-height: 3.5rem;
    display: flex;
    align-items: baseline;
}

.price-row .currency {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-right: 4px;
}

.price-row .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
}

.text-xl {
    font-size: 1.5rem;
    line-height: 1.2;
}

/* Checkmarks */
.check-list-sm {
    list-style: none;
    /* Remove default bullets */
    padding: 0;
    margin: 0;
}

.check-list-sm li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    width: 100%;
    list-style: none !important;
}

/* Restored Checkmarks (Global SVG) */
.check-list-sm li::before {
    content: "";
    /* Empty content for background image */
    position: absolute;
    left: 0;
    top: 4px;
    /* Optical alignment */
    width: 20px;
    /* Slightly larger for visibility */
    height: 20px;
    border-radius: 0 !important;
    /* Ensure no circle shape */
    background-color: transparent !important;
    /* Ensure no solid color */
    /* Orange Checkmark for Dark Cards */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff3b30' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* White Checkmark for Featured (Orange) & Red Cards */
.pricing-card.featured .check-list-sm li::before,
.bento-card.bg-red .check-list-sm li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

/* Button Variants */
.btn-icon-circle.variant-white {
    background: white;
    color: black;
    margin-top: 40px;
    /* Add requested space */
    width: 100%;
}

.btn-icon-circle.variant-white .circle-icon {
    background: var(--accent-orange);
    color: white;
}

.btn-icon-circle.variant-dark {
    background: #252525;
    color: white;
    margin-top: 40px;
    /* Add requested space */
    width: 100%;
}

/* Moved to centralized responsive section */

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.review-card {
    background: #1a1a1a;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--text-white);
    font-size: 1.2rem;
}

.reviewer-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-white);
}

.google-stars {
    display: flex;
    gap: 2px;
    color: #FFD700;
    /* Google Star Yellow */
    font-size: 0.9rem;
}

.review-text {
    line-height: 1.6;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.google-logo-sm {
    width: 24px;
    height: 24px;
    opacity: 0.8;
}

.reviews-cta-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.reviews-cta-row .btn-icon-circle {
    min-width: 200px;
    width: auto !important;
    margin-top: 0 !important;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-white);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-orange);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: var(--accent-orange);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active {
    border-color: rgba(255, 59, 48, 0.3);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
    max-height: 200px;
}

/* Header / Navbar */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    /* Boost z-index to be top of everything */
    padding: 32px 0;
    background: rgba(10, 10, 10, 0.9);
    /* Dark legible background */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

/* Push content down so it doesn't hide behind fixed header */
body {
    padding-top: 120px;
}

.main-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: -0.5px;
    justify-self: start;
    justify-self: start;
    white-space: nowrap !important;
    /* Force single line */
    flex-shrink: 0;
    /* Prevent crushing */
    /* Prevent breaking on mobile */
}

/* Centered Pill Menu */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 32px;

    background: rgba(255, 255, 255, 0.05);
    /* Dark pill background */
    padding: 12px 32px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);

    justify-self: center;
    /* Grid centering */
}

/* Mobile Nav Overlay */
.nav-menu.active {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    gap: 32px;
}

.nav-menu.active .nav-link {
    font-size: 1.5rem;
}



/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    justify-self: end;
    z-index: 1002;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Wrapper for specific alignment to ensure center menu is truly center */
/* Since I can't easily add a wrapper to HTML right now without another step, I will stick to space-between 
   BUT giving the nav-logo flex: 1 and adding a phantom spacer or ensuring CTA behaves. 
   Simpler: Just style the menu as requested. space-between is usually fine. 
*/

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 1;
    color: var(--accent-orange);
}



/* Footer Overhaul */
.footer-premium {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px;
}

@media (max-width: 768px) {
    .footer-premium {
        padding: 40px 0 20px;
        /* Reduced mobile padding */
    }
}

.footer-top-message {
    text-align: center;
    margin-bottom: 60px;
}

.footer-lead {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.footer-sub-lead {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.footer-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    text-align: center;
}

.footer-block h4 {
    color: var(--accent-orange);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-link:hover {
    color: var(--accent-orange);
    opacity: 1;
}

/* Footer Card Links (The Fix) */
.footer-card-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: white;
    padding: 12px;
    border-radius: 12px;
    transition: background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(255, 255, 255, 0.02);
}

.footer-card-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-icon {
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
}

.footer-link-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 4px;
}

.footer-link-text .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.footer-link-text .value {
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
}

.footer-interactive-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Moved to centralized responsive section */

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-white);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-orange);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: var(--accent-orange);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active {
    border-color: rgba(255, 59, 48, 0.3);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
    max-height: 200px;

}


/* =========================================
   CENTRALIZED RESPONSIVE ENGINE
   ========================================= */

/* Use standard breakpoints for consistency:
   - Laptop/Desktop: > 1024px
   - Tablet Landscape/Small Laptop: 1024px max
   - Tablet Portrait: 768px max
   - Mobile: 576px max
*/

/* 1. Laptop & Large Tablet (Landscape) - 1200px down to 992px */
@media (max-width: 1280px) {
    .container {
        padding: 0 40px;
        /* Increase gutters on smaller screens */
        max-width: 100%;
    }

    .hero-text {
        padding-left: 0;
    }

    /* Prevent hero text from hitting edges too hard */
    .hero-premium {
        padding-top: 100px;
    }
}

/* 2. Small Laptop / Tablet Mode (992px - 1024px Range) */
@media (max-width: 1024px) {

    /* Scaling Titles */
    .display-title {
        font-size: 3.5rem;
    }

    /* Grids to 2 Columns */
    .three-col-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for tablets */
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        /* Auto rows */
    }

    .card-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .card-lg {
        grid-column: span 2;
    }

    .methodology-wrapper {
        gap: 40px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols */
        gap: 24px;
    }

    /* Ensure last item in pricing grid spans 2 if needed or just flows */
    .pricing-grid .pricing-card:last-child {
        grid-column: span 1;
        /* Keep it uniform or center it? 1 is safer */
    }

    /* Trainer adjustments */
    .trainer-gallery {
        grid-template-columns: repeat(3, 1fr);
        /* Keep 3 but smaller */
        gap: 16px;
    }
}

/* 3. Tablet Portrait & Mobile Large (Max 900px breakpoint for earlier trigger) */
@media (max-width: 900px) {
    .hero-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .stat-item {
        align-items: center;
    }

    .hero-stats {
        border-left: none;
        padding-left: 0;
        justify-content: center;
    }

    .hero-visual {
        height: 350px;
        width: 100%;
        max-width: 600px;
        order: -1;
        /* Move Camera to Top */
        margin-bottom: 20px;
        margin-top: 20px;
    }

    /* Fix Camera Rig Centering when stacked */
    .camera-rig {
        transform: translate(-50%, -50%) scale(0.8);
    }

    /* Navigation: Hide links, show potential mobile menu toggle if it existed, 
       but for now just keeping it clean as per request */
    .nav-menu {
        display: none !important;
    }

    /* Pricing to 1 column for clearer reading on narrow tablets */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .methodology-wrapper {
        grid-template-columns: 1fr;
    }

    .sticky-column {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }

    .outcomes-list-grid {
        grid-template-columns: 1fr;
    }
}

/* 4. Mobile Devices (Max 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .mobile-menu-btn {
        display: flex !important;
        /* Force visible on mobile */
        margin-left: auto;
        /* Push to right in flex */
    }

    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }

    /* Ensure nav-menu doesn't take space when hidden */
    .nav-menu {
        display: none !important;
    }

    /* Fix Hero Overlap */
    .hero-premium {
        padding-top: 150px !important;
        /* Reduced from 180px */
        min-height: auto;
        padding-bottom: 20px;
        align-items: flex-start;
    }

    .hero-grid {
        gap: 20px;
    }

    .hero-visual {
        height: 280px;
        margin-top: 0;
        /* Removed top margin */
        margin-bottom: 40px;
        position: relative;
    }

    /* Spacing for Hero Elements */
    .hero-text .hero-badge {
        margin-bottom: 24px !important;
        /* Space between badge and title */
    }

    .hero-text .display-title {
        margin-bottom: 24px !important;
        /* Space between title and subtitle */
    }

    .nav-menu {
        display: none;
        /* Hidden strictly unless .active */
    }

    .section-padding {
        padding: 60px 0;
    }

    /* Improve Mobile Typography */
    .display-title {
        font-size: 2.8rem;
    }

    .small-title {
        font-size: 2.2rem;
    }

    /* Stack All Grids */
    .three-col-grid,
    .bento-grid,
    .trainer-gallery,
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    /* Reset Bento Spans */
    .card-lg,
    .card-tall,
    .card-wide {
        grid-column: span 1 !important;
        grid-row: auto !important;
    }

    .trainer-header-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .trainer-right {
        align-items: center;
    }

    .trainer-meta-row {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    /* FAQ */
    .faq-question {
        padding: 20px 0;
        /* Save side space */
    }

    /* Footer */
    .footer-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-top-message {
        text-align: center;
    }

    /* Camera Rig Mobile Optimization */
    .hero-visual {
        height: 300px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .camera-rig {
        /* Includes float animation integrated with transform */
        animation: floatMobile 6s ease-in-out infinite;
        transform: translate(-50%, -50%) scale(0.6);
        /* Fallback */
    }

    /* Reposition Floating Cards for Mobile to avoid overlap */
    .card-1 {
        top: 0% !important;
        right: 15% !important;
        /* Move inward */
    }

    .card-2 {
        bottom: 10% !important;
        left: 15% !important;
        /* Move inward */
    }

    .card-3 {
        display: block !important;
        top: 65% !important;
        right: 15% !important;
        /* Move inward */
        transform: translateY(-50%) !important;
    }

    /* Fix Marquee Spacing on Mobile */
    .marquee-strip {
        margin: 50px 0;
        /* Add clearance */
        transform: rotate(-2deg) scale(1.01);
        /* Reduce scale slightly */
    }

    /* Ensure Scroll Space for Dock */
    body {
        padding-bottom: 140px !important;
    }

    /* FAQ Adjustments for Mobile clarity */
    .faq-item {
        margin-bottom: 8px !important;
    }

    .faq-question {
        padding: 16px !important;
    }

    /* Hide one card to reduce clutter */
}

/* 5. Small Mobile (Max 480px) */
@media (max-width: 480px) {
    .display-title {
        font-size: 2.2rem;
        /* Smaller for portrait phones */
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    /* Refine Camera Rig for very small screens */
    .camera-rig {
        transform: translate(-50%, -50%) scale(0.45);
    }

    .hero-visual {
        height: 250px;
    }

    /* Floating Dock Adjustments (from custom_styles_scroll.css logic) */
    .floating-dock {
        width: 90vw;
        /* Use vw to be safe */
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        flex-direction: row;
        padding: 8px 12px;
        gap: 8px;
        align-items: center;
        justify-content: space-between;
        z-index: 9999;
        box-sizing: border-box;
        /* Critical for padding */
    }
}