  @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Poppins:wght@300;500;700&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Poppins:wght@300;400;600&display=swap');

        :root {
            --brand-pink: #E91E63;
            --brand-purple: #8E24AA;
            --brand-gradient: linear-gradient(135deg, #E91E63, #8E24AA);
            --bg-main: #FFFFFF;
            --text-heading: #1F1F1F;
            --text-body: #4B5563;
            --nav-height: 80px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            background-color: var(--bg-main);
            color: var(--text-body);
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            width: 100vw;
            min-height: 100vh;
        }

        /* --- INTRO OVERLAY --- */
        .intro-overlay {
            position: fixed;
            inset: 0;
            background-color: var(--bg-main);
            z-index: 3000;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .typing-container {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.5rem, 8vw, 6rem);
            color: var(--text-heading);
        }

        .typing-text {
            background: var(--brand-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* --- NAVIGATION --- */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            height: var(--nav-height);
            padding: 0 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 2000;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .logo {
            font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-heading);
    text-decoration: none;
    z-index: 2100;
    display: flex;
        }

        .logo span { color: var(--brand-pink); }

        /* Desktop Nav Links */
        .desktop-nav {
            display: none;
            gap: 53px;
            align-items: center;
        }

        .nav-link {
            font-family: 'Oswald', sans-serif;
            text-decoration: none;
            color: var(--text-heading);
            text-transform: uppercase;
            font-size: 1rem;
            letter-spacing: 1px;
            transition: color 0.3s;
            position: relative;
        }

        .nav-link:hover { color: var(--brand-pink); }

        /* Desktop Dropdown */
        .dropdown {
            position: relative;
            cursor: pointer;
            padding: 10px 0;
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: white;
            min-width: 180px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
            padding: 10px 0;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-content a {
            display: block;
            padding: 10px 20px;
            text-decoration: none;
            color: var(--text-body);
            font-size: 0.85rem;
            transition: background 0.3s, color 0.3s;
        }

        .dropdown-content a:hover {
            background: #f8f8f8;
            color: var(--brand-pink);
        }

        /* Mobile Menu Controls */
        #mobile-menu-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 2100;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .bar {
            width: 25px;
            height: 3px;
            background-color: var(--text-heading);
            border-radius: 2px;
            transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .btn-active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
        .btn-active .bar:nth-child(2) { opacity: 0; }
        .btn-active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

        /* Mobile Menu Overlay */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: white;
            z-index: 2050;
            display: flex;
            flex-direction: column;
            padding: 100px 8% 40px;
            transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
            overflow-y: auto;
        }

        .mobile-menu.active { right: 0; }

        .mobile-menu-section-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #aaa;
            margin-top: 30px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .mobile-nav-link {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            text-decoration: none;
            color: var(--text-heading);
            text-transform: uppercase;
            padding: 12px 0;
            border-bottom: 1px solid #f5f5f5;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Mobile Dropdown */
        .mobile-dropdown-trigger {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            text-transform: uppercase;
            color: var(--text-heading);
            padding: 12px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            border-bottom: 1px solid #f5f5f5;
        }

        .chevron {
            width: 20px;
            height: 20px;
            transition: transform 0.3s;
        }

        .mobile-dropdown-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            background: #fafafa;
            display: flex;
            flex-direction: column;
        }

        .mobile-dropdown-content.open { max-height: 400px; padding: 10px 0; }

        .sub-link {
            padding: 12px 20px;
            text-decoration: none;
            color: var(--text-body);
            font-size: 1rem;
            border-left: 2px solid transparent;
            transition: 0.3s;
        }

        .sub-link:hover {
            border-left: 2px solid var(--brand-pink);
            color: var(--brand-pink);
            background: #f0f0f0;
        }

        .mobile-footer-links {
            margin-top: 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .small-link {
            text-decoration: none;
            color: var(--text-body);
            font-size: 0.85rem;
        }

        /* --- THE HERO --- */
        .hero {
            position: relative;
            width: 100vw;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding-top: var(--nav-height);
        }

        .bg-circles {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
            pointer-events: none;
        }

        .circle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            border: 1px solid #eee;
        }
        .c1 { width: 300px; height: 300px; background: rgba(233, 30, 99, 0.03); }
        .c2 { width: 600px; height: 600px; }
        .c3 { width: 900px; height: 900px; }

        .center-anchor {
            position: relative;
            z-index: 10;
            margin: 40px 0;
        }

        .product-img {
            width: 80vw;
            max-width: 561px;
            height: auto;
            filter: drop-shadow(0 30px 60px rgba(0,0,0,0.12));
        }

        .product-rotate-wrapper {
            perspective: 1000px;
        }

        /* --- FEATURES --- */
        .features-container {
            width: 90%;
            max-width: 1200px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            z-index: 20;
            padding-bottom: 120px;
        }

        .feature h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            color: var(--text-heading);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
        }

        .feature-line {
            width: 40px;
            height: 3px;
            background: var(--brand-gradient);
            margin-bottom: 0.8rem;
        }

        .feature p { font-size: 0.85rem; line-height: 1.5; }

        /* Desktop Adjustments */
        @media (min-width: 1024px) {
            .hero { height: 100vh; overflow: hidden; padding-top: 0; }
            .desktop-nav { display: flex; }
            .center-anchor { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); margin: 0; }
            .features-container { position: absolute; inset: 0; display: block; width: 100%; max-width: none; pointer-events: none; }
            .feature { position: absolute; width: 260px; pointer-events: auto; }
            .f-tl { top: 20%; left: 10%; text-align: right; }
            .f-tl .feature-line { margin-left: auto; }
            .f-tr { top: 20%; right: 10%; }
            .f-bl { bottom: 20%; left: 10%; text-align: right; }
            .f-bl .feature-line { margin-left: auto; }
            .f-br { bottom: 20%; right: 10%; }
            #mobile-menu-btn { display: none; }
            .mobile-menu { display: none; }
        }

        /* Mobile Grid */
        @media (max-width: 1023px) {
            .features-container { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
            .bg-circles { display: none; }
        }

        .cta-container {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 500;
            width: 90%;
            display: flex;
            justify-content: center;
        }

        .btn-main {
            width: 100%;
            max-width: 350px;
            padding: 1.2rem;
            background: var(--brand-gradient);
            color: white;
            border: none;
            border-radius: 50px;
            font-family: 'Oswald', sans-serif;
            font-size: 1rem;
            text-transform: uppercase;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
            transition: 0.3s;
        }

         .marquee {
            width: 100%;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .marquee-content {
            display: flex;
            white-space: nowrap; 
            width: fit-content; 
            padding: 15px 0;
            /* Note: CSS animation properties removed here, now handled by GSAP */
        }
        
        .marquee-item {
            font-weight: 700;
            font-size: clamp(1rem, 4vw, 2.5rem); 
            padding: 0 40px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        /* ---------------------------------
           1. Right-to-Left Ribbon (Primary)
           --------------------------------- */
        .marquee.rtl {
            background-color: transparent;
            color: #4A3F55;
            /* border-top: 2px solid #E0BBE4;
            border-bottom: 2px solid#E0BBE4; */
            margin-bottom: 22px;
        }

        /* ---------------------------------
           2. Left-to-Right Ribbon (Secondary)
           --------------------------------- */
        .marquee.ltr {
            background-color:#F9C5D1;
            color: #4A3F55; 
        }

        /* Responsive Adjustments for smaller screens */
        @media (max-width: 600px) {
            .marquee-item {
                font-size: 1.2rem;
                padding: 0 20px;
            }
        }

          .bg-glow {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(233, 30, 99, 0.03), transparent 70%);
            z-index: -1;
        }

        .spacer {
            height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-pink);
            text-transform: uppercase;
            letter-spacing: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            opacity: 0.5;
        }

        .reveal-container {
            position: relative;
            min-height: 120vh;
            display: flex;
            align-items: center;
            padding: 0 8%;
            background: #fafafa;
        }

        .content-side {
            width: 45%;
            z-index: 10;
        }

        .tagline {
            background: var(--brand-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 5px;
            font-size: 0.9rem;
            font-weight: 800;
            display: block;
            margin-bottom: 20px;
        }

        .content-side h2 {
            font-family: 'Oswald', sans-serif;
            color: var(--text-heading);
            font-size: clamp(2.5rem, 5vw, 4.8rem);
            line-height: 1;
            text-transform: uppercase;
            margin-bottom: 30px;
        }

        .content-side p {
            color: var(--text-body);
            font-size: 1.1rem;
            line-height: 1.8;
            max-width: 480px;
            margin-bottom: 40px;
        }

        .btn-brand {
            padding: 16px 40px;
            background: var(--brand-gradient);
            color: white;
            border: none;
            border-radius: 50px;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(233, 30, 99, 0.2);
            transition: 0.3s;
        }

        .btn-brand:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(233, 30, 99, 0.3);
        }

        /* Top-to-Bottom Reveal Container */
        .image-side {
            position: absolute;
            right: 8%;
            top: 50%;
            transform: translateY(-50%);
            width: 45%;
            height: 80vh;
            z-index: 1;
            overflow: hidden;
            border-radius: 30px;
            background: #f0f0f0;
            /* Initial clip-path for top-to-bottom reveal */
            clip-path: inset(0 0 100% 0);
        }

        .image-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.3); /* Parallax starting scale */
        }

        .rev-item {
            opacity: 0;
            transform: translateY(30px);
        }

        @media (max-width: 1024px) {
            .reveal-container {
                flex-direction: column;
                justify-content: center;
                padding: 100px 5%;
                min-height: auto;
            }
            .content-side { width: 100%; text-align: center; }
            .content-side p { margin: 0 auto 40px; }
            .image-side {
                position: relative;
                right: 0;
                top: 0;
                transform: none;
                width: 100%;
                height: 500px;
                margin-top: 50px;
            }
        }

          /* Services Section Core */
        .services-section {
            position: relative;
            overflow: hidden;
            background-color: var(--bg-dark);
            color: var(--text-light);
        }

        .horizontal-container {
            display: flex;
            height: 100vh;
            width: fit-content;
            align-items: center;
            padding: 0 10vw;
            will-change: transform;
        }

        .services-header {
            flex-shrink: 0;
            margin-right: 15vw;
            opacity: 0;
            transform: translateY(50px);
        }

        .services-header h1 {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(4rem, 15vw, 10rem);
            line-height: 1;
            text-transform: uppercase;
            background: var(--brand-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .services-header p {
            font-size: 1.2rem;
            margin-top: 20px;
            letter-spacing: 3px;
            text-transform: uppercase;
            /* color: rgba(255,255,255,0.6); */
            font-weight: 300;
        }

        .service-card {
            flex-shrink: 0;
            width: 552px; /* Adjusted width */
            margin-right: 100px;
            display: flex;
            flex-direction: column; /* Stack image and text vertically */
            transition: transform 0.5s ease;
        }

        .service-card img {
            width: 100%;
            height: 400px; /* Fixed height for the image */
            object-fit: cover;
            border-radius: 20px;
            margin-bottom: 25px; /* Gap between image and text */
            transition: 0.8s cubic-bezier(0.2, 1, 0.3, 1);
        }

        /* Moving content below the card */
        .card-content {
            position: relative; /* Removed absolute positioning */
            width: 100%;
            padding: 10px 0; /* Padding around text instead of overlay */
            z-index: 2;
        }

        .card-content h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 2.2rem;
            margin-bottom: 12px;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .card-content p {
            font-size: 1rem;
            color: rgba(0, 0, 0, 0.7);
            line-height: 1.6;
            font-weight: 300;
            max-width: 90%;
        }

        .scroll-progress {
            position: fixed;
            bottom: 40px;
            left: 10%;
            width: 80%;
            height: 3px;
            background: rgba(255,255,255,0.1);
            z-index: 100;
            border-radius: 10px;
            overflow: hidden;
        }

        .progress-bar {
            height: 100%;
            width: 0%;
            background: var(--brand-gradient);
        }

        @media (max-width: 768px) {
            .service-card {
                width: 300px;
                margin-right: 50px;
            }
            .service-card img {
                height: 250px;
            }
            .services-header h1 {
                font-size: 4rem;
            }
            .card-content h3 {
                font-size: 1.5rem;
            }
        }

        :root {
            --brand-pink: #E91E63;
            --brand-purple: #8E24AA;
            --brand-gradient: linear-gradient(135deg, #E91E63, #8E24AA);
            --bg-main: #FFFFFF;
            --text-heading: #1F1F1F;
            --text-body: #4B5563;
            --nav-height: 80px;
            /* Maintaining existing variables for consistency */
            --arch-pink: var(--brand-pink);
            --arch-purple: var(--brand-purple);
            --arch-gradient: var(--brand-gradient);
            --arch-bg: var(--bg-main);
            --arch-text-h: var(--text-heading);
            --arch-text-p: var(--text-body);
            --arch-ease: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .arch-gsap-reveal { opacity: 1; }

        .arch-master-wrapper {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: var(--arch-bg);
            color: var(--arch-text-p);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        .arch-section-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 100px 60px;
        }

        /* --- Header Section --- */
        .arch-header-layout {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 100px;
        }

        .arch-tagline {
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 4px;
            font-size: 13px;
            color: var(--arch-pink);
            margin-bottom: 20px;
            display: block;
        }

        .arch-main-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(40px, 6vw, 85px);
            color: var(--arch-text-h);
            line-height: 1;
            letter-spacing: -2px;
            margin: 0 0 30px 0;
        }

        .arch-description {
            font-size: 19px;
            line-height: 1.6;
            max-width: 500px;
        }

        .arch-image-stack {
            position: relative;
            height: 550px;
        }

        .arch-img-primary {
            width: 85%;
            height: 90%;
            object-fit: cover;
            border-radius: 30px;
            box-shadow: 0 40px 80px rgba(0,0,0,0.1);
        }

        .arch-img-secondary {
            position: absolute;
            bottom: -30px;
            right: 0;
            width: 50%;
            height: 60%;
            object-fit: cover;
            border-radius: 25px;
            border: 12px solid white;
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        /* --- Services Grid --- */
        .arch-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 100px;
        }

        .arch-card {
            position: relative;
            border-radius: 35px;
            height: 500px;
            overflow: hidden;
            cursor: pointer;
            background: #eee;
        }

        .arch-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--arch-ease);
        }

        .arch-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 5%, transparent 60%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 40px;
        }

        .arch-icon-box {
            width: 50px; height: 50px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            transition: var(--arch-ease);
        }

        .arch-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 28px;
            color: white;
            margin: 0 0 10px 0;
        }

        .arch-card p {
            color: rgba(255,255,255,0.7);
            font-size: 15px;
            margin: 0;
            transform: translateY(20px);
            opacity: 0;
            transition: var(--arch-ease);
        }

        .arch-card:hover img { transform: scale(1.1); }
        .arch-card:hover p { transform: translateY(0); opacity: 1; }
        .arch-card:hover .arch-icon-box { background: var(--arch-gradient); }

        /* --- Info Panel --- */
        .arch-info {
            background: #fcfcfc;
            border: 1px solid #f0f0f0;
            border-radius: 50px;
            padding: 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
            margin-bottom: 100px;
        }

        .arch-info h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 42px;
            color: var(--arch-text-h);
            margin: 0;
            max-width: 500px;
        }

        .arch-list { list-style: none; padding: 0; margin: 0; }
        .arch-item {
            font-size: 18px;
            font-weight: 700;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        .arch-item::before { content: '→'; color: var(--arch-pink); margin-right: 15px; }

        /* --- Autoplay Review Slider --- */
        .arch-reviews-container {
            margin-top: 50px;
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .arch-reviews-track {
            display: flex;
            gap: 30px;
            width: max-content;
        }

        .arch-review-card {
            background: white;
            padding: 40px;
            border-radius: 35px;
            border: 1px solid #f0f0f0;
            width: 400px;
            flex-shrink: 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
            transition: border-color 0.3s ease;
        }

        .arch-review-card:hover {
            border-color: var(--arch-pink);
        }

        .arch-stars { color: #FFC107; margin-bottom: 20px; font-size: 14px; }

        .arch-quote {
            font-size: 18px;
            font-weight: 600;
            color: var(--arch-text-h);
            margin-bottom: 25px;
            line-height: 1.5;
        }

        .arch-user { display: flex; align-items: center; gap: 12px; }
        .arch-avatar { 
            width: 44px; height: 44px; 
            background: var(--arch-gradient); 
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: white; font-weight: 700; font-size: 14px;
        }

        /* --- UPDATED LIGHT FOOTER SECTION --- */
        .arch-footer {
            background: #F8FAFC;
            color: var(--text-body);
            padding: 100px 60px 40px;
            margin-top: 50px;
            border-top: 1px solid #E2E8F0;
        }

        .arch-footer-grid {
            max-width: 1440px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 0.8fr 0.8fr 1.5fr;
            gap: 40px;
            padding-bottom: 60px;
            border-bottom: 1px solid #E2E8F0;
        }

        .arch-footer-logo {
            font-family: 'Outfit', sans-serif;
            font-size: 32px;
            font-weight: 900;
            background: var(--brand-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            display: inline-block;
        }

        .arch-footer-desc {
            color: var(--text-body);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 25px;
            max-width: 320px;
        }

        .arch-social-links {
            display: flex;
            gap: 12px;
        }

        .arch-social-icon {
            width: 40px; height: 40px;
            background: white;
            border: 1px solid #E2E8F0;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--arch-ease);
            color: var(--text-heading);
            text-decoration: none;
        }

        .arch-social-icon:hover {
            background: var(--brand-pink);
            color: white;
            border-color: var(--brand-pink);
            transform: translateY(-4px);
            box-shadow: 0 10px 15px -3px rgba(233, 30, 99, 0.2);
        }

        .arch-footer-h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 16px;
            font-weight: 800;
            margin: 0 0 25px 0;
            color: var(--text-heading);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .arch-footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .arch-footer-links li {
            margin-bottom: 12px;
        }

        .arch-footer-links a {
            color: var(--text-body);
            text-decoration: none;
            font-size: 15px;
            transition: var(--arch-ease);
        }

        .arch-footer-links a:hover {
            color: var(--brand-pink);
            transform: translateX(4px);
            display: inline-block;
        }

        .arch-contact-info {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .arch-contact-item {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .arch-contact-icon {
            width: 36px; height: 36px;
            background: white;
            border: 1px solid #E2E8F0;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--brand-pink);
        }

        .arch-contact-text {
            display: flex;
            flex-direction: column;
        }

        .arch-contact-label {
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            color: #94A3B8;
            margin-bottom: 4px;
            letter-spacing: 0.5px;
        }

        .arch-contact-value {
            font-size: 15px;
            color: var(--text-heading);
            text-decoration: none;
            line-height: 1.4;
            font-weight: 500;
        }

        .arch-copyright {
            max-width: 1440px;
            margin: 0 auto;
            padding-top: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: #64748B;
        }

        /* Mobile Fixes */
        @media (max-width: 992px) {
            .arch-header-layout, .arch-grid, .arch-info {
                grid-template-columns: 1fr;
                flex-direction: column;
                gap: 40px;
                padding: 40px;
            }
            .arch-section-container { padding: 60px 20px; }
            .arch-footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .arch-footer { padding: 60px 20px 30px; }
            .arch-copyright { flex-direction: column; gap: 15px; text-align: center; }
        }

          .branding-experience {
            /* Variables for the new theme */
            --be-bg: #ffffff;
            --be-card-bg: rgba(240, 240, 245, 0.8);
            --be-accent: #E91E63;
            --be-text: #1a1a1a;
            --be-font: 'Inter', system-ui, -apple-system, sans-serif;
            
            background-color: var(--be-bg);
            font-family: var(--be-font);
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
            margin: 0;
            padding: 0;
        }

        .branding-experience * {
            box-sizing: border-box;
        }

        /* Isolated Overlay */
        .branding-experience .be-content-overlay {
            position: absolute;
            z-index: 10;
            text-align: center;
            pointer-events: none;
            width: 100%;
        }

        .branding-experience .be-main-title {
            color: var(--be-text);
            font-size: clamp(1.8rem, 8vw, 4.5rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            margin: 0;
            text-transform: uppercase;
            line-height: 1.1;
            /* Subtle shadow for depth on white background */
            text-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        /* Container for the rotating text */
        .branding-experience .be-dynamic-box {
            display: block;
            height: 1.2em;
            overflow: hidden;
            position: relative;
        }

        .branding-experience .be-word-list {
            display: flex;
            flex-direction: column;
            transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
        }

        /* The requested linear-gradient(135deg, #E91E63, #8E24AA) */
        .branding-experience .be-rotating-word {
            height: 1.2em;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #E91E63, #8E24AA);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .branding-experience .be-tagline {
            color: #666;
            font-size: clamp(0.7rem, 2vw, 0.9rem);
            font-weight: 500;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            margin-top: 20px;
            display: block;
        }

        /* 3D Scene Isolation */
        .branding-experience .be-scene-stage {
            perspective: 1500px;
            width: 100%;
            display: flex;
            flex-direction: column;
            transform: rotateX(15deg) rotateZ(-2deg) scale(1.1);
            opacity: 0.5; 
        }

        @media (min-width: 768px) {
            .branding-experience .be-scene-stage {
                transform: rotateX(20deg) rotateY(-5deg) rotateZ(-3deg) scale(1.2);
            }
        }

        /* Marquee Rows */
        .branding-experience .be-row {
            width: 100%;
            display: flex;
            overflow: hidden;
        }

        .branding-experience .be-track {
            display: flex;
            animation: be-scroll 40s linear infinite;
            padding: 15px 0;
        }

        .branding-experience .be-track.be-reverse {
            animation-direction: reverse;
        }

        @keyframes be-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-50% - 15px)); }
        }

        /* Card Styling for light mode */
        .branding-experience .be-card {
            /* background: var(--be-card-bg); */
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            /* width: 140px;
            height: 90px; */
            margin: 0 10px;
            /* border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.05); */
        }

        @media (min-width: 768px) {
            .branding-experience .be-card {
                width: 210px;
                height: 210px;
                margin: 0 20px;
            }
        }

        .branding-experience .be-asset {
            max-width: 90%;
            max-height: 90%;
            object-fit: cover;
            /* filter: grayscale(20%); */
            transition: all 0.4s ease;
        }

        .branding-experience .be-card:hover .be-asset {
            /* filter: grayscale(0%); */
            transform: scale(1.05);
        }

 /* --- THE PINNED CONTAINER --- */
        #sonicPinSection {
            position: relative;
            width: 100%;
            height: 100vh;
            background: #fff;
            overflow: hidden;
        }

        /* --- THE TRAVELER --- */
        #sonicTraveler {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 100;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #fff; /* Removed black background */
            pointer-events: none;
            will-change: transform, width, height, border-radius;
        }

        #sonicTraveler img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 1; /* Removed 0.8 opacity overlay */
        }

        #heroContent {
            position: relative;
            z-index: 5;
            text-align: center;
        }

        #heroContent h1 {
            color: var(--primary-black); /* Changed to black for visibility on white/clear img */
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.5rem, 8vw, 6rem);
            line-height: 1;
            margin: 0;
            text-transform: uppercase;
            text-shadow: 0 10px 30px rgba(255,255,255,0.8);
        }

        /* --- MAIN INTERFACE --- */
        #interfacePanel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            opacity: 0;
            visibility: hidden;
            z-index: 50;
        }

        .left-side {
            width: 50%;
            height: 100vh;
            padding: var(--panel-padding);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .grid-header h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            margin: 0 0 20px;
            text-transform: uppercase;
        }

        .grid-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            width: 100%;
        }

        #sonicLandingZone {
            background: #f0f0f0;
            border-radius: var(--border-radius);
            aspect-ratio: 16/9;
        }

        /* Right Side: Scrollable Details */
        .right-side {
            width: 50%;
            height: 100vh;
            padding: var(--panel-padding);
            overflow-y: auto;
            background: #fafafa;
            border-left: 1px solid #eee;
            scrollbar-width: none;
        }
        .right-side::-webkit-scrollbar { display: none; }

        .details-wrapper {
            opacity: 0;
            transform: translateY(30px);
            padding-bottom: 60px;
            margin-top: 58px;
        }

        .tag {
            color: var(--accent-blue);
            font-weight: 700;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .details-wrapper h3 {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            margin: 10px 0 20px;
            line-height: 1.1;
        }

        .details-wrapper p {
            color: #444;
            line-height: 1.8;
            font-size: 1rem;
            margin-bottom: 30px;
        }

        .feature-list {
            margin: 30px 0;
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 12px 0;
            border-bottom: 1px solid #ddd;
            display: flex;
            align-items: flex-start;
            font-size: 0.95rem;
        }

        .feature-list li::before {
            content: "✓";
            margin-right: 12px;
            color: var(--accent-blue);
            font-weight: bold;
        }

        .cta-container {
            position: sticky;
            bottom: 0;
            background: linear-gradient(transparent, #fafafa 20%);
            padding: 20px 0;
        }

        .buy-btn {
            background: var(--primary-black);
            color: white;
            padding: 20px 40px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s;
        }

        .buy-btn:hover { background: var(--accent-blue); transform: translateY(-2px); }

        @media (max-width: 900px) {
            #sonicPinSection { height: auto; overflow: visible; }
            #interfacePanel { position: relative; flex-direction: column; height: auto; opacity: 1; visibility: visible; }
            .left-side, .right-side { width: 100%; height: auto; }
            #sonicTraveler { display: none; }
        }