        /* ============================================
           CSS CUSTOM PROPERTIES (Design System)
           ============================================ */
        :root {
            /* Pulse Events Brand Colors */
            --background: hsl(0, 5%, 8%);
            --foreground: hsl(0, 0%, 98%);
            --card: hsl(0, 5%, 10%);
            --card-foreground: hsl(0, 0%, 98%);
            --primary: hsl(358, 80%, 44%);
            --primary-foreground: hsl(0, 0%, 100%);
            --secondary: hsl(0, 5%, 15%);
            --secondary-foreground: hsl(0, 0%, 98%);
            --muted: hsl(0, 5%, 18%);
            --muted-foreground: #fff;
            --accent: hsl(358, 80%, 50%);
            --border: hsl(0, 5%, 20%);
            --radius: 0.5rem;
            
            /* Shadows */
            --shadow-glow: 0 0 60px hsla(358, 80%, 44%, 0.3);
            --shadow-card: 0 25px 50px -12px hsla(0, 0%, 0%, 0.5);
        }

        /* ============================================
           RESET & BASE STYLES
           ============================================ */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--background);
            color: var(--foreground);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            letter-spacing: -0.025em;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        /* ============================================
           UTILITY CLASSES
           ============================================ */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-padding {
            padding: 5rem 1rem;
        }

        @media (min-width: 768px) {
            .section-padding {
                padding: 7rem 2rem;
            }
        }

        .glass-card {
            background: hsla(0, 5%, 10%, 0.8);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid hsla(0, 5%, 20%, 0.5);
            border-radius: var(--radius);
            box-shadow: var(--shadow-card);
        }

        .accent-line {
            width: 3rem;
            height: 2px;
            background: var(--primary);
        }

        .text-primary {
            color: var(--primary);
        }

        .text-muted {
            color: var(--muted-foreground);
        }

        /* ============================================
           ANIMATIONS
           ============================================ */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(45deg); }
            50% { transform: translateY(-20px) rotate(45deg); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        @keyframes pulseGlow {
            0%, 100% { box-shadow: 0 0 20px hsla(358, 80%, 44%, 0.4); }
            50% { box-shadow: 0 0 40px hsla(358, 80%, 44%, 0.6), 0 0 60px hsla(358, 80%, 44%, 0.3); }
        }

        .animate-fade-up {
            animation: fadeUp 0.8s ease-out forwards;
            opacity: 0;
        }

        .animate-fade-in {
            animation: fadeIn 0.6s ease-out forwards;
        }

        .animate-float {
            animation: float 6s ease-in-out infinite;
        }

        .animate-pulse {
            animation: pulse 2s ease-in-out infinite;
        }

        .animate-bounce {
            animation: bounce 1.5s ease-in-out infinite;
        }

        .delay-100 { animation-delay: 100ms; }
        .delay-200 { animation-delay: 200ms; }
        .delay-300 { animation-delay: 300ms; }
        .delay-400 { animation-delay: 400ms; }
        .delay-500 { animation-delay: 500ms; }

        .hover-lift {
            transition: all 0.5s ease-out;
        }

        .hover-lift:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-glow);
        }

        /* ============================================
           HEADER
           ============================================ */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 1.5rem 0;
            transition: all 0.5s ease;
        }

        .header.scrolled {
            background: hsla(0, 5%, 8%, 0.95);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid hsla(0, 5%, 20%, 0.5);
            padding: 0.75rem 0;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo-icon {
            position: relative;
            width: 2.5rem;
            height: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--primary);
            border-radius: 0.5rem;
            transform: rotate(45deg);
            transition: transform 0.5s ease;
        }

        .logo:hover .logo-icon::before {
            transform: rotate(55deg);
        }

        .logo-icon span {
            position: relative;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--primary-foreground);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-text .name {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.125rem;
            letter-spacing: 0.05em;
        }

        .logo-text .tagline {
            font-size: 0.625rem;
            color: var(--muted-foreground);
            letter-spacing: 0.3em;
            text-transform: uppercase;
            margin-top: -0.125rem;
        }

        .nav {
            display: none;
            align-items: center;
            gap: 2rem;
        }

        @media (min-width: 1024px) {
            .nav {
                display: flex;
            }
        }

        .nav-link {
            position: relative;
            font-size: 20px;
            font-weight: 500;
            color: var(--muted-foreground);
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--foreground);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.625rem 1.5rem;
            border-radius: var(--radius);
            font-weight: 500;
            font-size: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--primary-foreground);
        }

        .btn-primary:hover {
            background: hsla(358, 80%, 40%, 1);
            box-shadow: var(--shadow-glow);
        }

        .btn-large {
            padding: 1rem 2rem;
            font-size: 1.125rem;
            font-weight: 600;
        }

        .mobile-menu-btn {
            display: flex;
            padding: 0.5rem;
            background: none;
            border: none;
            color: var(--foreground);
            cursor: pointer;
        }

        @media (min-width: 1024px) {
            .mobile-menu-btn {
                display: none;
            }
        }

        .header-cta {
            display: none;
        }

        @media (min-width: 1024px) {
            .header-cta {
                display: flex;
            }
        }



        /* Mobile Menu Button (hamburger icon) */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--foreground);
            cursor: pointer;
            padding: 0.5rem;
        }

        @media (max-width: 1023px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav,
            .header-cta {
                display: none;
            }
        }

        /* Mobile Menu - Full Screen Overlay */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100vh;
            background-color: hsl(0 5% 8%);
            z-index: 9999;
            flex-direction: column;
            gap: 0;
            padding: 5rem 1.5rem 2rem;
            overflow-y: auto;
        }

        .mobile-menu.active {
            display: flex;
        }

        /* Close Button (X icon) */
        .mobile-menu-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
            border: none;
            color: hsl(0 0% 98%);
            cursor: pointer;
            z-index: 10000;
        }

        .mobile-menu-close:hover {
            color: hsl(358 80% 44%);
        }

        /* Mobile Menu Links */
        .mobile-menu a {
            display: block;
            padding: 1rem 0;
            font-size: 1.125rem;
            color: hsl(0 0% 65%);
            text-decoration: none;
            border-bottom: 1px solid hsl(0 5% 20% / 0.35);
            transition: color 0.3s ease;
        }

        .mobile-menu a:hover {
            color: hsl(0 0% 98%);
        }

        /* CTA Button inside mobile menu */
        .mobile-menu .btn-primary {
            margin-top: 1.5rem;
            padding: 1rem;
            border-radius: 0.5rem;
            background: hsl(358 80% 44%);
            color: hsl(0 0% 100%);
            font-weight: 600;
            border: none;
            border-bottom: none;
        }

        /* Desktop: always hide */
        @media (min-width: 1024px) {
            .mobile-menu {
                display: none !important;
            }
        }





        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, hsl(0, 5%, 5%) 0%, hsl(0, 5%, 12%) 50%, hsl(358, 30%, 15%) 100%);
        }

        .hero-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, hsla(0, 5%, 8%, 0.7) 0%, hsla(0, 5%, 8%, 0.5) 50%, var(--background) 100%);
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, hsla(0, 5%, 8%, 0.8) 0%, transparent 50%, hsla(0, 5%, 8%, 0.8) 100%);
        }

        .hero-decoration {
            position: absolute;
            border: 1px solid hsla(358, 80%, 44%, 0.2);
        }

        .hero-decoration-1 {
            top: 5rem;
            left: 2.5rem;
            width: 10rem;
            height: 10rem;
            transform: rotate(45deg);
            opacity: 0.5;
        }

        .hero-decoration-2 {
            bottom: 10rem;
            right: 5rem;
            width: 6rem;
            height: 6rem;
            transform: rotate(12deg);
        }

        .hero-decoration-3 {
            position: absolute;
            top: 33%;
            right: 2.5rem;
            width: 2px;
            height: 8rem;
            background: hsla(358, 80%, 44%, 0.4);
            border: none;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 0 1rem;
            max-width: 56rem;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: hsla(0, 5%, 15%, 0.5);
            backdrop-filter: blur(8px);
            border: 1px solid hsla(0, 5%, 20%, 0.5);
            border-radius: 9999px;
            padding: 0.5rem 1.25rem;
            margin-bottom: 2rem;
        }

        .hero-badge-dot {
            width: 0.5rem;
            height: 0.5rem;
            background: var(--primary);
            border-radius: 50%;
        }

        .hero-badge-text {
            font-size: 0.875rem;
            color: var(--muted-foreground);
            font-weight: 500;
        }

        .hero-title {
            font-size: 2.5rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 768px) {
            .hero-title {
                font-size: 3.75rem;
            }
        }

        @media (min-width: 1024px) {
            .hero-title {
                font-size: 4.5rem;
            }
        }

        .hero-title .highlight {
            position: relative;
            color: var(--primary);
        }

        .hero-title .highlight::after {
            content: '';
            position: absolute;
            bottom: -0.25rem;
            left: 0;
            width: 100%;
            height: 4px;
            background: hsla(358, 80%, 44%, 0.5);
            border-radius: 2px;
        }

        .hero-subtitle {
            font-size: 1.125rem;
            color: var(--muted-foreground);
            max-width: 42rem;
            margin: 0 auto 2.5rem;
        }

        @media (min-width: 768px) {
            .hero-subtitle {
                font-size: 1.25rem;
            }
        }

        .hero-actions {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        @media (min-width: 640px) {
            .hero-actions {
                flex-direction: row;
                justify-content: center;
            }
        }

        .hero-secondary-btn {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--foreground);
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .hero-secondary-btn:hover {
            color: var(--primary);
        }

        .hero-play-icon {
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            border: 2px solid hsla(358, 80%, 44%, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .hero-secondary-btn:hover .hero-play-icon {
            border-color: var(--primary);
            background: hsla(358, 80%, 44%, 0.1);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2.5rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: var(--muted-foreground);
            transition: color 0.3s ease;
        }

        .scroll-indicator:hover {
            color: var(--primary);
        }

        .scroll-indicator span {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .scroll-mouse {
            width: 1.5rem;
            height: 2.5rem;
            border: 2px solid currentColor;
            border-radius: 9999px;
            display: flex;
            justify-content: center;
            padding-top: 0.5rem;
        }

        .scroll-dot {
            width: 0.375rem;
            height: 0.75rem;
            background: currentColor;
            border-radius: 9999px;
        }

        .hero-gradient-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 8rem;
            background: linear-gradient(180deg, transparent 0%, var(--background) 100%);
        }

        /* ============================================
           ABOUT SECTION
           ============================================ */
        .about {
            position: relative;
            background: var(--background);
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, hsla(358, 80%, 44%, 0.3) 50%, transparent 100%);
        }

        .about-grid {
            display: grid;
            gap: 4rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .about-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .section-label .line {
            width: 3rem;
            height: 2px;
            background: var(--primary);
        }

        .section-label span {
            color: var(--primary);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-size: 0.875rem;
        }

        .section-title {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }
        }

        @media (min-width: 1024px) {
            .section-title {
                font-size: 3rem;
            }
        }

        .about-text {
            color: var(--muted-foreground);
            font-size: 18px;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .stat-card {
            text-align: center;
            padding: 1rem;
        }

        .stat-value {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.25rem;
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }

        .about-cards {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .about-card {
            padding: 1.5rem;
        }

        .about-card-inner {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .about-card-icon {
            width: 3.5rem;
            height: 3.5rem;
            background: hsla(358, 80%, 44%, 0.1);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background 0.3s ease;
        }

        .about-card:hover .about-card-icon {
            background: hsla(358, 80%, 44%, 0.2);
        }

        .about-card-icon svg {
            width: 1.75rem;
            height: 1.75rem;
            color: var(--primary);
        }

        .about-card-title {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .about-card-text {
            color: var(--muted-foreground);
            font-size: 18px
        }

        .about-card-list {
            color: var(--muted-foreground);
            font-size:18px;
            list-style: none;
        }

        .about-card-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin-bottom: 0.25rem;
        }

        .about-card-list .bullet {
            color: var(--primary);
            margin-top: 0.375rem;
        }

        /* ============================================
           SERVICES SECTION
           ============================================ */
        .services {
            position: relative;
            background: hsla(0, 5%, 15%, 0.3);
            overflow: hidden;
        }

        .services-bg-1 {
            position: absolute;
            top: 25%;
            left: -5rem;
            width: 10rem;
            height: 10rem;
            background: hsla(358, 80%, 44%, 0.05);
            border-radius: 50%;
            filter: blur(48px);
        }

        .services-bg-2 {
            position: absolute;
            bottom: 25%;
            right: -5rem;
            width: 15rem;
            height: 15rem;
            background: hsla(358, 80%, 44%, 0.05);
            border-radius: 50%;
            filter: blur(48px);
        }

        .section-header {
            text-align: center;
            max-width: 48rem;
            margin: 0 auto 4rem;
        }

        .section-header .section-label {
            justify-content: center;
        }

        .services-grid {
            display: grid;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .service-card {
            overflow: hidden;
        }

        .service-card-image {
            position: relative;
            height: 12rem;
            overflow: hidden;
        }

        .service-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .service-card:hover .service-card-image img {
            transform: scale(1.1);
        }

        .service-card-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, var(--card) 0%, hsla(0, 5%, 10%, 0.5) 50%, transparent 100%);
            transform: rotate(180deg);
        }

        .service-card-content {
            padding: 1rem 2rem 2rem 2rem;
        }

        .service-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .service-card-icon {
            width: 3.5rem;
            height: 3.5rem;
            background: hsla(358, 80%, 44%, 0.1);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-card-icon {
            background: var(--primary);
        }

        .service-card-icon svg {
            width: 1.75rem;
            height: 1.75rem;
            color: var(--primary);
            transition: color 0.3s ease;
        }

        .service-card:hover .service-card-icon svg {
            color: var(--primary-foreground);
        }

        .service-card-title {
            font-size: 1.25rem;
        }

        .service-card-description {
            color: var(--muted-foreground);
            margin-bottom: 1.5rem;
        }

        .service-features {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .service-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 16px;
            color: var(--muted-foreground);
        }

        .service-feature-dot {
            width: 0.375rem;
            height: 0.375rem;
            background: var(--primary);
            border-radius: 50%;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary);
            font-weight: 500;
            transition: gap 0.3s ease;
        }

        .service-link:hover {
            gap: 0.75rem;
        }

        /* ============================================
           VALUES SECTION
           ============================================ */
        .values {
            position: relative;
            background: var(--background);
            overflow: hidden;
        }

        .values-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50rem;
            height: 50rem;
            background: hsla(358, 80%, 44%, 0.05);
            border-radius: 50%;
            filter: blur(48px);
        }

        .values-grid {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        @media (min-width: 1024px) {
            .values-grid {
                flex-direction: row;
                justify-content: center;
            }
        }

        .value-card {
            flex: 1;
            padding: 1.5rem;
            text-align: center;
            display: flex;
            flex-direction: column;
        }

        .value-letter-container {
            width: 5rem;
            height: 5rem;
            margin: 0 auto 1rem;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s ease;
        }

        .value-card:hover .value-letter-container {
            transform: scale(1.1) rotate(3deg);
        }

        .value-letter-container.p { background: linear-gradient(135deg, var(--primary), hsla(358, 80%, 44%, 0.7)); }
        .value-letter-container.u { background: linear-gradient(135deg, hsla(358, 80%, 44%, 0.9), hsla(358, 80%, 44%, 0.6)); }
        .value-letter-container.l { background: linear-gradient(135deg, hsla(358, 80%, 44%, 0.8), hsla(358, 80%, 44%, 0.5)); }
        .value-letter-container.s { background: linear-gradient(135deg, hsla(358, 80%, 44%, 0.7), hsla(358, 80%, 44%, 0.4)); }
        .value-letter-container.e { background: linear-gradient(135deg, hsla(358, 80%, 44%, 0.9), hsla(358, 80%, 44%, 0.7)); }

        .value-letter {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary-foreground);
        }

        .value-word {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            transition: color 0.3s ease;
        }

        .value-card:hover .value-word {
            color: var(--primary);
        }

        .value-description {
            color: var(--muted-foreground);
            font-size: 0.875rem;
            line-height: 1.6;
            flex-grow: 1;
        }

        .value-underline {
            width: 0;
            height: 2px;
            background: var(--primary);
            margin: 1rem auto 0;
            transition: width 0.5s ease;
        }

        .value-card:hover .value-underline {
            width: 100%;
        }

        .values-quote {
            margin-top: 4rem;
            text-align: center;
        }

        .values-quote blockquote {
            display: inline-block;
            padding: 1.5rem 2rem;
            max-width: 42rem;
        }

        .values-quote p {
            font-size: 1.25rem;
            font-style: italic;
            margin-bottom: 1rem;
        }

        .values-quote cite {
            color: var(--primary);
            font-weight: 500;
            font-style: normal;
        }

        /* ============================================
           CLIENTS SECTION
           ============================================ */
        .clients {
            position: relative;
            background: hsla(0, 5%, 15%, 0.3);
            overflow: hidden;
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 4rem;
        }

        @media (min-width: 640px) {
            .clients-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 768px) {
            .clients-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .clients-grid {
                grid-template-columns: repeat(8, 1fr);
            }
        }

        .client-card {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .client-card span {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--muted-foreground);
            text-align: center;
            font-size: 0.75rem;
            transition: color 0.3s ease;
        }

        .client-card:hover span {
            color: var(--primary);
        }

        .clients-cta {
            text-align: center;
        }

        .clients-cta p {
            color: var(--muted-foreground);
            margin-bottom: 1.5rem;
        }

        /* ============================================
           CONTACT SECTION
           ============================================ */
        .contact {
            position: relative;
            background: var(--background);
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, hsla(358, 80%, 44%, 0.3) 50%, transparent 100%);
        }

        .contact-bg {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 20rem;
            height: 20rem;
            background: hsla(358, 80%, 44%, 0.05);
            border-radius: 50%;
            filter: blur(48px);
        }

        .contact-decoration {
            position: absolute;
            top: 25%;
            left: -5rem;
            width: 10rem;
            height: 10rem;
            border: 1px solid hsla(358, 80%, 44%, 0.1);
            transform: rotate(45deg);
        }

        .contact-grid {
            display: grid;
            gap: 4rem;
        }

        @media (min-width: 1024px) {
            .contact-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 2.5rem;
        }

        @media (max-width: 639px) {
            .contact-info-grid {
                grid-template-columns: 1fr;
            }
        }

        .contact-info-card {
            padding: 1.25rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-info-icon {
            width: 3rem;
            height: 3rem;
            background: hsla(358, 80%, 44%, 0.1);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .contact-info-card:hover .contact-info-icon {
            background: var(--primary);
        }

        .contact-info-icon svg {
            width: 1.375rem;
            height: 1.375rem;
            color: var(--primary);
            transition: color 0.3s ease;
        }

        .contact-info-card:hover .contact-info-icon svg {
            color: var(--primary-foreground);
        }

        .contact-info-label {
            font-size: 0.75rem;
            color: var(--muted-foreground);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.125rem;
        }

        .contact-info-value {
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .contact-info-card:hover .contact-info-value {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .social-links span {
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }

        .social-link {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 0.5rem;
            background: hsla(0, 5%, 15%, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted-foreground);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary);
            color: var(--primary-foreground);
        }

        .contact-form {
            padding: 2rem;
        }

        .contact-form h3 {
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
        }

        .form-row {
            display: grid;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        @media (min-width: 640px) {
            .form-row.two-col {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-label {
            display: block;
            font-size: 0.875rem;
            color: var(--muted-foreground);
            margin-bottom: 0.5rem;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            background: hsla(0, 5%, 15%, 0.5);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 0.75rem 1rem;
            color: var(--foreground);
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: var(--muted-foreground);
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

        .form-textarea {
            resize: none;
            min-height: 8rem;
        }

        .form-submit {
            width: 100%;
            padding: 1rem;
            font-size: 1rem;
        }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            background: hsla(0, 5%, 15%, 0.5);
            border-top: 1px solid hsla(0, 5%, 20%, 0.5);
            padding: 1rem 0;
        }

        .footer-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .footer-inner {
                flex-direction: row;
                justify-content: space-between;
            }
        }

        .footer-copyright {
            color: var(--muted-foreground);
            font-size: 0.875rem;
            text-align: center;
        }

        .back-to-top {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--muted-foreground);
            transition: color 0.3s ease;
        }

        .back-to-top:hover {
            color: var(--primary);
        }

        .back-to-top span {
            font-size: 0.875rem;
        }

        .back-to-top-icon {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 0.5rem;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .back-to-top:hover .back-to-top-icon {
            border-color: var(--primary);
            background: hsla(358, 80%, 44%, 0.1);
        }

        .back-to-top:hover .back-to-top-icon svg {
            transform: translateY(-2px);
        }

        .back-to-top-icon svg {
            transition: transform 0.3s ease;
        }

        .hero-bg {
            background-image: url(https://stylish-story-spark.lovable.app/assets/hero-bg-BbzQ2GdL.jpg);
        }
        .my_img {
            height: 30rem;
            overflow: hidden;
            /* We layer the gradient ON TOP of the image */
            background-image: 
                linear-gradient(to bottom, transparent 0%, transparent 40%, rgba(10, 10, 10, 0.8) 85%, rgba(10, 10, 10, 1) 100%),
                url(https://stylish-story-spark.lovable.app/assets/event-stage-COVM3hqr.jpg);
            background-position: center;
            background-size: cover;
            position: relative;
            display: none;
        }

        .my_img_1 {
            height: 30rem;
            overflow: hidden;
            /* We layer the gradient ON TOP of the image */
            background-image: 
                linear-gradient(to bottom, transparent 0%, transparent 40%, rgba(10, 10, 10, 0.8) 85%, rgba(10, 10, 10, 1) 100%),
                url(https://stylish-story-spark.lovable.app/assets/exhibition-booth-C8bbFzkI.jpg);
            background-position: center;
            background-size: cover;
            position: relative;
            display: none;
        }
        p {
            font-size: 16px !important;
        }
        img.main_logo {
            width: 40% !important;
        }

        button.btn.btn-primary.form-submit {
            font-family: 'Inter';
            text-align: center;
            display: block;
        }

        @media only screen and (max-width: 767px) {
            .container {
                padding: 0 1rem !important;
            }
            a.btn.btn-primary.hello {
                display: block !important;
            }
            .section-padding {
                padding: 5rem 0rem !important;
            }
        }