
        /* ---------- GOLD SHIMMER THEME · PURE GOLD SHIMMER ---------- */
        :root {
            --mist: #FAF7F2;
            --cloud: #F2EDE5;
            --cream: #FFFBF5;
            --gold-shimmer: #F0B400;      /* pure shimmer gold */
            --gold-shimmer-light: #FFD966;  /* light shimmer */
            --gold-shimmer-dark: #D4A200;   /* deep shimmer */
            --gold-muted: #B8860B;          /* antique gold for contrast */
            --charcoal-soft: #2C2822;
            --taupe: #6B6258;
            --shadow-dream: 0 30px 50px -25px rgba(240, 180, 0, 0.25);
            --border-dream: 1px solid rgba(240, 180, 0, 0.2);
        }

        /* shimmer animation */
        @keyframes shimmerGold {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }

        .shimmer-text {
            background: linear-gradient(145deg, #F0B400, #FFD966, #F0B400, #FFD966);
            background-size: 300% auto;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: shimmerGold 5s linear infinite;
        }

        body {
            background-color: var(--mist);
            color: #3D352C;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, .h1, .h2, .h3 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            color: #2A241E;
            letter-spacing: -0.01em;
        }

        h2 {
            font-size: 3.4rem;
            margin-bottom: 1rem;
        }

        .gold-caption {
            color: var(--gold-muted);
            text-transform: uppercase;
            letter-spacing: 6px;
            font-size: 0.75rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        /* ---------- DREAMABLE ANIMATIONS ---------- */
        @keyframes floatDream {
            0% { transform: translateY(0px) scale(1); }
            50% { transform: translateY(-8px) scale(1.02); }
            100% { transform: translateY(0px) scale(1); }
        }

        @keyframes fadeInSoft {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes glowPulse {
            0% { box-shadow: 0 0 0 0 rgba(240, 180, 0, 0.2); }
            50% { box-shadow: 0 0 25px 10px rgba(240, 180, 0, 0.15); }
            100% { box-shadow: 0 0 0 0 rgba(240, 180, 0, 0.2); }
        }

        .animate-float {
            animation: floatDream 8s ease-in-out infinite;
        }

        .animate-fadeIn {
            animation: fadeInSoft 1.2s ease-out forwards;
        }

        .animate-glow {
            animation: glowPulse 4s ease-in-out infinite;
        }

        /* preserve FREE TRIAL button exactly as original but with shimmer gold */
        .btn-outline-gold {
            background: transparent;
            border: 2px solid var(--gold-shimmer);
            color: var(--gold-muted);
            padding: 0.8rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 1.2px;
            transition: 0.3s;
            text-decoration: none;
            display: inline-block;
            font-size: 0.9rem;
            text-transform: uppercase;
        }
        .btn-outline-gold:hover {
            background: var(--gold-shimmer);
            color: #2A241E;
            border-color: var(--gold-shimmer);
            transform: translateY(-2px);
            box-shadow: 0 15px 25px -10px rgba(240, 180, 0, 0.3);
        }

        .btn-solid-gold {
            background: var(--gold-shimmer);
            border: 2px solid var(--gold-shimmer);
            color: #2A241E;
            padding: 0.8rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 1.2px;
            transition: 0.3s;
            text-decoration: none;
            display: inline-block;
            font-size: 0.9rem;
            text-transform: uppercase;
            box-shadow: 0 10px 20px -8px rgba(240, 180, 0, 0.3);
        }
        .btn-solid-gold:hover {
            background: #E5B000;
            border-color: #E5B000;
            transform: translateY(-2px);
            box-shadow: 0 18px 28px -10px rgba(240, 180, 0, 0.4);
        }

        /* navbar */
        .navbar-dream {
            background: rgba(250, 247, 242, 0.8);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(240, 180, 0, 0.2);
            padding: 1rem 2rem;
        }
        .navbar-dream .nav-link {
            color: #5A4F44;
            font-weight: 500;
            margin: 0 0.2rem;
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
            transition: 0.3s;
        }
        .navbar-dream .nav-link:hover,
        .navbar-dream .nav-link.active {
            background: rgba(240, 180, 0, 0.1);
            color: var(--gold-muted);
        }
        .navbar-dream .brand {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.3rem;
            font-weight: 700;
            color: var(--gold-muted);
            text-decoration: none;
            letter-spacing: 1px;
            background: linear-gradient(145deg, #F0B400, #FFD966, #F0B400);
            background-size: 300% auto;
            -webkit-background-clip: text;
            background-clip: text;
            animation: shimmerGold 5s linear infinite;
        }

        /* hero - with shimmer overlay */
        .hero-dream {
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            background: linear-gradient(125deg, rgba(250, 247, 242, 0.9), rgba(242, 237, 229, 0.8));
            margin-top: 80px;
            overflow: hidden;
        }
        
        /* Hero background image in HTML instead of CSS */
        .hero-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

        .hero-content {
            max-width: 900px;
            padding: 2rem;
            color: #2A241E;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 5.5rem;
            color: #2A241E;
            font-weight: 700;
            opacity: 0;
            animation: fadeInSoft 1.4s ease-out 0.2s forwards;
            background: linear-gradient(145deg, #F0B400, #D4A200, #F0B400, #FFD966);
            background-size: 300% auto;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: fadeInSoft 1.4s ease-out 0.2s forwards, shimmerGold 5s linear infinite;
        }

        .hero-content .gold-caption {
            color: var(--gold-muted);
            letter-spacing: 8px;
            opacity: 0;
            animation: fadeInSoft 1.4s ease-out 0s forwards;
        }

        .hero-content p {
            opacity: 0;
            animation: fadeInSoft 1.4s ease-out 0.4s forwards;
            color: #4A4037;
        }

        .hero-buttons {
            display: flex;
            gap: 1.8rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2.5rem;
            opacity: 0;
            animation: fadeInSoft 1.4s ease-out 0.6s forwards;
        }

        /* stats */
        .stats-dream {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            padding: 2.2rem 2rem;
            border-radius: 120px;
            box-shadow: var(--shadow-dream);
            margin: -3rem auto 4.5rem;
            max-width: 1100px;
            position: relative;
            z-index: 10;
            border: 1px solid rgba(240, 180, 0, 0.3);
            animation: fadeInSoft 1.4s ease-out 0.8s both;
        }
        .stat-item {
            text-align: center;
            flex: 1 1 120px;
            transition: 0.3s;
        }
        .stat-item:hover {
            transform: scale(1.05);
        }
        .stat-item h4 {
            font-size: 2.1rem;
            color: var(--gold-muted);
            font-family: 'Cormorant Garamond', serif;
            margin-bottom: 0.2rem;
        }
        .stat-item p {
            color: #6B6258;
            text-transform: uppercase;
            font-size: 0.7rem;
            letter-spacing: 2px;
        }
        .tooltip-luka {
            position: relative;
            cursor: help;
        }
        .tooltip-luka:hover::after {
            content: attr(data-tooltip);
            position: absolute;
            background: var(--gold-muted);
            color: white;
            font-size: 0.75rem;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            white-space: nowrap;
            bottom: 130%;
            left: 50%;
            transform: translateX(-50%);
        }

        /* feature cards */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }
        .feature-card {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(8px);
            padding: 2.5rem 1.5rem;
            border-radius: 50px;
            box-shadow: 0 20px 35px -15px rgba(0,0,0,0.05);
            border: 1px solid rgba(240, 180, 0, 0.25);
            transition: 0.4s;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 0%, rgba(240, 180, 0, 0.1), transparent 70%);
            opacity: 0;
            transition: 0.4s;
        }
        .feature-card:hover::before {
            opacity: 1;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 45px -15px rgba(240, 180, 0, 0.2);
            border-color: rgba(240, 180, 0, 0.5);
            background: rgba(255, 255, 255, 0.8);
        }
        .feature-card img {
            width: 85px;
            height: auto;
            margin-bottom: 1.5rem;
            filter: drop-shadow(0 10px 15px rgba(240, 180, 0, 0.15));
        }

        /* pricing cards */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }
        .pricing-card {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(240, 180, 0, 0.25);
            border-radius: 50px;
            padding: 2.5rem 1.5rem;
            transition: 0.4s;
            text-align: center;
            box-shadow: 0 15px 30px -15px rgba(0,0,0,0.05);
        }
        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-dream);
            border-color: rgba(240, 180, 0, 0.5);
            background: rgba(255, 255, 255, 0.8);
        }
        .pricing-card .price {
            font-size: 3.5rem;
            font-family: 'Cormorant Garamond', serif;
            color: var(--gold-muted);
            line-height: 1;
            background: linear-gradient(145deg, #F0B400, #D4A200, #F0B400);
            background-size: 300% auto;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: shimmerGold 5s linear infinite;
        }

        /* panels */
        .panel-dream {
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(14px);
            border: 1px solid rgba(240, 180, 0, 0.25);
            border-radius: 90px;
            padding: 4.5rem 2.5rem;
            box-shadow: var(--shadow-dream);
            margin: 4rem 0;
            position: relative;
            overflow: hidden;
        }
        .panel-dream::after {
            content: '';
            position: absolute;
            top: -30%;
            right: -30%;
            width: 80%;
            height: 80%;
            background: radial-gradient(circle, rgba(240, 180, 0, 0.1), transparent 70%);
            pointer-events: none;
            border-radius: 50%;
        }

        /* FAQ */
        .faq-item {
            border-bottom: 1px solid rgba(240, 180, 0, 0.2);
            padding: 1.5rem 0;
            transition: 0.3s;
        }
        .faq-item:hover {
            padding-left: 15px;
            border-bottom-color: var(--gold-shimmer);
        }
        .faq-question {
            font-size: 1.25rem;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            color: #3D352C;
            font-family: 'Cormorant Garamond', serif;
        }
        .faq-question i {
            transition: 0.3s;
        }
        .faq-question:hover i {
            transform: rotate(180deg);
            color: var(--gold-shimmer);
        }

        /* footer */
        .footer-dream {
            background: #2A241E;
            color: #C4B5A3;
            padding: 4.5rem 0 2rem;
            margin-top: 5rem;
            position: relative;
        }
        .footer-dream::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold-shimmer), transparent);
        }
        .footer-dream a {
            color: #A69480;
            text-decoration: none;
            transition: 0.3s;
            display: inline-block;
            margin-bottom: 0.5rem;
        }
        .footer-dream a:hover {
            color: var(--gold-shimmer-light);
            transform: translateX(5px);
        }
        .footer-dream h5 {
            color: #E0D2C2;
            font-family: 'Cormorant Garamond', serif;
        }

        /* floating buttons */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            border: 2px solid white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            z-index: 99;
            animation: floatDream 6s ease-in-out infinite;
            transition: 0.3s;
        }
        .whatsapp-float:hover {
            transform: scale(1.1);
        }
        .back-to-top {
            position: fixed;
            bottom: 110px;
            right: 30px;
            background: var(--gold-shimmer);
            color: #2A241E;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            z-index: 99;
            box-shadow: 0 5px 20px rgba(240, 180, 0, 0.3);
            animation: floatDream 7s ease-in-out infinite;
        }
    