/* UrbanAV - Electric AV Energy Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Primary Palette - Electric Purple/Neon */
  --primary: #8B5CF6;
  --primary-dark: #6D28D9;
  --primary-light: #C084FC;
  --primary-glow: rgba(139, 92, 246, 0.5);

  /* Accent - Hot Magenta/Electric Pink */
  --accent: #F43F5E;
  --accent-light: #FF6B9D;
  --accent-glow: rgba(244, 63, 94, 0.4);

  /* Secondary - Cyan/Electric Blue */
  --neon-blue: #06B6D4;
  --neon-blue-glow: rgba(6, 182, 212, 0.35);

  /* Background - Deep Dark */
  --bg-deep: #030014;
  --bg-primary: #0A0618;
  --bg-secondary: #110D2A;
  --bg-card: rgba(255, 255, 255, 0.02);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-bg-hover: rgba(139, 92, 246, 0.08);
  --glass-border: rgba(139, 92, 246, 0.12);
  --glass-border-hover: rgba(139, 92, 246, 0.4);
  --glass-highlight: rgba(255, 255, 255, 0.05);

  /* Text */
  --text-primary: #F8FAFC;
  --text-secondary: #E2E8F0;
  --text-muted: #94A3B8;
  --text-dim: #64748B;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 60px rgba(139, 92, 246, 0.3), 0 0 120px rgba(139, 92, 246, 0.1);

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-secondary);
  background: var(--bg-deep);
  line-height: 1.7;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

/* Energy ambient background glow */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(244, 63, 94, 0.05) 0%, transparent 40%),
    radial-gradient(ellipse at 60% 80%, rgba(6, 182, 212, 0.04) 0%, transparent 40%);
  animation: ambientGlow 12s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes ambientGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-3%, 2%) scale(1.05); }
}

/* Spark particle animation */
@keyframes sparkFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 1; transform: translateY(-20px) scale(1); }
  90% { opacity: 0.6; transform: translateY(-100px) scale(0.5); }
}
@keyframes electricPulse {
  0%, 100% { box-shadow: 0 0 20px var(--primary-glow), 0 0 40px rgba(139, 92, 246, 0.1); }
  50% { box-shadow: 0 0 40px var(--primary-glow), 0 0 80px rgba(139, 92, 246, 0.2), 0 0 120px rgba(244, 63, 94, 0.05); }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== GLASS UTILITIES ===== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(139, 92, 246, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.glass-card:hover::before { opacity: 1; }
.glass-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 40px rgba(139, 92, 246, 0.15), 0 0 80px rgba(139, 92, 246, 0.05);
  animation: electricPulse 3s ease-in-out infinite;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-light) 100%, var(--accent-light) 0%, var(--neon-blue) 0%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.35s var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
  position: relative;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Neon pulse animation for primary buttons */
@keyframes neonPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.4), 0 0 40px rgba(139, 92, 246, 0.15), inset 0 0 20px rgba(139, 92, 246, 0.1); }
  50% { box-shadow: 0 0 28px rgba(139, 92, 246, 0.55), 0 0 56px rgba(139, 92, 246, 0.2), inset 0 0 28px rgba(139, 92, 246, 0.15); }
}
@keyframes neonPulseAccent {
  0%, 100% { box-shadow: 0 0 20px rgba(244, 63, 94, 0.35), 0 0 40px rgba(244, 63, 94, 0.12), inset 0 0 20px rgba(244, 63, 94, 0.08); }
  50% { box-shadow: 0 0 28px rgba(244, 63, 94, 0.5), 0 0 56px rgba(244, 63, 94, 0.18), inset 0 0 28px rgba(244, 63, 94, 0.12); }
}

.btn-primary {
  background: rgba(139, 92, 246, 0.12);
  color: #fff;
  border: 2px solid var(--primary);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4), 0 0 40px rgba(139, 92, 246, 0.15), inset 0 0 20px rgba(139, 92, 246, 0.1);
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
  animation: neonPulse 3s ease-in-out infinite;
}
.btn-primary:hover {
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.6), 0 0 60px rgba(139, 92, 246, 0.25), inset 0 0 30px rgba(139, 92, 246, 0.15);
  border-color: var(--primary-light);
  transform: translateY(-3px);
  animation: none;
}

.btn-glass {
  background: rgba(244, 63, 94, 0.08);
  color: #fff;
  border: 2px solid var(--accent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.35), 0 0 40px rgba(244, 63, 94, 0.12), inset 0 0 20px rgba(244, 63, 94, 0.08);
  text-shadow: 0 0 10px rgba(244, 63, 94, 0.4);
  animation: neonPulseAccent 3s ease-in-out infinite;
}
.btn-glass:hover {
  background: rgba(244, 63, 94, 0.15);
  border-color: var(--accent-light);
  box-shadow: 0 0 30px rgba(244, 63, 94, 0.5), 0 0 60px rgba(244, 63, 94, 0.2), inset 0 0 30px rgba(244, 63, 94, 0.12);
  transform: translateY(-3px);
  animation: none;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.4s var(--ease-out);
}
.navbar.scrolled {
  background: rgba(3, 0, 14, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 0;
  gap: 24px;
}
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.navbar .logo img {
  height: 40px;
  width: auto;
  border-radius: 10px;
}
.navbar .logo-text {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.navbar .logo-text span {
  background: linear-gradient(90deg, var(--primary-light), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  position: fixed;
  top: 0;
  right: 80px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 1000;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all 0.25s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.nav-links .active {
  color: #fff;
  background: rgba(155, 48, 255, 0.15);
}
.nav-cta {
  background: rgba(139, 92, 246, 0.12) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 10px 22px !important;
  border: 2px solid var(--primary) !important;
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.35), 0 0 32px rgba(139, 92, 246, 0.12), inset 0 0 16px rgba(139, 92, 246, 0.08) !important;
  text-shadow: 0 0 8px rgba(139, 92, 246, 0.4) !important;
  margin-left: 8px;
  animation: neonPulse 3s ease-in-out infinite;
}
.nav-cta:hover {
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.5), 0 0 48px rgba(139, 92, 246, 0.2), inset 0 0 24px rgba(139, 92, 246, 0.12) !important;
  border-color: var(--primary-light) !important;
  transform: translateY(-1px);
  animation: none !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.menu-toggle span {
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.drawer-close { display: none; }
.drawer-backdrop { display: none; }

/* ================================================ */
/* ==================== HERO ====================== */
/* ================================================ */
.hero-video {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

/* -- Background poster image -- */
.hero-video-bg {
  position: absolute;
  inset: -10%;
  z-index: 0;
}
.hero-video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -- Overlay -- */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg,
      rgba(3, 0, 20, 0.82) 0%,
      rgba(10, 6, 24, 0.55) 35%,
      rgba(109, 40, 217, 0.12) 60%,
      rgba(3, 0, 20, 0.65) 100%
    );
}

/* -- Particle animation (electric sparks) -- */
.hero-video-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-video-particles::before,
.hero-video-particles::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(192, 132, 252, 0.8);
  animation: particleFloat 5s ease-in-out infinite;
  box-shadow:
    60px 120px 0 rgba(139, 92, 246, 0.6),
    180px 300px 0 rgba(244, 63, 94, 0.5),
    320px 80px 0 rgba(6, 182, 212, 0.5),
    500px 220px 0 rgba(192, 132, 252, 0.4),
    700px 140px 0 rgba(244, 63, 94, 0.4),
    850px 350px 0 rgba(6, 182, 212, 0.3),
    150px 450px 0 rgba(139, 92, 246, 0.5),
    420px 380px 0 rgba(255, 107, 157, 0.4),
    620px 60px 0 rgba(6, 182, 212, 0.5),
    780px 280px 0 rgba(192, 132, 252, 0.3);
}
.hero-video-particles::after {
  animation-delay: -2.5s;
  animation-duration: 6s;
  box-shadow:
    100px 60px 0 rgba(6, 182, 212, 0.5),
    280px 180px 0 rgba(139, 92, 246, 0.4),
    450px 320px 0 rgba(244, 63, 94, 0.4),
    640px 100px 0 rgba(192, 132, 252, 0.3),
    800px 260px 0 rgba(6, 182, 212, 0.4),
    200px 400px 0 rgba(139, 92, 246, 0.3),
    550px 420px 0 rgba(244, 63, 94, 0.4),
    380px 50px 0 rgba(6, 182, 212, 0.3),
    720px 180px 0 rgba(255, 107, 157, 0.35);
}
@keyframes particleFloat {
  0%, 100% { opacity: 0.3; transform: translateY(0) scale(1); }
  50% { opacity: 1; transform: translateY(-40px) scale(1.5); }
}

/* -- Container -- */
.hero-video-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(100px, 14vh, 160px) 32px clamp(80px, 10vh, 120px);
}

/* -- Row: Left-aligned layout -- */
.hero-video-row {
  display: flex;
  align-items: center;
}

/* == TEXT COLUMN == */
.hero-video-text {
  max-width: 640px;
}

/* == BADGE == */
.hero-video-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--primary-light);
  margin-bottom: 24px;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-full);
  background: rgba(139, 92, 246, 0.08);
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

/* == HEADING == */
.hero-video-text h1 {
  font-size: 50px;
  font-family: sans-serif;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 20px;
}
.hero-video-accent {
  background: linear-gradient(90deg, var(--primary-light), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* == PARAGRAPH == */
.hero-video-text p {
  font-size: clamp(15px, 1.3vw, 17px);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 520px;
}

/* == STARS == */
.hero-video-stars {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.stars-icons {
  font-size: 18px;
  color: #FBBF24;
  letter-spacing: 2px;
}
.stars-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* == BUTTONS == */
.hero-video-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

/* Outline button - BECOME A BUYER */
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  background: rgba(139, 92, 246, 0.12);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: var(--radius-full);
  border: 2px solid var(--primary);
  text-decoration: none;
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4), 0 0 40px rgba(139, 92, 246, 0.15), inset 0 0 20px rgba(139, 92, 246, 0.1);
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
  animation: neonPulse 3s ease-in-out infinite;
}
.btn-hero-outline:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.6), 0 0 60px rgba(139, 92, 246, 0.25), inset 0 0 30px rgba(139, 92, 246, 0.15);
  animation: none;
}

/* Filled button - BECOME A SUPPLIER */
.btn-hero-filled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  background: rgba(244, 63, 94, 0.08);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: var(--radius-full);
  border: 2px solid var(--accent);
  text-decoration: none;
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.35), 0 0 40px rgba(244, 63, 94, 0.12), inset 0 0 20px rgba(244, 63, 94, 0.08);
  text-shadow: 0 0 10px rgba(244, 63, 94, 0.4);
  animation: neonPulseAccent 3s ease-in-out infinite;
}
.btn-hero-filled:hover {
  background: rgba(244, 63, 94, 0.15);
  border-color: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(244, 63, 94, 0.5), 0 0 60px rgba(244, 63, 94, 0.2), inset 0 0 30px rgba(244, 63, 94, 0.12);
  animation: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-video-container { padding: 100px 28px 72px; }
  .hero-video-text h1 { font-size: 34px; }
  .btn-hero-outline,
  .btn-hero-filled { padding: 16px 28px; font-size: 14px; }
}

@media (max-width: 768px) {
  .hero-video { min-height: 600px; }
  .hero-video-container { padding: 64px 20px 48px; }
  .hero-video-row { justify-content: flex-start; }
  .hero-video-text { text-align: left; max-width: 100%; }
  .hero-video-text p { max-width: 100%; }
  .hero-video-text h1 { font-size: 26px; letter-spacing: -1px; }
  .hero-video-badge { font-size: 11px; letter-spacing: 4px; margin-bottom: 18px; }
  .hero-video-stars { justify-content: flex-start; margin-bottom: 24px; }
  .stars-icons { font-size: 16px; }
  .stars-text { font-size: 13px; }
  .hero-video-btns {
    justify-content: flex-start;
    gap: 12px;
  }
  .btn-hero-outline,
  .btn-hero-filled { flex: 1; min-width: 160px; padding: 16px 20px; }
}

@media (max-width: 480px) {
  .hero-video-container { padding: 64px 16px 48px; }
  .hero-video-text h1 { font-size: 22px; letter-spacing: -0.5px; }
  .hero-video-text p { display: none; }
  .hero-video-stars { display: none; }
  .hero-video-badge { font-size: 10px; letter-spacing: 3px; margin-bottom: 14px; }
  .hero-video-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .btn-hero-outline,
  .btn-hero-filled {
    width: 250px;
    padding: 16px 20px;
    font-size: 13px;
  }
}

/* ===== SECTION COMMON ===== */
.section { padding: 100px 0; position: relative; }
.section-dark { background: var(--bg-primary); }
.section-header { text-align: center; margin-bottom: 60px; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: rgba(155, 48, 255, 0.08);
  border: 1px solid rgba(155, 48, 255, 0.2);
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== CATEGORY CAROUSEL ===== */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 24px;
  cursor: grab;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track { -ms-overflow-style: none; scrollbar-width: none; }
.carousel-track:active { cursor: grabbing; }

.carousel-card {
  min-width: 300px;
  max-width: 340px;
  flex-shrink: 0;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.carousel-card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  padding: 20px;
}
.carousel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s var(--ease-out);
}
.carousel-card:hover .carousel-card-img img {
  transform: scale(1.1);
}
.carousel-card-body {
  padding: 20px 22px 24px;
}
.carousel-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.carousel-card-body p {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 14px;
  line-height: 1.6;
}
.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.card-tags span {
  background: rgba(155, 48, 255, 0.1);
  border: 1px solid rgba(155, 48, 255, 0.2);
  color: var(--primary-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.carousel-dot.active {
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
  width: 24px;
  border-radius: 4px;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 32px 28px;
  text-align: left;
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(155, 48, 255, 0.15), rgba(213, 0, 249, 0.1));
  border: 1px solid rgba(155, 48, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-light);
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ===== STEPS ===== */
.steps-container { position: relative; }
.steps-line {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(155, 48, 255, 0.3) 20%,
    rgba(213, 0, 249, 0.5) 50%,
    rgba(155, 48, 255, 0.3) 80%,
    transparent
  );
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.step-card {
  text-align: center;
  position: relative;
}
.step-number {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary-light);
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.step-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  box-shadow: 0 8px 32px var(--primary-glow);
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.step-icon-wrap::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(155, 48, 255, 0.3);
  animation: spinSlow 20s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.step-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.step-card p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ===== TESTIMONIAL MARQUEE ===== */
.testimonial-marquee {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 16px 0;
}
.marquee-row {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.marquee-row::before,
.marquee-row::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-row::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-primary) 0%, transparent 100%);
}
.marquee-row::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-primary) 0%, transparent 100%);
}
.section-dark .marquee-row::before {
  background: linear-gradient(90deg, #0E0C24 0%, transparent 100%);
}
.section-dark .marquee-row::after {
  background: linear-gradient(270deg, #0E0C24 0%, transparent 100%);
}
.marquee-inner {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}
.marquee-forward .marquee-inner {
  animation: marqueeForward 28s linear infinite;
}
.marquee-reverse .marquee-inner {
  animation: marqueeReverse 28s linear infinite;
}
.marquee-row:hover .marquee-inner {
  animation-play-state: paused;
}
@keyframes marqueeForward {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marqueeReverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.testimonial-card {
  min-width: 350px;
  max-width: 420px;
  flex-shrink: 0;
  padding: 28px;
  user-select: none;
}
.testimonial-stars {
  color: #FBBF24;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}
.testimonial-author span {
  font-size: 12px;
  color: var(--text-dim);
}

/* Marquee responsive */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 280px;
    max-width: 340px;
    padding: 20px;
  }
  .marquee-row::before,
  .marquee-row::after {
    width: 40px;
  }
}
@media (max-width: 480px) {
  .testimonial-card {
    min-width: 260px;
    max-width: 300px;
  }
  .marquee-row::before,
  .marquee-row::after {
    width: 24px;
  }
}

/* ===== CITIES ===== */
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.city-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  cursor: default;
}
.city-card:hover {
  color: #fff;
  border-color: var(--glass-border-hover);
  background: var(--glass-bg-hover);
}
.city-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
  box-shadow: 0 0 8px var(--primary-glow);
}

/* ===== CTA ===== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0A0820 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(155, 48, 255, 0.12), transparent 60%);
  pointer-events: none;
  animation: glowBreath 4s ease-in-out infinite;
}
@keyframes glowBreath {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.12;
}
.cta-section h2 .gradient-text {
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-section p {
  font-size: 18px;
  color: var(--text-dim);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-deep);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-brand .logo img { height: 38px; border-radius: 10px; }
.footer-brand .logo-text {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}
.footer-brand .logo-text span {
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-dim);
  max-width: 280px;
}
.footer h4 {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 11px; }
.footer ul a {
  color: var(--text-dim);
  font-size: 14px;
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--primary-light); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 14px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  transition: all 0.25s;
}
.footer-contact a:hover {
  color: #fff;
  background: rgba(155, 48, 255, 0.1);
  border-color: rgba(155, 48, 255, 0.25);
}
.footer-contact a svg { flex-shrink: 0; color: var(--primary-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: var(--text-dim); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: var(--text-dim); }
.footer-bottom-links a:hover { color: var(--primary-light); }

/* ===== APP DOWNLOAD BANNER ===== */
.app-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
  background: url('../images/gallery-wedding-2.jpg') center/cover no-repeat;
  overflow: hidden;
}
.app-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 4, 26, 0.55) 0%, rgba(20, 0, 40, 0.45) 50%, rgba(8, 4, 26, 0.55) 100%);
  z-index: 0;
}
.app-banner-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.app-banner-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.app-banner-line {
  height: 3px;
  width: 80px;
  margin: 0 auto 16px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
  border-radius: 2px;
}
.app-banner-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.app-banner-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== COMING SOON MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 4, 26, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s ease;
}
.modal-overlay.show {
  display: flex;
}
.modal-box {
  background: var(--bg-primary);
  border: 1px solid rgba(155, 48, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), var(--shadow-glow);
  animation: scaleIn 0.3s var(--ease-spring);
}
.modal-icon { font-size: 48px; margin-bottom: 16px; }
.modal-box h3 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.modal-box p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 24px;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

/* Banner responsive */
@media (max-width: 768px) {
  .app-banner { padding: 72px 20px; }
  .app-banner-content h2 { font-size: 24px; }
  .app-banner-content p { font-size: 14px; }
}
@media (max-width: 480px) {
  .app-banner { padding: 56px 16px; }
  .app-banner-btns { flex-direction: column; align-items: center; }
  .app-banner-btns .btn { width: 100%; max-width: 260px; justify-content: center; }
}
.gallery-expand {
  display: flex;
  align-items: stretch;
  gap: 16px;
  height: 420px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  flex: 1;
  min-width: 120px;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s var(--ease-out);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, #1a1040 0%, #0f0a2e 100%);
}
.gallery-item:hover {
  flex: 6;
  border-color: rgba(155, 48, 255, 0.4);
  box-shadow: var(--shadow-glow);
}
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  background: linear-gradient(180deg, transparent 20%, rgba(8, 4, 26, 0.55) 80%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay h3 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.gallery-overlay p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 360px;
}

/* Gallery responsive */

/* Tablet: switch to 2-column grid, overlays always visible */
@media (max-width: 768px) {
  .gallery-expand {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    gap: 12px;
  }
  .gallery-item {
    flex: none;
    min-width: 0;
    height: 240px;
    border-radius: var(--radius-md);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  }
  .gallery-item:active {
    transform: scale(0.97);
  }
  .gallery-item:hover {
    flex: none;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(155, 48, 255, 0.4);
  }
  .gallery-item img {
    transition: transform 0.4s var(--ease-out);
  }
  .gallery-item:active img {
    transform: scale(1.03);
  }
  .gallery-overlay {
    opacity: 1;
    padding: 20px 16px;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 4, 26, 0.45) 30%, rgba(8, 4, 26, 0.75) 100%);
  }
  .gallery-overlay h3 {
    font-size: 17px;
    margin-bottom: 2px;
  }
  .gallery-overlay p {
    font-size: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* Mobile: single column, full-width cards */
@media (max-width: 480px) {
  .gallery-expand {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .gallery-item {
    height: 220px;
    border-radius: var(--radius-md);
  }
  .gallery-overlay {
    padding: 20px 18px;
  }
  .gallery-overlay h3 {
    font-size: 20px;
  }
  .gallery-overlay p {
    font-size: 13px;
    -webkit-line-clamp: 3;
  }
}
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-line { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-title { font-size: 28px; }
  .section-subtitle { font-size: 15px; }

  .carousel-card { min-width: 260px; max-width: 300px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 300px;
    max-width: 85vw;
    height: 100vh !important;
    background: var(--bg-primary);
    border-left: 1px solid rgba(139, 92, 246, 0.15);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2px;
    padding: 24px 20px;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
    overflow-y: auto;
    display: flex;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a {
    font-size: 16px !important;
    padding: 14px 16px !important;
    border-radius: 10px !important;
  }
  .nav-cta {
    margin-left: 0 !important;
    margin-top: 8px;
    text-align: center;
  }

  /* Drawer close button */
  .drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    margin-bottom: 16px;
    transition: all 0.25s;
  }
  .drawer-close:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.4);
  }

  /* Backdrop */
  .drawer-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-out);
  }
  .drawer-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle { display: flex; z-index: 10000; }

  /* Hamburger to X animation */
  .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .carousel-card { min-width: 240px; max-width: 280px; }
  .steps-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 300px; justify-content: center; }
}

@media (max-width: 480px) {
  .carousel-card { min-width: 220px; max-width: 260px; }
  .section-title { font-size: 24px; letter-spacing: -1px; }
}

/* ===== INNER PAGES (How It Works, Privacy, Terms) ===== */
.info-page { padding: 0 0 80px; }

.page-header {
  padding: 140px 0 80px;
  background: var(--bg-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(155, 48, 255, 0.08), transparent);
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 4, 26, 0.3) 0%, rgba(14, 12, 36, 0.45) 50%, var(--bg-primary) 100%);
  z-index: 0;
}
.page-header-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(155, 48, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155, 48, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 14px;
}
.page-header p {
  color: var(--text-dim);
  font-size: 18px;
  max-width: 520px;
  margin: 0 auto;
}

.last-updated {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 36px;
}

.steps-list { max-width: 760px; margin: 0 auto; }
.step-item {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  align-items: flex-start;
}
.step-circle {
  width: 52px; height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  box-shadow: 0 6px 24px var(--primary-glow);
}
.step-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.step-item p { color: var(--text-dim); font-size: 14px; line-height: 1.7; }

.highlight-box {
  background: rgba(155, 48, 255, 0.06);
  border: 1px solid rgba(155, 48, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 24px 0;
}
.highlight-box h3 {
  color: var(--primary-light);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.highlight-box p { color: var(--text-muted); font-size: 14px; }
.highlight-box p strong { color: #fff; }

.info-img {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 32px 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.info-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* Legal Pages */
.legal-page {
  padding: 48px 0 80px;
}
.legal-page h1,
.legal-page .page-header + .section h1 {
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -1px;
  font-size: clamp(28px, 4vw, 44px);
}
.legal-page h2 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-top: 36px;
  margin-bottom: 12px;
}
.legal-page p,
.legal-page li {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-page ul,
.legal-page ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-page li { margin-bottom: 8px; }

/* Footer Social */
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.25s;
}
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Footer Contact Items (legacy) */
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-dim);
}
.footer-contact-item .ci-icon {
  width: 34px; height: 34px;
  min-width: 34px;
  background: linear-gradient(135deg, rgba(155, 48, 255, 0.15), rgba(213, 0, 249, 0.1));
  border: 1px solid rgba(155, 48, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary-light);
}
.footer-contact-item a { color: var(--text-dim); }
.footer-contact-item a:hover { color: var(--primary-light); }

/* ===== FLOATING WHATSAPP + CALL BUTTONS ===== */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
  cursor: pointer;
  animation: floatPulse 2.5s ease-in-out infinite;
}
.float-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

/* WhatsApp */
.float-whatsapp {
  background: #25D366;
  color: #fff;
  animation-delay: 0s;
}
.float-whatsapp:hover {
  background: #20bd5a;
}

/* Call */
.float-call {
  background: var(--primary);
  color: #fff;
  animation-delay: 0.6s;
}
.float-call:hover {
  background: var(--primary-dark);
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35); }
  50% { box-shadow: 0 6px 28px rgba(155, 48, 255, 0.35), 0 0 0 8px rgba(155, 48, 255, 0.08); }
}

/* Floating buttons responsive */
@media (max-width: 768px) {
  .floating-btns {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }
  .float-btn {
    width: 50px;
    height: 50px;
  }
  .float-btn svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .floating-btns {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }
  .float-btn {
    width: 46px;
    height: 46px;
  }
  .float-btn svg {
    width: 20px;
    height: 20px;
  }
}
