        /* --- CSS VARIABLES --- */
        :root {
            /* Brand Colors - Eventy3 (Mapped to existing names) */
            --color-indigo: #664E0D;
            /* Bronze */
            --color-blue: #C4A006;
            /* Gold */
            --color-cyan: #FFED00;
            /* Yellow */

            /* Derived Colors */
            --color-purple: #E3D598;
            /* Beige */
            --color-ice: #FFF9C4;
            /* Cream */

            /* Gradients */
            --gradient-primary: linear-gradient(90deg, #FFED00 0%, #C4A006 50%, #664E0D 100%);
            --gradient-hover: linear-gradient(90deg, #FFED00 0%, #C4A006 40%, #664E0D 100%);
            --gradient-text: linear-gradient(90deg, #C4A006 0%, #FFED00 100%);

            /* Neutrals */
            --color-white: #FFFFFF;
            --color-bg-light: #FFFEF5;
            --color-bg-dark: #261C02;
            /* Preto Cromático */
            --color-border: #E0E0E5;
            --color-text-primary: #261C02;
            --color-text-secondary: #666666;

            /* Typography */
            --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-heading: 'Poppins', var(--font-primary);

            /* Spacing (Mobile Base - scales up for desktop) */
            --space-2xs: 4px;
            --space-xs: 8px;
            --space-sm: 16px;
            --space-md: 24px;
            --space-lg: 32px;
            --space-xl: 48px;
            --space-2xl: 64px;
            --space-3xl: 96px;

            /* Responsive Typography */
            --font-xs: clamp(0.75rem, 2vw, 0.875rem);
            --font-sm: clamp(0.875rem, 2vw, 1rem);
            --font-base: clamp(1rem, 2vw, 1.125rem);
            --font-lg: clamp(1.125rem, 3vw, 1.25rem);
            --font-xl: clamp(1.25rem, 3vw, 1.5rem);
            --font-2xl: clamp(1.5rem, 4vw, 2rem);

            /* Shadows */
            --shadow-sm: 0 2px 8px rgba(102, 78, 13, 0.08);
            --shadow-md: 0 4px 16px rgba(102, 78, 13, 0.12);
            --shadow-lg: 0 8px 32px rgba(102, 78, 13, 0.16);
            --shadow-xl: 0 16px 48px rgba(102, 78, 13, 0.24);

            /* Radius */
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;

            /* Transitions */
            --transition-fast: 150ms ease-in-out;
            --transition-base: 250ms ease-in-out;
            --transition-slow: 400ms ease-in-out;
        }

        /* --- RESET & BASE --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-primary);
            font-size: clamp(1rem, 2vw, 1.125rem);
            line-height: 1.6;
            color: var(--color-text-primary);
            background-color: var(--color-white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
            color: var(--color-text-primary);
        }

        h1 {
            font-size: clamp(2rem, 5vw, 4rem);
        }

        /* --- CINEMATIC ANIMATIONS --- */
        .cinematic-title {
            opacity: 0;
            animation: cinematicReveal 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
            will-change: transform, opacity, filter;
        }

        @keyframes cinematicReveal {
            0% {
                opacity: 0;
                transform: translateY(40px) scale(0.95);
                filter: blur(10px);
                letter-spacing: -2px;
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
                filter: blur(0);
                letter-spacing: normal;
            }
        }

        /* Enhanced Gradient Animation & Typing */
        .cinematic-title .text-gradient {
            background-size: 200% auto;

            /* Typing Effect */
            display: inline-block;
            overflow: hidden;
            white-space: nowrap;
            border-right: 3px solid var(--color-blue);
            /* Cursor */
            width: 0;
            animation:
                gradientFlow 6s ease infinite,
                typing 2s steps(30, end) 0.5s forwards,
                /* 0.5s delay to start after reveal begins */
                blink-caret 0.75s step-end infinite;
            vertical-align: bottom;
            /* Fix alignment issues with inline-block */
        }

        @keyframes typing {
            from {
                width: 0
            }

            to {
                width: 100%
            }
        }

        @keyframes blink-caret {

            from,
            to {
                border-color: transparent
            }

            50% {
                border-color: var(--color-blue)
            }
        }

        @keyframes gradientFlow {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        h2 {
            font-size: clamp(1.75rem, 4vw, 3rem);
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
        }

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

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            font-family: inherit;
        }

        /* --- UTILITIES --- */
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
            /* Mobile first */
        }

        @media (min-width: 640px) {
            .container {
                padding: 0 32px;
            }
        }

        @media (min-width: 1024px) {
            .container {
                padding: 0 48px;
            }
        }

        .section-padding {
            padding: clamp(3rem, 8vw, 8rem) 0;
        }

        .text-center {
            text-align: center;
        }

        .text-gradient {
            background: var(--gradient-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .grid {
            display: grid;
            gap: var(--space-lg);
        }

        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hidden {
            display: none;
        }

        .bg-light {
            background-color: var(--color-bg-light);
        }

        .bg-white {
            background-color: var(--color-white);
        }

        /* --- COMPONENTS --- */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-xs);
            padding: var(--space-sm) var(--space-lg);
            /* Larger for mobile touch */
            border: none;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all var(--transition-base);
            position: relative;
            overflow: hidden;
            /* Touch-friendly minimum */
            min-height: 44px;
            min-width: 44px;
            -webkit-tap-highlight-color: transparent;
            user-select: none;
        }

        @media (min-width: 1024px) {
            .btn {
                padding: var(--space-sm) var(--space-lg);
            }
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--color-white);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            background: var(--gradient-hover);
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }

        .btn-primary:active {
            transform: translateY(0);
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid #C4A006;
            color: #664E0D;
            box-shadow: none;
        }

        .btn-secondary:hover {
            background: rgba(196, 160, 6, 0.1);
            transform: translateY(-2px);
            color: #4a3809;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--color-purple);
            color: var(--color-purple);
        }

        .btn-outline:hover {
            background: var(--color-bg-light);
            transform: translateY(-2px);
        }

        .btn-ghost {
            background: transparent;
            color: var(--color-text-primary);
        }

        .btn-ghost:hover {
            color: var(--color-blue);
            background: rgba(196, 160, 6, 0.05);
        }

        /* --- HEADER --- */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .logo {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--color-indigo);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo span {
            color: var(--color-blue);
        }

        .nav-menu {
            display: none;
        }

        @media (min-width: 1024px) {
            .nav-menu {
                display: flex;
                gap: var(--space-lg);
                align-items: center;
            }

            .nav-link {
                font-weight: 500;
                transition: color var(--transition-base);
                position: relative;
            }

            .nav-link:hover {
                color: var(--color-blue);
            }

            .nav-link::after {
                content: '';
                position: absolute;
                bottom: -4px;
                left: 0;
                width: 0;
                height: 2px;
                background: var(--color-blue);
                transition: width var(--transition-base);
            }

            .nav-link:hover::after {
                width: 100%;
            }
        }

        /* --- HERO --- */
        .hero {
            padding-top: 120px;
            /* Keep specific hero padding */
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: radial-gradient(circle at top right, rgba(196, 160, 6, 0.08), transparent 50%),
                radial-gradient(circle at bottom left, rgba(52, 12, 94, 0.08), transparent 50%);
            overflow: hidden;
            position: relative;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-2xl);
            align-items: center;
        }

        @media (min-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1.1fr 0.9fr;
            }
        }

        .hero-content h1 {
            margin-bottom: var(--space-md);
            letter-spacing: -0.02em;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--color-text-secondary);
            margin-bottom: var(--space-lg);
            max-width: 600px;
        }

        .trust-indicators {
            margin-top: var(--space-lg);
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-md);
            font-size: 0.9rem;
            color: var(--color-text-secondary);
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
        }

        .trust-item i {
            color: var(--color-purple);
            font-size: 1.2rem;
        }

        .hero-image {
            position: relative;
            animation: float 6s ease-in-out infinite;
            display: flex;
            justify-content: center;
        }

        .hero-image img {
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-xl);
            max-height: 700px;
            object-fit: contain;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        /* --- PROBLEM SECTION --- */
        .problem-section {
            background-color: var(--color-bg-light);
        }

        .problem-grid {
            grid-template-columns: 1fr;
            /* Mobile: always 1 column */
            margin-top: var(--space-xl);
            gap: 24px;
            perspective: 1500px;
            /* Enable 3D transforms for children */
        }

        @media (min-width: 640px) {
            .problem-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .problem-card:last-child {
                grid-column: 1 / -1;
                max-width: 400px;
                margin: 0 auto;
            }
        }

        @media (min-width: 1024px) {
            .problem-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 32px;
            }

            .problem-card:last-child {
                grid-column: auto;
                max-width: none;
                margin: 0;
            }
        }

        .problem-card {
            background: var(--color-white);
            padding: var(--space-lg);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            transition: transform var(--transition-base), box-shadow var(--transition-base);
            border: 1px solid transparent;
            transform-style: preserve-3d;
            cursor: pointer;
        }

        .problem-card:hover {
            /* transform: translateY(-5px); */
            /* Disabled - conflicts with holographic 3D effect */
            box-shadow: var(--shadow-lg);
            border-color: rgba(102, 78, 13, 0.1);
        }

        .problem-icon {
            font-size: 3rem;
            margin-bottom: var(--space-sm);
            display: block;
        }

        /* --- SOLUTION SECTION --- */
        .solution-section {
            position: relative;
        }

        .timeline {
            position: relative;
            max-width: 900px;
            margin: var(--space-xl) auto 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, var(--color-blue), var(--color-indigo));
            z-index: 0;
            opacity: 0.3;
        }

        .timeline-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: var(--space-2xl);
            position: relative;
            z-index: 1;
        }

        .timeline-content {
            width: 45%;
            background: var(--color-white);
            padding: var(--space-lg);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
            position: relative;
        }

        .timeline-content::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 20px;
            height: 20px;
            background: var(--color-white);
            transform: translateY(-50%) rotate(45deg);
        }

        .timeline-marker {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 0 0 6px rgba(196, 160, 6, 0.15);
            z-index: 2;
        }

        .timeline-item:nth-child(odd) {
            flex-direction: row-reverse;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            text-align: right;
        }

        .timeline-item:nth-child(odd) .timeline-content::after {
            right: -10px;
        }

        .timeline-item:nth-child(even) .timeline-content {
            text-align: left;
        }

        .timeline-item:nth-child(even) .timeline-content::after {
            left: -10px;
        }

        @media (max-width: 768px) {
            .timeline::before {
                left: 20px;
            }

            .timeline-item {
                flex-direction: row !important;
                justify-content: flex-start;
                gap: var(--space-md);
            }

            .timeline-content {
                width: calc(100% - 60px);
                text-align: left !important;
                padding: var(--space-md);
            }

            .timeline-content::after {
                left: -10px !important;
                right: auto !important;
            }

            .timeline-marker {
                width: 40px;
                height: 40px;
                font-size: 1rem;
                flex-shrink: 0;
            }
        }

        /* --- SERVICES SECTION --- */
        .services-grid {
            grid-template-columns: 1fr;
            /* Mobile: 1 column */
            margin-top: var(--space-xl);
            gap: 24px;
        }

        @media (min-width: 640px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
            }
        }

        @media (min-width: 1280px) {
            .services-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .service-card {
            background: var(--color-white);
            padding: var(--space-lg);
            border-radius: var(--radius-lg);
            border: 1px solid var(--color-border);
            transition: all var(--transition-base);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            border-color: var(--color-blue);
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            background: rgba(196, 160, 6, 0.08);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-blue);
            font-size: 1.75rem;
            margin-bottom: var(--space-md);
            transition: transform var(--transition-base);
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
            background: var(--gradient-primary);
            color: white;
        }

        .service-list {
            margin-top: var(--space-sm);
            flex-grow: 1;
        }

        .service-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
            color: var(--color-text-secondary);
        }

        .service-list li i {
            color: var(--color-purple);
        }

        /* --- PRICING SECTION --- */
        .pricing-section {
            background: var(--color-bg-light);
        }

        .pricing-grid {
            grid-template-columns: 1fr;
            /* Mobile: stack vertically */
            align-items: stretch;
            gap: 24px;
            margin-top: var(--space-2xl);
        }

        .pricing-card.featured {
            transform: scale(1);
            /* No scale on mobile */
        }

        @media (min-width: 768px) {
            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
                align-items: center;
            }

            .pricing-card.featured {
                transform: scale(1.05);
                /* Restore scale on tablet+ */
                z-index: 10;
            }
        }

        @media (min-width: 1024px) {
            .pricing-grid {
                gap: 32px;
            }
        }

        .pricing-card {
            background: var(--color-white);
            padding: var(--space-xl);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            position: relative;
            transition: transform var(--transition-base);
            display: flex;
            flex-direction: column;
        }

        .pricing-card.featured {
            transform: scale(1.05);
            border: 2px solid transparent;
            background-image: linear-gradient(white, white), var(--gradient-primary);
            background-origin: border-box;
            background-clip: padding-box, border-box;
            box-shadow: var(--shadow-xl);
            z-index: 10;
        }

        .badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-primary);
            color: white;
            padding: 6px var(--space-sm);
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            box-shadow: 0 4px 10px rgba(196, 160, 6, 0.3);
        }

        .pricing-header {
            text-align: center;
            margin-bottom: var(--space-lg);
        }

        .price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--color-indigo);
            margin: var(--space-sm) 0;
            line-height: 1;
        }

        .price span {
            font-size: 1rem;
            color: var(--color-text-secondary);
            font-weight: 400;
        }

        .benefits-list {
            margin: var(--space-lg) 0;
            flex-grow: 1;
        }

        .benefits-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .benefits-list i {
            color: var(--color-purple);
            margin-top: var(--space-2xs);
            flex-shrink: 0;
        }

        .featured .benefits-list i {
            color: var(--color-blue);
        }

        /* --- SOCIAL PROOF --- */
        .testimonials-grid {
            grid-template-columns: 1fr;
            /* Mobile: stack */
            margin-top: var(--space-xl);
            gap: 24px;
        }

        @media (min-width: 640px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 32px;
            }
        }

        .testimonial-card {
            background: var(--color-bg-light);
            padding: var(--space-lg);
            border-radius: var(--radius-lg);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 4rem;
            color: rgba(102, 78, 13, 0.1);
            font-family: serif;
        }

        .quote {
            font-style: italic;
            color: var(--color-text-secondary);
            margin-bottom: var(--space-md);
            position: relative;
            z-index: 1;
        }

        .author {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: 1fr;
            /* Mobile: stack */
            gap: 24px;
            margin-top: var(--space-3xl);
            text-align: center;
            background: var(--color-indigo);
            padding: var(--space-lg);
            border-radius: var(--radius-xl);
            color: white;
        }

        @media (min-width: 480px) {
            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 768px) {
            .metrics-grid {
                grid-template-columns: repeat(4, 1fr);
                padding: var(--space-xl);
            }
        }

        .metric-item h3 {
            font-size: clamp(2rem, 8vw, 3rem);
            /* Responsive size */
            color: var(--color-blue);
            margin-bottom: 0.5rem;
            font-weight: 800;
        }

        .metric-item p {
            font-weight: 500;
            opacity: 0.9;
        }

        /* --- FAQ --- */
        .faq-container {
            max-width: 800px;
            margin: var(--space-xl) auto 0;
        }

        .faq-item {
            border-bottom: 1px solid var(--color-border);
            margin-bottom: var(--space-md);
        }

        .faq-question {
            width: 100%;
            text-align: left;
            padding: var(--space-md) 0;
            background: none;
            border: none;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--color-text-primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color var(--transition-base);
            /* Touch-friendly */
            min-height: 44px;
            -webkit-tap-highlight-color: transparent;
        }

        .faq-question:hover {
            color: var(--color-blue);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease;
            color: var(--color-text-secondary);
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding-bottom: var(--space-md);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
            color: var(--color-blue);
        }

        /* --- CONTACT SECTION --- */
        .contact-section {
            background: linear-gradient(135deg, #664E0D 0%, #4a3809 100%);
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 0%, rgba(255, 237, 0, 0.1), transparent 50%);
            pointer-events: none;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .contact-icon {
            display: inline-block;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #FFED00, #C4A006);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 10px 30px rgba(255, 237, 0, 0.3);
        }

        .contact-icon i {
            font-size: 2.5rem;
            color: #664E0D;
        }

        .contact-header h2 {
            color: white;
            font-size: 2rem;
            margin: 5px 0;
            font-weight: 300;
        }

        .contact-title-highlight {
            font-weight: 700 !important;
            background: linear-gradient(135deg, #FFED00, #C4A006);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .contact-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            margin-top: 10px;
        }

        .contact-form-card {
            background: white;
            border-radius: 20px;
            padding: 50px;
            max-width: 650px;
            margin: 0 auto;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
            border: 2px solid rgba(255, 237, 0, 0.2);
        }

        .contact-form .form-row {
            margin-bottom: 20px;
        }

        .contact-form .form-row-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .contact-form label {
            display: block;
            font-weight: 600;
            color: #333333;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .contact-form input,
        .contact-form select {
            width: 100%;
            padding: 14px 16px;
            border: 1.5px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: var(--font-primary);
        }

        .contact-form input:focus,
        .contact-form select:focus {
            outline: none;
            border-color: #C4A006;
            box-shadow: 0 0 0 3px rgba(196, 160, 6, 0.1);
        }

        .checkbox-label {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            cursor: pointer;
        }

        .checkbox-label input[type="checkbox"] {
            width: auto;
            margin-top: 3px;
            cursor: pointer;
        }

        .checkbox-label span {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.5;
        }

        .btn-contact-submit {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #FFED00, #C4A006);
            color: #664E0D;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-contact-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 237, 0, 0.4);
            background: linear-gradient(135deg, #C4A006, #FFED00);
        }

        .btn-contact-submit i {
            font-size: 1.2rem;
        }

        .trust-badges-contact {
            display: flex;
            justify-content: space-around;
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid #e0e0e0;
        }

        .trust-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            text-align: center;
        }

        .trust-badge i {
            font-size: 1.5rem;
            color: #C4A006;
        }

        .trust-badge span {
            font-size: 0.85rem;
            color: #666;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .contact-form-card {
                padding: 30px 20px;
            }

            .contact-form .form-row-split {
                grid-template-columns: 1fr;
            }

            .contact-header h2 {
                font-size: 1.5rem;
            }

            .contact-subtitle {
                font-size: 1rem;
            }

            .trust-badges-contact {
                flex-direction: column;
                gap: 15px;
            }
        }

        /* Reveal Animation - Removed for stability */
        .reveal-container {
            display: inline-block;
            vertical-align: bottom;
        }

        .reveal-text {
            display: inline-block;
        }

        /* --- FOOTER STYLES --- */
        .footer {
            background: linear-gradient(135deg, #664E0D 0%, #4a3809 100%);
            color: rgba(255, 255, 255, 0.9);
            padding: 60px 20px 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 2fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-brand-section {
            display: flex;
            flex-direction: column;
        }

        .footer-logo {
            height: 65px;
            width: auto;
            margin-bottom: 20px;
            object-fit: contain;
            display: block;
            align-self: flex-start;
        }

        .footer-tagline {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
            margin-bottom: 30px;
            font-size: 0.95rem;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
            margin-top: auto;
        }

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

        .footer-column h4 {
            color: #FFFFFF;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-column a {
            display: block;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .footer-column a:hover {
            color: #FFED00;
            transform: translateX(3px);
        }

        .footer-column a i {
            margin-right: 8px;
            font-size: 1.1rem;
        }

        /* Footer Responsive */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

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

        @media (max-width: 640px) {
            .footer-columns {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer {
                padding: 40px 20px 20px;
            }
        }

        .form-group {
            margin-bottom: var(--space-md);
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: var(--space-sm);
            /* Larger touch target */
            border: 1px solid var(--color-border);
            border-radius: var(--radius-sm);
            font-family: var(--font-primary);
            font-size: 16px !important;
            /* Prevent iOS zoom */
            transition: border-color 0.2s, box-shadow 0.2s;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }

        .form-container {
            padding: var(--space-lg);
            /* Less padding on mobile */
        }

        @media (min-width: 1024px) {
            .form-container {
                padding: var(--space-xl);
            }
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--color-blue);
            box-shadow: 0 0 0 3px rgba(196, 160, 6, 0.1);
        }

        /* --- ANIMATIONS --- */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- TIMELINE ANIMATIONS (Modern & Futuristic) --- */
        .timeline-item {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out;
        }

        .timeline-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered Delays (Subtle) */
        .timeline-item:nth-child(1) {
            transition-delay: 0.1s;
        }

        .timeline-item:nth-child(2) {
            transition-delay: 0.2s;
        }

        .timeline-item:nth-child(3) {
            transition-delay: 0.3s;
        }

        /* Problem Cards Staggered Animation */
        .problem-card:nth-child(1) {
            transition-delay: 0.1s;
        }

        .problem-card:nth-child(2) {
            transition-delay: 0.3s;
        }

        .problem-card:nth-child(3) {
            transition-delay: 0.5s;
        }

        /* --- 3D ROTATION EFFECT (Simple) --- */
        .problem-card {
            position: relative;
            transform-style: preserve-3d;
            transition: box-shadow 0.3s ease;
            /* Removed transform transition for instant follow */
            cursor: pointer;
        }

        .problem-card:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        /* Timeline Content - Modern Glass/Tech Look */
        .timeline-content {
            position: relative;
            background: #fff;
            border: 2px solid transparent;
            /* Prepare for gradient border */
            border-radius: var(--radius-lg);
            /* Ensure radius matches */
            background-clip: padding-box;
            /* Default background clip */
            transition: all 0.4s ease;
            z-index: 1;
        }

        /* The Futuristic Hover Effect */
        .timeline-content:hover {
            /* No movement, just pure light/color change */
            box-shadow: 0 0 30px rgba(196, 160, 6, 0.2);
            /* Soft magenta glow */

            /* Gradient Border Magic */
            background-image: linear-gradient(#fff, #fff),
                linear-gradient(135deg, var(--color-blue), var(--color-indigo));
            background-origin: border-box;
            background-clip: padding-box, border-box;

            /* Slight lift for depth, but very subtle */
            transform: translateY(-2px);
        }

        /* Marker Pulse - Keeping it subtle */
        .timeline-marker {
            position: relative;
            z-index: 2;
        }

        .timeline-marker::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 1px solid var(--color-blue);
            opacity: 0;
            z-index: -1;
        }

        .timeline-item.visible .timeline-marker::after {
            animation: pulse-ring 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
        }

        @keyframes pulse-ring {
            0% {
                transform: translate(-50%, -50%) scale(0.8);
                opacity: 0.5;
            }

            100% {
                transform: translate(-50%, -50%) scale(1.8);
                opacity: 0;
            }
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--color-indigo);
            /* Touch-friendly */
            min-width: 44px;
            min-height: 44px;
            padding: var(--space-xs);
            -webkit-tap-highlight-color: transparent;
        }

        @media (max-width: 1023px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: var(--space-lg);
                box-shadow: var(--shadow-lg);
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 999;
            }

            .nav-menu.active {
                transform: translateY(0);
                display: flex;
            }

            .nav-link {
                width: 100%;
                text-align: center;
                padding: 12px 0;
                /* Larger touch target */
                min-height: 44px;
            }
        }

        /* --- PORTFOLIO SECTION --- */
        /* Portfolio Filters */
        .portfolio-filters {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 0.8rem 1.5rem;
            border: 1px solid #e2e8f0;
            background: white;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 500;
            color: var(--text-light);
            transition: all 0.3s ease;
            font-size: 0.95rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
            /* Touch-friendly */
            min-height: 44px;
            min-width: 44px;
            -webkit-tap-highlight-color: transparent;
        }

        .filter-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(225, 29, 72, 0.1);
        }

        .filter-btn.active {
            background: var(--gradient);
            color: white;
            border-color: transparent;
            box-shadow: 0 4px 12px rgba(225, 29, 72, 0.2);
        }

        /* Portfolio Grid */
        .portfolio-grid {
            display: grid;
            grid-template-columns: 1fr;
            /* Mobile: 1 column */
            gap: 16px;
            padding: 0;
        }

        @media (min-width: 640px) {
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }

        @media (min-width: 1024px) {
            .portfolio-grid {
                gap: 32px;
            }
        }

        .portfolio-item {
            border-radius: 16px;
            /* Smaller on mobile */
            overflow: hidden;
            position: relative;
            aspect-ratio: 4/3;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: #f8fafc;
        }

        @media (min-width: 1024px) {
            .portfolio-item {
                border-radius: 24px;
            }
        }

        .portfolio-item:hover {
            transform: translateY(-8px) scale(1.01);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .portfolio-item:hover img {
            transform: scale(1.08);
        }

        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(15, 3, 27, 0.9), rgba(15, 3, 27, 0.4), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 2;
            padding: 2rem;
            text-align: left;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-content {
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .portfolio-item:hover .portfolio-content {
            transform: translateY(0);
        }

        .portfolio-content h4 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .portfolio-content p {
            color: var(--color-blue);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .portfolio-metrics {
            margin-bottom: 1.5rem;
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            padding: 5px var(--space-sm);
            border-radius: 20px;
            color: white;
            font-size: 0.9rem;
        }

        /* --- NEW FORM STYLES --- */
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--color-text-primary);
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .checkbox-group input {
            margin-top: 3px;
        }

        .btn-block {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem;
            font-size: 1.1rem;
        }

        .trust-badges {
            display: flex;
            justify-content: space-between;
            margin-top: 1.5rem;
            font-size: 0.75rem;
            color: #666;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .trust-badges span {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .success-message {
            text-align: center;
            padding: 2rem 0;
        }

        .success-icon {
            font-size: 4rem;
            color: #4CAF50;
            margin-bottom: 1rem;
            animation: scaleIn 0.5s ease-out;
        }

        @keyframes scaleIn {
            from {
                transform: scale(0);
            }

            to {
                transform: scale(1);
            }
        }

        .social-follow {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--color-border);
        }

        .social-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        /* --- MARQUEE ANIMATION --- */
        @keyframes marquee {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(calc(-33.33% - 0.33rem));
            }
        }

        /* --- CINEMATIC ANIMATIONS --- */
        .cinematic-prefix {
            display: inline-block;
            opacity: 0;
            animation: cinematicReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
            will-change: transform, opacity, filter;
        }

        @keyframes cinematicReveal {
            0% {
                opacity: 0;
                transform: translateY(20px) scale(0.98);
                filter: blur(10px);
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
                filter: blur(0);
            }
        }

        /* Enhanced Gradient Animation */
        .text-gradient {
            background-size: 200% auto;
            animation: gradientFlow 6s ease infinite;
        }

        /* Typing Effect - Specific to H1 */
        .cinematic-title .text-gradient {
            display: inline-block;
            overflow: hidden;
            white-space: nowrap;
            border-right: 3px solid var(--color-blue);
            /* Cursor */
            width: 0;
            animation:
                gradientFlow 6s ease infinite,
                typing 2s steps(30, end) 1s forwards,
                /* Start after prefix reveal */
                blink-caret 0.75s step-end 5 forwards;
            /* Blink 5 times then stop transparent */
            /* Blink 5 times then stop */
            vertical-align: bottom;
        }

        @keyframes typing {
            from {
                width: 0
            }

            to {
                width: 100%
            }
        }

        @keyframes blink-caret {

            from,
            to {
                border-color: transparent
            }

            50% {
                border-color: var(--color-blue)
            }
        }

        .marquee-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            margin-top: 3rem;
        }

        .marquee-wrapper {
            display: flex;
            gap: 1rem;
            animation: marquee 40s linear infinite;
            width: fit-content;
        }

        .marquee-wrapper:hover {
            animation-play-state: paused;
        }

        .marquee-container::before,
        .marquee-container::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 15%;
            z-index: 2;
            pointer-events: none;
        }

        .marquee-container::before {
            left: 0;
            background: linear-gradient(to right, var(--color-bg-light), transparent);
        }

        .marquee-container::after {
            right: 0;
            background: linear-gradient(to left, var(--color-bg-light), transparent);
        }

        .testimonial-card {
            min-width: 320px;
            max-width: 320px;
        }

        /* --- PRICING 3D ANIMATION --- */
        .pricing-grid {
            perspective: 2000px;
            perspective-origin: center;
        }

        .pricing-card {
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            transform-style: preserve-3d;
        }

        .pricing-card:nth-child(1) {
            transform: scale(0.94) translateX(30px) translateZ(-50px) rotateY(5deg);
            transform-origin: right center;
        }

        .pricing-card:nth-child(3) {
            transform: scale(0.94) translateX(-30px) translateZ(-50px) rotateY(-5deg);
            transform-origin: left center;
        }

        .pricing-card.featured {
            transform: scale(1) translateY(-20px) translateZ(0) rotateY(0deg) !important;
            z-index: 10;
            position: relative;
        }

        .pricing-card:hover {
            transform: scale(1.05) translateZ(20px) rotateY(0deg) !important;
            box-shadow: 0 20px 60px rgba(196, 160, 6, 0.3);
            z-index: 15;
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-25px) translateZ(20px) !important;
        }

        @media (max-width: 1023px) {

            .pricing-card:nth-child(1),
            .pricing-card:nth-child(3) {
                transform: none;
            }

            .pricing-card.featured {
                transform: none !important;
            }

            .pricing-card:hover {
                transform: scale(1.02) !important;
            }
        }

        /* --- 3D PROBLEM CARDS --- */
        .problem-grid {
            perspective: 1500px;
        }

        /* REMOVED - Conflicting with holographic effect
        .problem-card {
            position: relative;
            transform-style: preserve-3d;
            transition: transform 0.1s ease-out, box-shadow 0.3s ease;
            cursor: pointer;
            overflow: hidden;
        }

        .problem-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 1;
        }

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

        .problem-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.3) 50%, transparent 60%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 2;
            transform: translateZ(10px);
        }

        .problem-card:hover::after {
            opacity: 1;
        }

        .problem-card:hover {
            box-shadow: 0 20px 40px rgba(196, 160, 6, 0.15), 0 0 30px rgba(196, 160, 6, 0.1);
        }

        .problem-card>* {
            position: relative;
            z-index: 3;
        }

        .problem-icon {
            display: block;
            font-size: 3rem;
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
        }

        .problem-card:hover .problem-icon {
            transform: scale(1.1) translateZ(20px);
        }
        */

        /* --- ENHANCED TIMELINE ANIMATIONS --- */
        @keyframes subtle-fade {

            0%,
            100% {
                opacity: 0.9;
            }

            50% {
                opacity: 1;
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }

            100% {
                background-position: 1000px 0;
            }
        }

        .timeline-marker {
            transition: all 0.3s ease;
        }

        .timeline-item {
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .timeline-item:hover {
            transform: translateX(8px);
        }

        .timeline-item:hover .timeline-marker {
            transform: scale(1.08);
            box-shadow: 0 0 0 8px rgba(196, 160, 6, 0.1);
        }

        /* Segundo item vai para a esquerda */
        .timeline-item:nth-child(2):hover {
            transform: translateX(-8px);
        }

        /* --- ENHANCED SERVICE CARDS ANIMATIONS --- */
        @keyframes gradient-shift {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        .service-card {
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg,
                    transparent 30%,
                    rgba(196, 160, 6, 0.1) 50%,
                    transparent 70%);
            transform: rotate(45deg);
            opacity: 0;
            transition: opacity 0.5s;
        }

        .service-card:hover::before {
            opacity: 1;
            animation: shimmer 4s linear infinite;
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(196, 160, 6, 0.2);
        }

        .service-icon {
            position: relative;
            transition: all 0.4s ease;
        }

        /* Stagger animation for cards */
        .timeline-item:nth-child(1) {
            animation-delay: 0s;
        }

        .timeline-item:nth-child(2) {
            animation-delay: 0.1s;
        }

        .timeline-item:nth-child(3) {
            animation-delay: 0.2s;
        }

        .service-card:nth-child(1) {
            animation-delay: 0s;
        }

        .service-card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .service-card:nth-child(3) {
            animation-delay: 0.2s;
        }

        .service-card:nth-child(4) {
            animation-delay: 0.3s;
        }

        .galaxy-section {
            background: linear-gradient(180deg, #f8f9fa 0%, #f0f1f3 100%);
            padding: var(--space-3xl) 0;
            position: relative;
            overflow: hidden;
            min-height: 800px;
        }

        /* Animated stars background */
        .galaxy-section::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-image:
                radial-gradient(2px 2px at 20% 30%, rgba(196, 160, 6, 0.3), transparent),
                radial-gradient(2px 2px at 60% 70%, rgba(102, 78, 13, 0.3), transparent),
                radial-gradient(1px 1px at 50% 50%, rgba(255, 237, 0, 0.4), transparent),
                radial-gradient(1px 1px at 80% 10%, rgba(196, 160, 6, 0.3), transparent),
                radial-gradient(2px 2px at 90% 60%, rgba(102, 78, 13, 0.2), transparent),
                radial-gradient(1px 1px at 33% 80%, rgba(255, 237, 0, 0.3), transparent);
            background-size: 200% 200%;
            background-position: 0% 0%;
            animation: stars-twinkle 20s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes stars-twinkle {

            0%,
            100% {
                opacity: 0.3;
                background-position: 0% 0%;
            }

            25% {
                opacity: 0.6;
            }

            50% {
                opacity: 0.4;
                background-position: 100% 100%;
            }

            75% {
                opacity: 0.7;
            }
        }

        /* Solar System Container */
        .solar-system {
            position: relative;
            width: 100%;
            height: 600px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Orbits - Enhanced with cosmic glow */
        .orbit-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border: 2px solid transparent;
            border-radius: 50%;
            pointer-events: none;
            background: linear-gradient(#f8f9fa, #f8f9fa) padding-box,
                linear-gradient(90deg,
                    rgba(196, 160, 6, 0.3) 0%,
                    rgba(102, 78, 13, 0.3) 25%,
                    rgba(255, 237, 0, 0.3) 50%,
                    rgba(102, 78, 13, 0.3) 75%,
                    rgba(196, 160, 6, 0.3) 100%) border-box;
            box-shadow: 0 0 20px rgba(196, 160, 6, 0.1),
                inset 0 0 20px rgba(196, 160, 6, 0.05);
            animation: orbit-glow 8s ease-in-out infinite;
        }

        @keyframes orbit-glow {

            0%,
            100% {
                opacity: 0.6;
                box-shadow: 0 0 20px rgba(196, 160, 6, 0.1),
                    inset 0 0 20px rgba(196, 160, 6, 0.05);
            }

            50% {
                opacity: 1;
                box-shadow: 0 0 30px rgba(196, 160, 6, 0.2),
                    inset 0 0 30px rgba(196, 160, 6, 0.1);
            }
        }

        .ring-1 {
            width: 300px;
            height: 300px;
        }

        .ring-2 {
            width: 550px;
            height: 550px;
        }

        /* Planets Common */
        .planet {
            position: absolute;
            cursor: pointer;
            transition: transform 0.3s ease;
            filter: drop-shadow(0 0 10px rgba(196, 160, 6, 0.3));
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 10;
        }

        /* Planet trail effect */
        .planet::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100px;
            height: 100px;
            margin: -50px 0 0 -50px;
            background: radial-gradient(circle,
                    rgba(196, 160, 6, 0.1) 0%,
                    transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            opacity: 0;
            animation: trail-fade 2s ease-out infinite;
        }

        @keyframes trail-fade {
            0% {
                opacity: 0;
                transform: scale(0.5);
            }

            50% {
                opacity: 0.3;
            }

            100% {
                opacity: 0;
                transform: scale(1.5);
            }
        }

        .planet:hover {
            transform: scale(1.15);
            filter: drop-shadow(0 0 25px rgba(196, 160, 6, 0.6)) drop-shadow(0 0 40px rgba(196, 160, 6, 0.3));
            z-index: 100;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .planet-body {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            font-size: 2rem;
            color: #666;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .planet:hover .planet-body {
            box-shadow: 0 15px 50px rgba(196, 160, 6, 0.4),
                0 0 30px rgba(196, 160, 6, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.2);
            color: white;
            transform: rotate(360deg);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .planet-label {
            margin-top: var(--space-xs);
            font-weight: 700;
            color: var(--color-text);
            font-size: 0.9rem;
        }

        /* Sun (Center) */
        .sun {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .sun:hover {
            transform: translate(-50%, -50%) scale(1.05);
        }

        .planet-core {
            width: 140px;
            height: 140px;
            background: linear-gradient(135deg, #ffffff, #f8f9fa);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
            border: 4px solid white;
            position: relative;
            z-index: 2;
        }

        .planet-core i {
            font-size: 2.5rem;
            color: var(--color-primary);
            margin-bottom: 5px;
        }

        .planet-core span {
            font-weight: 700;
            font-size: 0.75rem;
            color: var(--color-text);
            text-align: center;
            padding: 0 8px;
            line-height: 1.2;
        }

        /* Collision wave effect */
        @keyframes collision-wave {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }

            100% {
                transform: scale(2.5);
                opacity: 0;
            }
        }

        .planet.collision::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 80px;
            height: 80px;
            margin: -40px 0 0 -40px;
            border: 3px solid rgba(196, 160, 6, 0.8);
            border-radius: 50%;
            animation: collision-wave 0.8s ease-out;
            pointer-events: none;
        }

        .sun-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 250px;
            height: 250px;
            background: radial-gradient(circle,
                    rgba(196, 160, 6, 0.3) 0%,
                    rgba(139, 92, 246, 0.15) 40%,
                    transparent 70%);
            animation: pulse-glow 4s ease-in-out infinite;
            filter: blur(20px);
        }

        /* Add multiple glow layers for depth */
        .sun::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 180px;
            height: 180px;
            background: radial-gradient(circle,
                    rgba(196, 160, 6, 0.2) 0%,
                    transparent 60%);
            border-radius: 50%;
            animation: pulse-glow 3s ease-in-out infinite;
            animation-delay: -1.5s;
            filter: blur(15px);
            pointer-events: none;
        }

        /* Planet Positions - Precisely on orbit rings with animations */
        /* Ring 2 (outer): 550px diameter = 275px radius from center */
        /* Ring 1 (inner): 300px diameter = 150px radius from center */

        @keyframes orbit-outer {
            0% {
                transform: rotate(0deg) translateX(275px) rotate(0deg);
            }

            100% {
                transform: rotate(360deg) translateX(275px) rotate(-360deg);
            }
        }

        @keyframes orbit-inner {
            0% {
                transform: rotate(0deg) translateX(150px) rotate(0deg);
            }

            100% {
                transform: rotate(360deg) translateX(150px) rotate(-360deg);
            }
        }

        @keyframes float-gentle {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        .p-ml3 {
            /* ML3 on OUTER orbit - positioned at 10h (210°) */
            top: 50%;
            left: 50%;
            margin: -40px 0 0 -40px;
            animation: orbit-outer 45s linear infinite;
            animation-delay: -26.25s;
        }

        .p-ml3 .planet-body {
            animation: float-gentle 4s ease-in-out infinite;
        }

        .p-ml3:hover {
            animation-play-state: paused;
        }

        .p-ml3:hover .planet-body {
            background: #3B82F6;
            border-color: #3B82F6;
            animation-play-state: paused;
        }

        .p-eventy3 {
            /* On INNER ring - positioned at 2h (330°) */
            top: 50%;
            left: 50%;
            margin: -40px 0 0 -40px;
            animation: orbit-inner 30s linear infinite;
            animation-delay: -27.5s;
            z-index: 10;
        }

        .p-eventy3 .planet-body {
            animation: float-gentle 3.5s ease-in-out infinite;
            animation-delay: -1s;
            /* Highlight Eventy3 */
            transform: scale(1.2);
            border: 2px solid #FFED00;
            box-shadow: 0 0 20px rgba(255, 237, 0, 0.6);
            background: linear-gradient(135deg, #FFED00, #C4A006);
        }

        .p-eventy3:hover {
            animation-play-state: paused;
        }

        .p-eventy3:hover .planet-body {
            background: linear-gradient(135deg, #FFED00, #C4A006);
            border-color: #FFED00;
            box-shadow: 0 0 30px rgba(255, 237, 0, 0.8);
            animation-play-state: paused;
            transform: scale(1.3);
        }

        .p-crie3 {
            /* On outer ring - positioned at 5h (60°) */
            top: 50%;
            left: 50%;
            margin: -40px 0 0 -40px;
            animation: orbit-outer 45s linear infinite;
            animation-delay: -7.5s;
        }

        .p-crie3 .planet-body {
            animation: float-gentle 4.5s ease-in-out infinite;
            animation-delay: -2s;
        }

        .p-crie3:hover {
            animation-play-state: paused;
        }

        /* Centered bottom */
        .p-crie3:hover .planet-body {
            background: #EE2578;
            border-color: #EE2578;
            animation-play-state: paused;
        }

        .you-are-here {
            position: absolute;
            bottom: -45px;
            background: linear-gradient(90deg, #C4A006, #664E0D);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 800;
            white-space: nowrap;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        /* Modal Styles - Modern Redesign */
        .galaxy-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 6, 47, 0.75);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .galaxy-modal.active {
            opacity: 1;
            pointer-events: all;
        }

        .modal-content {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(40px);
            -webkit-backdrop-filter: blur(40px);
            width: 90%;
            max-width: 600px;
            max-height: 85vh;
            border-radius: 32px;
            position: relative;
            transform: scale(0.9) translateY(30px);
            opacity: 0;
            filter: blur(10px);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            overflow: hidden;
            box-shadow:
                0 50px 100px -20px rgba(50, 50, 93, 0.25),
                0 30px 60px -30px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.5) inset;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .galaxy-modal.active .modal-content {
            transform: scale(1) translateY(0);
            opacity: 1;
            filter: blur(0);
        }

        /* Scrollbar for modal body */
        .modal-content::-webkit-scrollbar {
            width: 8px;
        }

        .modal-content::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.05);
            border-radius: 10px;
        }

        .modal-content::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #C4A006, #664E0D);
            border-radius: 10px;
        }

        .close-modal-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 50%;
            width: 44px;
            height: 44px;
            cursor: pointer;
            color: #666;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .close-modal-btn:hover {
            background: rgba(255, 255, 255, 1);
            transform: rotate(90deg) scale(1.1);
            color: #C4A006;
            box-shadow: 0 8px 20px rgba(196, 160, 6, 0.2);
        }

        /* Modal Themes - Enhanced Gradients */
        .modal-header-custom {
            padding: var(--space-2xl) var(--space-xl) var(--space-xl);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Animated gradient overlay */
        .modal-header-custom::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotate-gradient 20s linear infinite;
            pointer-events: none;
        }

        @keyframes rotate-gradient {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .modal-header-custom i {
            font-size: 4rem;
            margin-bottom: var(--space-sm);
            display: block;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
            animation: float-icon 3s ease-in-out infinite;
            position: relative;
            z-index: 1;
        }

        @keyframes float-icon {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .modal-header-custom h3 {
            margin: 0;
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .center-theme {
            background: linear-gradient(135deg, #664E0D, #C4A006, #FFED00);
            background-size: 200% 200%;
            animation: gradient-shift 6s ease infinite;
        }

        .ml3-theme {
            background: linear-gradient(135deg, #3B82F6, #2563EB, #1E40AF);
            background-size: 200% 200%;
            animation: gradient-shift 6s ease infinite;
        }

        .eventy3-theme {
            background: linear-gradient(135deg, #EAB308, #CA8A04, #A16207);
            background-size: 200% 200%;
            animation: gradient-shift 6s ease infinite;
        }

        .crie3-theme {
            background: linear-gradient(135deg, #EE2578, #BE185D, #9F1239);
            background-size: 200% 200%;
            animation: gradient-shift 6s ease infinite;
        }

        @keyframes gradient-shift {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        .modal-body-custom {
            padding: var(--space-xl);
            padding-bottom: 100px;
            /* Extra space for scrolling */
            max-height: calc(85vh - 160px);
            overflow-y: auto;
        }

        .modal-body-custom::-webkit-scrollbar {
            width: 6px;
        }

        .modal-body-custom::-webkit-scrollbar-track {
            background: transparent;
        }

        .modal-body-custom::-webkit-scrollbar-thumb {
            background: rgba(196, 160, 6, 0.3);
            border-radius: 3px;
        }

        .modal-body-custom::-webkit-scrollbar-thumb:hover {
            background: rgba(196, 160, 6, 0.5);
        }

        .hero-text {
            font-size: 1.15rem;
            color: #374151;
            margin-bottom: var(--space-lg);
            line-height: 1.7;
            text-align: left;
            font-weight: 500;
        }

        .modal-body-custom h4 {
            color: #1f2937;
            font-size: 1.1rem;
            font-weight: 700;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .modal-body-custom h4::before {
            content: '';
            width: 4px;
            height: 20px;
            background: linear-gradient(180deg, #C4A006, #664E0D);
            border-radius: 2px;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin-bottom: var(--space-lg);
        }

        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: var(--space-sm);
            color: #4b5563;
            font-size: 0.95rem;
            line-height: 1.6;
            padding: var(--space-xs) 0;
            transition: all 0.3s ease;
        }

        .feature-list li:hover {
            transform: translateX(4px);
            color: #1f2937;
        }

        .feature-list i {
            color: #C4A006;
            font-size: 1.2rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .modal-cta-btn {
            display: block;
            width: 100%;
            padding: var(--space-sm);
            background: linear-gradient(135deg, #C4A006, #664E0D);
            color: white;
            text-align: center;
            border-radius: 16px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 25px -5px rgba(196, 160, 6, 0.3);
            position: relative;
            overflow: hidden;
            margin-top: var(--space-xl);
            margin-bottom: var(--space-md);
            z-index: 5;
        }

        .modal-cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .modal-cta-btn:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 15px 35px -5px rgba(196, 160, 6, 0.4);
        }

        .modal-cta-btn:hover::before {
            left: 100%;
        }

        .modal-cta-btn:active {
            transform: scale(0.98);
        }

        /* Mission/Vision Specifics */
        .mission-box,
        .vision-box {
            margin-bottom: var(--space-md);
            background: #f8f9fa;
            padding: var(--space-sm);
            border-radius: 12px;
        }

        .mission-box h4,
        .vision-box h4 {
            margin: 0 0 5px 0;
            font-size: 1rem;
            color: var(--color-primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .mission-box p,
        .vision-box p {
            margin: 0;
            font-size: 0.9rem;
            color: #666;
        }

        .values-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
        }

        .values-row span {
            background: #eee;
            padding: 5px var(--space-xs);
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #555;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .solar-system {
                height: auto;
                flex-direction: column;
                gap: 40px;
                padding: var(--space-xl) 0;
            }

            .orbit-ring {
                display: none;
            }

            .planet,
            .sun {
                position: relative;
                top: auto !important;
                left: auto !important;
                right: auto !important;
                bottom: auto !important;
                transform: none !important;
                margin: 0 !important;
            }

            .sun {
                order: 1;
                margin-bottom: var(--space-md) !important;
            }

            .p-ml3 {
                order: 2;
            }

            .p-eventy3 {
                order: 3;
            }

            .p-crie3 {
                order: 4;
            }

            .planet-body {
                width: 70px;
                height: 70px;
                font-size: 1.5rem;
            }

            .planet-core {
                width: 120px;
                height: 120px;
            }
        }

        @keyframes pulse-glow {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.5;
            }

            50% {
                transform: translate(-50%, -50%) scale(1.2);
                opacity: 0.2;
            }

            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.5;
            }
        }

        .node-crie3 .node-icon {
            color: #C4A006;
        }

        .node-ml3 .node-icon {
            color: #10B981;
        }

        .node-eventy3 .node-icon {
            color: #F59E0B;
        }

        .ticket-tear-scene {
            width: 400px;
            height: 250px;
            margin: 0 auto;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .ticket-half {
            width: 180px;
            height: 200px;
            background: linear-gradient(135deg, #FFED00 0%, #C4A006 50%, #664E0D 100%);
            border-radius: 12px;
            position: absolute;
            top: 50%;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        /* Paper texture */
        .ticket-half::before {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(0deg,
                    transparent,
                    transparent 2px,
                    rgba(255, 255, 255, 0.03) 2px,
                    rgba(255, 255, 255, 0.03) 4px);
            pointer-events: none;
        }

        .left-half {
            left: 50%;
            transform: translate(-100%, -50%);
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
            animation: tearLeft 4s ease-in-out infinite;
        }

        .right-half {
            right: 50%;
            transform: translate(100%, -50%);
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
            animation: tearRight 4s ease-in-out infinite;
        }

        @keyframes tearLeft {

            0%,
            40% {
                transform: translate(-100%, -50%) rotate(0deg);
            }

            60%,
            100% {
                transform: translate(-140%, -50%) rotate(-8deg);
            }
        }

        @keyframes tearRight {

            0%,
            40% {
                transform: translate(100%, -50%) rotate(0deg);
            }

            60%,
            100% {
                transform: translate(140%, -50%) rotate(8deg);
            }
        }

        .ticket-content-half {
            padding: 20px;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        .ticket-logo-half {
            font-size: 2rem;
            font-weight: 900;
            color: #664E0D;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            letter-spacing: 1px;
        }

        .ticket-lines {
            margin-top: 20px;
            width: 100%;
        }

        .ticket-lines .line {
            height: 3px;
            background: rgba(102, 78, 13, 0.3);
            margin: 8px 0;
            border-radius: 2px;
        }

        .ticket-lines .line.short {
            width: 60%;
        }

        .ticket-stamp-small {
            width: 35px;
            height: 35px;
            border: 2px solid #664E0D;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #664E0D;
            font-weight: bold;
            margin-top: 15px;
        }

        /* Torn Edges */
        .tear-edge {
            position: absolute;
            top: 0;
            width: 8px;
            height: 100%;
            background: repeating-linear-gradient(0deg,
                    #664E0D 0px,
                    #664E0D 8px,
                    transparent 8px,
                    transparent 12px);
            opacity: 0.6;
        }

        .tear-edge.left {
            right: -4px;
        }

        .tear-edge.right {
            left: -4px;
        }

        /* Experience Explosion */
        .experience-explosion {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            opacity: 0;
            animation: explosionReveal 4s ease-in-out infinite;
        }

        @keyframes explosionReveal {

            0%,
            45% {
                opacity: 0;
            }

            55%,
            100% {
                opacity: 1;
            }
        }

        /* Golden Confetti */
        .confetti {
            position: absolute;
            width: 8px;
            height: 12px;
            background: linear-gradient(135deg, #FFED00, #C4A006);
            border-radius: 2px;
            animation: confettiFall 2.5s ease-out infinite;
        }

        .c1 {
            left: 20%;
            top: 10%;
            animation-delay: 0s;
        }

        .c2 {
            left: 40%;
            top: 15%;
            animation-delay: 0.2s;
            background: #FFED00;
        }

        .c3 {
            left: 60%;
            top: 20%;
            animation-delay: 0.4s;
        }

        .c4 {
            left: 80%;
            top: 10%;
            animation-delay: 0.6s;
            background: #C4A006;
        }

        .c5 {
            left: 30%;
            top: 25%;
            animation-delay: 0.3s;
        }

        .c6 {
            left: 50%;
            top: 12%;
            animation-delay: 0.5s;
            background: #FFED00;
        }

        .c7 {
            left: 70%;
            top: 18%;
            animation-delay: 0.7s;
        }

        .c8 {
            left: 90%;
            top: 22%;
            animation-delay: 0.1s;
            background: #C4A006;
        }

        @keyframes confettiFall {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 1;
            }

            100% {
                transform: translateY(200px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Stars */
        .star {
            position: absolute;
            font-size: 1.8rem;
            color: #FFED00;
            animation: starTwinkle 2s ease-in-out infinite;
        }

        .s1 {
            left: 15%;
            top: 30%;
            animation-delay: 0s;
        }

        .s2 {
            right: 15%;
            top: 35%;
            animation-delay: 0.5s;
        }

        .s3 {
            left: 25%;
            bottom: 30%;
            animation-delay: 1s;
        }

        .s4 {
            right: 25%;
            bottom: 35%;
            animation-delay: 1.5s;
        }

        @keyframes starTwinkle {

            0%,
            100% {
                transform: scale(1) rotate(0deg);
                opacity: 0.8;
            }

            50% {
                transform: scale(1.3) rotate(180deg);
                opacity: 1;
            }
        }

        /* Photos */
        .photo {
            position: absolute;
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            animation: photoFloat 3s ease-in-out infinite;
        }

        .photo i {
            font-size: 1.5rem;
            color: #C4A006;
        }

        .p1 {
            left: 10%;
            top: 50%;
            animation-delay: 0s;
        }

        .p2 {
            right: 10%;
            top: 55%;
            animation-delay: 0.8s;
        }

        .p3 {
            left: 50%;
            top: 70%;
            animation-delay: 1.6s;
            transform: translateX(-50%);
        }

        @keyframes photoFloat {

            0%,
            100% {
                transform: translateY(0) rotate(-5deg);
            }

            50% {
                transform: translateY(-15px) rotate(5deg);
            }
        }

        /* Emotions */
        .emotion {
            position: absolute;
            font-size: 2rem;
            animation: emotionPulse 2s ease-in-out infinite;
        }

        .e1 {
            left: 35%;
            top: 45%;
            color: #E91E63;
            animation-delay: 0s;
        }

        .e2 {
            right: 35%;
            top: 50%;
            color: #F44336;
            animation-delay: 0.5s;
        }

        .e3 {
            left: 45%;
            bottom: 25%;
            color: #FFED00;
            animation-delay: 1s;
        }

        .e4 {
            right: 45%;
            bottom: 30%;
            color: #FFC107;
            animation-delay: 1.5s;
        }

        @keyframes emotionPulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.9;
            }

            50% {
                transform: scale(1.2);
                opacity: 1;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .ticket-tear-scene {
                width: 300px;
                height: 200px;
            }

            .ticket-half {
                width: 135px;
                height: 150px;
            }

            .ticket-logo-half {
                font-size: 1.5rem;
            }

            @keyframes tearLeft {

                0%,
                40% {
                    transform: translate(-100%, -50%) rotate(0deg);
                }

                60%,
                100% {
                    transform: translate(-130%, -50%) rotate(-8deg);
                }
            }

            @keyframes tearRight {

                0%,
                40% {
                    transform: translate(100%, -50%) rotate(0deg);
                }

                60%,
                100% {
                    transform: translate(130%, -50%) rotate(8deg);
                }
            }

            .star {
                font-size: 1.3rem;
            }

            .photo {
                width: 30px;
                height: 30px;
            }

            .photo i {
                font-size: 1.2rem;
            }

            .emotion {
                font-size: 1.5rem;
            }
        }

        .ticket-scene {
            width: 350px;
            height: 200px;
            perspective: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .ticket-container {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            animation: ticketSpin 8s ease-in-out infinite;
        }

        .ticket-face {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        /* Front: Physical Golden Ticket */
        .ticket-face.front {
            background: linear-gradient(135deg, #FFED00 0%, #C4A006 50%, #664E0D 100%);
            border: 3px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        /* Paper texture overlay */
        .ticket-face.front::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                repeating-linear-gradient(0deg,
                    transparent,
                    transparent 2px,
                    rgba(255, 255, 255, 0.03) 2px,
                    rgba(255, 255, 255, 0.03) 4px);
            pointer-events: none;
        }

        .ticket-content {
            padding: 20px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }

        .ticket-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .ticket-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: #664E0D;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            letter-spacing: 2px;
        }

        .ticket-stamp {
            width: 40px;
            height: 40px;
            border: 3px solid #664E0D;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #664E0D;
            font-weight: bold;
        }

        .ticket-body {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 10px;
        }

        .ticket-line {
            height: 3px;
            background: rgba(102, 78, 13, 0.3);
            border-radius: 2px;
        }

        .ticket-line.short {
            width: 60%;
        }

        .ticket-stub {
            border-top: 2px dashed rgba(102, 78, 13, 0.4);
            padding-top: 10px;
        }

        .perforations {
            display: flex;
            justify-content: space-between;
        }

        .perforations span {
            width: 6px;
            height: 6px;
            background: rgba(102, 78, 13, 0.3);
            border-radius: 50%;
        }

        /* Shine effect */
        .shine {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg,
                    transparent 30%,
                    rgba(255, 255, 255, 0.3) 50%,
                    transparent 70%);
            animation: shine 3s ease-in-out infinite;
        }

        @keyframes shine {

            0%,
            100% {
                transform: translateX(-100%) translateY(-100%);
            }

            50% {
                transform: translateX(100%) translateY(100%);
            }
        }

        /* Back: Holographic QR Code */
        .ticket-face.back {
            background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
            border: 3px solid #FFED00;
            transform: rotateY(180deg);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        /* Holographic effect */
        .ticket-face.back::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg,
                    transparent 30%,
                    rgba(255, 237, 0, 0.1) 50%,
                    transparent 70%);
            animation: holoSweep 2s ease-in-out infinite;
        }

        @keyframes holoSweep {

            0%,
            100% {
                transform: translateX(-100%);
            }

            50% {
                transform: translateX(100%);
            }
        }

        .qr-holo {
            position: relative;
            z-index: 2;
        }

        .qr-holo i {
            font-size: 6rem;
            color: #FFED00;
            filter: drop-shadow(0 0 20px rgba(255, 237, 0, 0.8));
            animation: qrPulse 2s ease-in-out infinite;
        }

        @keyframes qrPulse {

            0%,
            100% {
                transform: scale(1);
                filter: drop-shadow(0 0 20px rgba(255, 237, 0, 0.8));
            }

            50% {
                transform: scale(1.05);
                filter: drop-shadow(0 0 30px rgba(255, 237, 0, 1));
            }
        }

        .scan-line {
            position: absolute;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #FFED00, transparent);
            top: 0;
            left: 0;
            animation: scan 2s linear infinite;
            box-shadow: 0 0 10px #FFED00;
        }

        @keyframes scan {
            0% {
                top: 0;
            }

            100% {
                top: 100%;
            }
        }

        .holo-text {
            margin-top: 20px;
            font-size: 1.2rem;
            font-weight: 700;
            color: #FFED00;
            letter-spacing: 4px;
            text-shadow: 0 0 10px rgba(255, 237, 0, 0.8);
            z-index: 2;
        }

        /* Ticket rotation animation */
        @keyframes ticketSpin {

            0%,
            30% {
                transform: rotateY(0deg);
            }

            50%,
            80% {
                transform: rotateY(180deg);
            }

            100% {
                transform: rotateY(360deg);
            }
        }

        /* Golden Particles */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #FFED00;
            border-radius: 50%;
            box-shadow: 0 0 10px #FFED00;
            animation: particleFloat 3s ease-in-out infinite;
        }

        .particle:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .particle:nth-child(2) {
            top: 80%;
            left: 20%;
            animation-delay: 0.5s;
        }

        .particle:nth-child(3) {
            top: 40%;
            left: 85%;
            animation-delay: 1s;
        }

        .particle:nth-child(4) {
            top: 60%;
            left: 90%;
            animation-delay: 1.5s;
        }

        .particle:nth-child(5) {
            top: 10%;
            left: 50%;
            animation-delay: 2s;
        }

        .particle:nth-child(6) {
            top: 90%;
            left: 60%;
            animation-delay: 2.5s;
        }

        .particle:nth-child(7) {
            top: 30%;
            left: 15%;
            animation-delay: 0.8s;
        }

        .particle:nth-child(8) {
            top: 70%;
            left: 75%;
            animation-delay: 1.8s;
        }

        @keyframes particleFloat {

            0%,
            100% {
                transform: translateY(0) scale(1);
                opacity: 0.6;
            }

            50% {
                transform: translateY(-20px) scale(1.2);
                opacity: 1;
            }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .ticket-scene {
                width: 280px;
                height: 160px;
            }

            .ticket-logo {
                font-size: 1.4rem;
            }

            .ticket-stamp {
                width: 30px;
                height: 30px;
                font-size: 1.2rem;
            }

            .qr-holo i {
                font-size: 4rem;
            }

            .holo-text {
                font-size: 1rem;
            }
        }

        /* --- REFACTORED UTILITIES --- */
        .logo-img {
            height: 55px;
        }

        .hero-cta-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .hero-cube-container-style {
            perspective: 1200px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 500px;
        }

        .problem-subtitle {
            margin-top: 1rem;
            color: var(--color-text-secondary);
        }

        .icon-blue {
            color: var(--color-blue);
        }

        .mt-xl {
            margin-top: var(--space-xl);
        }

        .text-secondary {
            color: var(--color-text-secondary);
        }

        .badge-secondary {
            background: var(--color-text-secondary);
        }

        .plan-highlight {
            font-size: 0.9rem;
            color: var(--color-blue);
            font-weight: 600;
        }

        .badge-indigo {
            background: var(--color-indigo);
        }

        .price-custom {
            font-size: 2rem;
        }

        .plan-highlight-indigo {
            font-size: 0.9rem;
            color: var(--color-indigo);
            font-weight: 600;
        }

        .icon-gold {
            color: #FFD700;
        }

        .link-highlight {
            color: var(--color-blue);
            text-decoration: underline;
            font-weight: 600;
        }

        .author-role {
            font-size: 0.85rem;
            color: #666;
        }

        .relative-z2 {
            position: relative;
            z-index: 2;
        }

        .mb-4rem {
            margin-bottom: 4rem;
        }

        .modal-intro {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .modal-highlight-box {
            background: linear-gradient(135deg, rgba(196, 160, 6, 0.05), rgba(102, 78, 13, 0.05));
            padding: var(--space-md);
            border-radius: 16px;
            border-left: 4px solid #C4A006;
            margin-bottom: 2rem;
        }

        .modal-text {
            color: #374151;
            line-height: 1.7;
            margin: 0;
            font-size: 0.95rem;
        }

        .modal-text-mb {
            color: #4b5563;
            line-height: 1.7;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        .icon-pink {
            color: #EE2578;
        }

        .icon-pink-lg {
            color: #EE2578;
            font-size: 1.2rem;
            vertical-align: middle;
        }

        .modal-subtitle {
            margin-top: 2rem;
            color: #1f2937;
            font-size: 1.15rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .modal-text-indented {
            color: #4b5563;
            line-height: 1.7;
            margin-bottom: 2rem;
            padding-left: 1.5rem;
            font-size: 0.95rem;
        }

        .modal-text-mb-sm {
            color: #4b5563;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .modal-grid {
            display: grid;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .modal-card-blue {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.05));
            padding: var(--space-sm);
            border-radius: 12px;
            border-left: 3px solid #3B82F6;
        }

        .modal-card-yellow {
            background: linear-gradient(135deg, rgba(234, 179, 8, 0.1), rgba(202, 138, 4, 0.05));
            padding: var(--space-sm);
            border-radius: 12px;
            border-left: 3px solid #EAB308;
        }

        .modal-card-pink {
            background: linear-gradient(135deg, rgba(238, 37, 120, 0.1), rgba(190, 24, 93, 0.05));
            padding: var(--space-sm);
            border-radius: 12px;
            border-left: 3px solid #EE2578;
        }

        .modal-card-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: var(--space-xs);
        }

        .icon-blue-lg {
            color: #3B82F6;
            font-size: 1.5rem;
        }

        .icon-yellow-lg {
            color: #EAB308;
            font-size: 1.5rem;
        }

        .icon-pink-xl {
            color: #EE2578;
            font-size: 1.5rem;
        }

        .modal-card-title {
            color: #1f2937;
            font-size: 1rem;
        }

        .modal-card-subtitle {
            color: #6b7280;
            font-size: 0.85rem;
        }

        .modal-card-text {
            color: #4b5563;
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0;
        }

        .mission-box {
            background: linear-gradient(135deg, rgba(196, 160, 6, 0.08), rgba(102, 78, 13, 0.05));
            border: 1px solid rgba(196, 160, 6, 0.2);
        }

        .m-0 {
            margin: 0;
        }

        .modal-section-title {
            margin-top: 1.5rem;
            color: #1f2937;
            font-size: 1.1rem;
        }

        .modal-desc {
            color: #4b5563;
            margin-top: 0.5rem;
        }

        .relative-z1 {
            position: relative;
            z-index: 1;
        }

        .star-badge {
            display: inline-block;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            padding: var(--space-xs);
            border-radius: 50%;
            margin-bottom: 1rem;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        }

        .icon-white-lg {
            color: white;
            font-size: 1.5rem;
        }

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

        .cta-subtitle {
            opacity: 0.9;
            font-size: 1.1rem;
        }

        .grid-2-cols {
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .privacy-text {
            font-size: 0.85rem;
            color: #666;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.85rem;
        }

        /* --- RESPONSIVE TICKET CONTAINER --- */
        #ticket-wrapper {
            background: transparent;
            border: none;
            box-shadow: none;
            overflow: visible;
            width: 100%;
        }

        #ticket-container {
            width: 100%;
            height: 500px;
            position: relative;
        }

        @media (max-width: 768px) {
            #ticket-container {
                height: 350px;
                /* Smaller height for mobile */
            }
        }

        /* --- PERFORMANCE OPTIMIZATIONS --- */
        .galaxy-section,
        .pricing-section,
        .problem-section,
        .solution-section,
        .services-section {
            content-visibility: auto;
            contain-intrinsic-size: 1px 500px;
            /* Estimate height */
        }