:root {
    --primary-orange: #E75B0F;
    --dark-bg-start: #732608;
    --dark-bg-end: #0D0D0D;
    --footer-bg: #111110;
    --text-white: #FFFFFF;
    --text-grey: #CCCCCC;
    --font-main: 'Rem', sans-serif;
    --font-display: 'Rem', sans-serif;
    --container-width: 1240px;
    --border-radius: 16px;
}

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

html, body {
    font-family: var(--font-main);
    background-color: #050505;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}



a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: white;
    border: 1px solid var(--primary-orange);
}

.btn-primary:hover {
    background-color: #c54a0b;
}

.btn-outline {
    border: 1px solid white;
    color: white;
    background: transparent;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
}

/* Navbar Container */
#navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
}

/* Navbar - Bootstrap Override */
.navbar {
    padding: 15px 0;
    background: rgba(5, 5, 5, 0.7) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0) !important;
    transition: all 0.3s ease;
}

.navbar-brand {
    padding: 0;
}

.logo-img {
    width: 112px;
    height: 20px;
    object-fit: contain;
}


/* Nav Links */
.navbar-nav {
    gap: 10px;
}

.navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-grey) !important;
    padding: 8px 15px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-orange) !important;
}

/* Navbar Toggler */
.navbar-toggler {
    padding: 8px 12px;
    font-size: 20px;
    color: var(--text-white);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Nav CTA Button */
.nav-btn {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
}

/* Mobile Side Drawer - Enhanced Styles */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 320px;
    min-width: 280px;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    background: #2a2a2a;
    background: linear-gradient(180deg, #2a2a2a 0%, #1f1f1f 100%);
    z-index: 1041;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-drawer.active {
    right: 0;
}

.mobile-drawer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.mobile-drawer-close:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 0.9;
    transform: rotate(90deg);
}

.mobile-drawer-close svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.mobile-drawer-nav {
    list-style: none;
    padding: 80px 30px 30px;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    align-items: center;
}

.mobile-drawer-nav-item {
    margin: 0;
    width: 100%;
}

.mobile-drawer-nav-link {
    display: block;
    color: #ffffff;
    font-family: 'REM', sans-serif;
    font-size: 18px;
    font-weight: 400;
    padding: 18px 20px;
    text-decoration: none;
    text-align: left;
    transition: all 0.3s ease;
    border-bottom: none;
    position: relative;
    letter-spacing: 0.3px;
}

.mobile-drawer-nav-link::after {
    display: none;
}

.mobile-drawer-nav-link:hover,
.mobile-drawer-nav-link.active {
    color: var(--primary-orange);

}

.mobile-drawer-cta {
    width: calc(100% - 60px);
    margin: 50px 30px 40px;
    text-align: center;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    background-color: var(--primary-orange);
    color: #ffffff;
    border: 1px solid var(--primary-orange);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(231, 91, 15, 0.3);
}

.mobile-drawer-cta:hover {
    background-color: #c54a0b;
    border-color: #c54a0b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(231, 91, 15, 0.4);
    color: #ffffff;
}

.mobile-drawer-cta:active {
    transform: translateY(0);
}

/* Prevent body scroll when drawer is open */
body.drawer-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Smooth scrollbar for drawer */
.mobile-drawer::-webkit-scrollbar {
    width: 4px;
}

.mobile-drawer::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-drawer::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.mobile-drawer::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Mobile Menu */
@media (max-width: 991.98px) {
    .navbar {
        padding: 12px 0;
    }
    
    .navbar-collapse {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .mobile-drawer,
    .mobile-drawer-overlay {
        display: none !important;
    }
}

@media (max-width: 575.98px) {
    .logo-img {
        width: 66px;
        height: 12px;
    }
    
    .navbar-toggler {
        font-size: 18px;
        padding: 6px 10px;
    }
    
    /* Mobile Drawer - Small Screens */
    .mobile-drawer {
        width: 75%;
        max-width: 300px;
        min-width: 260px;
    }
    
    .mobile-drawer-nav {
        padding: 70px 20px 80px;
    }
    
    .mobile-drawer-nav-link {
        font-size: 16px;
        padding: 16px 15px;
    }
    
    .mobile-drawer-cta {
        width: 170px;
        margin: 0 20px 30px;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .mobile-drawer-close {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        padding: 8px;
    }
    
    .mobile-drawer-close svg {
        width: 20px;
        height: 20px;
    }


    /* About title: mobile */
    .about-title {
        font-size: 34px !important;
        font-family: 'REM', sans-serif !important;
        font-weight: 700 !important;
        line-height: 1.2;
    }

    /* About text: mobile */
    .about-text {
        font-size: 16px !important;
        font-family: 'REM', sans-serif !important;
        font-weight: 300 !important;
        line-height: 1.7;
    }

}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    position: relative;
    background: url('images/Hero_section_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}




.hero .hero-content {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero .hero-content p {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
}

/* Keep TRAIN SMART TO + RECOVER on the same line, with consistent spacing */
.hero h1 .train-smart-recover-wrapper {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35ch;
    white-space: nowrap;
}

/* Hero heading line-break control */
.hero h1 .recover-break {
    display: none;
}

.hero h1 .mobile-hero-break {
    display: none;
}

@media (min-width: 992px) {
    /* Desktop: make each line a centered row */
    .hero h1 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Force STRONG! to the next line */
    .hero h1 .recover-break {
        display: block;
        height: 0;
    }
}

@media (max-width: 991.98px) {
    /* Mobile/tablet: allow natural wrapping */
    .hero h1 .train-smart-recover-wrapper {
        display: inline;
        white-space: normal;
    }

    .hero h1 .recover-break {
        display: none;
    }
}

.hero h1 {
    text-align: center;
    font-size: clamp(1.75rem, 5vw, 5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: var(--font-display);
    color: var(--text-white);
    letter-spacing: 2px;
    width: 100%;
    word-wrap: break-word;
}

.hero h1 .highlight {
    color: var(--primary-orange);
}

.hero p {
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 100%;
    width: 100%;
    line-height: 1.6;
}

/* Hero Responsive */
@media (max-width: 991.98px) {
    .hero {
        height: 100vh;
        min-height: 500px;
        max-height: 700px;
        padding-top: 80px;
    }
}

@media (max-width: 767.98px) {
    /* All sections: mobile padding */
    .section {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }

    /* Key Offerings: stack text above image */
    .offerings .row {
        display: flex;
        flex-direction: column;
    }

    /* Force content above image */
    .offerings .row > div:first-child {
        order: 2;
    }
    .offerings .row > div:last-child {
        order: 1;
    }

    /* Force content above image */
    .offerings .row > div:first-child {
        order: 2;
    }
    .offerings .row > div:last-child {
        order: 1;
    }

    .offerings-content {
        order: 1;
        text-align: left !important;
        margin-bottom: 20px;
        width: 100%;
    }

    .offerings-label,

    .offerings-image {
        order: 2;
        width: 100%;
        max-width: 100%;
        text-align: left;
        margin-bottom: 0;
    }

    /* Hide desktop image, show inline mobile image */
    .offerings-image {
        display: none !important;
    }
    .offerings-image-mobile {
        display: block !important;
        margin: 0 0 12px;
    }


    /* Key Offerings: mobile rust background behind image (50% of screen (left side)) */
    .offerings {
        position: relative;
    }

    .offerings::before {
        content: '';
        position: absolute;
        left: 0;
        top: 90px;
        width: 50vw;
        max-width: 260px;
        height: 45vh;
        min-height: 260px;
        max-height: 420px;
        background: var(--brand-primary-rust-500);
        opacity: 0.55;
        z-index: 0;
    }

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

    /* Key Offerings (mobile): orange frame behind the image (like reference) */
    .offerings .offerings-image-mobile {
        position: relative;
        z-index: 2;
        overflow: visible;
        padding: 22px 14px 22px 26px;
    }

    .offerings .offerings-image-mobile::before {
        pointer-events: none;
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 50%;
        height: 100%;
        border: 22px solid #E75B0F;
        border-right: 0;
        z-index: 1;
    }

    .offerings .offerings-image-mobile img {
        position: relative;
        z-index: 2;
        display: block;
    }

    /* Key Offerings: mobile spacing below image */
    .offerings .offerings-image-mobile {
        margin-bottom: 40px !important;
    }

    /* Hide desktop image, show inline mobile image */
    .offerings-image {
        display: none !important;
    }
    .offerings-image-mobile {
        display: block !important;
        margin: 0 0 12px;
    }

    .hero {
        height: 100vh;
        min-height: 500px;
        max-height: 700px;
        padding: 70px 10px 40px;
        background: url('images/mobile_images/Hero_mobile.webp') center center / cover no-repeat;
    }

    /* Unified side spacing to match contact section */
    .section {
        padding-left: 5px;
        padding-right: 5px;
    }
    

    .hero h1 {
        font-size: 33px !important;
        font-family: 'REM', sans-serif !important;
        font-weight: 800 !important;
        line-height: 1.15;
        letter-spacing: 1px;
    }

    .hero .hero-content p {
        font-size: 14px !important;
        font-family: 'REM', sans-serif !important;
        font-weight: 300 !important;
        line-height: 1.5;
    }

    .hero h1 .mobile-hero-break {
        display: block;
    }
    
    /* Why Join Us */
    
    .why-join .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .why-header h2 {
        font-size: 32px;
    }
    
    .stat-item h3 {
        font-size: 40px;
    }

    /* Packages title: mobile left padding */
    .packages-title-mobile-pad {
        padding-left: 15px !important;
    }


    /* Packages CTA: mobile left spacing */
    /* Packages CTA button sizing + typography (mobile) */
    .packages-cta-mobile-pad {
        margin-left: 15px !important;
        width: 167px !important;
        height: 40px !important;
        padding: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-family: 'REM', sans-serif !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        line-height: 1 !important;
    }


    /* Key Offerings: mobile typography */
    .offerings-title {
        font-size: 32px !important;
        font-family: 'REM', sans-serif !important;
        font-weight: 700 !important;
        text-transform: none !important;
        line-height: 1.4 !important;
    }

    .offerings-desc {
        font-size: 16px !important;
        font-family: 'REM', sans-serif !important;
        font-weight: 300 !important;
        line-height: 1.7;
    }


    /* Contact: mobile submit button */
    .contact .btn-submit {
        width: 105px !important;
        height: 50px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        align-self: flex-start !important;
        margin-left: 0 !important;
    }


    /* Membership promo: mobile title typography */
    .membership-promo .promo-title {
        text-align: left !important;
        font-size: 34px !important;
        font-family: 'REM', sans-serif !important;
        font-weight: 700 !important;
        line-height: 1.3;
    }

    .membership-promo .promo-desc {
        text-align: left !important;
        font-size: 16px !important;
        font-family: 'REM', sans-serif !important;
        font-weight: 300 !important;
        line-height: 1.6;
    }

    .membership-promo .promo-list {
        text-align: left !important;
    }

    .membership-promo .promo-list li {
        font-size: 16px !important;
        font-family: 'REM', sans-serif !important;
        font-weight: 300 !important;
        line-height: 1.6;
    }

    /* Membership promo: mobile explore button */
    .membership-promo .btn-explore {
        height: 50px !important;
        align-self: flex-start !important;
        justify-content: center;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    /* Membership promo: mobile force left layout */
    .membership-promo .promo-content {
        text-align: left !important;
    }

    .membership-promo .btn-explore {
        margin-left: 0 !important;
        margin-right: auto !important;
    }


    /* Testimonials: mobile image size */
    .testimonial-image-wrapper {
        width: 100px !important;
        height: 110px !important;
    }

    .testimonial-frame {
        width: 100px !important;
        height: 110px !important;
    }

    .testimonial-image {
        width: 100px !important;
        height: 110px !important;
    }

    .testimonial-image img {
        width: 100px !important;
        height: 110px !important;
        object-fit: cover;
    }

    /* Testimonials: mobile title typography */
    .testimonials-title {
        font-size: 34px !important;
        font-family: 'REM', sans-serif !important;
        font-weight: 700 !important;
        line-height: 1.2;
    }

    /* Testimonials: mobile quote typography */
    .quote-text {
        font-size: 15px !important;
        font-family: 'REM', sans-serif !important;
        font-weight: 300 !important;
        line-height: 1.6;
    }


    /* Strength: mobile background + hide side image */
    .strength-innovation {
        background: url('images/mobile_images/Strenght_mobile_bgpng.webp') top center no-repeat !important;
        background-size: 100% auto !important;
    }

    .strength-innovation .strength-image {
        display: none !important;
    }

    /* Strength: mobile title typography */
    .strength-title {
        font-size: 24px !important;
        font-family: 'REM', sans-serif !important;
        font-weight: 700 !important;
        line-height: 1.2;
        text-align: left;
    }

    /* Strength: mobile MEETS INNOVATION same line */
    .strength-title {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 0.3ch !important;
    }
    .strength-title .white,
    .strength-title .orange {
        display: inline !important;
    }


    /* Strength: mobile desc typography */
    .strength-desc {
        font-size: 10px !important;
        font-family: 'REM', sans-serif !important;
        font-weight: 300 !important;
        line-height: 1.5;
    }

    /* Footer: mobile layout */
    .footer {
        padding: 60px 20px !important;
    }

    .footer-grid {
        flex-direction: column !important;
        gap: 48px !important;
        align-items: flex-start !important;
    }

    .footer-brand {
        flex: none !important;
        width: 100% !important;
        text-align: left !important;
    }

    .footer-brand h3 {
        font-size: 28px !important;
        letter-spacing: 8px !important;
        margin-bottom: 8px !important;
    }

    .footer-tagline {
        font-size: 14px !important;
        color: #E2E2E2 !important;
        margin-bottom: 24px !important;
        font-family: 'REM', sans-serif !important;
        font-weight: 400 !important;
    }

    .footer-brand .socials {
        justify-content: flex-start !important;
        gap: 20px !important;
        margin-bottom: 20px !important;
    }

    .footer-brand .socials a {
        font-size: 20px !important;
    }

    .footer-brand .copyright-text {
        font-size: 14px !important;
        margin-bottom: 24px !important;
        color: #E2E2E2 !important;
    }

    .app-buttons {
        display: flex !important;
        gap: 12px !important;
        margin-top: 16px !important;
    }

    .app-buttons .app-btn img {
        height: 40px !important;
        width: auto !important;
    }

    .footer-links-group {
        flex-direction: column !important;
        gap: 32px !important;
        width: 100% !important;
    }

    .footer-col {
        width: 100% !important;
    }

    .footer-col h4 {
        font-size: 14px !important;
        font-family: 'REM', sans-serif !important;
        font-weight: 600 !important;
        margin-bottom: 16px !important;
        color: #FFFFFF !important;
    }

    .footer-col ul li {
        margin-bottom: 12px !important;
    }

    .footer-col a {
        font-size: 14px !important;
        font-family: 'REM', sans-serif !important;
        font-weight: 400 !important;
        color: #E2E2E2 !important;
    }

    .footer-col.contact-col ul li {
        display: flex !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    .footer-col.contact-col a i,
    .footer-col.contact-col .address i {
        font-size: 16px !important;
        margin-right: 0 !important;
    }

    .footer-col.contact-col .address {
        display: flex !important;
        align-items: flex-start !important;
        gap: 12px !important;
        color: #E2E2E2 !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    .footer-col.contact-col .address a {
        color: inherit !important;
        text-decoration: none !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 12px !important;
        cursor: pointer !important;
    }


    /* About: mobile background image */
    .about {
        background: url('images/mobile_images/about_coreo_mobile_bg.webp') center center / cover no-repeat !important;
    }


    /* Key Offerings: mobile background image */
    .offerings {
        background: url('images/mobile_images/Key_offerings_mobile.webp') center center / cover no-repeat !important;
    }


    /* Contact: mobile background image */
    .contact {
        background: url('images/mobile_images/Contact_us_mobile.webp') center center / cover no-repeat !important;
    }


    /* Gallery: mobile background image */
    .gallery {
        background: url('images/mobile_images/Gallery_mobile.webp') center center / cover no-repeat !important;
    }


    /* Testimonials: mobile background image */
    .testimonials {
        background: url('images/mobile_images/Testimonials_mobile.webp') center center / cover no-repeat !important;
    }


    /* CTA: keep desktop layout on mobile (scaled down) */
    .aihub-cta {
        padding: 15px 0 0 !important;
        min-height: auto !important;
    }

    .cta-wrapper {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-end !important;
        justify-content: space-between !important;
        text-align: left !important;
        min-height: 180px !important;
        padding: 0 10px !important;
    }

    .cta-content {
        max-width: 55% !important;
        padding-bottom: 45px !important;
        margin-bottom: 0 !important;
    }

    .cta-content h2 {
        font-size: 16px !important;
        font-family: 'REM', sans-serif !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }

    .btn-start-trail {
        padding: 8px 16px !important;
        font-size: 11px !important;
    }

    .cta-image {
        position: absolute !important;
        right: 10px !important;
        bottom: 0 !important;
        width: 180px !important;
        height: 260px !important;
        max-width: none !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        overflow: visible !important;
        z-index: 5 !important;
    }

    .vertical-text {
        font-size: 28px !important;
    }

    .strength-text {
        left: -26px !important;
    }

    .fitness-text {
        right: -26px !important;
    }


    /* Feature content: mobile left align */
    .feature-content {
        text-align: left !important;
    }


    /* Feature list: remove left padding on mobile */
    .feature-list {
        padding-left: 0 !important;
        margin-left: 0 !important;
    }


    /* AI Hub hero h1: mobile typography */
    .aihub-hero-content h1 {
        font-size: 34px !important;
        font-family: 'REM', sans-serif !important;
        font-weight: 700 !important;
        line-height: 1.4 !important;
    }


    /* AI Hub hero p and button: mobile typography */
    .aihub-hero-content p {
        font-size: 16px !important;
        font-family: 'REM', sans-serif !important;
        font-weight: 300 !important;
        line-height: 1.6 !important;
    }

    .aihub-hero-content .btn-hero {
        font-family: 'REM', sans-serif !important;
    }

    .aihub-hero-content .btn-hero span {
        font-family: 'REM', sans-serif !important;
    }


    /* Feature content h2: mobile typography */
    .feature-content h2 {
        font-size: 34px !important;
        font-family: 'REM', sans-serif !important;
        font-weight: 700 !important;
    }


    /* Contact page: mobile form below heading */
    .contact-page-wrapper {
        flex-direction: column !important;
        gap: 30px !important;
        display: flex !important;
    }

    .contact-info-section {
        display: contents !important;
    }

    .contact-info-section h1 {
        order: 1 !important;
        margin-bottom: 0px !important;
    }

    .contact-form-section {
        order: 2 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 0 !important;
    }

    .contact-details {
        order: 3 !important;
        margin-bottom: 0 !important;
    }

    .contact-map {
        order: 4 !important;
    }


    /* AI Hub: mobile black background for all sections */
    .aihub-hero {
        background-color: #000000 !important;
        background: #000000 !important;
    }

    /* Hide decorative blur elements on mobile to remove orange hint */
    .aihub-blur-1,
    .aihub-blur-2,
    .aihub-blur-3 {
        display: none !important;
    }

    .aihub-feature {
        background-color: #000000 !important;
        background: #000000 !important;
    }

    .aihub-cta {
        background: #000000 !important;
        background-color: #000000 !important;
    }


    /* Zones header h1: mobile typography */
    .zones-header h1 {
        font-size: 34px !important;
        font-family: 'REM', sans-serif !important;
        font-weight: 700 !important;
    }


    /* Copper Membership Hero: mobile responsive */
    .copper-membership-hero {
        flex-direction: column !important;
        min-height: auto !important;
    }

    .copper-hero-image {
        flex: none !important;
        height: 400px !important;
    }

    /* Platinum Hero: match Copper mobile layout */
    .platinum-membership-page .copper-membership-hero {
        flex-direction: column !important;
        min-height: auto !important;
    }

    .platinum-membership-page .copper-hero-image {
        flex: none !important;
        height: 400px !important;
    }

    .copper-hero-content {
        flex: none !important;
        padding-top: 30px !important;
        padding-right: 0 !important;
        padding-bottom: 0 !important;
        padding-left: 0 !important;
    }

    .platinum-membership-page .copper-hero-content {
        flex: none !important;
        padding-top: 30px !important;
        padding-right: 0 !important;
        padding-bottom: 0 !important;
        padding-left: 0 !important;
    }

    .copper-title {
        font-size: 32px !important;
        margin-bottom: 30px !important;
    }

    .copper-features-list {
        gap: 16px !important;
    }

    .copper-features-list li {
        font-size: 16px !important;
        padding-left: 28px !important;
    }

    /* Copper overlay elements: mobile responsive */
    .copper-discount-box {
        bottom: 20px !important;
        left: 20px !important;
        padding: 20px 16px !important;
        width: 110px !important;
        min-height: 160px !important;
    }

    .discount-upto {
        font-size: 12px !important;
    }

    .discount-percent {
        font-size: 36px !important;
    }

    .discount-percent sup {
        font-size: 18px !important;
    }

    .discount-off {
        font-size: 18px !important;
    }

    .discount-limited {
        font-size: 10px !important;
    }

    .discount-star-icon {
        font-size: 16px !important;
        top: 8px !important;
        right: 8px !important;
    }

    .copper-launch-offer {
        top: 20px !important;
        right: 20px !important;
    }

    .launch-star-shape {
        width: 140px !important;
        height: 140px !important;
    }

    .launch-text-1,
    .launch-text-2 {
        font-size: 14px !important;
    }

}

@media (max-width: 575.98px) {
    /* Key Offerings: stack text above image */
    .offerings .row {
        display: flex;
        flex-direction: column;
    }

    .offerings-content {
        order: 1;
        text-align: left !important;
        margin-bottom: 16px;
        width: 100%;
    }

    .offerings-label,
    .offerings-title {
        text-align: left !important;
    }

    .offerings-desc {
        text-align: left !important;
    }

    .offerings-image {
        order: 2;
        width: 100%;
        max-width: 100%;
        text-align: left;
        margin-bottom: 0;
    }

    /* Hide desktop image, show inline mobile image */
    .offerings-image {
        display: none;
    }
    .offerings-image-mobile {
        display: block;
        margin: 0 0 12px;
    }

    .hero {
        height: 100vh;
        min-height: 450px;
        max-height: 700px;
        padding: 60px 10px 30px;
        background: url('images/mobile_images/Hero_mobile.webp') center center / cover no-repeat;
    }

    /* Unified side spacing to match contact section */
    .section {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    
    .hero h1 {
        font-size: clamp(1.25rem, 7vw, 1.75rem);
        line-height: 1.2;
        letter-spacing: 0.5px;
    }
    
    .hero p {
        font-size: 0.8rem;
        line-height: 1.5;
        padding: 0;
    }
    
    .btn-hero {
        padding: 10px 18px;
        min-width: 110px;
        min-height: 42px;
    }
    
    .btn-hero span {
        font-size: 13px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.hero-blur-ellipse {
    position: absolute;
    width: 154px;
    height: 144px;
    right: 300px;
    top: 192px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    filter: blur(24px);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.btn-hero {
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 141px;
    min-height: 56px;
    background: var(--text-white);
    border: none;
    text-decoration: none;
}

.btn-hero span {
    background: linear-gradient(90deg, #FF920F 0%, #FB4514 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(231, 91, 15, 0.3);
}

/* Section Styling */
.section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg-start) 0%, var(--dark-bg-end) 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 60px;
}

.section-label {
    color: var(--primary-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.section h2 {
    font-size: 48px;
    font-family: var(--font-display);
    line-height: 1.1;
}

/* About Section */
.about {
    min-height: 749px;
    background: url('images/About_coreo_bg.webp') center center / cover no-repeat;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-blur-ellipse {
    position: absolute;
    width: 154px;
    height: 144px;
    left: 26px;
    top: 51px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    filter: blur(24px);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.about-line {
    position: absolute;
    height: 51px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    filter: blur(2px);
    z-index: 0;
}

.about-line-1 {
    width: 2000px;
    top: 318px;
    left: -33px;
    transform: rotate(-3.5deg);
    opacity: 0.2;
}

.about-line-2 {
    width: 1900px;
    height: 98px;
    top: 493px;
    left: -113px;
    transform: rotate(3.5deg);
    opacity: 0.2;
}

.about-label {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 5;
}

.about-container {
    display: block;
    position: relative;
    z-index: 3;
    padding-top: 89px;
    min-height: 460px;
}

.about-image {
    position: absolute;
    left: 0;
    top: 89px;
    width: 500px;
    height: 460px;
    overflow: hidden;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    position: relative;
    z-index: 2;
    margin-left: 395px;
    max-width: 808px;
}

.about-title {
    font-size: 56px;
    font-family: var(--font-display);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 10px;
    color: var(--text-white);
    font-weight: 700;
    padding-top: 11px;
}

.about-title .highlight {
    color: var(--primary-orange);
}

.about-text {
    font-size: 18px;
    line-height: 1.7;
    color: #E2E2E2;
    max-width: 594px;
    margin-left: 169px;
    margin-top: 44px;
}

/* Utility: mobile-only line break */
.mobile-break {
    display: none;
}

/* Hide optional breaks even on mobile */
/* Packages Banner */
.packages-banner {
    min-height: 550px;
    background: url('images/package_bg_image.webp') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.packages-banner .container {
    position: relative;
    z-index: 3;
}

.packages-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.packages-title {
    line-height: 0.9;
    width: 100%;
}

/* Packages Banner - extra large screens */
@media (min-width: 1400px) {
    .packages-left-pad-xl {
        padding-left: 80px;
    }
}

/* Title Outline - UNLEASH */
.title-outline {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 100px;
    line-height: 1;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 3px var(--text-white);
    paint-order: stroke fill;
    letter-spacing: 3px;
    width: 100%;
    word-wrap: break-word;
}

/* Title Orange - YOUR POWER */
.title-orange {
    font-family: var(--font-display);
    font-size: 50px;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--primary-orange);
    letter-spacing: 2px;
    width: 100%;
    word-wrap: break-word;
}

/* Button Large */
.btn-large {
    padding: 16px 40px;
    font-size: 16px;
    border-radius: 8px;
    letter-spacing: 1px;
}

.packages-customers {
    position: relative;
    z-index: 4;
}

.customer-avatars {
    display: flex;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    border: 1px solid white;
    object-fit: cover;
    margin-left: -15px;
}

.customer-avatar:first-child {
    margin-left: 0;
}

.packages-customers p {
    color: var(--text-white);
}

/* Packages Banner Responsive */
@media (max-width: 991.98px) {
    .packages-banner {
        min-height: 450px;
        padding: 70px 0;
        background-position: 65% center;
    }
    
    .title-outline {
        font-size: 72px;
        -webkit-text-stroke: 2px var(--text-white);
        letter-spacing: 2px;
    }
    
    .title-orange {
        font-size: 52px;
    }
    
    .btn-large {
        padding: 14px 32px;
        font-size: 15px;
    }
    
    .customer-avatar {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 767.98px) {
    .about {
        padding: 0;
    }

    .about-container {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
        min-height: auto;
    }

    .mobile-break,
    .mobile-break-optional {
        display: block;
        width: 100%;
        height: 0;
        margin: 10px 0;
    }

    .packages-banner {
        min-height: auto;
        aspect-ratio: 2 / 1;
        padding: 40px 10px 20px;
        background: url('images/mobile_images/mobile_unleeash.webp') center center / 100% 100% no-repeat;
        position: relative;
    }
    
    .packages-banner .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .title-outline {
        font-size: 25px;
        -webkit-text-stroke: 1px var(--text-white);
        letter-spacing: 0.5px;
    }
    
    .title-orange {
        font-size: 18px;
        letter-spacing: 0.5px;
    }
    
    .btn-large {
        padding: 6px 14px;
        font-size: 9px;
    }
    
    .packages-customers {
        position: absolute;
        bottom: 0;
        right: 5px;
        left: auto;
        margin-top: 0;
        text-align: left;
    }
    
    .packages-customers .customer-avatars {
        justify-content: flex-start;
    }
    
    .customer-avatar {
        width: 30px;
        height: 30px;
        margin-left: -5px;
    }
    
    .packages-customers p {
        font-size: 12px;
    }
}

@media (max-width: 575.98px) {
    .about {
        padding: 0;
    }

    .about-container {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
        min-height: auto;
    }

    .mobile-break,
    .mobile-break-optional {
        display: block;
        width: 100%;
        height: 0;
        margin: 10px 0;
    }

    .packages-banner {
        min-height: auto;
        aspect-ratio: 2 / 1;
        padding: 35px 10px 15px;
        background: url('images/mobile_images/mobile_unleeash.webp') center center / 100% 100% no-repeat;
        position: relative;
    }
    
    .packages-customers {
        position: absolute;
        bottom: 0;
        right: 5px;
        left: auto;
        margin-top: 0;
        text-align: left;
    }
    
    .packages-customers .customer-avatars {
        justify-content: flex-start;
    }
    
    .customer-avatar {
        width: 17px;
        height: 17px;
        margin-left: -3px;
    }
    
    .packages-customers p {
        font-size: 7px;
    }
    
    .packages-banner .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .title-outline {
        font-size: 18px;
        -webkit-text-stroke: 1px var(--text-white);
        letter-spacing: 0;
    }
    
    .title-orange {
        font-size: 14px;
        letter-spacing: 0;
    }
    
    .btn-large {
        padding: 5px 12px;
        font-size: 8px;
    }
}

.badge {
    background: var(--primary-orange);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    display: inline-block;
}

.button-group {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* Why Join Us */
.why-join {
    min-height: 752px;
    background: linear-gradient(135deg, #732608 0%, #0D0D0D 64%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-left {
    width: 100%;
}

.why-header {
    margin-bottom: 62px;
}

.why-header h2 {
    font-family: 'Rem', sans-serif;
    font-size: 54px;
    font-weight: 700;
    font-style: normal;
    color: var(--text-white);
    margin-bottom: 18px;
    line-height: 1.2;
    text-transform: none;
}

.why-header p {
    font-size: 16px;
    line-height: 1.7;
    color: #E2E2E2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 56px;
}

.stat-item {
    text-align: left;
}

.stat-item h3 {
    font-size: 56px;
    font-family: var(--font-display);
    color: var(--text-white);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-plus {
    color: var(--primary-orange);
}

.stat-item p {
    font-size: 16px;
    color: var(--text-white);
    font-weight: 400;
}

.why-right {
    flex: 1;
    display: flex;
    gap: 16px;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 36px;
    flex: 1;
}

.features-column.offset {
    padding-top: 144px;
}

.feature-card {
    background: #2C2C2E;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #555555;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #E2E2E2;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.icon-box i {
    background: linear-gradient(180deg, #FF920F 0%, #FB4514 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Key Offerings */
.offerings {
    min-height: 750px;
    background: url('images/Key_offerings_bg.webp') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
    padding: 100px 0 150px;
}

.offerings .container {
    z-index: 3;
}

.offerings-image {
    width: 100%;
    max-width: 500px;
}

.offerings-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.offerings-content {
    max-width: 560px;
}

.offerings-label {
    display: block;
    font-size: 48px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.offerings-title {
    font-size: 40px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-white);
    text-transform: none;
    line-height: 1.2;
    margin-bottom: 20px;
}

.offerings-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #E2E2E2;
    margin-bottom: 0;
}

/* Mobile inline image in offerings content */
.offerings-image-mobile {
    display: none;
}

.offerings-image-mobile img {
    width: 100%;
    height: auto;
    display: block;
}

.offerings-slider {
    position: absolute;
    bottom: 50px;
    right: 0;
    left: 50%;
    justify-content: flex-start;
    z-index: 3;
}

.slider-item {
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
}

.slider-num {
    font-size: 20px;
    font-weight: 600;
    color: #7A7A7A;
    cursor: pointer;
    transition: color 0.3s;
}

.slider-item.active .slider-num {
    color: var(--primary-orange);
}

.slider-line {
    width: 0;
    height: 3px;
    background: var(--primary-orange);
    transition: width 0.3s;
}

.slider-item.active .slider-line {
    width: 100px;
}

/* Contact */
.contact {
    height: 777px;
    background: url('images/Contact_us_bg.webp') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.contact-image {
    position: absolute;
    left: 100px;
    top: 100px;
    width: 550px;
    height: 577px;
    z-index: 2;
    border-radius: 16px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 66px 0 66px ;
}

.contact-form-container {
    position: absolute;
    right: 100px;
    top: 100px;
    width: 610px;
    z-index: 3;
}

.contact-title {
    font-size: 48px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.form-field {
    position: relative;
}

.form-field input {
    width: 100%;
    padding: 10px 0;
    background: transparent;
    border: none;
    border-bottom: 3px solid #F5F5F5;
    color: #E0E0E0;
    font-size: 20px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.form-field input::placeholder {
    color: #E0E0E0;
}

.form-field input:focus {
    border-bottom-color: var(--primary-orange);
}

.btn-submit {
    width: 194px;
    height: 56px;
    background: var(--text-white);
    border: none;
    border-radius: 8px;
    color: var(--primary-orange);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-submit:hover {
    background: var(--primary-orange);
    color: var(--text-white);
}

/* Gallery */
.gallery {
    min-height: auto;
    background: url('images/Gallery_bg.webp') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.gallery-title {
    font-size: clamp(28px, 5vw, 54px);
    font-family: var(--font-display);
    line-height: 1.1;
}

.gallery-title .white {
    color: var(--text-white);
}

.gallery-title .orange {
    color: var(--primary-orange);
}

.gallery-arrows .arrow {
    width: clamp(20px, 3vw, 40px);
    height: clamp(20px, 3vw, 40px);
    border-right: clamp(4px, 0.5vw, 7px) solid #7B2F13;
    border-bottom: clamp(4px, 0.5vw, 7px) solid #7B2F13;
    border-radius: 4px;
    transform: rotate(-45deg);
}



.gallery-item {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-grid {
    gap: 30px !important;
}

.gallery-row {
    gap: 30px !important;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s;
}

@media (min-width: 992px) {
    .gallery-item {
        min-height: 100%;
    }
    
    .gallery-item img {
        min-width: 100%;
        min-height: 100%;
    }
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (min-width: 992px) {
    .gallery-progress {
        position: relative;
        bottom: auto;
        right: auto;
        width: 400px;
        margin-top: 40px;
        margin-left: auto;
        margin-right: 0;
    }
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #FEE6D6;
    border-radius: 0;
}

.progress-fill {
    width: 146px;
    height: 100%;
    background: var(--primary-orange);
}

/* Membership Promo */
.membership-promo {
    min-height: 800px;
    background: url('images/member_promo_bg.webp') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.promo-content {
    max-width: 564px;
    z-index: 3;
}

.promo-right {
    display: flex;
    justify-content: flex-end;
}

.promo-title {
    font-size: 54px;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 28px;
}

.promo-title .white {
    display: block;
    color: var(--text-white);
}

.promo-title .orange {
    display: block;
    color: var(--primary-orange);
}

.promo-desc {
    font-size: 20px;
    line-height: 1.5;
    color: #E2E2E2;
    margin-bottom: 22px;
}

.promo-list {
    list-style: none;
    margin: 0 0 64px 0;
    padding: 0;
}

.promo-list li {
    font-size: 18px;
    color: #E2E2E2;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-list .emoji {
    font-size: 18px;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--text-white);
    color: #0D0D0D;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-explore:hover {
    background: var(--primary-orange);
    color: var(--text-white);
}

.promo-image {
    width: 370px;
    z-index: 2;
}

.promo-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.stat-card {
    position: absolute;
    width: 180px;
    background: rgba(44, 44, 46, 0.6);
    border: 1px solid #333;
    border-radius: 16px;
    padding: 20px;
    z-index: 4;
}

.stat-card h3 {
    font-size: 48px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-card h3 .plus,
.stat-card h3 .star,
.stat-card h3 .percent {
    color: var(--primary-orange);
}

.stat-card p {
    font-size: 14px;
    color: #F5F5F5;
}

.stat-card-1 {
    right: 0;
    top: 0;
}

.stat-card-2 {
    left: 8%;
    top: 30%;
}

.stat-card-3 {
    left: 20%;
    bottom: 20%;
}

@media (min-width: 350px) and (max-width: 480px) {
    .stat-card-1 {
        right: 15%;
        top: -5px;
    }

    .stat-card-3 {
        left: 10%;
        bottom: 20%;
    }
}

@media (min-width: 1400px) {
    .stat-card-2 {
        left: 20%;
        top: 25%;
    }

    .stat-card-3 {
        left: 30%;
        bottom: 20%;
    }
}


/* Testimonials */
.testimonials {
    min-height: auto;
    background: url('images/Gallery_bg.webp') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
    padding: clamp(40px, 8vw, 100px) 0;
}

.testimonials-title {
    font-size: clamp(24px, 5vw, 54px);
    font-family: var(--font-display);
    line-height: 1.2;
}

.testimonials-title .white {
    color: var(--text-white);
}

.testimonials-title .orange {
    color: var(--primary-orange);
}

.testimonials-wrapper {
    gap: clamp(20px, 5vw, 100px);
    align-items: flex-start;
}

.testimonial-image-wrapper {
    position: relative;
    flex-shrink: 0;
    width: clamp(150px, 28vw, 360px);
    height: clamp(170px, 31vw, 400px);
}

.testimonial-frame {
    position: absolute;
    top: clamp(-10px, -1.5vw, -20px);
    right: clamp(-10px, -1.5vw, -20px);
    width: clamp(100px, 19vw, 250px);
    height: clamp(150px, 29vw, 370px);
    border: clamp(8px, 1.2vw, 16px) solid var(--primary-orange);
    border-left: none;
    border-bottom: none;
    z-index: 1;
}

.testimonial-image {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.15);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.testimonial-content {
    flex: 1;
    max-width: 652px;
}

.quote-icon {
    font-size: clamp(32px, 5vw, 64px);
    color: var(--primary-orange);
    line-height: 1;
    font-family: serif;
    margin-bottom: clamp(15px, 2.5vw, 32px);
}

.quote-icon img {
    width: clamp(28px, 5vw, 56px);
    height: auto;
    display: block;
}


.quote-text {
    font-size: clamp(14px, 2vw, 24px);
    line-height: 1.5;
    color: #F9F9F9;
    margin-bottom: clamp(20px, 4vw, 50px);
}

.author-info {
    margin-bottom: clamp(20px, 4vw, 50px);
}

.author-name {
    font-size: clamp(14px, 1.5vw, 20px);
    color: var(--text-white);
}

.author-role {
    color: #F5F5F5;
    font-size: clamp(11px, 1.2vw, 14px);
}

.role-line {
    width: clamp(10px, 1.4vw, 18px);
    height: 1px;
    background: var(--text-white);
}

.nav-arrow {
    width: clamp(30px, 3vw, 40px);
    height: clamp(30px, 3vw, 40px);
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, 1.5vw, 20px);
    transition: color 0.3s;
    color: #555;
}

@media (min-width: 992px) {
    .nav-arrow {
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
}

.nav-arrow.active {
    color: var(--primary-orange);
}

.nav-arrow:hover {
    color: var(--primary-orange);
}

/* Strength Meets Innovation */
.strength-innovation {
    background: url('images/strenght_bg_desktop.webp') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
    padding: clamp(10px, 8vw, 100px) 0;
}

.strength-content {
    position: relative;
    max-width: clamp(275px, 55vw, 808px);
    padding-right: clamp(10px, 3vw, 50px);
    z-index: 2;
}

.strength-title {
    font-size: clamp(28px, 5vw, 64px);
    font-family: var(--font-display);
    line-height: 1.2;
    margin-bottom: clamp(10px, 1.5vw, 18px);
}

.strength-title .icon {
    font-size: clamp(28px, 5vw, 64px);
    margin-bottom: clamp(5px, 0.8vw, 10px);
}

.strength-title .white {
    color: var(--text-white);
}

.strength-title .orange {
    color: var(--primary-orange);
}

.strength-desc {
    font-size: clamp(12px, 1.5vw, 20px);
    line-height: 1.6;
    color: #F9F9F9;
    margin-bottom: clamp(20px, 4vw, 50px);
    max-width: 784px;
}

.btn-trial {
    width: clamp(140px, 17vw, 216px);
    height: clamp(40px, 5vw, 64px);
    background: var(--text-white);
    color: var(--primary-orange);
    font-size: clamp(11px, 1.2vw, 16px);
    text-decoration: none;
    border-radius: clamp(4px, 0.6vw, 8px);
    transition: all 0.3s;
}

.btn-trial:hover {
    background: var(--primary-orange);
    color: var(--text-white);
}

.strength-image {
    display: none;
}

@media (min-width: 992px) {
    .strength-innovation {
        min-height: 600px;
        position: relative;
        background: url('images/strenght_bg_desktop.webp') center center / cover no-repeat;
    }
    
    .strength-innovation .container-fluid {
        position: relative;
        min-height: 100%;
    }
}

/* Footer */
.footer {
    background: #111110;
    padding: 80px 0;
    border-top: none;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 72px;
}

.footer-brand {
    flex: 0 0 280px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 36px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.footer-brand p {
    color: #E2E2E2;
    margin-bottom: 32px;
    font-size: 16px;
}

.footer-tagline {
    font-size: 14px;
    color: #E2E2E2;
    margin-bottom: 24px;
    font-family: 'REM', sans-serif;
    font-weight: 400;
}

.app-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.app-buttons .app-btn img {
    height: 44px;
    width: auto;
}

.socials {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    margin-top: 0;
}

.socials a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-white);
    transition: all 0.3s;
}

.socials a:hover {
    background: var(--primary-orange);
    color: var(--text-white);
}

.copyright-text {
    color: #F2F2F7;
    font-size: 14px;
    margin-top: 0;
}

.footer-links-group {
    display: flex;
    gap: 78px;
    flex: 1;
}

.footer-col h4 {
    color: #F2F2F7;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 16px;
}

.footer-col a {
    color: #E2E2E2;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col a:hover {
    color: var(--primary-orange);
}

.footer-col a i {
    color: var(--text-white);
    font-size: 14px;
}

.contact-col li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #E2E2E2;
    font-size: 14px;
    margin-bottom: 16px;
}

.contact-col i {
    margin-top: 4px;
}

.address {
    line-height: 1.5;
}

.address a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    transition: color 0.3s;
}

.address a:hover {
    color: var(--primary-orange);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    :root {
        --container-width: 90%;
    }
    
    .about-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
        min-height: auto;
    }

    .about-image {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 500px;
        height: 400px;
    }

    .about-content {
        position: relative;
        margin-left: 0;
        max-width: 100%;
    }

    .about-title {
        font-size: 60px !important;
        padding-top: 0;
        text-align: left;
        line-height: 1.15;
    }

    .about-text {
        margin-left: 0;
        margin-top: 20px;
        max-width: 100%;
    }

    .about-label {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        text-align: center;
        margin-bottom: 20px;
    }

    .about-blur-ellipse,
    .about-line {
        display: none;
    }

    /* Why Join Us Responsive */
    .why-header h2 {
        font-size: 42px;
    }

    .why-right {
        flex-direction: column;
    }

    .features-column.offset {
        padding-top: 0;
    }

    /* Key Offerings Responsive */
    .offerings {
        min-height: auto;
        padding: 60px 0 80px;
        background-position: center;
    }

    .offerings-image {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .offerings-content {
        max-width: 100%;
        text-align: center;
    }

    .offerings-label {
        font-size: 28px;
    }

    .offerings-title {
        font-size: clamp(26px, 6vw, 30px) !important;
    }

    .offerings-slider {
        position: relative;
        bottom: auto;
        left: 0;
        right: auto;
        justify-content: flex-start;
        margin-top: 40px;
    }

    /* Contact Responsive */
    .contact {
        height: auto;
        min-height: 100vh;
        padding: 60px 20px;
        display: flex;
        flex-direction: column;
    }

    .contact-image {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 550px;
        height: 380px !important;
        margin: 0 auto 40px;
        order: 2;
    }

    .contact-form-container {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        max-width: 610px;
        margin: 0 auto;
        order: 1;
        padding-bottom: 60px;
    }

    .contact-title {
        text-align: left;
    }

    .btn-submit {
        margin: 20px auto 0;
    }

    /* Membership Promo Responsive */
    .membership-promo {
        min-height: auto;
        padding: 60px 0;
    }

    .promo-content {
        max-width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }

    .promo-title {
        font-size: 42px;
    }
    
    .promo-right {
        justify-content: center;
    }

    .promo-image {
        width: 100%;
        max-width: 300px;
    }

    .stat-card {
        width: 140px;
        padding: 15px;
    }
    
    .stat-card h3 {
        font-size: 36px;
    }
    
    .stat-card p {
        font-size: 12px;
    }
    
    .stat-card-1 {
        right: -10px;
        top: -10px;
    }

    .stat-card-2 {
        left: -10px;
        top: 30%;
    }

    .stat-card-3 {
        left: 20px;
        bottom: 5%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .offerings-images {
        grid-template-columns: 1fr;
        height: auto;
    }

    /* Gallery Responsive */
    .gallery {
        padding: 60px 0;
    }

    .gallery-progress {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        max-width: 400px;
        margin: 40px auto 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* About section mobile background */
    .about {
        background-size: 100% auto;
        background-position: top center;
        background-repeat: no-repeat;
        background-color: #0D0D0D;
    }

    /* Gallery section mobile background */
    .gallery {
        background-size: cover;
        background-position: center;
    }

    /* Membership promo mobile background */
    .membership-promo {
        height: auto;
        background-size: 100% auto;
        background-position: top center;
        background-repeat: no-repeat;
        background-color: #0D0D0D;
    }

    /* Testimonials section mobile background */
    .testimonials {
        background-size: cover;
        background-position: center;
    }

    /* Strength innovation mobile background */
    .strength-innovation {
        background-size: cover;
        background-position: center;
    }

    .section h2 {
        font-size: 34px;
    }

    .about {
        padding: 60px 0;
        min-height: auto;
    }

    .about-container {
        padding-top: 40px;
    }

    .about-image {
        height: 360px;
        position: relative;
    }

    .about-title {
        font-size: 44px !important;
        text-align: left;
        line-height: 1.8;
    }

    .about-text {
        font-size: 16px;
        margin-left: 0;
        text-align: left;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links-group {
        flex-direction: column;
        gap: 40px;
    }

    .title-outline {
        font-size: 34px;
        font-family: 'Roboto', sans-serif !important;
        font-weight: 900 !important;
        -webkit-text-stroke: 1px var(--text-white);
        padding-top: 10px;
        padding-bottom: 2px;
    }

    .title-orange {
        font-size: 20px;
    }

    .why-join {
        padding: 60px 0;
        min-height: auto;
    }

    .why-header h2 {
        font-size: 36px;
    }

    .promo-title {
        font-size: 32px;
    }

    .promo-desc {
        font-size: 16px;
    }
    
    .membership-promo .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .promo-image {
        max-width: 280px;
    }
    
    .stat-card {
        width: 120px;
        padding: 12px;
    }
    
    .stat-card h3 {
        font-size: 28px;
    }
    
    .stat-card p {
        font-size: 11px;
    }

    .offerings {
        min-height: auto;
        padding: 50px 0;
        background-size: cover;
        background-position: center;
    }
    
    .offerings .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .contact {
        height: auto;
        background-size: 100% auto;
        background-position: top center;
        background-repeat: no-repeat;
        background-color: #0D0D0D;
    }

    .contact-image {
        height: 300px;
    }

    .contact-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .contact-form {
        gap: 30px;
    }

    .form-field input {
        font-size: 16px;
    }

    .offerings-label {
        font-size: 28px;
    }

    .offerings-title {
        font-size: clamp(12px, 3vw, 14px);
        line-height: 1.1;
        white-space: normal;
        word-break: keep-all;
        text-align: left;
    }

    .offerings-desc {
        font-size: 16px;
        text-align: justify;
    }

    .stats-grid {
        gap: 30px 40px;
    }

    .stat-item h3 {
        font-size: 42px;
    }

    .btn-large {
        padding: 6px 6px;
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 30px !important;
        text-align: left;
        line-height: 1.8;
    }

    .logo {
        font-size: 22px;
        letter-spacing: 4px;
    }

    /* About section small screen */
    .about {
        padding: 40px 15px;
        background-size: auto 100%;
        background-position: center top;
    }

    .about-image {
        height: 300px;
    }

    .about-text {
        font-size: 14px;
        text-align: left;
    }

    /* Offerings section small screen */
    .offerings {
        padding: 40px 0;
        background-size: cover;
        background-position: center;
    }
    
    .offerings .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .offerings-label {
        font-size: 34px;
    }

    .offerings-title {
        font-size: clamp(11px, 3.3vw, 12px);
        line-height: 1.1;
        white-space: normal;
        word-break: keep-all;
        text-align: left;
    }

    .offerings-desc {
        font-size: 14px;
        text-align: justify;
    }

    /* Contact section small screen */
    .contact {
        padding: 40px 15px;
        background-size: auto 100%;
        background-position: center top;
    }

    .contact-image {
        height: 220px;
    }

    .contact-title {
        font-size: 28px;
    }

    /* Gallery section small screen */
    .gallery {
        padding: 40px 0;
        background-size: cover;
        background-position: center;
    }

    /* Membership promo small screen */
    .membership-promo {
        padding: 40px 0;
        background-size: cover;
        background-position: center;
    }
    
    .membership-promo .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .promo-title {
        font-size: 24px;
    }
    
    .promo-desc {
        font-size: 14px;
    }
    
    .promo-list li {
        font-size: 14px;
    }

    .promo-image {
        max-width: 220px;
    }
    
    .stat-card {
        width: 100px;
        padding: 10px;
    }
    
    .stat-card h3 {
        font-size: 22px;
    }
    
    .stat-card p {
        font-size: 10px;
    }
    
    .stat-card-1 {
        right: 0;
        top: -5px;
    }

    .stat-card-2 {
        left: 0;
        top: 25%;
    }

    .stat-card-3 {
        left: 10px;
        bottom: 10%;
    }

    /* Testimonials small screen */
    .testimonials {
        background-size: cover;
        background-position: center;
    }

    /* Strength innovation small screen */
    .strength-innovation {
        background-size: cover;
        background-position: center;
    }

    /* Why join small screen */
    .why-join {
        padding: 40px 0;
    }
    
    .why-join .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .why-header h2 {
        font-size: 28px;
    }

    .why-header p {
        font-size: 14px;
    }

    .stat-item h3 {
        font-size: 32px;
    }

    .stat-item p {
        font-size: 14px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .feature-card p {
        font-size: 13px;
    }
}

/* ========================================
   AI HUB PAGE STYLES
   ======================================== */

/* AI Hub Hero */
.aihub-hero {
    min-height: 100vh;
    background-color: #111110;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.aihub-blur-1 {
    position: absolute;
    width: 1135px;
    height: 1061px;
    top: -408px;
    left: 153px;
    background: linear-gradient(135deg, rgba(115, 38, 8, 0.8) 0%, rgba(13, 13, 13, 0.8) 64%);
    filter: blur(160px);
    border-radius: 50%;
    pointer-events: none;
}

.aihub-blur-2 {
    position: absolute;
    width: 331px;
    height: 309px;
    top: -32px;
    left: 555px;
    background: linear-gradient(135deg, rgba(115, 38, 8, 0.8) 0%, rgba(13, 13, 13, 0.8) 64%);
    filter: blur(180px);
    border-radius: 50%;
    pointer-events: none;
}

.aihub-blur-3 {
    position: absolute;
    width: 1135px;
    height: 1061px;
    top: 0;
    right: -200px;
    background: linear-gradient(135deg, rgba(115, 38, 8, 0.6) 0%, rgba(13, 13, 13, 0.6) 64%);
    filter: blur(160px);
    border-radius: 50%;
    pointer-events: none;
}

.aihub-arc {
    position: absolute;
    top: 72px;
    left: 10px;
    right: 10px;
    height: 651px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50% 50% 0 0;
    border-bottom: none;
    pointer-events: none;
    opacity: 0.5;
}

.aihub-hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.aihub-hero-content h1 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.4;
}

.aihub-hero-content p {
    font-size: 18px;
    color: #e2e2e2;
    max-width: 800px;
    margin: 0 auto 54px;
    line-height: 1.6;
}

.btn-unlock {
    display: inline-block;
    padding: 16px 40px;
    background: var(--text-white);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    background-image: linear-gradient(90deg, #FF920F 0%, #FB4514 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-unlock:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(231, 91, 15, 0.3);
}

/* Nav Active State */
.nav-active {
    color: var(--primary-orange) !important;
}

/* AI Hub Feature Sections */
.aihub-feature {
    padding: 50px 0;
    background-color: #111110;
    position: relative;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.aihub-feature-reverse .feature-row {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    max-width: 600px;
}

.feature-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.feature-content {
    flex: 1;
    max-width: 590px;
}

.feature-content h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 18px;
    color: #e2e2e2;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list li i {
    color: var(--primary-orange);
    margin-top: 4px;
}

/* AI Hub CTA Section */
.aihub-cta {
    padding: 0px 0;
    background: linear-gradient(135deg, rgba(115, 38, 8, 1) 0%, rgba(13, 13, 13, 1) 64%);
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
    min-height: 50px;
}

.cta-blur-1 {
    position: absolute;
    width: 331px;
    height: 309px;
    top: 31px;
    right: 200px;
    background: rgba(123, 47, 19, 0.8);
    filter: blur(180px);
    border-radius: 50%;
    pointer-events: none;
}

.cta-blur-2 {
    position: absolute;
    width: 1606px;
    height: 185px;
    top: -174px;
    left: -166px;
    background: rgba(123, 47, 19, 0.6);
    filter: blur(180px);
    border-radius: 50%;
    pointer-events: none;
}

.cta-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    min-height: 440px;
}

.cta-content {
    max-width: 560px;
    padding-bottom: 90px;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: #F1F1F1;
    line-height: 1.2;
    margin-bottom: 42px;
}

.btn-start-trail {
    display: inline-block;
    padding: 16px 28px;
    background: linear-gradient(180deg, #FF6421 0%, #A53E12 100%);
    border: none;
    border-radius: 8px;
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-start-trail:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(231, 91, 15, 0.4);
}

.cta-image {
    position: absolute;
    right: 100px;
    bottom: 0px;
    width: 402px;
    height: 528px;
    overflow: visible;
    z-index: 5;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.vertical-text {
    position: absolute;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: var(--font-display);
    font-size: 70px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.11);
    text-transform: uppercase;
}

.strength-text {
    left: -80px;
    bottom: 0;
}

.fitness-text {
    right: -80px;
    bottom: 0;
}

/* AI Hub Responsive */
@media (max-width: 1024px) {
    .aihub-hero-content h1 {
        font-size: 40px;
    }

    .feature-row {
        flex-direction: column !important;
    }

    .feature-image,
    .feature-content {
        max-width: 100%;
    }

    .aihub-cta {
        padding: 60px 0 0;
    }

    .cta-wrapper {
        flex-direction: row;
        text-align: left;
        align-items: flex-end;
        justify-content: space-between;
        min-height: 440px;
    }

    .cta-content {
        margin-bottom: 0;
        padding-bottom: 90px;
        max-width: 50%;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-image {
        position: absolute;
        right: 20px;
        bottom: 0px;
        width: 300px;
        height: 400px;
        margin: 0;
    }

    .cta-image img {
        object-position: bottom;
    }

    .vertical-text {
        font-size: 50px;
    }

    .strength-text {
        left: -50px;
    }

    .fitness-text {
        right: -50px;
    }
}

@media (max-width: 768px) {
    .aihub-hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .aihub-cta {
        min-height: auto;
        padding: 40px 0 0;
    }

    .aihub-hero-content h1 {
        font-size: 32px;
    }

    .aihub-hero-content p {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .btn-unlock {
        padding: 14px 30px;
        font-size: 16px;
    }


    .feature-content h2 {
        font-size: 32px;
    }

    .feature-list li {
        font-size: 16px;
    }

    .feature-image img {
        height: 250px;
    }

    .cta-wrapper {
        padding: 0 10px;
        flex-direction: row;
        text-align: left;
        align-items: flex-end;
        justify-content: space-between;
        min-height: 350px;
    }

    .cta-content {
        margin-bottom: 0;
        padding-bottom: 60px;
        max-width: 50%;
    }

    .cta-content h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .cta-image {
        position: absolute;
        right: 10px;
        bottom: 0px;
        width: 200px;
        height: 280px;
    }

    .vertical-text {
        font-size: 35px;
    }

    .strength-text {
        left: -30px;
    }

    .fitness-text {
        right: -30px;
    }

    .btn-start-trail {
        padding: 14px 24px;
        font-size: 16px;
    }

    .aihub-arc {
        display: none;
    }
}

@media (max-width: 480px) {
    .aihub-hero-content h1 {
        font-size: 26px;
    }

    .feature-content h2 {
        font-size: 26px;
    }

    .aihub-cta {
        padding: 30px 0 0;
    }

    .cta-wrapper {
        flex-direction: row;
        text-align: left;
        align-items: flex-end;
        justify-content: space-between;
        min-height: 280px;
    }

    .cta-content {
        margin-bottom: 0;
        padding-bottom: 40px;
        max-width: 50%;
    }

    .cta-content h2 {
        font-size: 18px;
        line-height: 1.3;
    }

    .cta-image {
        position: absolute;
        right: 5px;
        bottom: 0px;
        width: 150px;
        height: 200px;
    }

    .vertical-text {
        font-size: 28px;
    }

    .strength-text {
        left: -20px;
    }

    .fitness-text {
        right: -20px;
    }

    .btn-start-trail {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* ========================================
   COREO ZONES PAGE STYLES
   ======================================== */

/* Zones Hero Section */
.zones-hero {
    min-height: 100vh;
    background: url('images/coreo_zones_bg.webp') center center / cover no-repeat;
    background-color: #111110;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 80px;
}

.zones-blur-1 {
    position: absolute;
    width: 1135px;
    height: 1061px;
    top: 334px;
    left: -339px;
    background: rgba(152, 54, 20, 0.6);
    filter: blur(160px);
    border-radius: 50%;
    pointer-events: none;
}

.zones-blur-2 {
    position: absolute;
    width: 1135px;
    height: 1061px;
    top: 1946px;
    right: -135px;
    background: rgba(152, 54, 20, 0.6);
    filter: blur(160px);
    border-radius: 50%;
    pointer-events: none;
}

.zones-arc {
    position: absolute;
    top: 1582px;
    left: 333px;
    width: 1286px;
    height: 651px;
    border: 1px solid transparent;
    border-image: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12) 0%, transparent 60%) 1;
    border-radius: 50% 50% 0 0;
    border-bottom: none;
    pointer-events: none;
    opacity: 0.5;
}

.zones-paintbrush {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-55%, -70%) rotate(5deg);
    width: 380px;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.zones-paintbrush img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.zones-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 2;
}

.zones-header h1 {
    font-family: 'Rem', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 10px;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.zones-header p {
    font-family: 'Rem', sans-serif;
    font-size: 18px;
    color: #E2E2E2;
    max-width: 639px;
    margin: 0 auto;
    line-height: 1.4;
}

.zones-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.zones-row {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.zones-row-center {
    justify-content: center;
}

.zone-card {
    position: relative;
    width: 600px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.zone-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(231, 91, 15, 0.2);
}

.zone-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/gym_zone_1.webp') center center / cover no-repeat;
    z-index: 1;
}

.zone-card-bg.zone-strength {
    background: url('images/gym_zone_2.webp') center center / cover no-repeat;
}

.zone-card-bg.zone-hyrox {
    background: url('images/gym_zone_3.webp') center center / cover no-repeat;
}

.zone-card-bg.zone-functional {
    background: url('images/group_workout_1.webp') center center / cover no-repeat;
}

.zone-card-bg.zone-zumba {
    background: url('images/group_workout_2.webp') center center / cover no-repeat;
}

.zone-card-bg.zone-yoga {
    background: url('images/group_workout_3.webp') center center / cover no-repeat;
}

.zone-card-bg.zone-ceragem {
    background: url('images/Wellness_1.webp') center center / cover no-repeat;
}

.zone-card-bg.zone-sauna {
    background: url('images/Wellness_2.webp') center center / cover no-repeat;
}

.zone-card-bg.zone-steam {
    background: url('images/Wellness_3.webp') center center / cover no-repeat;
}

.zone-card-bg.zone-cold-shower {
    background: url('images/Wellness_4.webp') center center / cover no-repeat;
}

.zone-card-bg.zone-nutrition {
    background: url('images/Wellness_5.webp') center center / cover no-repeat;
}

/* Group Workout Section */
.group-workout-header {
    margin-top: 150px;
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-page {
    min-height: 100vh;
    background-color: #111110;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.contact-arc {
    position: absolute;
    top: 446px;
    left: -567px;
    width: 1286px;
    height: 651px;
    border: 1px solid transparent;
    border-image: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12) 0%, transparent 60%) 1;
    border-radius: 50% 50% 0 0;
    border-bottom: none;
    pointer-events: none;
    opacity: 0.5;
}

.contact-page-wrapper {
    display: flex;
    gap: 121px;
    align-items: flex-start;
}

.contact-info-section {
    flex: 0 0 456px;
}

.contact-info-section h1 {
    font-family: 'Rem', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #F5F5F5;
    margin-bottom: 32px;
    line-height: 1.3;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 33px;
}

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

.contact-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--primary-orange);
    font-size: 20px;
}

.contact-detail-item span {
    font-family: 'Rem', sans-serif;
    font-size: 18px;
    color: #F5F5F5;
    line-height: 1.4;
}

.contact-map {
    width: 456px;
    height: 261px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-map img,
.contact-map iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: invert(90%) hue-rotate(180deg) brightness(0.8) contrast(1.2);
}

.contact-form-section {
    flex: 1;
    max-width: 724px;
}

.contact-form-card {
    position: relative;
    background: rgba(19, 15, 26, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 50px;
    backdrop-filter: blur(42px);
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(217, 217, 217, 1) 0%, rgba(115, 115, 115, 0) 100%);
    opacity: 0.02;
    pointer-events: none;
    border-radius: 12px;
}

.form-glow {
    position: absolute;
    width: 879px;
    height: 840px;
    top: -417px;
    left: -485px;
    background: rgba(152, 54, 20, 0.6);
    filter: blur(220px);
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: lighten;
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    z-index: 2;
}

.form-input {
    position: relative;
}

.form-input input {
    width: 100%;
    padding: 17px 20px;
    background: rgba(13, 13, 13, 0.4);
    border: 1px solid #7A7A7A;
    border-radius: 8px;
    color: #FFFFFF;
    font-family: 'Rem', sans-serif;
    font-size: 18px;
    outline: none;
    transition: border-color 0.3s;
    backdrop-filter: blur(4px);
}

.form-input input::placeholder {
    color: #FFFFFF;
}

.form-input input:focus {
    border-color: var(--primary-orange);
}

.btn-contact-submit {
    width: 100%;
    padding: 16px;
    background: #983614;
    border: none;
    border-radius: 8px;
    color: #FFFFFF;
    font-family: 'Rem', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-contact-submit:hover {
    background: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(231, 91, 15, 0.3);
}

/* Contact Page Responsive */
@media (max-width: 1200px) {
    .contact-page-wrapper {
        gap: 60px;
    }
    
    .contact-info-section {
        flex: 0 0 400px;
    }
    
    .contact-map {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .contact-page-wrapper {
        flex-direction: column;
        gap: 60px;
    }
    
    .contact-info-section {
        flex: none;
        width: 100%;
    }
    
    .contact-form-section {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-map {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 100px 0 60px;
    }
    
    .contact-info-section h1 {
        font-size: 36px;
    }
    
    .contact-form-card {
        padding: 30px;
    }
    
    .contact-detail-item span {
        font-size: 16px;
    }
    
    .form-input input {
        font-size: 16px;
        padding: 14px 16px;
    }
}

@media (max-width: 480px) {
    .contact-info-section h1 {
        font-size: 28px;
    }
    
    .contact-form-card {
        padding: 20px;
    }
    
    .contact-detail-item {
        gap: 16px;
    }
}

.zone-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
}

.zone-card h3 {
    position: absolute;
    font-family: 'Rem', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: capitalize;
    z-index: 3;
    text-align: center;
    white-space: nowrap;
}

/* Zones Responsive */
@media (max-width: 1300px) {
    .zone-card {
        width: 500px;
        height: 250px;
    }

    .zones-paintbrush {
        width: 340px;
    }
}

@media (max-width: 1100px) {
    .zones-row {
        flex-direction: column;
        align-items: center;
    }

    .zone-card {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .zones-hero {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .zones-header h1 {
        font-size: 42px;
    }

    .zones-header p {
        font-size: 18px;
    }

    .zone-card {
        height: 220px;
    }

    .zone-card h3 {
        font-size: 36px;
        bottom: 30px;
    }

    .zones-paintbrush {
        width: 300px;
    }

    .zones-blur-1,
    .zones-blur-2,
    .zones-arc {
        display: none;
    }
}

@media (max-width: 480px) {
    .zones-header h1 {
        font-size: 32px;
    }

    .zones-header p {
        font-size: 16px;
    }

    .zone-card {
        height: 180px;
    }

    .zone-card h3 {
        font-size: 28px;
        bottom: 20px;
    }

    .zones-paintbrush {
        width: 220px;
    }
}

/* ========================================
   PRICING PAGE STYLES
======================================== */

.pricing-hero {
    min-height: 100vh;
    background-color: #111110;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 80px;
}

.pricing-arc {
    position: absolute;
    top: 0;
    left: 77px;
    right: 77px;
    height: 651px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50% 50% 0 0;
    border-bottom: none;
    pointer-events: none;
    opacity: 0.5;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-header h1 {
    font-family: 'Rem', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.pricing-header p {
    font-family: 'Rem', sans-serif;
    font-size: 18px;
    color: #E2E2E2;
}

.pricing-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.pricing-card {
    width: 600px;
    border-radius: 36px;
    background: rgba(19, 15, 26, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(42px);
    position: relative;
    overflow: hidden;
    box-shadow: inset -4px 13px 32px rgba(255, 255, 255, 0.03);
}

.pricing-card * {
    box-sizing: border-box;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(217, 217, 217, 1) 0%, rgba(115, 115, 115, 0) 100%);
    opacity: 0.02;
    pointer-events: none;
    border-radius: 36px;
}

.card-glow {
    position: absolute;
    width: 726px;
    height: 566px;
    top: -281px;
    left: -400px;
    background: rgba(152, 54, 20, 0.5);
    filter: blur(220px);
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: lighten;
}

.platinum-glow {
    background: linear-gradient(135deg, 
        rgba(127, 107, 75, 0.6) 0%, 
        rgba(157, 134, 92, 0.6) 25%, 
        rgba(224, 193, 135, 0.6) 50%, 
        rgba(157, 134, 92, 0.6) 75%, 
        rgba(127, 107, 75, 0.6) 100%);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 32px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 37px;
}

.plan-info h2 {
    font-family: 'Rem', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.price-info {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-info .price {
    font-family: 'Rem', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
}

.price-info .period {
    font-family: 'Rem', sans-serif;
    font-size: 16px;
    color: #F5F5F5;
}

.btn-buy-now {
    padding: 16px 46px;
    border-radius: 8px;
    font-family: 'Rem', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.copper-btn {
    background: linear-gradient(180deg, #FF6421 0%, #A53E12 100%);
    border: 1.5px solid #FF6421;
    color: var(--text-white);
}

.copper-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(231, 91, 15, 0.4);
}

.platinum-btn {
    background: linear-gradient(135deg, 
        #7F6B4B 0%, 
        #9D865C 25%, 
        #E0C187 50%, 
        #9D865C 75%, 
        #7F6B4B 100%);
    border: 1.5px solid #E0C187;
    color: #0D0D0D;
}

.platinum-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(224, 193, 135, 0.4);
}

.card-features {
    margin-top: 20px;
}

.features-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.features-divider .line {
    flex: 1;
    height: 1px;
    background: var(--text-white);
    border-radius: 9px;
}

.features-divider .features-title {
    font-family: 'Rem', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 1px;
}

.features-grid {
    display: flex;
    gap: 24px;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

.tick-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tick-icon i {
    font-size: 20px;
    color: #6B6C70;
}

.feature-item span {
    font-family: 'Rem', sans-serif;
    font-size: 14px;
    color: var(--text-white);
    line-height: 1.5;
}

/* Pricing Page Responsive */
@media (max-width: 1300px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .pricing-header h1 {
        font-size: 36px;
    }
    
    .pricing-header p {
        font-size: 16px;
    }
    
    .pricing-arc {
        left: 20px;
        right: 20px;
    }
    
    .pricing-card {
        overflow: hidden;
        border-radius: 36px;
        clip-path: inset(1px round 36px);
    }
    
    
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .btn-buy-now {
        width: 100%;
        text-align: center;
    }
    
    .features-grid {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .pricing-header h1 {
        font-size: 28px;
    }
    
    .card-content {
        padding: 0;
    }
    
    .plan-info h2 {
        font-size: 24px;
    }
    
    .price-info .price {
        font-size: 24px;
    }
}

/* ========================================
   COPPER MEMBERSHIP PAGE STYLES
   ======================================== */

body.copper-membership-page {
    background: url('images/Copper_membership_bg.webp') center center / cover no-repeat fixed;
    background-color: #000000;
}

.copper-membership-page {

    background: transparent;
    padding-top: 50px;
    padding-bottom: 60px;
    position: relative;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    font-family: 'Rem', sans-serif;
    font-size: 14px;
}

.breadcrumb a {
    color: #7A7A7A;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-orange);
}

.breadcrumb .separator {
    color: #7A7A7A;
    font-size: 10px;
}

.breadcrumb .current {
    color: var(--text-white);
    font-weight: 600;
}

/* Copper Membership Hero - New Design */
.copper-membership-hero {
    display: flex;
    gap: 0;
    align-items: stretch;
    min-height: 600px;
    margin-top: 40px;
}

.copper-hero-image {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 520px;
}

.copper-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* 50% OFF Discount Box */
.copper-discount-box {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: var(--primary-orange);
    border-radius: 16px;
    padding: 32px 10px;
    width: 140px;
    min-height: 250px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.discount-star-icon {
    position: absolute;
    top: 5px;
    right: 5px;
    color: #000000;
    font-size: 20px;
}

.discount-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 12px;
    padding-left: 8px;
    width: 100%;
}

.discount-upto {
    font-family: 'REM', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    opacity: 0.9;
    white-space: nowrap;
}

.discount-percent {
    font-family: 'REM', sans-serif;
    font-size: 37px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
}

.discount-percent sup {
    font-size: 24px;
    font-weight: 600;
}

.discount-off {
    font-family: 'REM', sans-serif;
    font-size: 27px;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    margin-top: -8px;
}

.discount-limited {
    font-family: 'REM', sans-serif;
    font-size: 12px;
    color: var(--text-white);
    margin: 0;
    opacity: 0.9;
    text-align: center;
}

/* Launch Offer Star */
.copper-launch-offer {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 2;
}

.launch-star-shape {
    position: relative;
    width: 200px;
    height: 200px;
    background: var(--primary-orange);
    clip-path: polygon(50% 0%, 58% 30%, 95% 30%, 65% 50%, 75% 88%, 50% 65%, 25% 88%, 35% 50%, 5% 30%, 42% 30%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 0 8px rgba(255, 146, 15, 0.5));
}

.launch-text-1,
.launch-text-2 {
    font-family: 'REM', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.copper-hero-content {
    flex: 0 0 50%;
    background-color: transparent;
    padding: 0px 60px;
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
}

.copper-title {
    font-family: 'REM', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.copper-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.copper-features-list li {
    font-family: 'REM', sans-serif;
    font-size: 18px;
    color: var(--text-white);
    line-height: 1.6;
    position: relative;
    padding-left: 32px;
}

.copper-features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-white);
    font-size: 24px;
    line-height: 1;
}

/* Hero Section */
.copper-hero-section {
    display: flex;
    gap: 20px;
    margin-bottom: 80px;
}

/* 50% Off Discount Card */
.discount-card {
    width: 200px;
    min-height: 400px;
    background: var(--primary-orange);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.discount-card .star-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #000000;
    font-size: 24px;
}

.discount-content {
    text-align: center;
    margin-bottom: 32px;
}

.discount-content .percent {
    font-family: 'Rem', sans-serif;
    font-size: 80px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
    display: block;
}

.discount-content .percent sup {
    font-size: 40px;
    vertical-align: super;
}

.discount-content .off-text {
    font-family: 'Rem', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--text-white);
    display: block;
    line-height: 1;
}

.limited-text {
    font-family: 'Rem', sans-serif;
    font-size: 16px;
    color: var(--text-white);
    text-align: center;
    line-height: 1.4;
}

/* Gym Image Container */
.gym-image-container {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.gym-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Launch Offer Badge */
.launch-offer-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 170px;
    height: 150px;
    background: var(--primary-orange);
    clip-path: polygon(50% 5%, 63% 30%, 95% 30%, 72% 52%, 82% 85%, 50% 68%, 18% 85%, 28% 52%, 5% 30%, 37% 30%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.launch-offer-badge span {
    font-family: 'Rem', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
}

/* Choose Plan Section */
.choose-plan-section {
    text-align: center;
    background-color: transparent;
}

@media (max-width: 767.98px) {
    .choose-plan-section {
        padding: 60px 0;
    }
}

.choose-plan-section h2 {
    font-family: 'REM', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.choose-plan-section > p {
    font-family: 'Rem', sans-serif;
    font-size: 18px;
    color: #E2E2E2;
    margin-bottom: 60px;
}

.choose-plan-description {
    padding-bottom: 30px;
}

/* Plan Type Sections */
.plan-type-section {
    margin-bottom: 80px;
}

.plan-type-section:last-child {
    margin-bottom: 0;
}

.plan-type-title {
    font-family: 'Rem', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Copper Pricing Cards */
.copper-pricing-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.copper-plan-card {
    width: 320px;
    padding: 28px 32px;
    background: linear-gradient(180deg, rgba(60, 40, 30, 0.6) 0%, rgba(30, 20, 15, 0.8) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 36px;
    text-align: center;
    backdrop-filter: blur(42.3px);
    -webkit-backdrop-filter: blur(42.3px);
    position: relative;
    overflow: hidden;
    box-shadow: inset -4px 13px 32px rgba(255, 255, 255, 0.03);
}

.copper-plan-card h3 {
    font-family: 'Rem', sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--text-white);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
}

.price-row .current-price {
    font-family: 'Rem', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--text-white);
}

.price-row .original-price {
    font-family: 'Rem', sans-serif;
    font-size: 14px;
    color: #7A7A7A;
    text-decoration: line-through;
}

.btn-copper-buy {
    display: inline-block;
    padding: 16px 38px;
    background: var(--primary-orange);
    border-radius: 8px;
    font-family: 'Rem', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-copper-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(231, 91, 15, 0.4);
}

/* Features Grid Section */
.features-grid-section {
    margin-top: 80px;
}

.copper-features {
    padding-left: 20px;
    padding-right: 20px;
}

.platinum-features {
    padding-left: 20px;
    padding-right: 20px;
}

.features-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    padding-bottom: 40px;
    height: 600px;
}

@media (min-width: 992px) {
    .features-bento-grid {
        padding-bottom: 80px;
    }
}

.bento-item {
    background: transparent;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.bento-text-wrapper {
    position: relative;
    display: inline-block;
    z-index: 3;
}

.bento-text-wrapper .brush-bg {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translate(-50%, 0) rotate(8deg);
    width: 280px;
    height: auto;
    z-index: 1;
    opacity: 0.9;
    pointer-events: none;
}

/* Desktop/Mobile Image Visibility */
.bento-item .desktop-img {
    display: block;
}

.bento-item .mobile-img {
    display: none;
}

.bento-item h3 {
    font-family: 'Rem', sans-serif;
    font-size: 22px;
    font-weight: 700;
    font-style: normal;
    color: var(--text-white);
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Top Left - Smart Workout Plans */
.bento-top-left {
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-end;
    align-items: flex-start;
}

.bento-top-left .bento-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.bento-top-left .bento-text-wrapper {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.bento-top-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    z-index: 2;
}

/* Center - Large Image */
.bento-center {
    grid-column: 2;
    grid-row: 1 / 3;
    padding: 0;
}

.bento-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Top Right - Reward Points */
.bento-top-right {
    grid-column: 3;
    grid-row: 1;
    justify-content: flex-end;
    align-items: flex-start;
}

.bento-top-right .bento-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.bento-top-right .bento-text-wrapper {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.bento-top-right::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    z-index: 2;
}

/* Bottom Left - Recovery Facilities */
.bento-bottom-left {
    grid-column: 1;
    grid-row: 2;
    padding: 0;
    justify-content: flex-end;
    align-items: flex-start;
}

.bento-bottom-left .bento-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.bento-bottom-left .bento-text-wrapper {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.bento-bottom-left .bento-text-wrapper h3 {
    text-align: center;
}

.bento-bottom-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    z-index: 2;
}

/* Bottom Right - Gym + Studio Access */
.bento-bottom-right {
    grid-column: 3;
    grid-row: 2;
    padding: 0;
    justify-content: flex-end;
    align-items: flex-start;
}

.bento-bottom-right .bento-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.bento-bottom-right .bento-text-wrapper {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.bento-bottom-right .bento-text-wrapper h3 {
    text-align: center;
}

.bento-bottom-right::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    z-index: 2;
}

/* ========================================
   PLATINUM MEMBERSHIP PAGE STYLES
   ======================================== */

body.platinum-membership-page {
    background: url('images/Copper_membership_bg.webp') center center / cover no-repeat fixed;
    background-color: #000000;
}

.platinum-membership-page {
    min-height: 100vh;
    background: transparent;
    padding-top: 50px;
    position: relative;
}

@media (min-width: 769px) {
    .platinum-membership-page {
        padding-bottom: 80px;
    }
}

/* Platinum Hero Section */
.platinum-hero-section {
    display: flex;
    gap: 20px;
    margin-bottom: 80px;
}

/* Platinum Discount Card - Gold Gradient */
.platinum-discount {
    background: linear-gradient(135deg, #7F6B4B 0%, #9D865C 24%, #E0C187 51%, #9D865C 76%, #7F6B4B 100%);
}

.platinum-discount .star-icon {
    color: #1a1a1a;
}

.platinum-discount .discount-content .percent,
.platinum-discount .discount-content .off-text {
    color: #1a1a1a;
}

.platinum-discount .limited-text {
    color: #1a1a1a;
}

/* Platinum Launch Badge */
.platinum-badge {
    background: linear-gradient(135deg, #7F6B4B 0%, #9D865C 24%, #E0C187 51%, #9D865C 76%, #7F6B4B 100%);
}

.platinum-badge span {
    color: #1a1a1a;
}

/* Platinum Package - Override Copper Styles with Gold Colors */
.platinum-membership-page .copper-discount-box {
    background: linear-gradient(135deg, #7F6B4B 0%, #9D865C 24%, #E0C187 51%, #9D865C 76%, #7F6B4B 100%);
}

.platinum-membership-page .copper-discount-box .discount-star-icon {
    color: #1a1a1a;
}

.platinum-membership-page .copper-discount-box .discount-upto,
.platinum-membership-page .copper-discount-box .discount-percent,
.platinum-membership-page .copper-discount-box .discount-off {
    color: #1a1a1a;
}

.platinum-membership-page .copper-discount-box .discount-limited {
    color: #1a1a1a;
}

.platinum-membership-page .launch-offer-badge {
    background: linear-gradient(135deg, #7F6B4B 0%, #9D865C 24%, #E0C187 51%, #9D865C 76%, #7F6B4B 100%);
}

.platinum-membership-page .launch-offer-badge span {
    color: #1a1a1a;
}

.platinum-membership-page .copper-title {
    color: #E0C187;
}

/* Ensure Platinum Hero Section matches Copper layout - Desktop */
@media (min-width: 992px) {
    .platinum-membership-page .copper-membership-hero {
        display: flex !important;
        gap: 0 !important;
        align-items: stretch !important;
        min-height: 650px !important;
        margin-top: 40px !important;
        flex-direction: row !important;
    }

    .platinum-membership-page .copper-hero-image {
        flex: 1 !important;
        overflow: hidden !important;
        position: relative !important;
        height: 520px !important;
    }

    .platinum-membership-page .copper-hero-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        border-radius: 10px !important;
    }
}

/* Platinum Pricing Grid - 2x2 */
.platinum-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.platinum-plan-card {
    padding: 24px 28px;
    background: linear-gradient(180deg, rgba(127, 107, 75, 0.4) 0%, rgba(40, 30, 20, 0.9) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 36px;
    text-align: center;
    backdrop-filter: blur(42.3px);
    -webkit-backdrop-filter: blur(42.3px);
    position: relative;
    overflow: hidden;
    box-shadow: inset -4px 13px 32px rgba(255, 255, 255, 0.03);
}

.platinum-plan-card h3 {
    font-family: 'Rem', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.platinum-plan-card .price-row {
    margin-bottom: 0;
}

.platinum-plan-card .price-row .current-price {
    font-family: 'Rem', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #E0C187;
}

.platinum-plan-card .price-row .original-price {
    font-family: 'Rem', sans-serif;
    font-size: 16px;
    color: #7A7A7A;
    text-decoration: line-through;
    margin-left: 8px;
}

/* Platinum Buy Now Button */
.btn-platinum-buy {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #7F6B4B 0%, #9D865C 24%, #E0C187 51%, #9D865C 76%, #7F6B4B 100%);
    border-radius: 8px;
    font-family: 'Rem', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-platinum-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(224, 193, 135, 0.4);
}

/* Platinum Plan Section Title */
.platinum-plan-section {
    background-color: transparent;
}

.platinum-plan-section h2 {
    color: var(--text-white);
}

/* Platinum Membership Page Responsive */
@media (max-width: 1024px) {
    .platinum-hero-section {
        flex-direction: column;
    }
    
    .platinum-pricing-grid {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    body.platinum-membership-page {
        background: url('images/mobile_images/copper_membership_mobile.webp') center center / cover no-repeat fixed;
        background-color: #000000;
    }
    
    .platinum-membership-page {
        /* padding-bottom: 60px; */
    }
    
    .platinum-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .platinum-plan-card {
        padding: 32px 24px;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .platinum-plan-card h3 {
        font-size: 20px;
    }
    
    .platinum-plan-card .price-row .current-price {
        font-size: 28px;
    }
}

/* Copper Membership Page Responsive */
@media (max-width: 1024px) {
    .copper-hero-section {
        flex-direction: column;
    }
    
    .discount-card {
        width: 100%;
        min-height: 250px;
        flex-direction: row;
        justify-content: space-between;
        padding: 32px 48px;
    }
    
    .discount-content {
        margin-bottom: 0;
    }
    
    .gym-image-container {
        height: 350px;
    }
    
    .copper-pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .copper-plan-card {
        width: 100%;
        max-width: 400px;
    }
    
    .features-bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        height: auto;
    }
    
    .bento-center {
        grid-column: 1 / 3;
        grid-row: 2;
        height: 350px;
    }
    
    .bento-top-left {
        grid-column: 1;
        grid-row: 1;
        min-height: 250px;
    }
    
    .bento-top-right {
        grid-column: 2;
        grid-row: 1;
        min-height: 250px;
    }
    
    .bento-bottom-left {
        grid-column: 1;
        grid-row: 3;
        min-height: 250px;
    }
    
    .bento-bottom-right {
        grid-column: 2;
        grid-row: 3;
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    body.copper-membership-page {
        background: url('images/mobile_images/copper_membership_mobile.webp') center center / cover no-repeat fixed;
        background-color: #000000;
    }
    
    .copper-membership-page {
        padding-bottom: 60px;
    }
    
    .choose-plan-description {
        padding-bottom: 30px !important;
    }
    
    .copper-membership-page .choose-plan-description {
        padding-bottom: 30px !important;
    }
    
    .discount-card {
        flex-direction: column;
        min-height: 300px;
        padding: 24px;
    }
    
    .discount-content .percent {
        font-size: 60px;
    }
    
    .discount-content .percent sup {
        font-size: 30px;
    }
    
    .discount-content .off-text {
        font-size: 42px;
    }
    
    .gym-image-container {
        height: 280px;
    }
    
    .launch-offer-badge {
        width: 100px;
        height: 100px;
    }
    
    .launch-offer-badge span {
        font-size: 14px;
    }
    
    .choose-plan-section h2 {
        font-size: 32px;
    }
    
    .choose-plan-section > p {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .choose-plan-description {
        padding-bottom: 30px !important;
    }
    
    .plan-type-section {
        margin-bottom: 60px;
    }
    
    .plan-type-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .copper-plan-card {
        padding: 32px 24px;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .copper-plan-card h3 {
        font-size: 20px;
    }
    
    .price-row .current-price {
        font-size: 32px;
    }
    
    .price-row .original-price {
        font-size: 16px;
    }
    
    .features-bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 28px;
    }
    
    .bento-center,
    .bento-top-left,
    .bento-top-right,
    .bento-bottom-left,
    .bento-bottom-right {
        grid-column: 1;
        grid-row: auto;
        min-height: auto;
        height: auto;
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .bento-center {
        height: auto;
    }
    
    .bento-item h3 {
        font-size: 20px;
    }
    
    /* Show mobile images, hide desktop images on mobile */
    .bento-item .desktop-img {
        display: none;
    }
    
    /* Make all mobile images fit screen width and height */
    .bento-item .mobile-img {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
        position: relative;
    }
    
    /* Specific styling for mobile images in different positions */
    .bento-top-left .mobile-img,
    .bento-top-right .mobile-img,
    .bento-bottom-left .mobile-img,
    .bento-center .mobile-img {
        width: 100%;
        height: auto;
    }
    
    /* Add padding on copper-features for mobile images */
    .copper-features {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    /* Add padding on platinum-features for mobile images */
    .platinum-features {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    /* Remove absolute positioning for mobile images */
    .bento-top-left .bento-bg-img.mobile-img,
    .bento-top-right .bento-bg-img.mobile-img,
    .bento-bottom-left .bento-bg-img.mobile-img {
        position: relative;
        top: auto;
        left: auto;
        height: auto;
    }
    
    /* Hide text overlay on mobile for items with mobile images (cooper_1-4) */
    .bento-top-left .bento-text-wrapper,
    .bento-top-right .bento-text-wrapper,
    .bento-bottom-left .bento-text-wrapper {
        display: none;
    }
    
    /* Remove gradient overlays on mobile */
    .bento-top-left::after,
    .bento-top-right::after,
    .bento-bottom-left::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        font-size: 12px;
        gap: 8px;
    }
    
    .discount-content .percent {
        font-size: 48px;
    }
    
    .discount-content .off-text {
        font-size: 36px;
    }
    
    .limited-text {
        font-size: 14px;
    }
    
    .choose-plan-section h2 {
        font-family: 'REM', sans-serif;
        font-size: 34px;
        font-weight: 700;
    }
    
    .choose-plan-section > p {
        padding-bottom: 30px !important;
    }
    
    .choose-plan-description {
        padding-bottom: 30px !important;
        display: block !important;
    }
    
    .plan-type-section {
        margin-bottom: 50px;
    }
    
    .plan-type-title {
        font-size: 22px;
        margin-bottom: 24px;
    }
    
    .btn-copper-buy {
        padding: 14px 36px;
        font-size: 14px;
    }
}


/* Force Why Join Us mobile background image (image only) */
@media (max-width: 767.98px) {
    section.section.why-join {
        background: url('images/mobile_images/why_join_us.webp') center center / cover no-repeat !important;
        background-color: transparent !important;
    }
}

/* ========================================
   GROUP WORKOUTS PAGE STYLES
   ======================================== */

body.group-workouts-page {
    background-image: url('images/Group_workouts_bg.webp') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    /* Use scroll to avoid heavy repaint cost in Safari */
    background-attachment: scroll !important;
    background-color: transparent !important;
    min-height: 100vh;
    padding-top: 100px;
    position: relative;
}

body.group-workouts-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(17, 17, 16, 0.2);
    z-index: 0;
    pointer-events: none;
}

body.group-workouts-page > * {
    position: relative;
    z-index: 1;
}

body.group-workouts-page #navbar-container {
    z-index: 1000;
    position: relative;
}

/* Hero Section */
.group-workouts-hero {
    padding: 80px 0 100px;
    position: relative;
}

.group-hero-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.group-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
    border-radius: 20px;
}

.group-hero-content {
    padding: 20px 0;
}

.group-hero-title {
    font-family: 'REM', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 24px;
}

.group-hero-description {
    font-family: 'REM', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #E2E2E2;
    line-height: 1.6;
    margin-bottom: 40px;
}


/* Training Formats Section */
.training-formats-section {
    padding: 50px 0;
    position: relative;
}

.training-formats-header {
    margin-bottom: 60px;
}

.training-formats-title {
    font-family: 'REM', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
}

.training-formats-subtitle {
    font-family: 'REM', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #E2E2E2;
    line-height: 1.6;
}

.training-format-card {
    background: rgba(19, 15, 26, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 36px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(42px);
    box-shadow: inset -4px 13px 32px rgba(255, 255, 255, 0.03);
    min-height: 312px;
}

.training-format-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(217, 217, 217, 1) 0%, rgba(115, 115, 115, 0) 100%);
    opacity: 0.02;
    pointer-events: none;
    border-radius: 36px;
}

.training-format-card .card-glow {
    position: absolute;
    width: 726px;
    height: 566px;
    top: -281px;
    left: -400px;
    background: rgba(152, 54, 20, 0.5);
    filter: blur(220px);
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: lighten;
}

.training-format-card .card-content {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.format-title {
    font-family: 'REM', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    text-align: center;
}

.format-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.format-features li {
    font-family: 'REM', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #F5F5F5;
    line-height: 1.6;
    margin-bottom: 12px;
}

.format-features li:last-child {
    margin-bottom: 0;
}

/* Performance Tracking & Zones Section */
.performance-zones-section {
    padding: 100px 0;
    background-image: url('images/gx_zone_bg.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.performance-zones-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    /* Lower opacity so background image is clearly visible */
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;
}

.performance-zones-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -116px;
    width: 2160px;
    height: 432px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(153, 153, 153, 0.2) 100%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.2;
    transform: rotate(19.5deg);
    filter: blur(2.1px);
    z-index: 0;
}

.performance-zones-section > .container {
    position: relative;
    z-index: 1;
}

.performance-content {
    padding: 20px 0;
}

.performance-title {
    font-family: 'REM', sans-serif;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.2;
}

.performance-title .title-white {
    color: #FFFFFF;
}

.performance-title .title-orange {
    color: var(--primary-orange);
}

.performance-description {
    font-family: 'REM', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #E2E2E2;
    line-height: 1.6;
}

.performance-image {
    border-radius: 20px;
    overflow: hidden;
}

.performance-image img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
    border-radius: 20px;
}

/* CoreoBeat Zones Section */
.coreobeat-zones-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.zones-header {
    margin-bottom: 60px;
}

.zones-title {
    font-family: 'REM', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.zones-subtitle {
    font-family: 'REM', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #E2E2E2;
}

.coreobeat-zones-section .zones-grid,
.performance-zones-section .zones-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(12px, 2vw, 32px);
    justify-items: center;
    max-width: 100%;
    width: 100%;
    padding: 0 clamp(10px, 2vw, 20px);
    box-sizing: border-box;
    overflow: hidden;
}

.zone-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 0;
    text-align: center;
    width: 100%;
    max-width: 200px;
    min-width: 0;
    height: 180px;
    position: relative;
    box-sizing: border-box;
    aspect-ratio: 1;
}

.zone-1 {
    background-color: #0863e1;
}

.zone-2 {
    background-color: #24b728;
}

.zone-3 {
    background-color: #DCB412;
}

.zone-4 {
    background-color: #EA6125;
}

.zone-5 {
    background-color: #FF2E2E;
}

.zone-number {
    font-family: 'REM', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    padding-top: 20px;
}

.zone-percentage {
    font-family: 'REM', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.zone-name {
    font-family: 'REM', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #FFFFFF;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    padding-bottom: 20px;
}

/* Features Section */
.group-features-section {
    padding: 100px 0 150px 0;
    position: relative;
    overflow: hidden;
    background-image: url('images/About_coreo_bg.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* Use scroll instead of fixed to avoid Safari layering issues */
    background-attachment: scroll;
}

.group-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Softer overlay so background image is visible on all browsers */
     z-index: 0;
    pointer-events: none;
}

.group-features-section .container {
    position: relative;
    z-index: 1;
}

/* Decorative Elements */
.group-features-section::after {
    content: '';
    position: absolute;
    top: 200px;
    left: -200px;
    width: 2000px;
    height: 400px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(153, 153, 153, 0.1) 100%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.15;
    transform: rotate(-3deg);
    filter: blur(30px);
    z-index: 0;
}

.features-label {
    font-family: 'REM', sans-serif;
    font-size: 21px;
    font-weight: 300;
    color: #E75B0F;
    text-transform: uppercase;
    margin-bottom: 60px;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.feature-image {
    border-radius: 20px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    object-fit: cover;
}

.features-content {
    position: relative;
    z-index: 2;
}

.feature-content {
    padding: 20px 0;
}

.feature-title {
    font-family: 'REM', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.2;
}

.feature-description {
    font-family: 'REM', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #E2E2E2;
    line-height: 1.6;
}

/* CTA Section */
.group-cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-family: 'REM', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #F1F1F1;
    margin-bottom: 42px;
    line-height: 1.2;
}

.btn-cta-gradient {
    background: linear-gradient(135deg, #FF6421 0%, #A53E14 100%);
    color: #FFFFFF;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    border: 1.5px solid;
    border-image: linear-gradient(135deg, #FF6421 0%, #A53E14 100%) 1;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 91, 15, 0.3);
}

.cta-image {
    text-align: center;
}

.cta-image img {
    max-width: 100%;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .group-workouts-hero {
        padding: 0 0 0;
    }
    
    .group-hero-title {
        font-size: 36px;
    }
    
    .group-hero-description {
        font-size: 16px;
    }
    
    .training-formats-section {
        padding: 80px 0;
    }
    
    .training-formats-title {
        font-size: 36px;
    }
    
    .training-formats-subtitle {
        font-size: 16px;
    }
    
    .training-format-card {
        padding: 30px;
        min-height: auto;
    }
    
    .format-title {
        font-size: 28px;
    }
    
    .performance-tracking-section,
    .coreobeat-zones-section,
    .group-features-section,
    .group-cta-section,
    .performance-zones-section {
        padding: 80px 0;
    }
    
    .performance-title,
    .zones-title,
    .cta-title {
        font-size: 36px;
    }
    
    .cta-content {
        padding: 20px 0;
    }
    
    .feature-title {
        font-size: 32px;
    }
    
    .coreobeat-zones-section .zones-grid,
    .performance-zones-section .zones-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 16px;
        padding: 0 10px;
    }
    
    .zone-card {
        width: 100%;
        max-width: 180px;
        height: 180px;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .group-workouts-page {
        padding-top: 80px;
        background-attachment: scroll !important;
    }
    
    body.group-workouts-page::before {
        position: absolute !important;
        background-attachment: scroll !important;
    }
    
    /* CTA above background on mobile */
    body.group-workouts-page #cta-container {
        position: relative;
        z-index: 10;
    }
    
    body.group-workouts-page #cta-container .aihub-cta {
        position: relative;
        z-index: 10;
    }
    
    /* Ensure dialog is always on top */
    .dialog-overlay {
        z-index: 99999 !important;
        position: fixed !important;
    }
    
    .group-hero-title {
        font-size: 34px;
        font-weight: 700;
        font-family: 'REM', sans-serif;
    }
    
    .group-hero-description {
        font-size: 16px;
        font-weight: 300;
        font-family: 'REM', sans-serif;
    }
    
    .training-formats-title {
        font-size: 34px;
        font-weight: 700;
        font-family: 'REM', sans-serif;
    }
    
    .training-formats-subtitle {
        font-size: 16px;
        font-weight: 300;
        font-family: 'REM', sans-serif;
    }
    
    .format-title {
        font-size: 26px;
        font-weight: 700;
        font-family: 'REM', sans-serif;
        text-align: center;
    }
    
    .format-features li {
        font-size: 16px;
        font-weight: 300;
        font-family: 'REM', sans-serif;
    }
    
    .training-format-card .card-content {
        padding: 0;
    }
    
    .performance-title {
        font-size: 40px;
        font-weight: 900;
        font-family: 'REM', sans-serif;
        line-height: 1.3;
    }
    
    .performance-title .title-orange {
        font-size: 40px;
        font-weight: 700;
        font-family: 'REM', sans-serif;
    }
    
    .performance-description {
        font-size: 16px;
        font-weight: 300;
        font-family: 'REM', sans-serif;
        line-height: 1.4;
    }
    
    .zones-title {
        font-size: 34px;
        font-weight: 700;
        font-family: 'REM', sans-serif;
        line-height: 1.4;
    }
    
    .zones-subtitle {
        font-size: 16px;
        font-weight: 300;
        font-family: 'REM', sans-serif;
    }
    
    .coreobeat-zones-section .zones-header {
        background-image: url('images/gx_betas_mobile.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 20px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .feature-title {
        font-size: 24px;
    }
    
    .coreobeat-zones-section .zones-grid,
    .performance-zones-section .zones-grid {
        display: grid;
        grid-template-columns: repeat(3, 100px);
        gap: 12px;
        padding: 0 20px;
        justify-content: center;
        max-width: 100%;
    }
    
    .zone-card {
        width: 100px;
        height: 100px;
        max-width: 100px;
        margin: 0 auto;
        border-radius: 12px;
    }
    
    .coreobeat-zones-section .zones-grid .zone-card:nth-child(4),
    .performance-zones-section .zones-grid .zone-card:nth-child(4) {
        grid-column: 1;
        justify-self: start;
        margin-left: 56px;
    }
    
    .coreobeat-zones-section .zones-grid .zone-card:nth-child(5),
    .performance-zones-section .zones-grid .zone-card:nth-child(5) {
        grid-column: 2;
        justify-self: start;
        margin-left: 56px;
    }
    
    .zone-number {
        font-size: 18px;
        font-weight: 700;
        font-family: 'REM', sans-serif;
        padding-top: 12px;
    }
    
    .zone-percentage {
        font-size: 10px;
        font-weight: 700;
        font-family: 'REM', sans-serif;
    }
    
    .zone-name {
        font-size: 8px;
        font-weight: 400;
        font-family: 'REM', sans-serif;
        padding-bottom: 12px;
    }
    
    .zone-card h3 {
        font-size: 16px;
        font-weight: 700;
        font-family: 'REM', sans-serif;
    }
    
    .feature-description {
        font-size: 16px;
        font-weight: 300;
        font-family: 'REM', sans-serif;
    }
    
    .group-features-section {
        background-image: url('images/mobile_images/feature_mobile_bacgground.webp') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
    }
    
    .group-features-section::before {
        display: none !important;
    }
}

/* ========================================
   COREO ZONES STYLES (FROM BACKUP - NEW CLASS NAMES)
   ======================================== */

.zones-hero1 {
    min-height: 100vh;
    background: url('images/coreo_zones_bg.webp') center center / cover no-repeat;
    background-color: #111110;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 80px;
}

.zones-blur-11 {
    position: absolute;
    width: 1135px;
    height: 1061px;
    top: 334px;
    left: -339px;
    background: rgba(152, 54, 20, 0.6);
    filter: blur(270px);
    border-radius: 50%;
    pointer-events: none;
}

.zones-blur-21 {
    position: absolute;
    width: 1135px;
    height: 1061px;
    top: 1946px;
    right: -135px;
    background: rgba(152, 54, 20, 0.6);
    filter: blur(270px);
    border-radius: 50%;
    pointer-events: none;
}

.zones-arc1 {
    position: absolute;
    top: 1582px;
    left: 333px;
    width: 1286px;
    height: 651px;
    border: 1px solid transparent;
    border-image: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12) 0%, transparent 60%) 1;
    border-radius: 50% 50% 0 0;
    border-bottom: none;
    pointer-events: none;
    opacity: 0.5;
}

.zones-paintbrush1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-55%, -70%) rotate(5deg);
    width: 380px;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.zones-paintbrush1 img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.zones-header1 {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 2;
}

.zones-header1 h1 {
    font-family: 'Rem', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 10px;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.zones-header1 p {
    font-family: 'Rem', sans-serif;
    font-size: 18px;
    color: #E2E2E2;
    max-width: 639px;
    margin: 0 auto;
    line-height: 1.4;
}

.zones-grid1 {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.zones-row1 {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.zones-row-center1 {
    justify-content: center;
}

.zone-card1 {
    position: relative;
    width: 600px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.zone-card1:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(231, 91, 15, 0.2);
}

.zone-card-bg1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/gym_zone_1.webp') center center / cover no-repeat;
    z-index: 1;
}

.zone-card-bg1.zone-strength1 {
    background: url('images/gym_zone_2.webp') center center / cover no-repeat;
}

.zone-card-bg1.zone-hyrox1 {
    background: url('images/gym_zone_3.webp') center center / cover no-repeat;
}

.zone-card-bg1.zone-functional1 {
    background: url('images/group_workout_1.webp') center center / cover no-repeat;
}

.zone-card-bg1.zone-zumba1 {
    background: url('images/group_workout_2.webp') center center / cover no-repeat;
}

.zone-card-bg1.zone-yoga1 {
    background: url('images/group_workout_3.webp') center center / cover no-repeat;
}

.zone-card-bg1.zone-ceragem1 {
    background: url('images/Wellness_1.webp') center center / cover no-repeat;
}

.zone-card-bg1.zone-sauna1 {
    background: url('images/Wellness_2.webp') center center / cover no-repeat;
}

.zone-card-bg1.zone-steam1 {
    background: url('images/Wellness_3.webp') center center / cover no-repeat;
}

.zone-card-bg1.zone-cold-shower1 {
    background: url('images/Wellness_4.webp') center center / cover no-repeat;
}

.zone-card-bg1.zone-nutrition1 {
    background: url('images/Wellness_5.webp') center center / cover no-repeat;
}

/* Group Workout Section */
.group-workout-header1 {
    margin-top: 150px;
}

.zone-card-overlay1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
}

.zone-card1 h3 {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Rem', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #CCCCCC;
    text-transform: capitalize;
    z-index: 3;
    text-align: center;
    white-space: nowrap;
    transition: bottom 0.3s ease, transform 0.3s ease;
}

.zone-desc1 {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translate(-50%, 10px);
    width: calc(100% - 80px);
    max-width: 520px;
    font-family: 'Rem', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.5;
    color: #E2E2E2;
    text-align: left;
    opacity: 0;
    z-index: 3;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.zone-card1:hover .zone-desc1 {
    opacity: 1;
    transform: translate(-50%, 0);
}

.zone-card1:hover h3 {
    bottom: 150px;
}

/* Zones Responsive */
@media (max-width: 1300px) {
    .zone-card1 {
        width: 500px;
        height: 250px;
    }

    .zones-paintbrush1 {
        width: 340px;
    }
}

@media (max-width: 1100px) {
    .zones-row1 {
        flex-direction: column;
        align-items: center;
    }

    .zone-card1 {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .zones-hero1 {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .zones-header1 h1 {
        font-size: 42px;
    }

    .zones-header1 p {
        font-size: 18px;
    }

    .zone-card1 {
        height: 220px;
    }

    .zone-card1 h3 {
        font-size: 26px;
        bottom: 30px;
    }

    .zone-card1:hover h3 {
        bottom: 100px;
    }

    .zone-desc1 {
        font-size: 14px;
        bottom: 18px;
        width: calc(100% - 70px);
    }

    .zones-paintbrush1 {
        width: 300px;
    }

    .zones-blur-11,
    .zones-blur-21,
    .zones-arc1 {
        display: none;
    }
}

@media (max-width: 480px) {
    .zones-header1 h1 {
        font-size: 32px;
    }

    .zones-header1 p {
        font-size: 16px;
    }

    .zone-card1 {
        height: 180px;
    }

    .zone-card1 h3 {
        font-size: 28px;
        bottom: 20px;
    }

    .zone-desc1 {
        font-size: 13px;
        bottom: 16px;
        width: calc(100% - 52px);
    }

    .zones-paintbrush1 {
        width: 220px;
    }
}

/* ========================================
   PRICING PAGE STYLES (FROM BACKUP - NEW CLASS NAMES)
   ======================================== */

.pricing-hero1 {
    min-height: 100vh;
    background-color: #111110;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 80px;
}

.pricing-arc1 {
    position: absolute;
    top: 0;
    left: 77px;
    right: 77px;
    height: 651px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50% 50% 0 0;
    border-bottom: none;
    pointer-events: none;
    opacity: 0.5;
}

.pricing-header1 {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-header1 h1 {
    font-family: 'Rem', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.pricing-header1 p {
    font-family: 'Rem', sans-serif;
    font-size: 18px;
    color: #E2E2E2;
}

.pricing-cards1 {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.pricing-card1 {
    width: 600px;
    border-radius: 36px;
    background: rgba(19, 15, 26, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(42px);
    position: relative;
    overflow: hidden;
    box-shadow: inset -4px 13px 32px rgba(255, 255, 255, 0.03);
}

.pricing-card1 * {
    box-sizing: border-box;
}

.pricing-card1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(217, 217, 217, 1) 0%, rgba(115, 115, 115, 0) 100%);
    opacity: 0.02;
    pointer-events: none;
    border-radius: 36px;
}

.card-glow1 {
    position: absolute;
    width: 726px;
    height: 566px;
    top: -281px;
    left: -400px;
    background: rgba(152, 54, 20, 0.5);
    filter: blur(220px);
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: lighten;
}

.platinum-glow1 {
    background: linear-gradient(135deg, 
        rgba(127, 107, 75, 0.6) 0%, 
        rgba(157, 134, 92, 0.6) 25%, 
        rgba(224, 193, 135, 0.6) 50%, 
        rgba(157, 134, 92, 0.6) 75%, 
        rgba(127, 107, 75, 0.6) 100%);
}

.card-content1 {
    position: relative;
    z-index: 2;
    padding: 32px;
}

.card-header1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 37px;
}

.plan-info1 h2 {
    font-family: 'Rem', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.price-info1 {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-info1 .price1 {
    font-family: 'Rem', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
}

.price-info1 .period1 {
    font-family: 'Rem', sans-serif;
    font-size: 16px;
    color: #F5F5F5;
}

.btn-buy-now1 {
    padding: 16px 46px;
    border-radius: 8px;
    font-family: 'Rem', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.copper-btn1 {
    background: var(--primary-orange);
    border: none;
    color: var(--text-white);
}

.copper-btn1:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(231, 91, 15, 0.4);
}

.platinum-btn1 {
    background: linear-gradient(135deg, 
        #7F6B4B 0%, 
        #9D865C 25%, 
        #E0C187 50%, 
        #9D865C 75%, 
        #7F6B4B 100%);
    color: #0D0D0D;
}

.platinum-btn1:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(224, 193, 135, 0.4);
}

.card-features1 {
    margin-top: 20px;
}

.features-divider1 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.features-divider1 .line1 {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 9px;
}

.features-divider1 .features-title1 {
    font-family: 'Rem', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 1px;
}

.features-grid1 {
    display: flex;
    gap: 24px;
}

.features-column1 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item1 {
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

.tick-icon1 {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tick-icon1 i {
    font-size: 20px;
    color: #6B6C70;
}

.feature-item1 span {
    font-family: 'Rem', sans-serif;
    font-size: 14px;
    color: var(--text-white);
    line-height: 1.5;
}

/* Pricing Page Responsive */
@media (max-width: 1300px) {
    .pricing-cards1 {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card1 {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .pricing-hero1 {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .pricing-header1 h1 {
        font-size: 36px;
    }
    
    .pricing-header1 p {
        font-size: 16px;
    }
    
    .pricing-arc1 {
        left: 20px;
        right: 20px;
    }
    
    .pricing-card1 {
        overflow: hidden;
        border-radius: 36px;
        clip-path: inset(1px round 36px);
    }
    
    .card-header1 {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .btn-buy-now1 {
        width: 100%;
        text-align: center;
    }
    
    .features-grid1 {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .pricing-header1 h1 {
        font-size: 28px;
    }
    
    .card-content1 {
        padding: 24px;
    }
    
    .plan-info1 h2 {
        font-size: 24px;
    }
    
    .price-info1 .price1 {
        font-size: 24px;
    }
}
