        /* DESIGN SYSTEM VARIABLES */
        :root {
            --primary-orange: #FF6600;
            --primary-dark: #3C3D37;
            --soft-beige: #EAE4DD;
            --purple-accent: #604CC3;
            --green-accent: #8FD14F;
            --white: #FFFFFF;
            --black: #111111;
            --font-main: 'Literata', serif;
            --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* RESET & BASE TYPOGRAPHY */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-main);
            background-color: var(--soft-beige);
            color: var(--primary-dark);
            overflow-x: hidden;
            line-height: 1.6;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            letter-spacing: -0.02em;
            color: var(--black);
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-smooth);
        }

        /* CORE CONTAINER UTILITIES */
        .container {
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 40px;
        }
        .btn-premium {
            display: inline-block;
            padding: 14px 36px;
            background: var(--black);
            color: var(--white);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            border: none;
            cursor: pointer;
            position: relative;
            z-index: 1;
            overflow: hidden;
            transition: var(--transition-smooth);
        }
        .btn-premium::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: var(--primary-orange);
            z-index: -1;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .btn-premium:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }
        .btn-premium:hover {
            color: var(--white);
        }

        /* STRUCTURED HEADERS */
        .top-accent-border {
            height: 5px;
            background: var(--primary-orange);
            width: 100%;
            position: fixed;
            top: 0; left: 0; z-index: 2000;
        }
        header {
            position: fixed;
            top: 5px; left: 0; width: 100%;
            z-index: 1000;
            background: var(--white);
            box-shadow: 0 4px 30px rgba(0,0,0,0.03);
        }
        .main-header {
            height: 90px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding: 0 40px;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .logo-placeholder {
            width: 65px;
            height: 75px;
            margin-top: -1.5rem;
            background: var(--primary-orange);
            display: grid;
            place-items: center;
            color: var(--white);
            font-weight: 900;
        }
        .brand-text {
            font-size: 2.5rem;
            margin-top: -1rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            text-transform: uppercase;
            
            background: linear-gradient(45deg, var(--black), var(--primary-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
                .email-area {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .email-placeholder {
            width: 65px;
            height: 75px;
            margin-top: -1.5rem;
            background: var(--primary-orange);
            display: grid;
            place-items: center;
            color: var(--white);
            font-weight: 900;
        }
        .email-text {
            font-size: 1.2rem;
            margin-top: -1rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            text-transform: uppercase;
            
            background: black;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .header-email {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--primary-dark);
            position: relative;
        }
        .email-text:hover {
            color: var(--primary-orange);
            padding-left: 5px;
        }
        
        /* NAVIGATION BAR SETUP */
        .nav-bar {
            background: var(--white);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
            height: 60px;
            border-bottom: 1px solid rgba(0,0,0,0.03);
        }
        .nav-links {
            display: flex;
            gap: 35px;
            margin: 0 auto;
            list-style: none;
        }
        .nav-links a {
            font-weight: 500;
            color: var(--primary-dark);
            font-size: 0.95rem;
            position: relative;
            padding: 8px 0;
            letter-spacing: 0.02em;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0; left: 50%; width: 0; height: 2px;
            background: var(--primary-orange);
            transition: var(--transition-smooth);
            transform: translateX(-50%);
        }
        .nav-links a:hover::after, .nav-links a.active::after {
            width: 100%;
        }
        .nav-links a:hover {
            color: var(--black);
            letter-spacing: 0.06em;
        }
        
        /* RESPONSIVE HAMBURGER NAVIGATION BUTTON */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            border: none;
            background: transparent;
            padding: 10px;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 2px;
            background: var(--black);
            transition: var(--transition-smooth);
        }

        /* PAGE ENGINE ARCHITECTURE */
        .page-content {
            display: none;
            margin-top: 155px;
            animation: fadeInPage 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        }
        .page-content.active-page {
            display: block;
        }
        @keyframes fadeInPage {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ==========================================================================
           HOME PAGE COMPONENT STYLES
           ========================================================================== */
        .hero-section {
            position: relative;
            height: calc(100vh - 155px);
            min-height: 650px;
            overflow: hidden;
            background: #111;
        }
        .hero-slideshow {
            position: absolute;
            top:0; left:0; width:100%; height:100%;
            z-index: 1;
        }
        .hero-slide {
            position: absolute;
            top:0; left:0; width:100%; height:100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transform: scale(1.1);
            transition: opacity 1.5s ease, transform 1.5s ease;
        }
        .hero-slide.active {
            opacity: 0.65;
            transform: scale(1);
        }
        .hero-card {
            position: absolute;
            right: 10%;
            top: 10%;
            width: 460px;
            background: var(--primary-orange);
            color: var(--white);
            padding: 50px;
            z-index: 5;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            animation: cardReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }
        @keyframes cardReveal {
            from { transform: translateY(120px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        .hero-card .label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            display: block;
            margin-bottom: 15px;
            font-weight: 600;
        }
        .hero-card h1 {
            color: var(--white);
            font-size: 1.8rem;
            line-height: 1.1;
        }
        .hero-card p {
            font-size: 1.05rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        .hero-indicators {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: 15px;
        }
        .indicator {
            width: 60px;
            height: 3px;
            background: rgba(255,255,255,0.3);
            cursor: pointer;
            position: relative;
        }
        .indicator.active::before {
            content: '';
            position: absolute;
            top:0; left:0; height:100%; width:0;
            background: #ff6600;
            animation: progressTrack 5s linear forwards;
        }
        @keyframes progressTrack {
            to { width: 100%; }
        }

        /* MOTIVATIONAL STRIP MARQUEE */
        .motivation-strip {
            background: var(--primary-orange);
            color: var(--white);
            overflow: hidden;
            white-space: nowrap;
            padding: 25px 0;
            border-top: 1px solid rgba(255,255,255,0.2);
        }
        .marquee-content {
            display: inline-block;
            font-size: 2.2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            animation: marquee 25s linear infinite;
        }
        @keyframes marquee {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-50%, 0, 0); }
        }

        /* EDITORIAL FLUSH GRIDS */
        .editorial-container {
            background: var(--white);
            box-shadow: 0 20px 50px rgba(0,0,0,0.04);
            overflow: hidden;
            margin: 80px auto;
        }
        .editorial-banner {
            background: var(--primary-orange);
            color: var(--white);
            padding: 30px 40px;
        }
        .editorial-banner h2 {
            color: var(--white);
            font-size: 2rem;
        }
        .flush-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
        }
        .grid-card {
            position: relative;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            background: var(--black);
            cursor: pointer;
        }
        .grid-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
            
            opacity: 0.85;
        }
        .grid-card:hover img {
            transform: scale(1.08);
            opacity: 0.4;
        }
        .card-overlay {
            position: absolute;
            bottom: 0; left: 0; width: 100%; height: 100%;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: var(--white);
            transition: var(--transition-smooth);
        }
        .card-overlay h3 {
            color: var(--white);
            font-size: 1.6rem;
            margin-bottom: 10px;
        }
        .card-overlay p {
            font-size: 0.95rem;
            opacity: 0;
            transform: translateY(20px);
            transition: var(--transition-smooth);
            max-height: 0;
            overflow: hidden;
        }
        .grid-card:hover .card-overlay p {
            opacity: 1;
            transform: translateY(0);
            max-height: 150px;
            margin-top: 10px;
        }

        /* SLIDESHOW SLIDER TESTIMONIALS */
        .member-stories {
            background: var(--white);
            padding: 100px 0;
        }
        .stories-split {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 80px;
            align-items: center;
        }
        .story-image-wrap {
            position: relative;
            justify-self: center;
        }
        .story-circle-img {
            width: 380px;
            height: 380px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
            border: 8px solid var(--soft-beige);
        }
        .story-slider-text {
            min-height: 250px;
        }
        .story-quote {
            font-size: 1.8rem;
            font-style: italic;
            line-height: 1.5;
            margin-bottom: 25px;
            color: var(--primary-dark);
        }
        .story-author {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--primary-orange);
        }

        /* VERTICAL COLUMN CARDS SYSTEM */
        .featured-services {
            padding: 100px 0;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        .service-card {
            background: var(--white);
            box-shadow: 0 15px 40px rgba(0,0,0,0.03);
            border-radius: 16px;
            overflow: hidden;
            transition: var(--transition-smooth);
        }
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.08);
        }
        .service-header {
            padding: 20px 30px;
            color: var(--white);
            font-weight: 700;
            font-size: 1.2rem;
        }
        .service-img {
            width: 100%;
            height: 240px;
            object-fit: cover;
        }
        .service-body {
            padding: 40px 30px;
        }
        .service-body p {
            margin-bottom: 25px;
            color: var(--primary-dark);
        }

        /* EDITORIAL LAYOUT EXTENSIONS */
        .section-title-editorial {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        .section-title-editorial::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--primary-orange);
            margin: 20px auto 0;
        }
        .trainer-split-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: var(--white);
            margin-bottom: 40px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
        }
        .trainer-split-row.reverse {
            direction: rtl;
        }
        .trainer-split-row.reverse .trainer-info {
            direction: ltr;
        }
        .trainer-split-img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }
        .trainer-info {
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .trainer-info h3 { font-size: 2.2rem; margin-bottom: 5px; }
        .trainer-title { color: var(--primary-orange); font-weight: 600; margin-bottom: 20px; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.1em;}
        
        .timeline-container {
            display: flex;
            justify-content: space-between;
            position: relative;
            padding: 60px 0;
            margin-top: 40px;
        }
        .timeline-container::before {
            content: '';
            position: absolute;
            top: 95px; left: 0; width: 100%; height: 4px;
            background: rgba(0,0,0,0.05);
            z-index: 1;
        }
        .timeline-node {
            position: relative;
            z-index: 2;
            text-align: center;
            width: 15%;
        }
        .timeline-circle {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--white);
            border: 4px solid var(--primary-orange);
            display: grid;
            place-items: center;
            font-weight: 700;
            margin: 0 auto 20px;
            transition: var(--transition-smooth);
            cursor: pointer;
        }
        .timeline-node:hover .timeline-circle {
            background: var(--primary-orange);
            color: var(--white);
            transform: scale(1.15);
        }

        .masonry-gallery {
            columns: 3 350px;
            column-gap: 30px;
            padding: 40px 0;
        }
        .masonry-item {
            background: var(--white);
            margin-bottom: 30px;
            break-inside: avoid;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            position: relative;
        }
        .masonry-item img {
            width: 100%;
            display: block;
            transition: var(--transition-smooth);
        }
        .masonry-item:hover img {
            transform: scale(1.05);
        }
        .masonry-desc {
            padding: 20px;
            background: var(--white);
        }

        .newsletter-cta {
            position: relative;
            padding: 120px 0;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://i.pinimg.com/736x/8a/6e/73/8a6e738a57c856e996bb63f4b8552981.jpg');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
        }
        .newsletter-cta h2 { color: var(--white); font-size: 3rem; margin-bottom: 20px; }
        .newsletter-cta p { max-width: 600px; margin: 0 auto 40px; opacity: 0.9; font-size: 1.1rem; }
        .subscribe-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            gap: 10px;
        }
        .subscribe-form input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            border-radius: 0;
            font-family: var(--font-main);
            font-size: 1rem;
        }

        /* ==========================================================================
           INTERNAL SUB-PAGE COMPONENT MODULES
           ========================================================================== */
        .inner-hero {
            background: var(--black);
            color: var(--white);
            padding: 100px 0;
            text-align: center;
            position: relative;
        }
        .inner-hero h1 { color: var(--white); font-size: 3.5rem; margin-bottom: 15px; }
        
        /* CLASSES PAGE VIEW MODULE */
        .classes-filter-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            padding: 80px 0;
        }
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--white);
            margin: 40px 0 80px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.03);
        }
        .schedule-table th, .schedule-table td {
            padding: 22px;
            border: 1px solid rgba(0,0,0,0.05);
            text-align: left;
        }
        .schedule-table th { background: var(--primary-dark); color: var(--white); }

        /* MEMBERSHIP MATRIX MATRICES */
        .pricing-matrix {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            padding: 80px 0;
        }
        .pricing-card {
            background: var(--white);
            border-radius: 20px;
            padding: 50px 40px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(0,0,0,0.03);
            position: relative;
            border: 2px solid transparent;
        }
        .pricing-card.featured {
            border-color: var(--primary-orange);
        }
        .price-tag {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--black);
            margin: 30px 0;
        }
        .price-tag span { font-size: 1rem; font-weight: 400; color: var(--primary-dark); }

        /* LEGAL INTERACTION PANELS (PRIVACY & TERMS) */
        .faq-accordion {
            max-width: 900px;
            margin: 60px auto 100px;
        }
        .accordion-item {
            background: var(--white);
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
        }
        .accordion-header {
            padding: 24px 30px;
            font-weight: 700;
            font-size: 1.15rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--white);
            transition: var(--transition-smooth);
        }
        .accordion-header:hover {
            background: rgba(0,0,0,0.01);
        }
        .accordion-header::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary-orange);
            font-weight: 400;
        }
        .accordion-item.open .accordion-header::after {
            content: '−';
        }
        .accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
            padding: 0 30px;
            color: var(--primary-dark);
            background: var(--white);
        }
        .accordion-item.open .accordion-body {
            padding: 10px 30px 30px;
        }

        .legal-wrapper {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 60px;
            padding: 80px 0;
        }
        .legal-sidebar {
            position: sticky;
            top: 180px;
            height: fit-content;
        }
        .legal-sidebar ul {
            list-style: none;
        }
        .legal-sidebar li a {
            display: block;
            padding: 12px 20px;
            border-left: 3px solid transparent;
            font-weight: 600;
            color: var(--primary-dark);
        }
        .legal-sidebar li a.active, .legal-sidebar li a:hover {
            border-left-color: var(--primary-orange);
            color: var(--primary-orange);
            background: var(--white);
        }
        .legal-body {
            background: var(--white);
            padding: 60px;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.02);
        }
        .legal-section {
            margin-bottom: 50px;
        }
        .legal-section h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding-bottom: 10px;
        }
        .legal-section p {
            margin-bottom: 20px;
            color: var(--primary-dark);
        }

        /* CONTACT SUB-VIEW MODULES */
        .contact-split {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            padding: 80px 0;
        }
        .contact-form-box {
            background: var(--white);
            padding: 50px;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.03);
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 16px;
            border: 1px solid rgba(0,0,0,0.1);
            font-family: var(--font-main);
            background: var(--soft-beige);
            font-size: 1rem;
        }
        .mock-map {
            width: 100%;
            height: 100%;
            min-height: 450px;
            background: #ddd;
            border-radius: 16px;
            display: grid;
            place-items: center;
            font-weight: 700;
            color: #777;
            border: 8px solid var(--white);
        }

        /* ==========================================================================
           MASTER CLOSING FOOTER BLOCK
           ========================================================================== */
        footer {
            background: var(--white);
            border-top: 1px solid rgba(0,0,0,0.05);
            padding-top: 80px;
            margin-top: 120px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr repeat(4, 1fr);
            gap: 40px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        .footer-col h4 {
            font-size: 1.1rem;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col li {
            margin-bottom: 12px;
        }
        .footer-col a {
            color: var(--primary-dark);
            font-size: 0.95rem;
        }
        .footer-col a:hover {
            color: var(--primary-orange);
            padding-left: 4px;
        }
        .footer-bottom {
            padding: 30px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            color: #777;
        }

        /* RESPONSIVE LAYOUT MATRIX INTERFACES */
        @media (max-width: 1100px) {
            .nav-bar { display: none; }
            .hamburger { display: flex; }
            .main-header { height: 80px; }
            .page-content { margin-top: 85px; }
            .hero-section { height: auto; padding: 60px 0; }
            .hero-card { position: relative; right: auto; top: auto; width: 100%; margin-top: 40px; }
            .flush-grid, .services-grid, .pricing-matrix { grid-template-columns: repeat(2, 1fr); }
            .trainer-split-row, .stories-split, .legal-wrapper, .contact-split { grid-template-columns: 1fr; }
            .legal-sidebar { position: relative; top: 0; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .flush-grid, .services-grid, .pricing-matrix, .footer-grid { grid-template-columns: 1fr; }
            .story-circle-img { width: 260px; height: 260px; }
            .timeline-container { flex-direction: column; gap: 40px; }
            .timeline-container::before { display: none; }
            .timeline-node { width: 100%; }
        }

        /* TARGET VIEW MOBILE OVERLAYS */
        .mobile-nav-active .mobile-menu-overlay {
            display: flex;
        }
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 85px; left: 0; width: 100%; height: calc(100vh - 85px);
            background: var(--white);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            padding-top: 40px;
            gap: 25px;
        }
        .mobile-menu-overlay a {
            font-size: 1.4rem;
            font-weight: 700;
        }
            /* Additional styles for the newsletter section */
    .newsletter-cta .subscribe-form {
        display: flex;
        max-width: 600px;
        margin: 0 auto;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .newsletter-cta .subscribe-form input {
        flex: 1;
        min-width: 250px;
        padding: 18px 25px;
        border: none;
        border-radius: 0;
        font-family: var(--font-main);
        font-size: 1rem;
        background: rgba(255,255,255,0.95);
        transition: var(--transition-smooth);
    }
    
    .newsletter-cta .subscribe-form input:focus {
        outline: 2px solid var(--primary-orange);
        background: var(--white);
    }
    
    .newsletter-cta .subscribe-form .btn-premium {
        min-width: 150px;
        padding: 18px 36px;
    }
    
    #subscriptionStatus {
        animation: fadeInStatus 0.5s ease;
    }
    
    @keyframes fadeInStatus {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    /* Mobile responsive */
    @media (max-width: 768px) {
        .newsletter-cta .subscribe-form {
            flex-direction: column;
            align-items: center;
        }
        
        .newsletter-cta .subscribe-form input {
            width: 100%;
            min-width: unset;
        }
        
        .newsletter-cta .subscribe-form .btn-premium {
            width: 100%;
        }
    }

        /* Header Styles */
    header {
        position: fixed;
        top: 5px;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: var(--white);
        box-shadow: 0 4px 30px rgba(0,0,0,0.03);
    }
    
    .main-header {
        height: 90px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 40px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        gap: 20px;
    }
    
    .logo-area {
        display: flex;
        align-items: center;
        gap: 15px;
        flex-shrink: 0;
    }
    
    .logo-placeholder {
        width: 70px;
        height: 90px;
                    margin-top: -2.5rem;

        background: var(--primary-orange);
        display: grid;
        place-items: center;
        color: var(--white);
        font-weight: 900;
        font-size: 1.8rem;
    }
    
    .brand-text {
        font-size: 1.3rem;
        font-weight: 800;
        letter-spacing: -0.03em;
        background: linear-gradient(45deg, var(--black), var(--primary-orange));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .email-area {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
        margin-right: 20px;
    }
    
    .email-placeholder {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--primary-dark);
        opacity: 0.6;
    }
    
    .email-text {
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--primary-dark);
        transition: var(--transition-smooth);
    }
    
    .email-text:hover {
        color: var(--primary-orange);
    }
    
    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        border: none;
        background: transparent;
        padding: 10px;
        flex-shrink: 0;
    }
    
    .hamburger span {
        display: block;
        width: 28px;
        height: 2.5px;
        background: var(--black);
        transition: var(--transition-smooth);
        border-radius: 2px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Navigation Bar */
    .nav-bar {
        background: var(--white);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 40px;
        height: 60px;
        border-bottom: 1px solid rgba(0,0,0,0.03);
    }
    
    .nav-links {
        display: flex;
        gap: 25px;
        margin: 0 auto;
        list-style: none;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links a {
        font-weight: 500;
        color: var(--primary-dark);
        font-size: 0.9rem;
        position: relative;
        padding: 8px 0;
        letter-spacing: 0.02em;
        transition: var(--transition-smooth);
        white-space: nowrap;
    }
    
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--primary-orange);
        transition: var(--transition-smooth);
        transform: translateX(-50%);
    }
    
    .nav-links a:hover::after,
    .nav-links a.active::after {
        width: 100%;
    }
    
    .nav-links a:hover {
        color: var(--black);
        letter-spacing: 0.06em;
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 95px;
        left: 0;
        width: 100%;
        height: calc(100vh - 95px);
        background: var(--white);
        z-index: 999;
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        gap: 20px;
        overflow-y: auto;
        animation: slideDown 0.3s ease;
    }
    
    .mobile-menu-overlay.open {
        display: flex;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mobile-menu-overlay a {
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--primary-dark);
        padding: 12px 20px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        transition: var(--transition-smooth);
    }
    
    .mobile-menu-overlay a:hover {
        color: var(--primary-orange);
        background: var(--soft-beige);
        padding-left: 30px;
    }
    
    .mobile-menu-overlay .btn-premium {
        margin-top: 10px;
        width: 100%;
        max-width: 300px;
    }
    
    /* Responsive Breakpoints */
    @media (max-width: 1100px) {
        .nav-bar {
            display: none;
        }
        
        .hamburger {
            display: flex;
        }
        
        .main-header {
            height: 80px;
            padding: 0 20px;
        }
        
        .email-area {
            margin-right: 10px;
        }
        
        .email-placeholder {
            display: none;
        }
        
        .email-text {
            font-size: 0.8rem;
        }
        
        .brand-text {
            font-size: 1.1rem;
        }
        
        .logo-placeholder {
            width: 40px;
            height: 50px;
            font-size: 1.4rem;
        }
    }
    
    @media (max-width: 768px) {
        .main-header {
            height: 70px;
            padding: 0 15px;
            gap: 10px;
        }
        
        .logo-area {
            gap: 10px;
        }
        
        .logo-placeholder {
            width: 35px;
            height: 45px;
            font-size: 1.2rem;
        }
        
        .brand-text {
            font-size: 0.9rem;
            white-space: nowrap;
        }
        
        .email-area {
            margin-right: 5px;
        }
        
        .email-text {
            font-size: 0.7rem;
        }
        
        .email-placeholder {
            display: none;
        }
        
        .hamburger span {
            width: 24px;
            height: 2px;
        }
        
        .mobile-menu-overlay {
            top: 75px;
            height: calc(100vh - 75px);
            padding: 20px 15px;
            gap: 15px;
        }
        
        .mobile-menu-overlay a {
            font-size: 1.1rem;
            padding: 10px 15px;
        }
    }
    
    @media (max-width: 480px) {
        .main-header {
            height: 60px;
            padding: 0 10px;
        }
        
        .logo-placeholder {
            width: 30px;
            height: 40px;
            font-size: 1rem;
        }
        
        .brand-text {
            font-size: 0.8rem;
        }
        
        .email-text {
            font-size: 0.6rem;
        }
        
        .hamburger span {
            width: 20px;
            height: 2px;
        }
        
        .hamburger {
            padding: 8px;
        }
        
        .mobile-menu-overlay {
            top: 65px;
            height: calc(100vh - 65px);
            padding: 15px 10px;
            gap: 10px;
        }
        
        .mobile-menu-overlay a {
            font-size: 1rem;
            padding: 8px 12px;
        }
    }

