/* ===== Visionary Edge — Premium Redesign ===== */

:root {
  --bg-primary: #070f26;
  --bg-secondary: #0c183d;
  --card-bg: rgba(14, 27, 63, 0.72);
  --card-border: rgba(212, 175, 55, 0.22);
  --card-border-hover: #d4af37;

  --gold: #d4af37;
  --gold-light: #fde047;
  --gold-accent: #facc15;
  --gold-deep: #b45309;
  --gold-glow: rgba(212, 175, 55, 0.35);

  --navy: #1e3a8a;
  --navy-light: #3b82f6;
  --navy-deep: #070f26;
  --navy-glow: rgba(30, 64, 175, 0.4);

  --purple: #3b82f6;
  --purple-light: #60a5fa;
  --purple-accent: #facc15;
  --purple-deep: #1e3a8a;
  --pink: #d4af37;
  --pink-bright: #fbbf24;
  --orange: #f59e0b;
  --orange-cta-a: #fbbf24;
  --orange-cta-b: #d97706;
  --green: #10b981;
  --green-deep: #059669;

  --text: #ffffff;
  --text-soft: #e2e8f0;
  --text-mute: #94a3b8;
  --text-faint: #64748b;

  --brand-gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 35%, #d4af37 100%);
  --heading-gradient: linear-gradient(135deg, #ffffff 0%, #fde047 50%, #f59e0b 100%);
  --cta-gradient: linear-gradient(135deg, #d4af37 0%, #f59e0b 50%, #d97706 100%);
  --gold-gradient: linear-gradient(135deg, #fde047 0%, #d4af37 50%, #b45309 100%);

  --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-head: var(--font-primary);
  --font-body: var(--font-primary);

  --maxw: 1320px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  background: var(--bg-primary);
  color: var(--text);
  font-family: var(--font-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

button, input, textarea, select {
  font-family: inherit;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  letter-spacing: -0.01em;
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 2rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.btn-primary {
  background: var(--cta-gradient);
  color: #070f26;
  box-shadow: 0 10px 26px rgba(212, 175, 55, 0.32);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(212, 175, 55, 0.52); }
.btn-ghost { border-color: rgba(212, 175, 55, 0.5); color: var(--gold-light); background: rgba(15, 27, 61, 0.45); }
.btn-ghost:hover { background: rgba(212, 175, 55, 0.16); border-color: var(--gold); color: #fff; transform: translateY(-3px); }
.btn-block { width: 100%; justify-content: center; }

/* ===== Header ===== */
#header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(10, 17, 40, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
#header.scrolled {
  background: rgba(7, 15, 38, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}
.nav-bar { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 84px; }
.brand { display: flex; align-items: center; gap: 0.85rem; flex-shrink: 0; }
.brand-logo { height: 46px; width: 46px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; letter-spacing: 2px; text-transform: uppercase; }
.brand-text small { font-size: 0.66rem; letter-spacing: 2px; color: var(--text-mute); text-transform: uppercase; }

.desktop-nav { display: flex; gap: 2rem; }
.desktop-nav a {
  color: var(--text-mute);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.25s var(--ease);
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--heading-gradient);
  transition: width 0.3s var(--ease);
}
.desktop-nav a:hover,
.desktop-nav a.active { color: var(--gold-accent); }
.desktop-nav a:hover::after,
.desktop-nav a.active::after { width: 100%; }

/* ---- Header CTA Dropdown ---- */
.header-cta-group {
  position: relative;
  flex-shrink: 0;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  cursor: pointer;
  border: none;
}
.cta-arrow {
  transition: transform 0.25s var(--ease);
}
.header-cta-group.open .cta-arrow {
  transform: rotate(180deg);
}
.cta-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 270px;
  background: rgba(10, 20, 52, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75), 0 0 25px rgba(212, 175, 55, 0.22);
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 1000;
  animation: dropdownIn 0.2s var(--ease);
}
.cta-dropdown-menu[hidden] {
  display: none;
}
@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cta-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease);
}
.cta-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(3px);
}
.cta-dropdown-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}
.cta-dropdown-item small {
  display: block;
  font-size: 0.78rem;
  color: var(--text-mute);
  margin-top: 2px;
}
.cta-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-whatsapp .cta-item-icon {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}
.cta-whatsapp:hover .cta-item-icon {
  background: #25D366;
  color: #fff;
}
.cta-call .cta-item-icon {
  background: rgba(243, 107, 22, 0.15);
  color: #f36b16;
  border: 1px solid rgba(243, 107, 22, 0.3);
}
.cta-call:hover .cta-item-icon {
  background: #f36b16;
  color: #fff;
}

/* Mobile nav buttons */
.mobile-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.8rem;
  margin-top: 0.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff !important;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  font-size: 0.95rem;
}
.btn-whatsapp:hover {
  background: #1eb956;
}
.btn-call {
  background: linear-gradient(135deg, var(--orange), #ea580c);
  color: #fff !important;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(243, 107, 22, 0.3);
  text-decoration: none;
  font-size: 0.95rem;
}
.btn-call:hover {
  filter: brightness(1.08);
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.4rem;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: 1.4rem 2rem 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav a { color: #fff; font-weight: 600; }
.mobile-nav a:not(.btn):hover { color: var(--gold-accent); }

/* ===== Shared section bits ===== */
.section { padding: 7rem 0; position: relative; }
.section-alt { background: var(--bg-secondary); }
.section-gradient { background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%); }

.eyebrow, .eyebrow-pill {
  color: var(--gold-accent);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
}
.eyebrow { display: block; margin-bottom: 0.75rem; }
.eyebrow-pill {
  display: inline-block;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--gold-light);
  letter-spacing: 2px;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  margin-bottom: 1.6rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  background: var(--heading-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.section-title.left { text-align: left; margin-bottom: 1.4rem; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.6rem;
}
.section-lede { color: var(--text-mute); font-size: 1.05rem; max-width: 560px; margin-bottom: 2rem; }
.gradient-text {
  background: var(--heading-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ===== Gradient photo frame ===== */
.gradient-frame {
  padding: 4px;
  border-radius: 26px;
  background: var(--brand-gradient);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}
.gradient-frame-inner {
  border-radius: 22px;
  overflow: hidden;
  background: var(--bg-secondary);
}
.gradient-frame-inner img { width: 100%; display: block; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 116px 0 40px;
  background: var(--bg-primary);
  overflow: hidden;
}
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(65% 65% at 82% 28%, rgba(212, 175, 55, 0.20) 0%, transparent 65%),
    radial-gradient(55% 60% at 12% 35%, rgba(37, 99, 235, 0.35) 0%, transparent 65%),
    radial-gradient(50% 50% at 50% 90%, rgba(30, 58, 138, 0.32) 0%, transparent 70%),
    radial-gradient(40% 45% at 8% 85%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
    var(--bg-primary);
}
.hero-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-copy { animation: fadeUp 0.9s var(--ease) both; }
.hero-title {
  font-size: clamp(2.3rem, 4.6vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
}
.hero-lede {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 400;
  color: var(--text-soft);
  max-width: 480px;
  border-left: 3px solid var(--gold);
  padding-left: 1.4rem;
  margin-bottom: 1.8rem;
}
.hero-features {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  max-width: 560px;
  margin-bottom: 1.8rem;
}
.hero-features li {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
  line-height: 1.3;
}
.hf-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 11px;
  background: rgba(30, 58, 138, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-accent);
  display: flex; align-items: center; justify-content: center;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== Hero 3D Visual Stage ===== */
.hero-visual {
  position: relative;
  perspective: 1200px;
  transform-style: preserve-3d;
  animation: fadeUp 1.1s var(--ease) both;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.32) 0%, rgba(37, 99, 235, 0.38) 45%, transparent 70%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
  transform: translateZ(-40px);
}
.hero-3d-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  transform-style: preserve-3d;
  border-radius: 24px;
  padding: 6px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.6) 0%, rgba(30, 58, 138, 0.5) 45%, rgba(212, 175, 55, 0.3) 100%);
  box-shadow: 
    0 30px 65px -15px rgba(2, 6, 23, 0.85),
    0 15px 35px -10px rgba(212, 175, 55, 0.28),
    0 0 45px rgba(37, 99, 235, 0.3);
  animation: heroFloat3D 6s ease-in-out infinite alternate;
  transition: transform 0.22s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s var(--ease);
  will-change: transform;
}
.hero-3d-wrapper:hover {
  box-shadow: 
    0 35px 80px -15px rgba(2, 6, 23, 0.95),
    0 20px 45px -10px rgba(212, 175, 55, 0.45),
    0 0 55px rgba(59, 130, 246, 0.4);
}
.hero-3d-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #091432;
  transform-style: preserve-3d;
}
.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.4s var(--ease);
}
.hero-3d-wrapper:hover .hero-image {
  transform: scale(1.02);
}
.hero-3d-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 20px;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.2) 0%, rgba(212, 175, 55, 0.1) 32%, transparent 65%);
  z-index: 3;
}
.hero-3d-badge {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.05rem;
  border-radius: 30px;
  background: rgba(10, 20, 52, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.25);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
  transform: translateZ(35px);
  pointer-events: none;
}
.badge-dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
@keyframes heroFloat3D {
  0% {
    transform: perspective(1000px) rotateY(-5deg) rotateX(3deg) translateY(0px) translateZ(0px);
  }
  100% {
    transform: perspective(1000px) rotateY(-1deg) rotateX(1deg) translateY(-14px) translateZ(16px);
  }
}

.hero-trust {
  position: relative;
  z-index: 10;
  margin-top: 2.4rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(12, 24, 61, 0.85) 0%, rgba(30, 58, 138, 0.45) 55%, rgba(212, 175, 55, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem 2.4rem;
  flex-wrap: wrap;
  box-shadow: 0 15px 35px rgba(2, 6, 23, 0.5);
}
.trust-brands {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.hero-trust-label {
  font-size: 0.78rem;
  letter-spacing: 0.3px;
  color: var(--text-mute);
  max-width: 180px;
  line-height: 1.35;
}
.trust-symbols {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding-left: 1.4rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.trust-symbols svg { width: 26px; height: 26px; color: rgba(255, 255, 255, 0.8); flex-shrink: 0; }
.hero-trust-stats { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.hero-trust-stats div {
  display: flex;
  flex-direction: column;
  padding-left: 1.6rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-trust-stats div:first-child { border-left: 0; padding-left: 0; }
.hero-trust-stats strong { font-family: var(--font-head); font-size: 1.35rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.hero-trust-stats span { font-size: 0.75rem; color: var(--text-mute); }
.counter { font-variant-numeric: tabular-nums; }

/* ===== Gallery ===== */
.gallery-controls { display: flex; gap: 0.8rem; }
.round-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.round-btn:hover { background: var(--brand-gradient); transform: translateY(-2px); }
.gallery-track {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item { flex: 0 0 320px; scroll-snap-align: start; }
.gallery-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px;
  border: 1px solid var(--card-border);
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.02); }
.gallery-item figcaption { margin-top: 0.9rem; font-weight: 600; font-size: 0.96rem; color: #e6e2f5; }

/* ===== AI section ===== */
.ai-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: start;
}
.ai-grid-copy {
  display: flex;
  flex-direction: column;
}
.ai-block-title {
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  font-weight: 700;
  line-height: 1.22;
  margin: 0.3rem 0 0.8rem;
}
.section-lede.left {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1.8rem;
  max-width: 100%;
}

.step-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.step-card {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 0.95rem 1.25rem;
  background: rgba(12, 24, 61, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 16px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.step-card:hover {
  background: rgba(12, 24, 61, 0.85);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateX(5px);
}
.step-num {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #070f26;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}
.step-content h4 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  color: #fff;
}
.step-content p {
  color: var(--text-mute);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.4;
}

.ai-media-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ai-media-stack .gradient-frame {
  padding: 3px;
  border-radius: 22px;
}
.ai-media-stack .gradient-frame-inner {
  border-radius: 19px;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #081232;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Click-to-play YouTube facade — no player chrome until played */
.yt-facade {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #081232;
  cursor: pointer;
  overflow: hidden;
}
.yt-facade img { width: 100%; height: 100%; object-fit: cover; display: block; }
.yt-facade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(7, 15, 38, 0.5) 100%);
  transition: background 0.25s var(--ease);
}
.yt-facade:hover::after { background: rgba(0,0,0,0.25); }
.yt-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 68px; height: 48px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: #070f26;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.45);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.yt-facade:hover .yt-play { transform: translate(-50%, -50%) scale(1.08); background: var(--gold-light); }
.yt-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3; }

.channel-strip {
  background: radial-gradient(ellipse at 50% 30%, rgba(30, 58, 138, 0.4) 0%, rgba(10, 20, 52, 0.9) 75%);
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 20px;
  padding: 1.35rem 1.4rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(2, 6, 23, 0.4);
}
.channel-strip-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.channels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }
.channel { display: flex; flex-direction: column; align-items: center; gap: 0.45rem; font-size: 0.82rem; font-weight: 600; color: var(--text-soft); }
.channel-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.c-pink { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #070f26; }
.c-green { background: linear-gradient(135deg, #10b981, #059669); }
.c-purple { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.c-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }

/* AI Video Production Studio Card */
.ai-video-showcase {
  margin-top: 4.8rem;
  background: radial-gradient(ellipse at 85% 20%, rgba(30, 58, 138, 0.3) 0%, rgba(10, 20, 52, 0.75) 55%, rgba(7, 15, 38, 0.92) 100%);
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 28px;
  padding: 3.2rem 3.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}
.ai-video-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3.8rem;
  align-items: center;
}
.video-short-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  max-width: 280px;
}
.video-short {
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 280px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.6);
  background: #081232;
}
.video-short.video-embed, .video-short.yt-facade { background: #081232; }

.video-yt-direct {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.28);
  text-decoration: none;
  transition: all 0.25s var(--ease);
}
.video-yt-direct:hover {
  background: rgba(212, 175, 55, 0.22);
  border-color: var(--gold);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
}

.ai-video-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ai-video-copy h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.22;
  margin: 0.4rem 0 1rem;
}
.ai-video-copy .ai-video-desc {
  color: var(--text-mute);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  max-width: 100%;
}

.mini-features {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  margin-bottom: 2rem;
}
.mini-feature-card {
  background: rgba(7, 15, 38, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 16px;
  padding: 1.1rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.mini-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(12, 24, 61, 0.8);
}
.mf-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.45), rgba(12, 24, 61, 0.85));
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.mini-feature-card h4 {
  font-size: 0.86rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.mini-feature-card p {
  font-size: 0.74rem;
  color: var(--text-mute);
  margin: 0;
  line-height: 1.35;
}

.ai-video-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ai-trust-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--text-mute);
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-visual .gradient-frame-inner img { height: 460px; object-fit: cover; object-position: center top; }
.badge-chip {
  position: absolute;
  right: -1.2rem; bottom: -1.2rem;
  background: var(--gold-gradient);
  color: #070f26;
  border-radius: 18px;
  padding: 1.1rem 1.6rem;
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  text-align: left;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  font-family: inherit;
  user-select: none;
}
.badge-chip:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.55);
  border-color: #ffffff;
}
.badge-num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; display: block; font-variant-numeric: tabular-nums; color: #070f26; line-height: 1; margin-bottom: 0.2rem; }
.badge-label { font-size: 0.78rem; font-weight: 700; color: #1e293b; display: block; }
.badge-action-hint {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #070f26;
  margin-top: 0.35rem;
  opacity: 0.85;
}
.badge-chip:hover .badge-action-hint {
  opacity: 1;
}

/* ===== States Managed Modal ===== */
.states-modal-container {
  max-width: 920px;
}
.states-lead-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  padding: 0 !important;
}
.modal-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.states-modal-intro {
  margin-bottom: 1.6rem;
  padding: 1rem 1.4rem;
  background: rgba(30, 58, 138, 0.25);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
}
.states-modal-intro p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}
.states-modal-intro strong {
  color: #fff;
}
.state-card-photos {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.3rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.3) transparent;
}
.state-photo-item {
  margin: 0;
  position: relative;
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  flex-shrink: 0;
  width: 100px;
  height: 72px;
  background: #060e24;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.state-photo-item:hover {
  transform: translateY(-2px) scale(1.04);
  border-color: var(--gold);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.5);
}
.state-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.state-photo-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.15rem 0.25rem;
  background: rgba(7, 15, 38, 0.9);
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
.state-card-num {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.state-card-info h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
}
.state-region-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}
.state-card-info p {
  font-size: 0.82rem;
  color: var(--text-mute);
  line-height: 1.4;
  margin: 0;
}

/* ===== States Accordion (inside modal) ===== */
.states-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.sa-item {
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}
.sa-item.open {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), 0 0 16px rgba(212, 175, 55, 0.12);
}

.sa-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(10, 20, 52, 0.55);
  border: none;
  color: #fff;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-primary);
  transition: background 0.2s var(--ease);
}
.sa-trigger:hover {
  background: rgba(212, 175, 55, 0.08);
}
.sa-item.open .sa-trigger {
  background: rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.sa-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  min-width: 32px;
  text-align: center;
  line-height: 1.6;
}
.sa-item.open .sa-num {
  background: var(--gold);
  color: #070f26;
  border-color: var(--gold);
}

.sa-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}
.sa-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.sa-region {
  font-size: 0.74rem;
  color: var(--text-mute);
  font-weight: 500;
}
.sa-item.open .sa-region {
  color: var(--gold-accent);
}

.sa-chevron {
  flex-shrink: 0;
  color: var(--text-mute);
  display: flex;
  align-items: center;
  transition: transform 0.3s var(--ease), color 0.2s var(--ease);
}
.sa-item.open .sa-chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

/* Body — animated open/close */
.sa-body {
  padding: 1.2rem 1.4rem 1.4rem;
  background: rgba(7, 15, 38, 0.5);
  animation: saBodyIn 0.25s var(--ease) both;
}
.sa-body[hidden] { display: none; }

@keyframes saBodyIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sa-desc {
  font-size: 0.9rem;
  color: var(--text-mute);
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.feature-list { display: flex; flex-direction: column; gap: 1.4rem; }
.feature { display: flex; gap: 1rem; }
.feature-icon { color: var(--gold-accent); flex-shrink: 0; margin-top: 0.15rem; }
.feature h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.25rem; }
.feature p { font-size: 0.94rem; color: var(--text-mute); }

/* ===== Team ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.8rem;
}
.team-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 1.8rem;
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.team-card:hover { transform: translateY(-6px); border-color: var(--card-border-hover); }
.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.2rem;
  border: 2.5px solid var(--gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar.mono {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--gold));
}
.team-avatar.mono::after {
  content: attr(data-initials);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
}
.team-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; }
.team-card p { color: var(--text-mute); font-size: 0.9rem; }

/* ===== Services 3D Revolving Cards ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
}
.service-card {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 20px;
  perspective: 1200px;
  height: 255px;
  cursor: pointer;
  outline: none;
  padding: 0;
  text-align: left;
}
.service-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.34, 1.25, 0.64, 1);
  border-radius: 20px;
}
.service-card:hover .service-card-inner,
.service-card:focus-visible .service-card-inner,
.service-card.flipped .service-card-inner {
  transform: rotateY(180deg);
}
.service-card-front,
.service-card-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
}
.service-card-front {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 1.8rem 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-card:hover .service-card-front {
  border-color: var(--card-border-hover);
  box-shadow: 0 15px 35px rgba(30, 64, 175, 0.3), 0 0 20px rgba(212, 175, 55, 0.15);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(30, 58, 138, 0.35);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}
.service-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: #fff;
  line-height: 1.25;
}
.service-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.45rem;
}
.service-title-row h3 {
  margin-bottom: 0;
}
.service-badge-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 2px 7px;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  color: #ffd700;
  white-space: nowrap;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-mute);
  line-height: 1.45;
}
.service-flip-hint {
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  opacity: 0.85;
  border-top: 1px dashed rgba(212, 175, 55, 0.15);
}
.service-card-back {
  transform: rotateY(180deg);
  border: 1.5px solid var(--gold);
  background: var(--bg-secondary);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75), 0 0 25px rgba(212, 175, 55, 0.3);
}
.service-back-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-back-img {
  transform: scale(1.08);
}
.service-back-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 15, 38, 0.25) 0%, rgba(7, 15, 38, 0.92) 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.3rem 1.4rem;
  z-index: 2;
}
.service-back-overlay h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}
.service-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Plain back face — no photo */
.service-card-back--plain {
  background: radial-gradient(ellipse at 60% 40%, rgba(30, 58, 138, 0.45) 0%, rgba(10, 20, 52, 0.95) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-back-overlay--plain {
  position: static;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.8rem 1.4rem;
  gap: 0.6rem;
  height: 100%;
}
.service-back-overlay--plain h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}
.service-back-overlay--plain .service-back-btn {
  color: var(--gold-light);
}

/* ===== Services Consultation Dropdown & Callout ===== */
.services-consultation-trigger-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 50;
}

.consultation-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.btn-consultation-dropdown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #d4af37 0%, #f59e0b 50%, #d97706 100%);
  color: #070f26 !important;
  font-family: var(--font-primary);
  font-size: 0.98rem;
  font-weight: 700;
  padding: 0.88rem 1.9rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.38), 0 0 18px rgba(245, 158, 11, 0.22);
  cursor: pointer;
  position: relative;
  transition: all 0.28s var(--ease);
  letter-spacing: 0.2px;
}

.btn-consultation-dropdown:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 38px rgba(212, 175, 55, 0.55), 0 0 28px rgba(245, 158, 11, 0.35);
  background: linear-gradient(135deg, #fde047 0%, #fbbf24 50%, #d97706 100%);
}

.btn-consultation-dropdown:active {
  transform: translateY(-1px);
}

.btn-consultation-dropdown .consultation-btn-pulse {
  position: absolute;
  top: 7px;
  right: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulseDot 2s infinite;
}

.btn-consultation-dropdown .dropdown-chevron {
  transition: transform 0.28s var(--ease);
}

.consultation-dropdown-wrapper.open .btn-consultation-dropdown .dropdown-chevron {
  transform: rotate(180deg);
}

.consultation-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  max-width: 92vw;
  background: rgba(8, 16, 42, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(212, 175, 55, 0.38);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 32px rgba(212, 175, 55, 0.22);
  padding: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 1000;
  animation: consultDropIn 0.22s var(--ease);
}

.consultation-menu[hidden] {
  display: none;
}

.consultation-menu-up {
  top: auto;
  bottom: calc(100% + 12px);
  animation: consultDropUp 0.22s var(--ease);
}

@keyframes consultDropIn {
  from { opacity: 0; transform: translate(-50%, -10px) scale(0.96); }
  to { opacity: 1; transform: translate(-50%, 0) scale(1); }
}

@keyframes consultDropUp {
  from { opacity: 0; transform: translate(-50%, 10px) scale(0.96); }
  to { opacity: 1; transform: translate(-50%, 0) scale(1); }
}

.consultation-option {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: all 0.22s var(--ease);
  cursor: pointer;
}

.consultation-option:hover {
  background: rgba(30, 58, 138, 0.32);
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateX(4px);
}

.option-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}

.consultation-option:hover .option-icon {
  transform: scale(1.08);
}

.opt-icon-wa {
  background: rgba(37, 211, 102, 0.16);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.35);
}

.consultation-option.opt-whatsapp:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.45);
}

.consultation-option.opt-whatsapp:hover .opt-icon-wa {
  background: #25D366;
  color: #fff;
}

.opt-icon-call {
  background: rgba(245, 158, 11, 0.16);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.consultation-option.opt-call:hover {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.45);
}

.consultation-option.opt-call:hover .opt-icon-call {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #070f26;
}

.opt-icon-mail {
  background: rgba(59, 130, 246, 0.16);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.35);
}

.consultation-option.opt-email:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.45);
}

.consultation-option.opt-email:hover .opt-icon-mail {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff;
}

.option-text {
  flex: 1;
  min-width: 0;
}

.option-title {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.option-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--text-mute);
  margin-top: 3px;
  line-height: 1.35;
}

.option-arrow {
  color: var(--gold-accent);
  font-weight: 700;
  font-size: 1.1rem;
  opacity: 0.55;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.consultation-option:hover .option-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* Services Consultation Callout Banner at Bottom */
.services-consultation-banner {
  margin-top: 4.2rem;
  padding: 2.6rem 3rem;
  background: radial-gradient(ellipse at 80% 50%, rgba(30, 58, 138, 0.42) 0%, rgba(10, 20, 52, 0.92) 65%, rgba(7, 15, 38, 0.98) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.32);
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 35px rgba(212, 175, 55, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  position: relative;
  overflow: visible;
}

.services-consultation-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.services-consultation-banner-content {
  flex: 1;
  max-width: 680px;
}

.consultation-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-accent);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.32);
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  margin-bottom: 0.85rem;
}

.consultation-banner-title {
  font-size: clamp(1.4rem, 2.3vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 0.65rem;
}

.consultation-banner-desc {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.55;
}

/* ===== Service Details & Gallery Modal ===== */
.service-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: modalFadeIn 0.25s var(--ease);
}
.service-modal-overlay[hidden] {
  display: none;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 9, 26, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.service-modal-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 920px;
  max-height: 88vh;
  overflow-y: auto;
  background: rgba(10, 20, 52, 0.98);
  border: 1.5px solid rgba(212, 175, 55, 0.38);
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.85), 0 0 35px rgba(212, 175, 55, 0.2);
  padding: 2.2rem 2.4rem;
  animation: modalPopIn 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--bg-primary);
}
@keyframes modalPopIn {
  from { opacity: 0; transform: scale(0.95) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close-btn {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(30, 58, 138, 0.4);
  color: var(--gold-light);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  z-index: 20;
}
.modal-close-btn:hover {
  background: var(--gold);
  color: #070f26;
  transform: rotate(90deg) scale(1.05);
}
.modal-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  margin-bottom: 1.8rem;
}
.modal-header-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(30, 58, 138, 0.5);
  border: 1.5px solid var(--gold);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}
.modal-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 700;
  color: var(--gold-accent);
  margin-bottom: 0.3rem;
}
.modal-title {
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}
.modal-section-badge {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 0.8rem;
}
.modal-subheading {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.modal-desc-box {
  background: rgba(14, 27, 63, 0.75);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 1.8rem;
  margin-bottom: 2.2rem;
}
.modal-description-text p {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.modal-description-text p:last-child {
  margin-bottom: 0;
}
.modal-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.9rem;
  margin: 1.4rem 0;
}
.spec-chip {
  background: rgba(8, 16, 42, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.spec-chip strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-accent);
}
.spec-chip span {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
}
.modal-gallery-action {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  flex-wrap: wrap;
}
.btn-modal-gallery {
  padding: 0.85rem 1.8rem;
  border-radius: 12px;
  cursor: pointer;
  border: none;
}
.modal-gallery-count {
  font-size: 0.85rem;
  color: var(--text-mute);
  font-weight: 600;
}
.modal-gallery-section {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  margin-bottom: 2rem;
}
.modal-gallery-head {
  margin-bottom: 1.4rem;
}
.modal-gallery-head h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.modal-gallery-head p {
  color: var(--text-mute);
  font-size: 0.9rem;
}
.modal-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
}
.modal-photo-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--bg-secondary);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.modal-photo-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.modal-photo-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}
.modal-photo-item:hover img {
  transform: scale(1.05);
}
.modal-photo-caption {
  padding: 0.8rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
  background: rgba(9, 18, 46, 0.92);
}
.modal-footer-cta {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.35) 0%, rgba(12, 24, 61, 0.85) 100%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 18px;
  padding: 1.6rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.modal-footer-text h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}
.modal-footer-text p {
  font-size: 0.86rem;
  color: var(--text-mute);
}
.modal-cta-buttons {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

@media (max-width: 780px) {
  .service-card { height: 260px; }
  .service-modal-container { padding: 1.5rem 1.2rem; max-height: 92vh; }
  .modal-header { gap: 0.9rem; }
  .modal-header-icon { width: 48px; height: 48px; }
  .modal-gallery-action { flex-direction: column; align-items: stretch; gap: 0.8rem; }
  .modal-cta-buttons { width: 100%; flex-direction: column; }
  .modal-cta-buttons .btn-whatsapp,
  .modal-cta-buttons .btn-call { width: 100%; }
}

/* ===== Coverage ===== */
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}
.coverage-info-col {
  display: flex;
  flex-direction: column;
}
.coverage-info-col .section-title {
  margin-bottom: 0.8rem;
}
.coverage-info-col .section-lede {
  margin-bottom: 2rem;
}
.states-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.state-chip {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 1rem 1.3rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  user-select: none;
  cursor: pointer;
}
.state-chip:hover {
  transform: translateX(5px);
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.18);
}
.state-chip:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.state-chip.active-state-highlight {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.14);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.28);
  transform: translateX(6px);
}
.state-chip.active-state-highlight .state-dot {
  background: #facc15;
  box-shadow: 0 0 10px #facc15;
}
.state-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}
.state-count-pill {
  font-size: 0.72rem;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  margin-left: auto;
  font-weight: 600;
  letter-spacing: 0.3px;
  flex-shrink: 0;
  transition: all 0.25s var(--ease);
}
.state-chip.active-state-highlight .state-count-pill {
  background: var(--gold);
  color: #070f26;
  font-weight: 700;
  border-color: var(--gold);
}

/* Coverage State Deployments Showcase */
.coverage-state-preview {
  margin-top: 1.8rem;
  padding: 1.3rem 1.4rem;
  background: rgba(12, 24, 61, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  animation: fadeIn 0.35s ease;
}
.state-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.state-preview-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.state-preview-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #070f26;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  flex-shrink: 0;
}
.state-preview-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.state-preview-count {
  font-size: 0.78rem;
  color: var(--text-mute);
  font-weight: 600;
}
.coverage-preview-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(115px, 1fr));
  gap: 0.8rem;
}
.coverage-preview-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: #04091a;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.coverage-preview-card:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: var(--gold);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.3);
}
.coverage-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.coverage-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 15, 38, 0.95) 0%, rgba(7, 15, 38, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.45rem 0.55rem;
  opacity: 0.92;
  transition: opacity 0.2s ease;
}
.coverage-preview-card:hover .coverage-preview-overlay {
  opacity: 1;
}
.coverage-preview-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.coverage-preview-loc {
  font-size: 0.62rem;
  color: var(--gold-light);
  margin-top: 0.15rem;
}

/* 3D Map Card Showcase */
.map-3d-stage {
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.map-3d-card {
  position: relative;
  width: 100%;
  max-width: 580px;
  border-radius: 28px;
  background: radial-gradient(ellipse at 50% 30%, rgba(30, 58, 138, 0.45) 0%, rgba(10, 20, 52, 0.95) 75%, rgba(7, 15, 38, 0.98) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.38);
  padding: 1.2rem;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.8), 0 0 45px rgba(212, 175, 55, 0.22);
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateY(-5deg) rotateX(3deg);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}
.map-3d-card:hover {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 60px rgba(212, 175, 55, 0.4);
}
.map-3d-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.map-3d-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transform: translateZ(30px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  background: #04091a;
}
.map-3d-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
}
.map-3d-card:hover .map-3d-img {
  transform: scale(1.02);
}
/* Dynamic glare sheen */
.map-3d-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--glare-x, 50%) var(--glare-y, 50%), rgba(255, 255, 255, 0.16) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
  z-index: 10;
}
.map-3d-card:hover .map-3d-glare {
  opacity: 1;
}
/* Floating Header Badge inside Card */
.map-3d-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
  top: 1.6rem;
  left: 1.8rem;
  z-index: 15;
  background: rgba(7, 15, 38, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fde047;
  transform: translateZ(50px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulseDot 2s infinite;
}
.map-3d-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 0.4rem 0.6rem 0.2rem;
  transform: translateZ(25px);
}
.map-3d-footer-text {
  font-size: 0.82rem;
  color: #94a3b8;
}
.map-3d-footer-hint {
  font-size: 0.76rem;
  color: #facc15;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}

@keyframes mapFloat3D {
  0% {
    transform: perspective(1200px) rotateY(-6deg) rotateX(4deg) translateY(0px);
  }
  100% {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-10px);
  }
}
.map-floating-anim {
  animation: mapFloat3D 6s ease-in-out infinite alternate;
}

/* ===== Social ===== */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.social-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  gap: 1.3rem;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.social-card:hover { transform: translateY(-6px); border-color: var(--card-border-hover); }
.social-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.social-icon.c-orange { background: rgba(255, 107, 0, 0.14); border: 1px solid #ff6b00; color: #ff9933; }
.social-icon.c-purple { background: rgba(30, 58, 138, 0.25); border: 1px solid var(--gold); color: var(--gold-accent); }
.social-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.4rem; }
.social-card p { color: var(--text-mute); font-size: 0.9rem; }
.c-orange-text { color: #ff9933; }
.c-purple-text { color: var(--gold-accent); }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
}
.contact-grid > div:first-child { display: flex; flex-direction: column; }
.contact-list { display: flex; flex-direction: column; gap: 1.7rem; margin-bottom: 2.6rem; }
.contact-row { display: flex; gap: 1.2rem; align-items: flex-start; }
.contact-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(30, 58, 138, 0.35);
  border: 1px solid var(--gold);
  color: var(--gold-accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row h4 { font-size: 1.02rem; margin-bottom: 0.2rem; }
.contact-row p { color: var(--text-mute); }
.contact-row a { color: var(--gold-accent); }
.contact-row a:hover { text-decoration: underline; }
.contact-mark {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0.5;
  font-family: var(--font-head);
  letter-spacing: 2px;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.form-panel {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 2.4rem;
}
.form-panel h3 { font-size: 1.4rem; margin-bottom: 1.6rem; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-error {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  background: rgba(255, 94, 0, 0.12);
  border: 1px solid rgba(255, 94, 0, 0.4);
  color: #ffb98a;
  font-size: 0.9rem;
}
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: 0.86rem; color: var(--text-mute); margin-bottom: 0.5rem; }
.field input,
.field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(10, 20, 52, 0.7);
  color: #fff;
  font-family: inherit;
  font-size: 0.94rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-faint); }

.form-success {
  text-align: center;
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.form-success .check {
  width: 80px; height: 80px;
  background: rgba(0, 230, 118, 0.1);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}
.form-success h3 { font-size: 1.7rem; margin-bottom: 1rem; }
.form-success p { color: var(--text-mute); max-width: 400px; margin-bottom: 2rem; }

/* ===== Footer ===== */
footer {
  background: #050b1c;
  position: relative;
  border-top: 1px solid rgba(212, 175, 55, 0.16);
}
.footer-accent {
  height: 3px;
  background: linear-gradient(90deg, #1e3a8a, #3b82f6, #d4af37, #fde047);
  opacity: 0.9;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.1rem; }
.footer-brand span { font-family: var(--font-head); font-weight: 700; letter-spacing: 1.5px; font-size: 1.05rem; }
.footer-blurb { color: var(--text-mute); font-size: 0.92rem; max-width: 280px; margin-bottom: 1.4rem; }
.footer-grid h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; color: #e6e2f5; margin-bottom: 1.2rem; }
.footer-grid > div a { display: block; color: var(--text-mute); font-size: 0.92rem; margin-bottom: 0.8rem; transition: color 0.2s var(--ease); }
.footer-grid > div a:hover { color: var(--gold-accent); }
.subscribe { display: flex; gap: 0.6rem; max-width: 320px; }
.subscribe input {
  flex: 1; min-width: 0;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(10, 20, 52, 0.7);
  color: #fff;
  font-family: inherit;
  font-size: 0.88rem;
}
.subscribe input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25);
}
.subscribe button {
  background: var(--cta-gradient);
  color: #070f26;
  border: none;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
}
.subscribe.done { color: var(--green); font-weight: 600; font-size: 0.9rem; align-items: center; }
.footer-base {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 1.6rem 2rem;
  text-align: center;
  background: #030713;
}
.footer-base p { color: var(--text-faint); font-size: 0.85rem; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

/* ===== Responsive ===== */
@media (max-width: 1150px) {
  .desktop-nav, .header-cta, .header-cta-group { display: none; }
  .mobile-toggle { display: block; }
}
@media (max-width: 1024px) {
  .hero-grid, .ai-grid, .about-grid, .coverage-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero { min-height: auto; }
  .hero-visual { max-width: 520px; margin-top: 0.5rem; }
  .about-visual { max-width: 480px; }
  .badge-chip { right: 0; }
  .hero-trust { justify-content: flex-start; }
  .ai-video-showcase { padding: 2.4rem 1.8rem; }
  .ai-video-row { grid-template-columns: 1fr; gap: 2.4rem; justify-items: center; text-align: center; }
  .video-short { width: 260px; }
  .ai-video-copy { display: flex; flex-direction: column; align-items: center; }
  .mini-features { grid-template-columns: repeat(2, 1fr); width: 100%; }
  .ai-video-actions { justify-content: center; flex-direction: column; align-items: center; gap: 1rem; }
}
@media (max-width: 780px) {
  .section { padding: 5rem 0; }
  .container { padding: 0 1.25rem; }
  .section-head, .section-head-row { margin-bottom: 2.5rem; }
  .hero { padding: 100px 0 48px; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 340px; }
  .hero-actions .btn { justify-content: center; }
  .hero-features { flex-wrap: wrap; gap: 0.9rem 1rem; margin-bottom: 1.6rem; }
  .hero-features li { flex: 0 0 calc(50% - 0.5rem); font-size: 0.8rem; }
  .hero-trust { padding: 1.2rem; gap: 1.2rem; }
  .trust-symbols { padding-left: 0; border-left: 0; }
  .hero-trust-stats { gap: 1rem 1.4rem; }
  .hero-trust-stats div { padding-left: 1rem; }
  .hero-trust-stats strong { font-size: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .channels { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .mini-features { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .ai-video-showcase { padding: 2.2rem 1.4rem; }
  .gallery-item { flex-basis: 78vw; }
  .gallery-item img { height: 320px; }
  .hero-visual { margin-bottom: 0.5rem; }
  .services-consultation-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.2rem 1.6rem;
    gap: 1.8rem;
  }
  .services-consultation-banner .consultation-dropdown-wrapper {
    width: 100%;
  }
  .services-consultation-banner .btn-consultation-dropdown {
    width: 100%;
  }
  .consultation-menu {
    width: min(360px, calc(100vw - 2.5rem));
  }
}
@media (max-width: 480px) {
  .ai-video-showcase { padding: 1.8rem 1rem; }
  .mini-features { grid-template-columns: 1fr; }
  .step-card { padding: 0.8rem 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .states-grid { grid-template-columns: 1fr; }
  .brand-text small { display: none; }
  .btn-consultation-dropdown {
    font-size: 0.9rem;
    padding: 0.8rem 1.3rem;
    gap: 0.5rem;
  }
  .services-consultation-trigger-wrap {
    width: 100%;
  }
  .services-consultation-trigger-wrap .consultation-dropdown-wrapper {
    width: 100%;
  }
  .services-consultation-trigger-wrap .btn-consultation-dropdown {
    width: 100%;
  }
  .consultation-menu {
    width: calc(100vw - 2rem);
    left: 50%;
    transform: translateX(-50%);
  }
  .map-3d-card {
    padding: 0.8rem;
    border-radius: 20px;
  }
  .map-3d-badge {
    top: 1.2rem;
    left: 1.2rem;
    font-size: 0.68rem;
    padding: 0.3rem 0.7rem;
  }
  .map-3d-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
  .coverage-preview-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Photo Lightbox ===== */
.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.photo-lightbox[hidden] {
  display: none;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 9, 26, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: lightboxPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes lightboxPop {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
.lightbox-close-btn {
  position: absolute;
  top: -2.8rem;
  right: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 1.8rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  transition: all 0.2s ease;
}
.lightbox-close-btn:hover {
  background: var(--gold);
  color: #070f26;
  border-color: var(--gold);
}
.lightbox-content img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 14px;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 175, 55, 0.25);
}
.lightbox-caption {
  margin-top: 0.8rem;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  background: rgba(7, 15, 38, 0.88);
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  max-width: 90vw;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .map-floating-anim { animation: none !important; transform: none !important; }
}
