/* ==========================================================================
   CRYSTAL MARK ENTERTAINMENT (CME) – 2026 ULTRA LUXURY LIGHT DESIGN SYSTEM
   Theme: Alabaster Ivory (#FAF8F5), Charcoal Noir (#18151D), Champagne Gold & Royal Lilac
   Directly matching official CME brand logo & visual identity
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Foundation (from Uploaded CME Logo & Banner) */
  --bg-primary: #FAF8F5;          /* Exact Ivory / Warm Alabaster Logo Background */
  --bg-secondary: #F3EFE9;        /* Soft Satin Cream */
  --bg-tertiary: #EBE4D8;         /* Warm Sand Alabaster */
  --bg-card: rgba(255, 255, 255, 0.92); /* Crisp Pearl Glass */
  --bg-card-hover: #FFFFFF;
  
  /* Brand Champagne Gold Accents */
  --gold-primary: #AA7C11;        /* Rich Deep Champagne Gold */
  --gold-light: #C59B27;
  --gold-hover: #8B6612;
  --gold-dark: #684B05;
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #AA7C11 50%, #8B6612 100%);
  --gold-text-grad: linear-gradient(135deg, #18151D 0%, #563E6B 45%, #AA7C11 80%, #18151D 100%);
  --gold-border: rgba(170, 124, 17, 0.32);
  --gold-glow: rgba(212, 175, 55, 0.22);
  
  /* Royal Lilac & Stage Plum Accents (from CME Banner Ribbon) */
  --violet-primary: #563E6B;
  --violet-light: #8E76A3;
  --violet-soft: #EFE9F6;
  --violet-glow: rgba(142, 118, 163, 0.18);
  --violet-gradient: linear-gradient(135deg, #563E6B 0%, #8E76A3 100%);

  /* Charcoal Noir & Editorial Typography */
  --text-noir: #18151D;           /* Deep Charcoal Noir from Logo Lines */
  --text-heading: #141118;
  --text-body: #3D3846;           /* Crisp high-contrast readable copy */
  --text-muted: #6D6677;
  --text-dim: #8E8798;
  --border-subtle: rgba(24, 21, 29, 0.08);
  --border-glass: rgba(170, 124, 17, 0.22);

  /* Fonts */
  --font-heading-regal: 'Cinzel', serif;
  --font-heading-modern: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows & Glassmorphism */
  --glass-blur: blur(20px);
  --shadow-lux: 0 15px 45px rgba(24, 21, 29, 0.07), 0 0 25px rgba(170, 124, 17, 0.08);
  --shadow-hover: 0 25px 60px rgba(24, 21, 29, 0.13), 0 0 40px rgba(170, 124, 17, 0.2);
  --shadow-violet: 0 20px 50px rgba(86, 62, 107, 0.12);

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-body);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  line-height: 1.68;
  background-color: var(--bg-primary);
  color: var(--text-body);
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ambient Spotlight & Mesh Gradients */
.theatre-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.09) 0%, rgba(142, 118, 163, 0.05) 45%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: opacity 0.3s ease;
  mix-blend-mode: multiply;
}

.bg-ambient-mesh {
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 10% 15%, rgba(142, 118, 163, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 90% 25%, rgba(212, 175, 55, 0.09) 0%, transparent 50%),
    radial-gradient(circle at 50% 85%, rgba(142, 118, 163, 0.06) 0%, transparent 55%),
    radial-gradient(circle at 85% 90%, rgba(212, 175, 55, 0.07) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.stage-grid-lines {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(24, 21, 29, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(24, 21, 29, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  font-family: var(--font-heading-modern);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.22;
}

.font-regal {
  font-family: var(--font-heading-regal);
  letter-spacing: 0.03em;
}

.text-gold-gradient {
  background: var(--gold-text-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gold { color: var(--gold-primary); }
.text-violet { color: var(--violet-primary); }
.text-muted { color: var(--text-muted); }

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* Containers */
.container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 2;
}

section {
  position: relative;
  padding: 90px 0;
  z-index: 2;
}

@media (max-width: 768px) {
  section {
    padding: 55px 0;
  }
}

/* Badges */
.badge-luxury {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--gold-border);
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(170, 124, 17, 0.12);
}

.badge-luxury .sparkle-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
  animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-top: 16px;
  margin-bottom: 18px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* NAVIGATION & HEADER */
.top-bar-notice {
  background: linear-gradient(90deg, #F3EFE9 0%, #EAE4F2 50%, #F3EFE9 100%);
  border-bottom: 1px solid var(--gold-border);
  font-size: 0.84rem;
  padding: 8px 0;
  position: relative;
  z-index: 1001;
  color: var(--text-noir);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-body);
  font-weight: 500;
}

.top-bar-item a:hover {
  color: var(--gold-primary);
}

.main-navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--gold-border);
  transition: var(--transition-smooth);
}

.main-navbar.scrolled {
  background: rgba(250, 248, 245, 0.98);
  box-shadow: 0 10px 30px rgba(24, 21, 29, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  max-width: 320px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 2px 8px rgba(24, 21, 29, 0.08));
  transition: var(--transition-fast);
}

.brand-logo-wrap:hover .brand-logo-img {
  transform: scale(1.02);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-noir);
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
  align-items: center;
  z-index: 1002;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-noir);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading-modern);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: none;
  transition: var(--transition-smooth);
  text-decoration: none;
  letter-spacing: 0.5px;
  white-space: nowrap;
  min-height: 44px;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.88rem;
  min-height: 38px;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.08rem;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(170, 124, 17, 0.32);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(170, 124, 17, 0.45);
  color: #FFFFFF;
}

.btn-glass {
  background: #FFFFFF;
  border: 1px solid var(--gold-border);
  color: var(--text-noir);
  box-shadow: 0 4px 15px rgba(24, 21, 29, 0.05);
}

.btn-glass:hover {
  background: var(--bg-secondary);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(170, 124, 17, 0.18);
  color: var(--gold-dark);
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  color: #ffffff;
}

.btn-violet {
  background: var(--violet-gradient);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(86, 62, 107, 0.3);
}

/* GLASS CARDS */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--gold-border);
  border-radius: 22px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lux);
  transition: var(--transition-smooth);
}

.glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(170, 124, 17, 0.55);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.tilt-card-wrap {
  perspective: 1000px;
}

.tilt-card-inner {
  transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-style: preserve-3d;
}

/* HERO */
.hero-section {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  padding: 60px 0 90px 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 24px 0 20px 0;
  color: var(--text-noir);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-body);
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 48px;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(24, 21, 29, 0.05);
}

.trust-item-text strong {
  display: block;
  color: var(--text-noir);
  font-size: 0.95rem;
}

.trust-item-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-visual-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: 0 25px 60px rgba(24, 21, 29, 0.15), 0 0 40px rgba(212, 175, 55, 0.15);
  background: #FFFFFF;
}

.hero-banner-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-visual-card:hover .hero-banner-img {
  transform: scale(1.04);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 21, 29, 0.08) 0%, rgba(24, 21, 29, 0.72) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
}

.hero-visual-tag {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--gold-border);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.play-showreel-btn {
  align-self: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold-gradient);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 0 35px rgba(170, 124, 17, 0.5);
  transition: var(--transition-smooth);
}

.play-showreel-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 0 50px rgba(170, 124, 17, 0.75);
}

.hero-visual-bottom {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border);
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-noir);
}

/* CLIENT TRUST MARQUEE */
.client-marquee-wrap {
  padding: 30px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  overflow: hidden;
}

.marquee-heading {
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 18px;
}

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

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

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

.client-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-noir);
  white-space: nowrap;
}

/* STATS */
.stats-section {
  padding: 40px 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

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

.stat-box {
  text-align: center;
  padding: 24px;
  border-radius: 18px;
  background: #FFFFFF;
  border: 1px solid var(--gold-border);
  box-shadow: 0 6px 20px rgba(24, 21, 29, 0.04);
  transition: var(--transition-smooth);
}

.stat-box:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lux);
}

.stat-number {
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  font-family: var(--font-heading-regal);
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(142, 118, 163, 0.15) 100%);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.8rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrap {
  background: var(--gold-gradient);
  color: #FFFFFF;
  transform: rotate(5deg) scale(1.08);
}

.service-card-img-thumb {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
  border: 1px solid var(--gold-border);
}

.service-number {
  font-family: var(--font-heading-regal);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text-noir);
  transition: var(--transition-fast);
}

.service-card:hover .service-title {
  color: var(--gold-dark);
}

.service-description {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-features-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
}

.service-features-list li svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.service-card-footer {
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-cta-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* TECH SPECS */
.tech-specs-section {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.tech-item {
  background: #FFFFFF;
  border: 1px solid var(--gold-border);
  border-radius: 18px;
  padding: 26px 22px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(24, 21, 29, 0.04);
  transition: var(--transition-smooth);
}

.tech-item:hover {
  border-color: var(--violet-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lux);
}

.tech-item-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  color: var(--violet-primary);
}

.tech-item h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text-noir);
}

.tech-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* WIZARD */
.wizard-card {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px;
  background: #FFFFFF;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-lux);
}

.wizard-progress-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 36px;
  position: relative;
}

.wizard-progress-bar::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: rgba(24, 21, 29, 0.1);
  z-index: 1;
}

.wizard-progress-line {
  position: absolute;
  top: 20px;
  left: 30px;
  height: 2px;
  background: var(--gold-gradient);
  z-index: 2;
  transition: width 0.4s ease;
  width: 0%;
}

.step-indicator {
  position: relative;
  z-index: 3;
  text-align: center;
  cursor: pointer;
}

.step-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid rgba(24, 21, 29, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 auto 8px auto;
  transition: var(--transition-smooth);
}

.step-indicator.active .step-circle {
  background: var(--gold-gradient);
  border-color: var(--gold-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(170, 124, 17, 0.4);
}

.step-indicator.completed .step-circle {
  background: var(--violet-primary);
  border-color: var(--violet-primary);
  color: #FFFFFF;
}

.step-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.step-indicator.active .step-label {
  color: var(--gold-dark);
  font-weight: 700;
}

.wizard-step-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.wizard-step-content.active {
  display: block;
}

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

.wizard-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 26px 0;
}

.wizard-option-card {
  background: #FFFFFF;
  border: 1px solid rgba(24, 21, 29, 0.12);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.wizard-option-card:hover {
  background: var(--bg-secondary);
  border-color: var(--gold-border);
}

.wizard-option-card.selected {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-primary);
  box-shadow: 0 4px 18px rgba(170, 124, 17, 0.2);
}

.wizard-option-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.wizard-option-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-noir);
  margin-bottom: 4px;
}

.wizard-option-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.form-group-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-group-full {
  grid-column: span 2;
}

/* Form Inputs with iOS 16px zoom safeguard */
.input-field {
  width: 100%;
  padding: 15px 18px;
  background: #FFFFFF;
  border: 1px solid rgba(24, 21, 29, 0.16);
  border-radius: 12px;
  color: var(--text-noir);
  font-family: var(--font-body);
  font-size: 16px; /* Prevents auto-zoom on iOS Safari */
  outline: none;
  transition: var(--transition-fast);
}

.input-field:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(170, 124, 17, 0.25);
  background: #FFFFFF;
}

.input-field.invalid {
  border-color: #EF4444;
  background: rgba(239, 68, 68, 0.03);
}

.input-field.valid {
  border-color: #22C55E;
}

.input-field::placeholder {
  color: var(--text-dim);
}

textarea.input-field {
  min-height: 110px;
  resize: vertical;
}

.wizard-nav-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--border-subtle);
}

/* PORTFOLIO */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 50px;
  background: #FFFFFF;
  border: 1px solid var(--gold-border);
  color: var(--text-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 2px 8px rgba(24, 21, 29, 0.04);
  min-height: 44px;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-gradient);
  color: #FFFFFF;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(170, 124, 17, 0.3);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.portfolio-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  height: 380px;
  cursor: pointer;
  background: #000;
  box-shadow: var(--shadow-lux);
}

.portfolio-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-card-img {
  transform: scale(1.06);
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(24, 21, 29, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-card-overlay {
  background: linear-gradient(180deg, rgba(86, 62, 107, 0.25) 0%, rgba(24, 21, 29, 0.96) 100%);
}

.portfolio-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 6px;
}

.portfolio-card-title {
  font-size: 1.28rem;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.portfolio-card-meta {
  font-size: 0.85rem;
  color: #E2E8F0;
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}

.process-card {
  background: #FFFFFF;
  border: 1px solid var(--gold-border);
  border-radius: 18px;
  padding: 28px 18px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(24, 21, 29, 0.04);
  transition: var(--transition-smooth);
}

.process-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lux);
}

.process-step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #FFFFFF;
  font-family: var(--font-heading-regal);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  box-shadow: 0 4px 15px rgba(170, 124, 17, 0.35);
}

.process-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text-noir);
}

.process-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testimonial-card {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #FFFFFF;
}

.testimonial-rating {
  color: #D4AF37;
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
}

.author-info h5 {
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--text-noir);
}

.author-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-wrap {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(24, 21, 29, 0.04);
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--gold-primary);
  box-shadow: 0 8px 25px rgba(170, 124, 17, 0.15);
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading-modern);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-noir);
  cursor: pointer;
  min-height: 44px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-primary);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 26px 22px 26px;
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* CONTACT */
.contact-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: start;
}

.contact-info-card {
  padding: 40px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 32px 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item-content h5 {
  font-size: 0.92rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-item-content a, .contact-item-content p {
  font-size: 1.05rem;
  color: var(--text-noir);
  font-weight: 600;
}

.contact-item-content a:hover {
  color: var(--gold-primary);
}

.map-card {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  height: 220px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.lead-form-card {
  padding: 40px;
  background: #FFFFFF;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-noir);
  margin-bottom: 8px;
}

/* FOOTER */
.site-footer {
  background: #F1ECE4;
  border-top: 1px solid var(--gold-border);
  padding: 70px 0 28px 0;
  position: relative;
  z-index: 10;
  color: var(--text-body);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 50px;
}

.footer-brand-info p {
  color: var(--text-body);
  font-size: 0.94rem;
  line-height: 1.7;
  margin: 18px 0;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.social-link-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-noir);
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition-fast);
  min-height: 40px;
  min-width: 40px;
}

.social-link-btn:hover {
  background: var(--gold-gradient);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1.15rem;
  margin-bottom: 22px;
  color: var(--text-noir);
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  color: var(--text-body);
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--gold-dark);
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(24, 21, 29, 0.09);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

/* SMART FLOATING WHATSAPP WIDGET */
.floating-whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9998;
}

.whatsapp-float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: var(--transition-smooth);
}

.whatsapp-float-btn:hover {
  transform: scale(1.08) rotate(8deg);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.65);
}

.whatsapp-pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: rippleRing 2s infinite;
  pointer-events: none;
}

@keyframes rippleRing {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-chat-popup {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 330px;
  background: #FFFFFF;
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(24, 21, 29, 0.18);
  overflow: hidden;
  display: none;
  animation: slideUp 0.3s ease forwards;
}

.whatsapp-chat-popup.active {
  display: block;
}

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

.chat-popup-header {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  padding: 16px 18px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-popup-body {
  padding: 18px;
  background: #FAF8F5;
}

.chat-popup-bubble {
  background: #FFFFFF;
  border: 1px solid rgba(24, 21, 29, 0.08);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 0.88rem;
  color: var(--text-noir);
  margin-bottom: 14px;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.chat-quick-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quick-opt-btn {
  background: #FFFFFF;
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--text-noir);
  font-size: 0.84rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
  min-height: 44px;
}

.quick-opt-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-dark);
}

/* 2026 PERSISTENT MOBILE BOTTOM VIP CONCIERGE DOCK */
.mobile-bottom-dock {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid var(--gold-border);
  padding: 10px 14px;
  z-index: 9995;
  box-shadow: 0 -8px 25px rgba(24, 21, 29, 0.1);
}

.mobile-dock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  align-items: center;
}

.mobile-dock-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 6px;
  border-radius: 12px;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  min-height: 48px;
  transition: var(--transition-fast);
}

.dock-call {
  background: #FFFFFF;
  color: var(--text-noir);
  border: 1px solid var(--gold-border);
}

.dock-whatsapp {
  background: #25D366;
  color: #FFFFFF;
}

.dock-quote {
  background: var(--gold-gradient);
  color: #FFFFFF;
}

/* LIGHTBOX MODAL */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(24, 21, 29, 0.94);
  backdrop-filter: blur(15px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content-wrap {
  position: relative;
  max-width: 960px;
  width: 100%;
  background: #000;
  border-radius: 20px;
  border: 1px solid var(--gold-border);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
}

.lightbox-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--gold-border);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.lightbox-close-btn:hover {
  background: var(--gold-primary);
  color: #fff;
}

.lightbox-video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 80vh;
  border: none;
  display: block;
}

/* COOKIE & PRIVACY BANNER */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 420px;
  background: #FFFFFF;
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 15px 40px rgba(24, 21, 29, 0.15);
  z-index: 9990;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-banner.active {
  display: block;
}

/* THANK YOU CONFIRMATION CARD */
.thank-you-card {
  max-width: 780px;
  margin: 40px auto;
  text-align: center;
  padding: 50px 36px;
  background: #FFFFFF;
}

.verified-badge-anim {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #FFFFFF;
  font-size: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  box-shadow: 0 6px 30px rgba(170, 124, 17, 0.4);
  animation: popScale 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popScale {
  0% { transform: scale(0); opacity: 0; }
  80% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

.inquiry-summary-ticket {
  background: var(--bg-secondary);
  border: 1px dashed var(--gold-border);
  border-radius: 16px;
  padding: 22px;
  margin: 28px 0;
  text-align: left;
}

.ticket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ticket-item strong {
  display: block;
  font-size: 0.8rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ticket-item span {
  font-size: 1.05rem;
  color: var(--text-noir);
  font-weight: 700;
}

.countdown-timer-box {
  background: var(--violet-soft);
  border: 1px solid var(--violet-light);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--violet-primary);
  font-weight: 700;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 35px rgba(24, 21, 29, 0.15);
  z-index: 999;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-banner.show {
  display: block;
}

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

/* ==========================================================================
   RESPONSIVE DESIGN & MOBILE OPTIMIZATIONS
   ========================================================================== */
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-banner-img {
    height: 400px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .nav-menu, .nav-actions .btn {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 88px;
    left: 0;
    width: 100%;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: var(--glass-blur);
    padding: 30px 24px;
    border-bottom: 1px solid var(--gold-border);
    box-shadow: 0 20px 40px rgba(24, 21, 29, 0.12);
    gap: 20px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .contact-section-grid {
    grid-template-columns: 1fr;
  }
  .wizard-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 74px; /* Space for Mobile Bottom Dock */
  }
  .top-bar-notice {
    display: none;
  }
  .mobile-bottom-dock {
    display: block;
  }
  .floating-whatsapp-widget {
    bottom: 84px; /* Position above dock */
    right: 18px;
  }
  .whatsapp-chat-popup {
    width: calc(100vw - 36px);
    max-width: 330px;
    right: 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .tech-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .wizard-options-grid {
    grid-template-columns: 1fr;
  }
  .form-group-wrap {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .wizard-card {
    padding: 24px 18px;
  }
  .glass-card {
    padding: 24px 18px;
  }
}

@media (max-width: 576px) {
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }
  .step-circle {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }
  .step-label {
    font-size: 0.7rem;
  }
  .wizard-progress-bar::before, .wizard-progress-line {
    top: 17px;
  }
  .ticket-grid {
    grid-template-columns: 1fr;
  }
  .cookie-banner {
    left: 14px;
    right: 14px;
    max-width: calc(100vw - 28px);
    bottom: 80px;
  }
}
