/* ============================================
   PEARL Events — Premium Design System v2
   Dark · Gold · Magenta · DRAMATIC
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-bg: #030304;
    --color-bg-elevated: #08080a;
    --color-bg-card: rgba(15, 15, 18, 0.8);
    --color-bg-card-hover: rgba(25, 25, 30, 0.9);
    --color-surface: #0e0e12;
    --color-border: rgba(212, 175, 55, 0.15);
    --color-border-subtle: rgba(255, 255, 255, 0.04);

    --color-gold: #d4af37;
    --color-gold-light: #e8cc6e;
    --color-gold-dark: #b8962e;
    --color-gold-glow: rgba(212, 175, 55, 0.15);

    --color-magenta: #a81d84;
    --color-pink: #ea396f;
    --color-purple: #6b21a8;
    --color-cyan: #22d3ee;

    --color-text: #e8e0d0;
    --color-text-muted: #8a8278;
    --color-text-dim: #5a554e;
    --color-white: #ffffff;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    --shadow-gold: 0 4px 30px rgba(212, 175, 55, 0.2);
    --shadow-glow: 0 0 60px rgba(212, 175, 55, 0.12);
    --shadow-magenta: 0 0 60px rgba(168, 29, 132, 0.15);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    --container-width: 1200px;
    --container-narrow: 800px;
    --nav-height: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover { color: var(--color-gold-light); }

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.15;
    color: var(--color-white);
}

h1 { font-size: clamp(3rem, 7vw, 5.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.5rem); }

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}
.container--narrow { max-width: var(--container-narrow); }

section, .section {
    padding: 120px 0;
    position: relative;
}
.section--tight { padding: 70px 0; }

/* --- Global Ambient Glow --- */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

/* ============================
   NAVIGATION
   ============================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    background: transparent;
    transition: all var(--transition-base);
}

.nav.scrolled {
    background: rgba(3, 3, 4, 0.75);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.06);
}

.nav__container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.nav__logo img { width: 40px; height: 40px; border-radius: 8px; }
.nav__logo em {
    font-style: italic;
    color: var(--color-gold);
    font-weight: 400;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav__link {
    display: block;
    padding: 8px 16px;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.nav__link:hover,
.nav__link.active {
    color: var(--color-gold);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-magenta), var(--color-gold));
    transition: all var(--transition-base);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 60%;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
    transition: all var(--transition-base);
}
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================
   SCENES — Fullscreen Cinematic
   ============================ */
.scene {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.scene__bg {
    position: absolute;
    inset: 0;
}

.scene__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.2) saturate(1.3);
}

.scene__vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(3,3,4,0.85) 100%);
    z-index: 1;
}

.scene__particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.scene__content {
    position: relative;
    z-index: 3;
    padding: 0 24px;
}

/* Hero Intro — Massive Typography */
.hero-intro {
    margin-bottom: 32px;
}

.hero-intro__line {
    display: block;
    overflow: hidden;
}

.hero-intro__line span {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--color-white);
    transform: translateY(120%);
    animation: lineReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-intro__line--outline span {
    -webkit-text-stroke: 2px var(--color-gold);
    color: transparent;
    background: linear-gradient(135deg, transparent 30%, rgba(212,175,55,0.15) 50%, transparent 70%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    animation: lineReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards, shimmerOutline 4s ease-in-out infinite 1.2s;
}

@keyframes lineReveal {
    to { transform: translateY(0); }
}

@keyframes shimmerOutline {
    0%, 100% { background-position: 200% center; }
    50% { background-position: -200% center; }
}

.scene__tagline {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.scene__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 1.1s;
}

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

/* Scroll Hint */
.scene__scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(212,175,55,0.3);
    border-radius: 12px;
}

.scene__scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 4px;
    margin: 6px auto 0;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(14px); opacity: 0.3; }
}

/* Glass Button */
.btn--glass {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
}

.btn--glass:hover {
    background: rgba(255,255,255,0.12);
    color: var(--color-white);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}

/* Glow Button */
.btn--glow {
    animation: btnGradient 4s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(212,175,55,0.2), 0 0 60px rgba(168,29,132,0.1);
}

.btn--glow:hover {
    box-shadow: 0 0 40px rgba(212,175,55,0.35), 0 0 80px rgba(168,29,132,0.2);
}

/* ============================
   BIG STATEMENT
   ============================ */
.scene--statement {
    background: var(--color-bg);
    min-height: 70vh;
    padding: 80px 0;
}

.big-statement {
    font-size: clamp(2.8rem, 7vw, 6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 500;
}

.big-statement__line {
    display: block;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.big-statement__line.visible {
    opacity: 1;
    transform: translateY(0);
}

.big-statement__line--accent {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-pink) 50%, var(--color-gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 5s ease-in-out infinite;
    font-style: italic;
}

/* ============================
   HORIZONTAL SHOWCASE
   ============================ */
.scene--showcase {
    min-height: auto;
    padding: 80px 0;
    background: var(--color-bg);
    overflow: hidden;
    display: block;
    text-align: left;
}

.showcase {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.showcase::-webkit-scrollbar { display: none; }
.showcase:active { cursor: grabbing; }

.showcase__track {
    display: flex;
    gap: 24px;
    padding: 0 calc((100vw - 1100px) / 2);
    width: max-content;
}

@media (max-width: 1200px) {
    .showcase__track { padding: 0 24px; }
}

.showcase__item {
    width: 380px;
    flex-shrink: 0;
    position: relative;
}

.showcase__img {
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.showcase__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.85);
}

.showcase__item:hover .showcase__img img {
    transform: scale(1.08);
    filter: brightness(1);
}

.showcase__label {
    margin-top: 16px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-style: italic;
    text-align: center;
}

/* ============================
   NUMBERS GRID
   ============================ */
.scene--numbers {
    min-height: auto;
    padding: 100px 0;
    background: var(--color-bg-elevated);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.number-card {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.number-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--color-border), transparent);
}

.number-card:last-child::after { display: none; }

.number-card__value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-gold), var(--color-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.number-card__label {
    font-size: 0.95rem;
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 4px;
}

.number-card__detail {
    font-size: 0.8rem;
    color: var(--color-text-dim);
}

/* ============================
   SERVICE ROWS — Stacked
   ============================ */
.scene--services {
    min-height: auto;
    padding: 100px 0;
    background: var(--color-bg);
    display: block;
    text-align: left;
}

.services-stack {
    max-width: 900px;
    margin: 0 auto;
}

.service-row {
    display: grid;
    grid-template-columns: 60px 1fr 2fr 40px;
    gap: 24px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--color-border-subtle);
    transition: all var(--transition-base);
    cursor: default;
}

.service-row:hover {
    padding-left: 12px;
    border-color: var(--color-border);
}

.service-row__num {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 600;
}

.service-row__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.service-row:hover .service-row__title {
    color: var(--color-gold);
}

.service-row__desc {
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

.service-row__arrow {
    font-size: 1.2rem;
    color: var(--color-text-dim);
    transition: all var(--transition-base);
    opacity: 0;
}

.service-row:hover .service-row__arrow {
    opacity: 1;
    color: var(--color-gold);
    transform: translateX(4px);
}

/* ============================
   LOCATION REVEAL
   ============================ */
.scene--location {
    min-height: auto;
    padding: 0;
}

.location-reveal {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 80vh;
}

.location-reveal__image {
    position: relative;
    overflow: hidden;
}

.location-reveal__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.location-reveal__image:hover img {
    transform: scale(1.04);
}

/* Clip-path reveal */
.reveal-clip {
    clip-path: inset(100% 0 0 0);
    transition: clip-path 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-clip.visible {
    clip-path: inset(0 0 0 0);
}

.location-reveal__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 60px;
    background: var(--color-bg-elevated);
    text-align: left;
}

.location-reveal__content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.05;
}

.location-reveal__content p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ============================
   TESTIMONIAL MARQUEE
   ============================ */
.scene--voices {
    min-height: auto;
    padding: 100px 0 0;
    background: var(--color-bg);
    overflow: hidden;
    display: block;
    text-align: left;
}

.testimonial-marquee {
    overflow: hidden;
    padding: 40px 0 100px;
    position: relative;
}

.testimonial-marquee::before,
.testimonial-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.testimonial-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg), transparent);
}
.testimonial-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg), transparent);
}

.testimonial-marquee__track {
    display: flex;
    gap: 24px;
    animation: marquee 50s linear infinite;
    width: max-content;
}

.testimonial-marquee__track:hover {
    animation-play-state: paused;
}

.testimonial-marquee__card {
    width: 400px;
    flex-shrink: 0;
    background: var(--color-bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-base);
}

.testimonial-marquee__card:hover {
    border-color: var(--color-border);
    transform: translateY(-4px);
}

.testimonial-marquee__stars {
    color: var(--color-gold);
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
    text-shadow: 0 0 10px rgba(212,175,55,0.3);
}

.testimonial-marquee__card blockquote {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-marquee__author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-marquee__author strong {
    color: var(--color-white);
    font-size: 0.9rem;
}

.testimonial-marquee__author span {
    color: var(--color-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================
   FINAL CTA SCENE
   ============================ */
.scene--cta {
    min-height: 80vh;
}

.scene--cta .scene__bg img {
    filter: brightness(0.15) saturate(1.2);
    animation: heroZoom 25s ease-in-out infinite alternate;
}

/* ============================
   LEGACY: Keep hero styles for subpages
   ============================ */
.hero {
    /* Kept for backward compat with subpage hero references if any */
}

/* HERO — The Showstopper (subpages still use this) */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.25) saturate(1.2);
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.1) translate(0, 0); }
    100% { transform: scale(1.15) translate(-1%, -1%); }
}

/* Animated gradient orbs */
.hero__orbs {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    mix-blend-mode: screen;
    animation: orbFloat 15s ease-in-out infinite;
}

.hero__orb--gold {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    top: 20%;
    right: -10%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.hero__orb--magenta {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 29, 132, 0.25) 0%, transparent 70%);
    bottom: -15%;
    left: -10%;
    animation-delay: -5s;
    animation-duration: 22s;
}

.hero__orb--pink {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(234, 57, 111, 0.2) 0%, transparent 70%);
    top: 10%;
    left: 30%;
    animation-delay: -10s;
    animation-duration: 16s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(40px, 30px) scale(1.05); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(3, 3, 4, 0.6) 70%),
        linear-gradient(to bottom, rgba(3, 3, 4, 0.2) 0%, rgba(3, 3, 4, 0.8) 100%);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 24px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(12px);
}

.hero__badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 12px var(--color-gold);
}

.hero h1 {
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold-light) 40%, var(--color-pink) 70%, var(--color-white) 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s ease-in-out infinite;
    line-height: 1.05;
}

.hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255,255,255,0.6);
    margin-bottom: 44px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.3);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.3); transform-origin: top; }
}

/* ============================
   BUTTONS — Dramatic
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 50%, var(--color-magenta) 100%);
    background-size: 200% auto;
    color: var(--color-white);
    box-shadow: 0 4px 24px rgba(212, 175, 55, 0.25), 0 0 0 0 rgba(212, 175, 55, 0);
    animation: btnGradient 4s ease-in-out infinite;
}

@keyframes btnGradient {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.btn--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.35), 0 0 20px rgba(168, 29, 132, 0.15);
    color: var(--color-white);
}

.btn--primary::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-magenta), var(--color-gold));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-base);
    animation: borderRotate 3s linear infinite;
}

.btn--outline {
    background: rgba(255,255,255,0.03);
    color: var(--color-gold);
    border: 1px solid rgba(212, 175, 55, 0.25);
    backdrop-filter: blur(12px);
}

.btn--outline:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--color-gold);
    color: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.12);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text);
    border: 1px solid var(--color-border-subtle);
}
.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ============================
   SECTION HEADERS
   ============================ */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 72px;
}

.section-header__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--color-gold), var(--color-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--color-text-muted); font-size: 1.1rem; }

.divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-magenta), var(--color-gold), var(--color-magenta));
    margin: 20px auto;
    border-radius: 2px;
    animation: dividerGlow 3s ease-in-out infinite;
}

@keyframes dividerGlow {
    0%, 100% { opacity: 0.6; width: 60px; }
    50% { opacity: 1; width: 100px; }
}

/* ============================
   BENTO CARDS — Glassmorphism + Glow
   ============================ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.bento-card {
    position: relative;
    background: var(--color-bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    overflow: hidden;
    transition: all var(--transition-base);
}

/* Animated gradient border on hover */
.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, transparent 0%, var(--color-gold) 50%, var(--color-magenta) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

/* Hover glow spot */
.bento-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    top: var(--mouse-y, -100px);
    left: var(--mouse-x, -100px);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: opacity var(--transition-fast);
    opacity: 0;
}

.bento-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--shadow-glow);
}

.bento-card:hover::before { opacity: 1; }
.bento-card:hover::after { opacity: 1; }

.bento-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(168, 29, 132, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--color-gold);
    transition: all var(--transition-spring);
}

.bento-card:hover .bento-card__icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.bento-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.bento-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* ============================
   SPLIT SECTIONS
   ============================ */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__content h2 { margin-bottom: 20px; }
.split__content p {
    color: var(--color-text-muted);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.split__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.split__image:hover img {
    transform: scale(1.06);
}

/* Glowing border around images */
.split__image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    pointer-events: none;
    transition: all var(--transition-base);
}

.split__image:hover::after {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: inset 0 0 30px rgba(212, 175, 55, 0.05);
}

/* ============================
   STATS — Animated Counters
   ============================ */
.stats {
    display: flex;
    justify-content: center;
    gap: 72px;
    flex-wrap: wrap;
    padding: 50px 0;
}

.stat { text-align: center; }

.stat__number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 6px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat__label {
    font-size: 0.8rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials {
    background: var(--color-bg-elevated);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(168, 29, 132, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: rgba(15, 15, 18, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 5rem;
    font-family: var(--font-display);
    color: rgba(212, 175, 55, 0.06);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    border-color: var(--color-border);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.testimonial-card__stars {
    color: var(--color-gold);
    font-size: 0.9rem;
    margin-bottom: 16px;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.85;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid linear-gradient(to bottom, var(--color-gold), var(--color-magenta));
    border-image: linear-gradient(to bottom, var(--color-gold), var(--color-magenta)) 1;
}

.testimonial-card__author { display: flex; flex-direction: column; gap: 2px; }
.testimonial-card__name { font-weight: 600; color: var(--color-white); font-size: 0.9rem; }
.testimonial-card__role {
    font-size: 0.75rem;
    color: var(--color-gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ============================
   IMAGE MARQUEE
   ============================ */
.marquee-section {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.marquee-section::before,
.marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}
.marquee-section::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg), transparent);
}
.marquee-section::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg), transparent);
}

.marquee-track {
    display: flex;
    gap: 16px;
    animation: marquee 40s linear infinite;
    width: max-content;
}

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

.marquee-item {
    width: 320px;
    height: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.marquee-item:hover img {
    transform: scale(1.1);
}

/* ============================
   CURSOR SPARKLE CANVAS
   ============================ */
#sparkleCanvas {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

/* ============================
   HERO TITLE SPLIT ANIMATION
   ============================ */
.hero__title-split {
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold-light) 40%, var(--color-pink) 70%, var(--color-white) 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s ease-in-out infinite;
    line-height: 1.05;
}

.hero__title-split .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) rotateX(40deg);
    filter: blur(8px);
    animation: wordReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
        filter: blur(0);
    }
}

/* data-animate fade-in */
[data-animate="fade-in"] {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ============================
   CLIENT LOGOS
   ============================ */
.clients__label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    margin-bottom: 20px;
}

.clients {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.clients__item {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: default;
}

.clients__item:hover {
    color: var(--color-gold);
    border-color: rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.04);
}

/* ============================
   PARALLAX IMAGE DIVIDER
   ============================ */
.parallax-divider {
    position: relative;
    height: 50vh;
    min-height: 350px;
    overflow: hidden;
}

.parallax-divider img {
    position: absolute;
    width: 100%;
    height: 130%;
    object-fit: cover;
    top: -15%;
    filter: brightness(0.3) saturate(1.3);
    will-change: transform;
}

.parallax-divider__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        radial-gradient(ellipse at center, rgba(168, 29, 132, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at center, rgba(3,3,4,0.3) 0%, rgba(3,3,4,0.6) 100%);
    z-index: 1;
}

.parallax-divider__text h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, var(--color-white), var(--color-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================
   3D TILT EFFECT
   ============================ */
.bento-card--tilt {
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform;
}

.bento-card--tilt .bento-card__icon,
.bento-card--tilt h3,
.bento-card--tilt p {
    transform: translateZ(20px);
}

/* ============================
   MAGNETIC BUTTONS
   ============================ */
.btn--magnetic {
    will-change: transform;
}

/* ============================
   LOCATION GLOW
   ============================ */
.location { overflow: hidden; }
.location__bg-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 29, 132, 0.05) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    pointer-events: none;
    animation: orbFloat 20s ease-in-out infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================
   CTA SECTION
   ============================ */
.cta-section {
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(168, 29, 132, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
    border-top: 1px solid var(--color-border-subtle);
    border-bottom: 1px solid var(--color-border-subtle);
}

.cta-section .container { position: relative; }
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { color: var(--color-text-muted); margin-bottom: 36px; font-size: 1.1rem; }

/* ============================
   GALLERY
   ============================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.85) saturate(0.9);
}

.gallery-item:hover img {
    transform: scale(1.12);
    filter: brightness(1.05) saturate(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3,3,4,0.7) 0%, transparent 40%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(30px);
    align-items: center;
    justify-content: center;
    padding: 40px;
    cursor: zoom-out;
}
.lightbox.active { display: flex; animation: fadeIn 0.3s ease; }
.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    cursor: default;
    box-shadow: 0 0 80px rgba(0,0,0,0.5);
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.15); }

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}
.lightbox__nav:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

/* ============================
   EQUIPMENT
   ============================ */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.equipment-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.equipment-card:hover {
    border-color: var(--color-border);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.equipment-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
}
.equipment-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.equipment-card:hover .equipment-card__image img { transform: scale(1.06); }

.equipment-card__body { padding: 28px; }
.equipment-card__body h3 { margin-bottom: 12px; }
.equipment-card__body ul { list-style: none; }
.equipment-card__body li {
    padding: 8px 0;
    padding-left: 22px;
    position: relative;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}
.equipment-card__body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-magenta));
    border-radius: 50%;
}

/* ============================
   PRICING / TABLES
   ============================ */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}
.pricing-table th, .pricing-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--color-border-subtle);
}
.pricing-table th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-dim);
    font-weight: 600;
}
.pricing-table .price { color: var(--color-gold); font-weight: 600; }
.pricing-table tbody tr { transition: background var(--transition-fast); }
.pricing-table tbody tr:hover { background: rgba(212, 175, 55, 0.03); }

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--color-border-subtle);
    font-size: 0.95rem;
}
.spec-table td:first-child { color: var(--color-text-dim); width: 40%; }

/* ============================
   FORMS
   ============================ */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 6px;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 13px 16px;
    background: rgba(15, 15, 18, 0.8);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08), 0 0 20px rgba(212, 175, 55, 0.05);
}

.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
}

/* Option Cards */
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    margin: 16px 0;
}

.option-card {
    position: relative;
    background: rgba(15, 15, 18, 0.6);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.option-card:hover { border-color: rgba(212, 175, 55, 0.2); }
.option-card input[type="radio"],
.option-card input[type="checkbox"] { position: absolute; opacity: 0; }
.option-card:has(input:checked) {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.06);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
}
.option-card__content { display: flex; justify-content: space-between; align-items: center; }
.option-card__label { font-weight: 500; font-size: 0.95rem; }
.option-card__price { color: var(--color-gold); font-weight: 600; font-size: 0.9rem; }

/* ============================
   ADVANTAGES
   ============================ */
.advantages {
    list-style: none;
    display: grid;
    gap: 12px;
}
.advantages li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(15, 15, 18, 0.6);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--color-text);
    border-left: 2px solid transparent;
    border-image: linear-gradient(to bottom, var(--color-gold), var(--color-magenta)) 1;
    transition: all var(--transition-fast);
}
.advantages li:hover {
    background: rgba(212, 175, 55, 0.04);
    transform: translateX(4px);
}
.advantages li svg {
    flex-shrink: 0;
    color: var(--color-gold);
    margin-top: 2px;
}

/* ============================
   CONTACT
   ============================ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.contact-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}
.contact-card:hover {
    border-color: var(--color-border);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.contact-card__avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid transparent;
    background-image: linear-gradient(var(--color-bg-card), var(--color-bg-card)), linear-gradient(135deg, var(--color-gold), var(--color-magenta));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.contact-card h3 { margin-bottom: 4px; }
.contact-card__role {
    background: linear-gradient(90deg, var(--color-gold), var(--color-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.85rem;
    margin-bottom: 16px;
    font-weight: 500;
}

.contact-card__links {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.contact-card__links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}
.contact-card__links a:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
    color: var(--color-gold);
}

/* ============================
   PAGE HEADER
   ============================ */
.page-header {
    padding: 160px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 0%, rgba(168, 29, 132, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        linear-gradient(to bottom, var(--color-bg-elevated) 0%, var(--color-bg) 100%);
}
.page-header .container { position: relative; }
.page-header h1 { margin-bottom: 16px; }
.page-header p { color: var(--color-text-muted); max-width: 600px; margin: 0 auto; font-size: 1.15rem; }

/* ============================
   UTILITY ELEMENTS
   ============================ */
.info-box {
    background: rgba(212, 175, 55, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 24px 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}
.info-box strong { color: var(--color-gold); }

.konfig-section {
    background: var(--color-bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin-bottom: 24px;
}
.konfig-section h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.konfig-section h3 .step {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(168, 29, 132, 0.15));
    color: var(--color-gold);
    border-radius: 50%;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 40px;
    height: 400px;
    border: 1px solid var(--color-border-subtle);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(80%) invert(92%) contrast(83%);
}

/* ============================
   FOOTER
   ============================ */
.footer {
    padding: 70px 0 24px;
    position: relative;
    border-top: 1px solid var(--color-border-subtle);
    background: var(--color-bg-elevated);
}
.footer__glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    pointer-events: none;
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}
.footer__brand p { color: var(--color-text-dim); margin-top: 16px; font-size: 0.9rem; max-width: 300px; }
.footer__links h4, .footer__contact h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}
.footer__links ul, .footer__contact ul { list-style: none; }
.footer__links li, .footer__contact li { margin-bottom: 10px; }
.footer__links a { color: var(--color-text-dim); font-size: 0.9rem; transition: color var(--transition-fast); }
.footer__links a:hover { color: var(--color-gold); }
.footer__contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-dim);
    font-size: 0.85rem;
}
.footer__contact a { color: var(--color-text-dim); }
.footer__contact a:hover { color: var(--color-gold); }
.footer__contact svg { flex-shrink: 0; color: var(--color-gold); opacity: 0.5; }
.footer__bottom {
    padding-top: 24px;
    border-top: 1px solid var(--color-border-subtle);
    text-align: center;
}
.footer__bottom p { color: var(--color-text-dim); font-size: 0.8rem; }

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 300% center; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 12px var(--color-gold); }
    50% { opacity: 0.5; transform: scale(0.7); box-shadow: 0 0 4px var(--color-gold); }
}

@keyframes borderRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Scale-in variant */
.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .split { grid-template-columns: 1fr; gap: 40px; }
    .split--reverse { direction: ltr; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    :root { --nav-height: 64px; }
    section, .section { padding: 80px 0; }
    .nav__toggle { display: flex; }
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(8, 8, 10, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 90px 24px 24px;
        gap: 0;
        transition: right var(--transition-base);
        border-left: 1px solid var(--color-border-subtle);
    }
    .nav__menu.open { right: 0; }
    .nav__link { padding: 16px; font-size: 1.05rem; }
    .hero__actions, .scene__cta { flex-direction: column; align-items: center; }
    .form-row { grid-template-columns: 1fr; }
    .stats { gap: 36px; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 8px; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .equipment-grid { grid-template-columns: 1fr; }
    .option-grid { grid-template-columns: 1fr; }
    .hero__orb { display: none; }

    /* Scene mobile */
    .hero-intro__line span { font-size: clamp(3rem, 14vw, 5rem); }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .number-card::after { display: none; }
    .service-row { grid-template-columns: 40px 1fr; gap: 12px; }
    .service-row__desc { display: none; }
    .service-row__arrow { display: none; }
    .location-reveal { grid-template-columns: 1fr; }
    .location-reveal__image { height: 50vh; }
    .location-reveal__content { padding: 40px 24px; }
    .showcase__item { width: 75vw; min-width: 260px; }
    .testimonial-marquee__card { width: 300px; }
    #sparkleCanvas, #particleCanvas { display: none; }
    .marquee-item { width: 250px; height: 170px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .hero { min-height: 90vh; }
    .form-card { padding: 24px; }
    .konfig-section { padding: 24px; }
}
