::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #050403;
        }
        ::-webkit-scrollbar-thumb {
            background: #3d342b;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #d4af37;
        }
        .text-glow {
            text-shadow: 0 0 25px rgba(212, 175, 55, 0.5), 0 0 5px rgba(212, 175, 55, 0.8);
        }
        .gold-text-gradient {
            background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
            background-size: 220% auto;
            animation: gold-shimmer 11s linear infinite;
        }
        [data-reveal] {
            opacity: 0;
            transform: translate3d(0, 22px, 0) scale(0.992);
            filter: blur(4px);
            transition: opacity 0.62s ease, transform 0.72s ease, filter 0.72s ease;
        }
        [data-reveal].is-visible {
            opacity: 1;
            transform: translate3d(0, 0, 0) scale(1);
            filter: blur(0);
        }
        [data-reveal]::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
            opacity: 0;
            transform: scaleX(0.3);
            transition: opacity 0.72s ease, transform 0.72s ease;
            pointer-events: none;
        }
        [data-reveal].is-visible::before {
            opacity: 0.9;
            transform: scaleX(1);
        }
        [data-reveal]::after {
            content: "";
            position: absolute;
            top: 0;
            left: -38%;
            width: 32%;
            height: 100%;
            background: linear-gradient(90deg, rgba(212, 175, 55, 0), rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0));
            opacity: 0;
            pointer-events: none;
        }
        [data-reveal].is-visible::after {
            animation: section-sweep 0.9s ease-out 0.05s 1;
        }
        .bokeh-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            background: #000;
            overflow: hidden;
        }
        .bokeh-container::before,
        .bokeh-container::after {
            content: "";
            position: absolute;
            inset: -20%;
            border-radius: 50%;
            filter: blur(70px);
            opacity: 0.25;
            animation: ambient-glow 14s ease-in-out infinite;
        }
        .bokeh-container::before {
            background: radial-gradient(circle, rgba(212, 175, 55, 0.24) 0%, rgba(212, 175, 55, 0) 65%);
            left: -12%;
            top: -10%;
        }
        .bokeh-container::after {
            background: radial-gradient(circle, rgba(249, 219, 163, 0.16) 0%, rgba(249, 219, 163, 0) 70%);
            right: -8%;
            bottom: -12%;
            animation-delay: 2s;
        }
        .bokeh-image-layer {
            animation: bokeh-drift 16s ease-in-out infinite alternate;
            will-change: transform, opacity;
        }
        .bokeh-gradient-layer {
            animation: bokeh-breathe 8s ease-in-out infinite;
            will-change: opacity;
        }
        .bokeh-layer-1 {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 20%),
                radial-gradient(circle at 80% 20%, rgba(184, 134, 11, 0.1) 0%, transparent 25%),
                radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 10% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 90%, rgba(218, 165, 32, 0.15) 0%, transparent 30%);
            filter: blur(20px);
        }
        .bokeh-orb {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 200, 0.9), rgba(212, 175, 55, 0.4));
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
            filter: blur(1px);
            opacity: 0;
            animation: orb-float 8s infinite linear;
        }
        .ray-light {
            position: absolute;
            top: -20%;
            right: -10%;
            width: 60%;
            height: 150%;
            background: linear-gradient(to bottom left, rgba(212, 175, 55, 0.2) 0%, transparent 40%);
            transform: rotate(-15deg);
            filter: blur(40px);
            pointer-events: none;
        }
        .constellation-bg {
            background-image: var(--constellation);
            background-size: 550px 550px;
            opacity: 0.15;
        }
        @keyframes orb-float {
            0% { transform: translateY(100vh) scale(0.5); opacity: 0; }
            20% { opacity: 0.6; }
            80% { opacity: 0.6; }
            100% { transform: translateY(-10vh) scale(1.2); opacity: 0; }
        }
        @keyframes ambient-glow {
            0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.2; }
            50% { transform: translate3d(0, -10px, 0) scale(1.08); opacity: 0.34; }
        }
        @keyframes bokeh-drift {
            0% { transform: scale(1) translate3d(0, 0, 0); opacity: 0.34; }
            100% { transform: scale(1.06) translate3d(-1.8%, 1.5%, 0); opacity: 0.46; }
        }
        @keyframes bokeh-breathe {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.82; }
        }
        @keyframes gold-shimmer {
            0% { background-position: 0% 50%; }
            100% { background-position: 220% 50%; }
        }
        @keyframes section-sweep {
            0% { left: -38%; opacity: 0; }
            16% { opacity: 0.7; }
            100% { left: 112%; opacity: 0; }
        }
        .orb-1 { left: 10%; width: 5px; height: 5px; animation-duration: 12s; animation-delay: 0s; }
        .orb-2 { left: 30%; width: 8px; height: 8px; animation-duration: 15s; animation-delay: 2s; }
        .orb-3 { left: 60%; width: 4px; height: 4px; animation-duration: 10s; animation-delay: 5s; }
        .orb-4 { left: 85%; width: 6px; height: 6px; animation-duration: 18s; animation-delay: 1s; }
        .orb-5 { left: 50%; width: 3px; height: 3px; animation-duration: 20s; animation-delay: 8s; }
        .orb-6 { left: 15%; width: 7px; height: 7px; animation-duration: 14s; animation-delay: 6s; }
        .orb-7 { left: 95%; width: 5px; height: 5px; animation-duration: 11s; animation-delay: 3s; }
        .btn-gold-foil {
            background-image: linear-gradient(45deg, #996515 0%, #d4af37 25%, #f9dba3 50%, #d4af37 75%, #996515 100%);
            background-size: 200% auto;
            color: #050403;
            transition: 0.5s;
        }
        .btn-gold-foil:hover {
            background-position: right center;
            box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
        }
        .velvet-card-bg {
             background: radial-gradient(circle, #2a0a18 0%, #0f0c08 100%);
        }
        .hero-magic {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
            z-index: 1;
        }
        .hero-aura {
            position: absolute;
            border-radius: 9999px;
            filter: blur(48px);
            opacity: 0.42;
            animation: aura-drift 12s ease-in-out infinite;
        }
        .hero-aura--one {
            width: 280px;
            height: 280px;
            left: -80px;
            top: 6%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.45) 0%, rgba(212, 175, 55, 0) 70%);
        }
        .hero-aura--two {
            width: 320px;
            height: 320px;
            right: -110px;
            top: 20%;
            background: radial-gradient(circle, rgba(249, 219, 163, 0.28) 0%, rgba(249, 219, 163, 0) 75%);
            animation-delay: 1.5s;
        }
        .hero-aura--three {
            width: 260px;
            height: 260px;
            left: 35%;
            bottom: -120px;
            background: radial-gradient(circle, rgba(184, 134, 11, 0.34) 0%, rgba(184, 134, 11, 0) 74%);
            animation-delay: 3s;
        }
        .hero-utp-badge {
            background: linear-gradient(120deg, rgba(212, 175, 55, 0.28), rgba(249, 219, 163, 0.2));
            border: 1px solid rgba(249, 219, 163, 0.85);
            box-shadow: 0 0 26px rgba(212, 175, 55, 0.45);
            font-size: 15px;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            padding: 0.5rem 0.95rem;
            white-space: nowrap;
        }
        .hero-title-main {
            font-size: clamp(2.6rem, 6.2vw, 4.6rem);
            line-height: 1.05;
            margin: 0;
            text-shadow: 0 0 18px rgba(212, 175, 55, 0.16), 0 0 2px rgba(255, 255, 255, 0.16);
            animation: title-breathe 6.5s ease-in-out infinite;
        }
        .hero-title-magic {
            background-size: 260% auto;
            animation: title-breathe 6.5s ease-in-out infinite, title-gold-shift 12s linear infinite;
        }
        .hero-title-accent {
            margin-top: 0.75rem;
            font-family: "Playfair Display", serif;
            font-size: clamp(2.15rem, 5.6vw, 4.1rem);
            line-height: 1.08;
            font-weight: 500;
            font-style: italic;
            opacity: 0.88;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.18);
        }
        .hero-title-stack {
            position: relative;
            width: fit-content;
            max-width: 100%;
            padding: 0.85rem 1.05rem 0.8rem;
            border-radius: 18px;
            border: 1px solid rgba(212, 175, 55, 0.24);
            background: linear-gradient(120deg, rgba(11, 9, 6, 0.58), rgba(11, 9, 6, 0.2));
            box-shadow: inset 0 0 0 1px rgba(249, 219, 163, 0.05), 0 0 28px rgba(212, 175, 55, 0.08);
            overflow: hidden;
        }
        .hero-title-stack::before {
            content: "";
            position: absolute;
            inset: -1px;
            border-radius: inherit;
            background: conic-gradient(
                from 0deg,
                rgba(212, 175, 55, 0) 0deg,
                rgba(249, 219, 163, 0.45) 58deg,
                rgba(212, 175, 55, 0.05) 130deg,
                rgba(212, 175, 55, 0) 220deg,
                rgba(249, 219, 163, 0.48) 320deg,
                rgba(212, 175, 55, 0) 360deg
            );
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask-composite: exclude;
            -webkit-mask-composite: xor;
            padding: 1px;
            pointer-events: none;
            animation: title-frame-spin 8s linear infinite;
        }
        .hero-title-stack::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            pointer-events: none;
            box-shadow: inset 0 0 34px rgba(212, 175, 55, 0.06);
            animation: title-frame-glow 3.8s ease-in-out infinite;
        }
        .hero-photo-offer {
            display: none;
        }
        .hero-info-grid {
            display: grid;
            gap: 0.5rem;
        }
        .hero-info-card {
            margin: 0;
            border-left: 2px solid rgba(212, 175, 55, 0.34);
            background: linear-gradient(90deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.01));
            padding: 0.55rem 0.75rem 0.55rem 0.85rem;
            color: #cfc5b1;
            font-size: 15px;
            line-height: 1.55;
            font-style: italic;
        }
        .hero-mobile-photo {
            position: relative;
            margin-top: -0.1rem;
            margin-bottom: 0.15rem;
            display: flex;
            justify-content: center;
        }
        .hero-mobile-photo-frame {
            width: min(100%, 320px);
            aspect-ratio: 4 / 4.7;
            border-radius: 34px 34px 10px 10px;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.45);
            box-shadow: 0 0 28px rgba(212, 175, 55, 0.28), 0 0 70px rgba(0, 0, 0, 0.65);
            position: relative;
        }
        .hero-mobile-photo-frame::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(5, 4, 3, 0.58), rgba(5, 4, 3, 0.05));
            pointer-events: none;
        }
        .hero-main-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center bottom;
            display: block;
        }
        .ritual-photo-plinth {
            position: absolute;
            left: 50%;
            bottom: -12px;
            width: 88%;
            height: 16px;
            transform: translateX(-50%);
            border-radius: 9999px;
            border: 1px solid rgba(191, 149, 63, 0.46);
            background: linear-gradient(180deg, rgba(182, 138, 58, 0.35), rgba(89, 61, 18, 0.58) 44%, rgba(34, 24, 8, 0.76));
            box-shadow: inset 0 1px 1px rgba(252, 246, 186, 0.14), inset 0 -2px 6px rgba(0, 0, 0, 0.24), 0 8px 16px rgba(0, 0, 0, 0.4);
            z-index: 4;
            pointer-events: none;
        }
        .ritual-photo-plinth span {
            position: absolute;
            left: 50%;
            top: 50%;
            width: 92%;
            height: 46%;
            transform: translate(-50%, -50%);
            border-radius: 9999px;
            border: 1px solid rgba(252, 246, 186, 0.14);
            background: linear-gradient(180deg, rgba(252, 246, 186, 0.07), rgba(114, 79, 20, 0.16));
            box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.06);
        }
        .hero-copy-shell {
            position: relative;
            z-index: 3;
        }
        .service-cta-btn {
            width: 100%;
            height: 50px;
            border-radius: 10px;
            border: 1px solid rgba(212, 175, 55, 0.5);
            background: linear-gradient(90deg, rgba(24, 18, 6, 0.95), rgba(42, 31, 7, 0.92));
            color: #f0e6d2;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
        }
        .service-cta-btn:hover {
            transform: translateY(-1px);
            border-color: rgba(249, 219, 163, 0.82);
            box-shadow: 0 0 22px rgba(212, 175, 55, 0.25);
            color: #f9dba3;
        }
        .service-cta-btn:active {
            transform: scale(0.985);
            color: #f9dba3;
        }
        .mystic-sparkles {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }
        .mystic-fog {
            position: absolute;
            inset: -15%;
            pointer-events: none;
            background:
                radial-gradient(circle at 18% 24%, rgba(212, 175, 55, 0.14) 0%, rgba(212, 175, 55, 0) 44%),
                radial-gradient(circle at 78% 18%, rgba(249, 219, 163, 0.1) 0%, rgba(249, 219, 163, 0) 42%),
                radial-gradient(circle at 52% 78%, rgba(184, 134, 11, 0.09) 0%, rgba(184, 134, 11, 0) 48%);
            filter: blur(34px);
            animation: fog-drift 22s ease-in-out infinite alternate;
        }
        .mystic-sparkles span {
            position: absolute;
            width: 3px;
            height: 3px;
            border-radius: 9999px;
            background: rgba(249, 219, 163, 0.92);
            box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
            animation: spark-blink 3.6s ease-in-out infinite;
        }
        .mystic-sparkles span:nth-child(1) { left: 8%; top: 16%; animation-delay: 0.1s; }
        .mystic-sparkles span:nth-child(2) { left: 21%; top: 30%; animation-delay: 1.2s; }
        .mystic-sparkles span:nth-child(3) { left: 37%; top: 12%; animation-delay: 0.8s; }
        .mystic-sparkles span:nth-child(4) { left: 52%; top: 26%; animation-delay: 2.1s; }
        .mystic-sparkles span:nth-child(5) { left: 69%; top: 14%; animation-delay: 1.5s; }
        .mystic-sparkles span:nth-child(6) { left: 82%; top: 33%; animation-delay: 2.7s; }
        .mystic-sparkles span:nth-child(7) { left: 59%; top: 46%; animation-delay: 0.5s; }
        .mystic-sparkles span:nth-child(8) { left: 13%; top: 52%; animation-delay: 2.9s; }
        .mystic-comets {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
            opacity: 0.75;
        }
        .mystic-comets span {
            position: absolute;
            width: 170px;
            height: 2px;
            background: linear-gradient(90deg, rgba(249, 219, 163, 0), rgba(249, 219, 163, 0.95), rgba(249, 219, 163, 0));
            box-shadow: 0 0 14px rgba(249, 219, 163, 0.55);
            transform: rotate(-22deg);
            opacity: 0;
            animation: comet-pass 8s linear infinite;
        }
        .mystic-comets span:nth-child(1) { top: 14%; left: -22%; animation-delay: 0.5s; }
        .mystic-comets span:nth-child(2) { top: 41%; left: -28%; animation-delay: 3.8s; }
        .mystic-comets span:nth-child(3) { top: 69%; left: -30%; animation-delay: 6.6s; }
        .hero-contact-btn {
            height: 56px;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            font-family: "Playfair Display", serif;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-size: 13px;
            font-weight: 700;
            color: #f0e6d2;
            border: 1px solid rgba(212, 175, 55, 0.25);
            background: linear-gradient(100deg, rgba(12, 10, 8, 0.96), rgba(18, 14, 8, 0.92));
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
            padding: 0 0.9rem;
            min-width: 200px;
            flex: 1;
        }
        .hero-contact-btn svg,
        .hero-contact-btn .material-symbols-outlined {
            width: 20px;
            height: 20px;
            font-size: 20px;
        }
        .hero-contact-btn .max-logo-icon {
            width: 20px;
            height: 20px;
            object-fit: contain;
            display: block;
            border-radius: 4px;
        }
        .hero-contact-btn--wa {
            border-color: rgba(37, 211, 102, 0.42);
        }
        .hero-contact-btn--tg {
            border-color: rgba(0, 136, 204, 0.42);
        }
        .hero-contact-btn--max {
            border-color: rgba(255, 141, 0, 0.4);
        }
        .hero-contact-btn--call {
            border-color: rgba(212, 175, 55, 0.38);
        }
        .hero-contact-btn:hover {
            transform: translateY(-1px);
        }
        .hero-contact-btn:active {
            transform: scale(0.985);
        }
        .hero-contact-btn--wa:active {
            box-shadow: 0 0 22px rgba(37, 211, 102, 0.32);
        }
        .hero-contact-btn--tg:active {
            box-shadow: 0 0 22px rgba(0, 136, 204, 0.32);
        }
        .hero-contact-btn--max:active {
            box-shadow: 0 0 22px rgba(255, 141, 0, 0.32);
        }
        .hero-contact-btn--call:active {
            box-shadow: 0 0 22px rgba(212, 175, 55, 0.32);
        }
        .hero-contact-btn.is-active.hero-contact-btn--wa {
            box-shadow: 0 0 22px rgba(37, 211, 102, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
        }
        .hero-contact-btn.is-active.hero-contact-btn--tg {
            box-shadow: 0 0 22px rgba(0, 136, 204, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
        }
        .hero-contact-btn.is-active.hero-contact-btn--max {
            box-shadow: 0 0 22px rgba(255, 141, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
        }
        .hero-contact-btn.is-active.hero-contact-btn--call {
            box-shadow: 0 0 22px rgba(212, 175, 55, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
        }
        .testimonial-slider {
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 1rem;
        }
        .testimonial-window {
            min-height: 280px;
            border-radius: 14px;
            border: 1px solid rgba(212, 175, 55, 0.16);
            background: rgba(10, 8, 5, 0.94);
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.08);
            padding: 2rem;
        }
        .testimonial-card {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.22s ease, transform 0.22s ease;
        }
        .testimonial-card.is-fading {
            opacity: 0;
            transform: translateY(6px);
        }
        .testimonial-text {
            min-height: 140px;
        }
        .testimonial-nav {
            width: 42px;
            height: 42px;
            border-radius: 9999px;
            border: 1px solid rgba(212, 175, 55, 0.34);
            background: rgba(15, 12, 8, 0.92);
            color: #d4af37;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.25s ease;
        }
        .testimonial-nav:hover {
            box-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
            transform: translateY(-1px);
        }
        .testimonial-footer {
            margin-top: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }
        .testimonial-dots {
            display: flex;
            flex-wrap: wrap;
            gap: 0.45rem;
        }
        .testimonial-dot {
            width: 8px;
            height: 8px;
            border-radius: 9999px;
            background: rgba(212, 175, 55, 0.28);
            border: 1px solid rgba(212, 175, 55, 0.42);
            transition: all 0.25s ease;
        }
        .testimonial-dot.is-active {
            width: 20px;
            background: #d4af37;
            box-shadow: 0 0 12px rgba(212, 175, 55, 0.42);
        }
        @keyframes aura-drift {
            0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
            50% { transform: translate3d(0, -16px, 0) scale(1.08); }
        }
        @keyframes title-breathe {
            0%, 100% { text-shadow: 0 0 12px rgba(212, 175, 55, 0.14), 0 0 2px rgba(255, 255, 255, 0.14); }
            50% { text-shadow: 0 0 22px rgba(212, 175, 55, 0.25), 0 0 3px rgba(255, 255, 255, 0.18); }
        }
        @keyframes title-gold-shift {
            0% { background-position: 0% 50%; }
            100% { background-position: 260% 50%; }
        }
        @keyframes title-frame-spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        @keyframes title-frame-glow {
            0%, 100% { opacity: 0.35; }
            50% { opacity: 0.75; }
        }
        @keyframes spark-blink {
            0%, 100% { opacity: 0.2; transform: scale(0.7); }
            50% { opacity: 1; transform: scale(1.25); }
        }
        @keyframes fog-drift {
            0% { transform: translate3d(-1.2%, 0.8%, 0) scale(1); opacity: 0.48; }
            50% { transform: translate3d(1.4%, -1.1%, 0) scale(1.04); opacity: 0.62; }
            100% { transform: translate3d(-0.6%, 1.2%, 0) scale(1.02); opacity: 0.5; }
        }
        @keyframes comet-pass {
            0% { transform: translate3d(0, 0, 0) rotate(-22deg); opacity: 0; }
            12% { opacity: 0.8; }
            32% { opacity: 0; }
            100% { transform: translate3d(145vw, -22vh, 0) rotate(-22deg); opacity: 0; }
        }
        @media (max-width: 1023px) {
            .hero-title-main {
                font-size: clamp(1.85rem, 7.8vw, 2.35rem);
                line-height: 1.04;
                letter-spacing: 0.005em;
                text-shadow: 0 0 22px rgba(212, 175, 55, 0.22), 0 0 3px rgba(255, 255, 255, 0.18);
            }
            .hero-title-accent {
                font-size: clamp(0.98rem, 4.2vw, 1.18rem);
                line-height: 1.2;
                margin-top: 0.55rem;
                opacity: 0.82;
                text-shadow: none;
                font-style: normal;
                letter-spacing: 0.05em;
                text-transform: uppercase;
            }
            .hero-title-stack {
                margin-bottom: 0;
                max-width: 360px;
                padding: 0.48rem 0.7rem 0.5rem;
                border-radius: 16px;
                border-color: rgba(212, 175, 55, 0.18);
                background: linear-gradient(120deg, rgba(9, 8, 6, 0.46), rgba(9, 8, 6, 0.08));
                box-shadow: 0 0 22px rgba(212, 175, 55, 0.05);
                position: relative;
                z-index: 9;
            }
            .hero-title-stack::before {
                animation-duration: 10s;
                opacity: 0.8;
            }
            .hero-title-accent--desktop {
                display: none;
            }
            #hero {
                min-height: calc(100svh - 88px);
                padding-top: 1rem;
                padding-bottom: 0.65rem;
            }
            .hero-copy-shell {
                align-items: center;
                text-align: center;
                gap: 0.7rem;
            }
            .hero-mobile-photo-frame {
                width: 100%;
                max-width: none;
                aspect-ratio: auto;
                border-radius: 0;
                border: 0;
                box-shadow: none;
                background: transparent;
                overflow: visible;
                position: relative;
                z-index: 2;
            }
            .hero-mobile-photo {
                width: 100vw;
                margin-left: calc(50% - 50vw);
                margin-right: calc(50% - 50vw);
                margin-top: 0.02rem;
                margin-bottom: 0.25rem;
                position: relative;
                padding-bottom: 62px;
            }
            .hero-mobile-photo::before {
                content: "";
                position: absolute;
                left: 50%;
                top: 18%;
                width: 92%;
                height: 66%;
                transform: translateX(-50%);
                border-radius: 9999px;
                background:
                    radial-gradient(circle at 50% 35%, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0) 72%);
                filter: blur(15px);
                z-index: 0;
                pointer-events: none;
            }
            .hero-mobile-photo::after {
                content: "";
                position: absolute;
                left: 50%;
                bottom: 4px;
                width: 84%;
                height: 24px;
                transform: translateX(-50%);
                border-radius: 9999px;
                background:
                    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.32) 0%, rgba(212, 175, 55, 0.12) 44%, rgba(212, 175, 55, 0) 78%);
                box-shadow: 0 0 18px rgba(212, 175, 55, 0.2);
                z-index: 1;
                pointer-events: none;
            }
            .hero-photo-offer {
                display: inline-flex !important;
                align-items: center;
                justify-content: center;
                width: min(92%, 420px);
                min-height: 38px;
                position: absolute;
                left: 50%;
                bottom: 24px;
                transform: translateX(-50%);
                border-radius: 10px;
                padding: 0.44rem 0.72rem;
                font-family: "Playfair Display", serif;
                font-size: 11.5px;
                text-transform: uppercase;
                letter-spacing: 0.04em;
                line-height: 1.2;
                color: #f2d88f;
                text-shadow: 0 0 12px rgba(212, 175, 55, 0.26);
                border: 1px solid rgba(212, 175, 55, 0.42);
                background: linear-gradient(180deg, rgba(8, 7, 5, 0.8), rgba(6, 6, 5, 0.54));
                box-shadow: 0 0 22px rgba(212, 175, 55, 0.24);
                backdrop-filter: blur(4px);
                -webkit-backdrop-filter: blur(4px);
                z-index: 5;
                animation: none;
            }
            .hero-mobile-plinth {
                position: absolute;
                left: 50%;
                bottom: 5px;
                width: 82%;
                height: 13px;
                transform: translateX(-50%);
                border-radius: 9999px;
                border: 1px solid rgba(191, 149, 63, 0.44);
                background:
                    linear-gradient(180deg, rgba(178, 136, 55, 0.38), rgba(88, 61, 18, 0.56) 44%, rgba(35, 24, 8, 0.72));
                box-shadow:
                    inset 0 1px 1px rgba(252, 246, 186, 0.16),
                    inset 0 -2px 6px rgba(0, 0, 0, 0.22),
                    0 6px 12px rgba(0, 0, 0, 0.38);
                z-index: 3;
                pointer-events: none;
            }
            .hero-mobile-plinth span {
                position: absolute;
                left: 50%;
                top: 50%;
                width: 92%;
                height: 40%;
                transform: translate(-50%, -50%);
                border-radius: 9999px;
                border: 1px solid rgba(252, 246, 186, 0.12);
                background: linear-gradient(180deg, rgba(252, 246, 186, 0.06), rgba(114, 79, 20, 0.14));
                box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.05);
            }
            .hero-main-image {
                width: 100%;
                height: auto;
                object-fit: contain;
                object-position: center bottom;
                position: relative;
                z-index: 4;
                display: block;
                transition: transform 0.25s ease-out;
            }
            .hero-info-grid {
                margin-top: 0.15rem;
            }
            .hero-info-grid {
                width: 100%;
                max-width: 340px;
            }
            .hero-info-card {
                font-size: 14px;
                line-height: 1.5;
                padding: 0.5rem 0.7rem 0.5rem 0.8rem;
                text-align: left;
            }
            .hero-utp-badge {
                margin-top: 0.1rem;
                margin-bottom: 0.1rem;
                font-size: 13px;
                font-weight: 800;
                display: inline-flex;
            }
            .hero-cta-grid {
                display: grid;
                grid-template-columns: 1fr;
                width: 100%;
                max-width: 340px;
                gap: 0.55rem;
                padding-top: 0.15rem;
            }
            .hero-cta-grid > a {
                width: 100%;
                min-width: 0;
                height: 47px;
                font-size: 12px;
                letter-spacing: 0.06em;
            }
            [data-reveal] {
                transform: translate3d(0, 16px, 0) scale(0.994);
                filter: blur(3px);
            }
            .hero-contact-btn {
                height: 52px;
                border-radius: 10px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 0.55rem;
                font-family: "Playfair Display", serif;
                text-transform: uppercase;
                letter-spacing: 0.08em;
                font-size: 13px;
                font-weight: 700;
                color: #f0e6d2;
                border: 1px solid rgba(212, 175, 55, 0.22);
                box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
                transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
            }
            .hero-contact-btn svg,
            .hero-contact-btn .material-symbols-outlined {
                width: 20px;
                height: 20px;
                font-size: 20px;
            }
            .hero-contact-btn .max-logo-icon {
                width: 20px;
                height: 20px;
                object-fit: contain;
                display: block;
                border-radius: 4px;
            }
            .hero-contact-btn--wa {
                border-color: rgba(37, 211, 102, 0.45);
                background: linear-gradient(90deg, rgba(8, 42, 20, 0.9), rgba(5, 22, 11, 0.9));
            }
            .hero-contact-btn--tg {
                border-color: rgba(0, 136, 204, 0.45);
                background: linear-gradient(90deg, rgba(4, 38, 60, 0.9), rgba(3, 20, 33, 0.92));
            }
            .hero-contact-btn--max {
                border-color: rgba(255, 141, 0, 0.45);
                background: linear-gradient(90deg, rgba(56, 30, 4, 0.9), rgba(28, 16, 3, 0.92));
            }
            .hero-contact-btn--call {
                border-color: rgba(212, 175, 55, 0.38);
                background: linear-gradient(90deg, rgba(45, 34, 6, 0.9), rgba(20, 15, 4, 0.92));
            }
            .hero-contact-btn:active {
                transform: scale(0.985);
            }
            .hero-contact-btn--wa:active {
                box-shadow: 0 0 22px rgba(37, 211, 102, 0.32);
            }
            .hero-contact-btn--tg:active {
                box-shadow: 0 0 22px rgba(0, 136, 204, 0.32);
            }
            .hero-contact-btn--max:active {
                box-shadow: 0 0 22px rgba(255, 141, 0, 0.32);
            }
            .hero-contact-btn--call:active {
                box-shadow: 0 0 22px rgba(212, 175, 55, 0.32);
            }
            .mobile-safe-bottom {
                padding-bottom: 108px;
            }
            .mobile-fixed-cta {
                position: fixed;
                left: 50%;
                bottom: 0;
                transform: translateX(-50%);
                width: min(100%, 560px);
                z-index: 80;
                padding: 0.7rem 1.25rem calc(0.85rem + env(safe-area-inset-bottom));
                background: linear-gradient(to top, rgba(5, 4, 3, 0.98), rgba(5, 4, 3, 0.82));
                border-top: 1px solid rgba(212, 175, 55, 0.3);
                backdrop-filter: blur(8px);
                -webkit-backdrop-filter: blur(8px);
            }
            .mobile-fixed-cta__btn {
                height: 52px;
                width: 100%;
                border-radius: 10px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 0.45rem;
                text-transform: uppercase;
                font-family: "Playfair Display", serif;
                letter-spacing: 0.08em;
                font-weight: 800;
                font-size: 12px;
                color: #050403;
                background: linear-gradient(45deg, #996515 0%, #d4af37 26%, #f9dba3 52%, #d4af37 76%, #996515 100%);
                box-shadow: 0 0 25px rgba(212, 175, 55, 0.35);
                padding: 0 1rem;
            }
            .mobile-fixed-cta__btn.is-idle-pulse {
                animation: cta-idle-pulse 1.25s ease-out 1;
            }
            .mobile-fixed-cta__chevron {
                margin-left: auto;
                transition: transform 0.25s ease;
            }
            .mobile-fixed-cta.is-open .mobile-fixed-cta__chevron {
                transform: rotate(180deg);
            }
            .mobile-fixed-cta__panel {
                display: grid;
                gap: 0.55rem;
                margin-top: 0.6rem;
                max-height: 0;
                opacity: 0;
                overflow: hidden;
                transition: all 0.3s ease;
            }
            .mobile-fixed-cta.is-open .mobile-fixed-cta__panel {
                max-height: 300px;
                opacity: 1;
            }
            .mobile-fixed-cta__link {
                height: 48px;
                border-radius: 10px;
                display: inline-flex;
                align-items: center;
                justify-content: flex-start;
                gap: 0.65rem;
                font-size: 15px;
                text-transform: none;
                letter-spacing: 0.03em;
                font-weight: 700;
                border: 1px solid rgba(212, 175, 55, 0.22);
                color: #f0e6d2;
                background: rgba(9, 8, 6, 0.94);
                padding: 0 0.8rem;
                box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
                opacity: 0;
                transform: translateY(8px) scale(0.985);
                transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.22s ease;
            }
            .mobile-fixed-cta.is-open .mobile-fixed-cta__link {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
            .mobile-fixed-cta.is-open .mobile-fixed-cta__link:nth-child(1) { transition-delay: 0.03s; }
            .mobile-fixed-cta.is-open .mobile-fixed-cta__link:nth-child(2) { transition-delay: 0.09s; }
            .mobile-fixed-cta.is-open .mobile-fixed-cta__link:nth-child(3) { transition-delay: 0.15s; }
            .mobile-fixed-cta.is-open .mobile-fixed-cta__link:nth-child(4) { transition-delay: 0.21s; }
            .mobile-fixed-cta__link:active {
                transform: translateY(0) scale(0.985);
            }
            .mobile-fixed-cta__link--wa {
                border-color: rgba(37, 211, 102, 0.45);
                background: linear-gradient(90deg, rgba(8, 42, 20, 0.9), rgba(5, 22, 11, 0.9));
            }
            .mobile-fixed-cta__link--wa:active {
                box-shadow: 0 0 20px rgba(37, 211, 102, 0.28);
            }
            .mobile-fixed-cta__link--wa.is-active {
                box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
            }
            .mobile-fixed-cta__link--tg {
                border-color: rgba(0, 136, 204, 0.45);
                background: linear-gradient(90deg, rgba(4, 38, 60, 0.9), rgba(3, 20, 33, 0.92));
            }
            .mobile-fixed-cta__link--tg:active {
                box-shadow: 0 0 20px rgba(0, 136, 204, 0.28);
            }
            .mobile-fixed-cta__link--tg.is-active {
                box-shadow: 0 0 20px rgba(0, 136, 204, 0.3);
            }
            .mobile-fixed-cta__link--max {
                border-color: rgba(255, 141, 0, 0.45);
                background: linear-gradient(90deg, rgba(56, 30, 4, 0.9), rgba(28, 16, 3, 0.92));
            }
            .mobile-fixed-cta__link--max:active {
                box-shadow: 0 0 20px rgba(255, 141, 0, 0.28);
            }
            .mobile-fixed-cta__link--max.is-active {
                box-shadow: 0 0 20px rgba(255, 141, 0, 0.3);
            }
            .mobile-fixed-cta__link--call {
                border-color: rgba(212, 175, 55, 0.38);
                background: linear-gradient(90deg, rgba(45, 34, 6, 0.9), rgba(20, 15, 4, 0.92));
            }
            .mobile-fixed-cta__link--call:active {
                box-shadow: 0 0 20px rgba(212, 175, 55, 0.28);
            }
            .mobile-fixed-cta__link--call.is-active {
                box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
            }
            .mobile-fixed-cta__link-icon {
                width: 30px;
                height: 30px;
                border-radius: 9999px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border: 1px solid rgba(255, 255, 255, 0.18);
                background: rgba(255, 255, 255, 0.06);
                flex: 0 0 auto;
            }
            .mobile-fixed-cta__link-icon .material-symbols-outlined {
                font-size: 17px;
            }
            .mobile-fixed-cta__link-icon svg {
                width: 17px;
                height: 17px;
                display: block;
            }
            .mobile-fixed-cta__link-icon .max-logo-icon {
                width: 17px;
                height: 17px;
                object-fit: contain;
                display: block;
                border-radius: 4px;
            }
            .mobile-fixed-cta__link-text {
                font-family: "Playfair Display", serif;
                font-size: 13px;
                text-transform: uppercase;
                letter-spacing: 0.08em;
            }
            .mobile-fixed-cta__link-arrow {
                margin-left: auto;
                font-size: 16px;
                opacity: 0.75;
            }
            .testimonial-slider {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }
            .testimonial-window {
                min-height: 250px;
                padding: 1.25rem;
            }
            .testimonial-text {
                min-height: 120px;
                font-size: 15px;
                line-height: 1.65;
            }
            .testimonial-nav {
                display: none;
            }
            .testimonial-footer {
                margin-top: 0.75rem;
            }
            .process-step-icon {
                width: 92px;
                height: 92px;
            }
            .process-step-icon .material-symbols-outlined {
                font-size: 34px;
            }
        }
        @keyframes cta-idle-pulse {
            0% { transform: scale(1); box-shadow: 0 0 24px rgba(212, 175, 55, 0.34); }
            45% { transform: scale(1.03); box-shadow: 0 0 36px rgba(212, 175, 55, 0.48); }
            100% { transform: scale(1); box-shadow: 0 0 25px rgba(212, 175, 55, 0.35); }
        }
        @media (prefers-reduced-motion: reduce) {
            .gold-text-gradient,
            .bokeh-image-layer,
            .bokeh-gradient-layer,
            .mystic-fog,
            .mystic-comets span,
            .mystic-sparkles span,
            .hero-title-stack::before,
            .hero-title-stack::after {
                animation: none !important;
            }
            [data-reveal],
            .hero-main-image,
            .hero-title-stack {
                transition: none !important;
                transform: none !important;
                filter: none !important;
            }
        }
