/* ================= LAYOUT ================= */
.section-inner {
    max-width: 1200px;
    text-align: center;
    margin: 0 auto;
    padding: 80px 24px;
}

.section-alt {
    padding: 0;
   background: radial-gradient(circle at top right, #ffe0e0, #d3ecff);
}
.fitness-pros.app-theme.for-homepage{
        background: radial-gradient(circle at top right, #ffe0e0, #d3ecff);
}

/* ================= TYPOGRAPHY ================= */
.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    ;
    background: rgba(238, 49, 127, 0.08);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

/* ===== ALIGN FIX ===== */
.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ===== NEW PILLARS DESIGN ===== */
.new-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}

/* CARD */
.pillar {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 32px 26px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-align: left;
  overflow: hidden;
}

/* HOVER EFFECT */
.pillar:hover {
  transform: translateY(-6px);
  border-color: #00C27C;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* CENTER CARD HIGHLIGHT */
.pillar.highlight {
  background: #ff5e19;
  color: #fff;
  border: none;
}

.pillar.highlight p {
  color: rgba(255,255,255,0.8);
}

/* TOP ROW */
.pillar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

/* DOT */
.pillar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00C27C;
}

.pillar.highlight .pillar-num {
  color: #fff;
}

/* TEXT */
.pillar p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* RESPONSIVE */
@media(max-width: 900px){
  .new-pillars {
    grid-template-columns: 1fr;
  }
}

.eyebrow.light {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
}

.section-title {
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-title.light {
    color: #fff;
}

.section-lead {
    font-size: 1rem;
    color: var(--muted);
    max-width: 680px;
    margin-bottom: 2.5rem;
}

.section-lead.light {
    color: rgba(255, 255, 255, 0.65);
}

/* ================= HERO ================= */
.hero-about {
    padding: 100px 24px;
}

.hero-wrap {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-chip {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    ;
    background: rgba(238, 49, 127, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.hero-content h1 {
    color: #000000;
    font-size: 58px;
    font-weight: 700;
    line-height: 65px;
    margin-bottom: 1.25rem;
}

.hero-content span {
    color: #ff5e19;
}

.hero-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-actions {
    margin-top: 1.5rem;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ================= BUTTON ================= */
.paoc-popup-button {
    background: var(--text-light);
    ;
    color: #fff;
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}

.paoc-popup-button:hover {
    opacity: 0.88;
}

/* ================= STATS ================= */
.stats-strip {
    padding: 2rem clamp(1.5rem, 5vw, 4rem);
    display: flex;
    justify-content: center;
    gap: clamp(2rem, 5vw, 5rem);
    flex-wrap: wrap;
    background: linear-gradient(90deg, #d3ecff, #ffe0e0);
    text-align: center;
    align-content: center;
    align-items: center;
}

.stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: #0b1220;
}

.stat-lbl {
    color: #6b7785;
    font-size: 0.95rem;
}

/* ================= STORY ================= */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.story-text p {
    color: var(--muted);
    margin-bottom: 1rem;
    font-size: 0.97rem;
}

.story-visual {
    background: #111;
    padding: 2rem;
    border-radius: 20px;
}

.story-pill {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.06);
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.pill-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pill-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.pill-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

/* ================= MISSION & VISION ================= */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.mv-card {
    background: #fff;
    text-align: left;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

.mv-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    ;
}

.mv-card p {
    font-size: 0.95rem;
    color: var(--muted);
}

/* ================= VALUES ================= */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-card {
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: var(--radius);
    transition: box-shadow 0.2s;
}

.value-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}

.value-icon {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.value-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.88rem;
    color: var(--muted);
}

/* ================= SERVE ================= */
.section-dark {
    padding: 0;
    background: #111;
    color: #fff;
}

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

.serve-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 22px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.serve-card h3 {
    font-size: 0.95rem;
    font-weight: 800;
    margin: 0.5rem 0;
    color: #fff;
}

.serve-card p {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.55);
}

.serve-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ff5e19;
}

/* ================= FEATURES ================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: box-shadow 0.2s;
}

.feature-row:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.feat-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feat-text h3 {
    font-size: 0.97rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.feat-text p {
    font-size: 0.86rem;
    color: var(--muted);
}

/* ================= PROMISE ================= */
.promise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.promise-list {
    list-style: none;
    margin-top: 1.5rem;
}

.promise-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.93rem;
    color: var(--muted);
}

.check-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: rgba(238, 49, 127, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.check-icon svg {
    width: 10px;
    height: 8px;
}

.promise-visual {
    background: #111;
    color: #fff;
    padding: 28px;
    border-radius: 20px;
}

.pv-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.pv-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    width: 140px;
    flex-shrink: 0;
}

.pv-bar-wrap {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    height: 6px;
    overflow: hidden;
}

.pv-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--text-light); #3188E8);
    border-radius: 50px;
}

.pv-val {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    width: 38px;
    text-align: right;
}

/* ================= PILLARS ================= */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pillar-num {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000000  ;
}

.pillar p {
    font-size: 0.86rem;
    color: var(--muted);
}

/* ================= TEAM ================= */
.team-quote {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
}

.team-quote blockquote {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.team-quote cite {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    font-style: normal;
}

.team-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-tile {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 20px;
    text-align: center;
    border-radius: var(--radius);
}

.team-tile h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    margin: 0.75rem 0 0.4rem;
}

.team-tile p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.team-avatar {
    background: #ff5e19;
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    margin: 0 auto;
}

/* ================= CTA ================= */
.cta-section {
    text-align: center;
    padding: 80px 24px;
    color: #000000;
    background: radial-gradient(circle at top right, #ffe0e0, #d3ecff);
}

.cta-section p {
    max-width: 620px;
    margin: 0 auto 2rem;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-dark {
       width: fit-content;
    padding: 15px 40px;
    background: #0f0f0f;
    display: inline-block;
    border-radius: 8px;
    color: #ffffff;
}

.btn-dark:hover {
    opacity: 0.88;
}

.btn-white-outline {
    border: 1px solid #000000;
    color: #000000;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s;
    display: inline-block;
}

.btn-white-outline:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .serve-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {

    .hero-wrap,
    .story-grid,
    .promise-grid,
    .mv-grid {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .features-grid,
    .pillars,
    .team-tiles {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .values-grid,
    .serve-grid,
    .features-grid,
    .pillars,
    .team-tiles {
        grid-template-columns: 1fr;
    }

    .stats-strip {
        flex-direction: column;
        align-items: center;
    }

    .section-inner {
        padding: 56px 20px;
    }

    .cta-section {
        padding: 56px 20px;
    }
}
        #fitnex-section {
            --brand-orange: #FF6B00;
            --brand-light: #FFF9F5;
            --fitnex-text-main: #101828;
            --fitnex-text-muted: #475467;
            --fitnex-card-border: rgba(255, 107, 0, 0.1);
            background-color: #FFFFFF;
            padding: 80px 0;
            width: 100%;
            /* Ensure no overflow hidden here if possible */
        }

        .fitnex-commitment-wrapper {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            /* Changed to stretch so the right column is as tall as the left */
            align-items: stretch; 
            box-sizing: border-box;
            position: relative;
        }

        .fitnex-commitment-wrapper * { box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }

        .fitnex-badge {
            color: var(--brand-orange);
            background: var(--brand-light);
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 25px;
        }

        .fitnex-title {
                font-size: 38px;
    line-height: 45px;
    font-weight: 700;
    letter-spacing: -2px;
    margin: 0 0 30px 0;
    color: #000000;
        }

        .fitnex-intro {
            font-size: 1.2rem;
            color: var(--fitnex-text-muted);
            line-height: 1.6;
            margin-bottom: 50px;
        }

        .fitnex-commitment-grid {
            display: grid;
            gap: 20px;
        }

        .fitnex-commitment-card {
            background: var(--brand-light);
            padding: 30px;
            border-radius: 24px;
            border: 1px solid var(--fitnex-card-border);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .fitnex-commitment-card:hover {
            background: #fff;
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(255, 107, 0, 0.1);
            border-color: var(--brand-orange);
        }

        .fitnex-commitment-card h4 {
            margin: 0 0 10px 0;
            color: var(--brand-orange);
            font-size: 1.3rem;
            font-weight: 700;
        }

        /* --- Sticky Fix Applied Here --- */
        .fitnex-sticky-container {
            position: sticky;
            top: 40px; /* Distance from top of viewport when scrolling */
            height: fit-content;
            align-self: start; /* Critical for sticky to work in grid */
        }

        .fitnex-infographic-wrapper {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .fitnex-bento-box {
            background: #fff;
            border-radius: 32px;
            padding: 40px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.05);
            border: 1px solid #f0f0f0;
            text-align: center;
        }

        .fitnex-large-box {
            grid-column: span 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            text-align: left;
            background: linear-gradient(135deg, var(--brand-orange), #ff914d);
            color: #fff;
        }

        .fitnex-large-box h3 { font-size: 2.5rem; margin: 0; color: #fff; }
        .fitnex-large-box p { font-size: 0.9rem; opacity: 0.9; margin: 5px 0 0 0; }

        .fitnex-stat-circle {
            position: relative;
            width: 100px;
            height: 100px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--brand-orange);
            border: 5px solid var(--brand-light);
            border-top: 5px solid var(--brand-orange);
            border-radius: 50%;
        }

        .fitnex-quote-card {
            grid-column: span 2;
            background: #101828;
            color: #fff;
            padding: 40px;
            border-radius: 32px;
            font-style: italic;
            font-size: 1.2rem;
            line-height: 1.6;
            border-left: 8px solid var(--brand-orange);
        }

        @media (max-width: 1024px) {
            .fitnex-commitment-wrapper { grid-template-columns: 1fr; }
            .fitnex-sticky-container { position: relative; top: 0; margin-bottom: 40px; }
            .fitnex-narrative { order: 2; }
            .fitnex-sticky-container { order: 1; }
        }
        #fitnex-story-root {
            --f-orange: #FF6B00;
            --f-orange-light: #FFF9F5;
            --f-text-dark: #101828;
            --f-text-gray: #475467;
            --f-bg: #FFFFFF;
            --f-shadow: 0 20px 40px rgba(255, 107, 0, 0.08);
            
            background-color: var(--f-bg);
            padding: 100px 0;
            width: 100%;
            overflow: visible; /* Important for sticky to work */
        }

        .fitnex-main-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: stretch;
            position: relative;
        }

        /* --- Story Content (Left) --- */
        .fitnex-story-col {
            padding-bottom: 50px;
        }

        .fitnex-badge {
            color: var(--f-orange);
            background: var(--f-orange-light);
            padding: 8px 18px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: inline-block;
            margin-bottom: 24px;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .fitnex-headline {
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            line-height: 1.15;
            font-weight: 800;
            letter-spacing: -1.5px;
            margin: 0 0 30px 0;
            color: var(--f-text-dark);
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .fitnex-description {
            font-size: 1.1rem;
            color: var(--f-text-gray);
            line-height: 1.8;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .fitnex-description p {
            margin-bottom: 25px;
        }

        /* --- Sticky Feature List (Right) --- */
        .fitnex-sticky-box {
            position: sticky;
            top: 100px; /* Distance from top of browser */
            height: fit-content;
        }

        .fitnex-feature-card {
            background: #FFFFFF;
            border-radius: 24px;
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 16px;
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .fitnex-feature-card:hover {
            transform: translateX(10px);
            border-color: var(--f-orange);
            box-shadow: var(--f-shadow);
        }

        .fitnex-icon-wrap {
            width: 54px;
            height: 54px;
            min-width: 54px;
            background: var(--f-orange-light);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .fitnex-feature-card h4 {
            margin: 0;
            font-size: 1.1rem;
            color: var(--f-text-dark);
            font-weight: 700;
        }

        .fitnex-feature-card p {
            margin: 4px 0 0 0;
            font-size: 0.9rem;
            color: var(--f-text-gray);
            line-height: 1.4;
        }

        /* --- Mobile Responsiveness --- */
        @media (max-width: 991px) {
            #fitnex-story-root { padding: 60px 0; }
            .fitnex-main-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .fitnex-sticky-box {
                position: relative;
                top: 0;
                order: -1; /* Stats show first on mobile */
            }
            .fitnex-headline { font-size: 2.2rem; }
            .fitnex-feature-card:hover { transform: translateY(-5px); }
        }

        /* --- Mission & Vision Section Styles --- */
.mv-section {
    --mv-orange: #FF6B00;
    --mv-text-dark: #0F172A;
    --mv-text-muted: #475569;
    --mv-card-bg: rgba(255, 255, 255, 0.85);
    
    font-family: 'Outfit', sans-serif; /* Remove if you want to use your site's default font */
    padding: 100px 24px;
    position: relative;
    background: linear-gradient(135deg, #E0F2FE 0%, #FDF4FF 50%, #FFEDD5 100%);
    overflow: hidden;
    line-height: 1.6;
}

/* Animated decorative blobs */
.mv-section::before,
.mv-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 0;
    animation: floatBlob 10s infinite alternate ease-in-out;
}

.mv-section::before {
    width: 500px;
    height: 500px;
    background: rgba(186, 230, 253, 0.6); 
    top: -100px;
    left: -100px;
}

.mv-section::after {
    width: 600px;
    height: 600px;
    background: rgba(254, 215, 170, 0.6); 
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

.mv-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mv-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.mv-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.8);
    color: var(--mv-orange);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.mv-header h2 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin: 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: var(--mv-card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mv-orange), #FF9D5C);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -15px rgba(255, 107, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.mv-card:hover::before {
    opacity: 1;
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: #FFF5EE;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--mv-orange);
    box-shadow: inset 0 0 0 1px rgba(255, 107, 0, 0.1);
}

.mv-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 24px 0;
    color: var(--mv-text-dark);
}

.mv-card p {
    font-size: 1.05rem;
    color: var(--mv-text-muted);
    line-height: 1.8;
    margin: 0 0 20px 0;
}

.mv-card p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .mv-header h2 { font-size: 2.8rem; }
    .mv-card { padding: 40px 30px; }
}

@media (max-width: 768px) {
    .mv-section { padding: 80px 20px; }
    .mv-grid { grid-template-columns: 1fr; gap: 30px; }
    .mv-header h2 { font-size: 2.2rem; }
}

/* --- Fitnex Story Section Styles --- */
.fs-story-wrapper {
    --fs-orange: #FF6B00;
    --fs-text-dark: #0F172A;
    --fs-text-muted: #475569;
    --fs-bg-card: #F8FAFC;
    --fs-white: #FFFFFF;
    --fs-border: #E2E8F0;
    
    font-family: 'Plus Jakarta Sans', sans-serif; /* Change if you use a different font */
    max-width: 1300px;
    margin: 80px auto; /* Adjust margin as needed for your page */
    padding: 0 20px;
    line-height: 1.6;
}

.fs-split-container {
    display: flex;
    align-items: flex-start; /* Crucial for sticky scrolling */
    background: var(--fs-white);
    border-radius: 32px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0,0,0,0.02);
}

/* --- Left Column: Story --- */
.fs-story-col {
    flex: 1.1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
}

.fs-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--fs-orange);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 30px;
    align-self: flex-start;
}

.fs-story-col h2 {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.15;
    color: var(--fs-text-dark);
    margin: 0 0 30px 0;
    letter-spacing: -0.02em;
}

.fs-narrative {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fs-narrative p {
    font-size: 1.05rem;
    color: var(--fs-text-muted);
    line-height: 1.8;
    margin: 0;
}

.fs-narrative p:first-of-type {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--fs-text-dark);
}

/* --- Right Column: Features (Sticky) --- */
.fs-features-col {
    flex: 0.9;
    padding: 80px 60px;
    position: sticky;
    top: 40px; /* Adjust this to change when it sticks to the top of screen */
}

.fs-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fs-feature-item {
    background: var(--fs-bg-card);
    border: 1px solid var(--fs-border);
    border-radius: 20px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.fs-feature-item:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    background: var(--fs-white);
    border-color: rgba(255, 107, 0, 0.2);
}

.fs-icon-box {
    width: 50px;
    height: 50px;
    background: var(--fs-white);
    border: 1px solid var(--fs-border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--fs-orange);
    transition: all 0.3s ease;
}

.fs-feature-item:hover .fs-icon-box {
    transform: scale(1.1);
    background: rgba(255, 107, 0, 0.1);
    border-color: transparent;
}

.fs-feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fs-feature-text h4 {
    color: var(--fs-text-dark);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.01em;
}

.fs-feature-text p {
    color: var(--fs-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

/* --- Responsive Design --- */
@media (max-width: 1100px) {
    .fs-story-col { padding: 60px 40px; }
    .fs-features-col { padding: 60px 40px; }
    .fs-story-col h2 { font-size: 2.4rem; }
}

@media (max-width: 900px) {
    .fs-split-container {
        flex-direction: column;
        align-items: stretch;
    }
    .fs-story-col { padding: 50px 30px; }
    .fs-features-col {
        padding: 40px 30px 60px 30px;
        position: relative; /* Disables sticky on mobile */
        top: 0;
    }
    .fs-story-col h2 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .fs-story-wrapper { padding: 0 16px; margin: 40px auto; }
    .fs-split-container { border-radius: 20px; }
    .fs-story-col { padding: 40px 20px; }
    .fs-features-col { padding: 20px 20px 40px 20px; }
    .fs-feature-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 24px 16px;
    }
}