/* ============================================================
   BLUESTREAM ENTERTAINMENT — MODERN EVENT EXPERIENCE
   Visual direction: premium nightlife / wedding production
   Deep navy, electric blue, cyan glow, editorial spacing.
   This file intentionally contains visual overrides only.
   ============================================================ */

:root {
  --navy: #06111f;
  --navy-mid: #0a192b;
  --navy-light: #10253e;
  --brand-blue: #0a6cff;
  --brand-cyan: #18d6ff;
  --brand-ice: #8becff;
  --gold: #18d6ff;
  --gold-light: #8becff;
  --gold-dark: #0a8ec4;
  --ivory: #f7f9fc;
  --ivory-dark: #eef3f8;
  --blush: #eaf1f8;
  --slate: #536276;
  --slate-light: #718096;
  --white: #ffffff;
  --black: #020813;

  --font-head: 'Manrope', 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --shadow-sm: 0 8px 28px rgba(2, 14, 31, .08);
  --shadow-md: 0 18px 50px rgba(2, 14, 31, .12);
  --shadow-lg: 0 30px 90px rgba(2, 14, 31, .18);
  --shadow-gold: 0 18px 55px rgba(24, 214, 255, .18);
  --max-width: 1320px;
  --nav-height: 86px;
  --section-pad: clamp(78px, 8vw, 132px);
}

html { background: var(--navy); }
body {
  background: var(--ivory);
  color: #142033;
  font-size: 16px;
  line-height: 1.72;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  letter-spacing: -.035em;
  color: #102036;
}

p { color: #5c697a; }

.container {
  max-width: var(--max-width);
  padding-inline: clamp(20px, 4.3vw, 64px);
}

/* -------- Navigation -------- */
.site-nav {
  height: var(--nav-height);
  background: linear-gradient(180deg, rgba(3, 12, 25, .72), rgba(3, 12, 25, .22));
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
}

.site-nav.scrolled {
  background: rgba(4, 14, 29, .94);
  border-bottom-color: rgba(24,214,255,.14);
  box-shadow: 0 14px 44px rgba(0,0,0,.26);
}

.nav-inner { gap: 32px; }
.nav-logo-img {
  width: min(218px, 36vw);
  max-width: 218px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 163, 255, .16));
}

.nav-links { gap: 2px; }
.nav-links a {
  position: relative;
  padding-inline: 14px;
  color: rgba(255,255,255,.78);
  font-size: .82rem;
  font-weight: 650;
  letter-spacing: .025em;
  border-radius: 10px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,.055);
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 13px;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  opacity: .9;
  transition: transform .25s ease;
}
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { transform: scaleX(1); }

.dropdown-menu {
  min-width: 250px;
  padding: 10px;
  background: rgba(5, 17, 34, .98);
  border: 1px solid rgba(24,214,255,.15);
  border-radius: 16px;
  box-shadow: 0 28px 70px rgba(0,0,0,.38);
}
.dropdown-menu li a {
  border-radius: 10px;
  padding: 12px 14px;
}
.dropdown-menu li a:hover { background: rgba(24,214,255,.08); }

.nav-cta {
  min-height: 43px;
  padding-inline: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 26px rgba(10,108,255,.26);
}

/* -------- Buttons -------- */
.btn,
.btn--primary,
.btn--secondary,
.btn--outline-light,
.btn--outline-gold,
.btn--dark {
  border-radius: 12px;
  min-height: 46px;
  font-family: var(--font-head);
  font-weight: 750;
  letter-spacing: -.01em;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

.btn-primary,
.btn--primary {
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(135deg, #0870ff 0%, #00b7ef 100%);
  box-shadow: 0 15px 38px rgba(6, 118, 255, .28), inset 0 1px rgba(255,255,255,.25);
}
.btn-primary:hover,
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(6, 118, 255, .38), inset 0 1px rgba(255,255,255,.28);
}

.btn-secondary,
.btn--secondary,
.btn--outline-light {
  color: #fff;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover,
.btn--secondary:hover,
.btn--outline-light:hover {
  color: #fff;
  background: rgba(255,255,255,.11);
  border-color: rgba(24,214,255,.5);
  transform: translateY(-2px);
}

.btn-outline-gold {
  color: #0876c9;
  background: rgba(10,108,255,.04);
  border: 1px solid rgba(10,108,255,.24);
}
.btn-outline-gold:hover {
  color: #fff;
  background: #0870ff;
  border-color: #0870ff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(10,108,255,.2);
}

.btn-dark {
  color: #fff;
  background: #07182b;
  border: 1px solid #07182b;
}
.btn-dark:hover {
  background: #0d2743;
  border-color: #0d2743;
  transform: translateY(-2px);
}

/* -------- Homepage hero -------- */
.hero {
  min-height: max(760px, 100svh);
  background: #03101f;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  width: 58vw;
  height: 58vw;
  max-width: 900px;
  max-height: 900px;
  left: -22vw;
  top: -24vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,124,255,.26), rgba(6,124,255,0) 68%);
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 44vw;
  height: 44vw;
  max-width: 680px;
  max-height: 680px;
  right: -14vw;
  bottom: -18vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,214,255,.15), rgba(24,214,255,0) 68%);
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  opacity: .62;
  filter: saturate(.82) contrast(1.04) brightness(.74);
  background-position: 50% 52%;
  transform: scale(1.025);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3,12,25,.97) 0%, rgba(3,12,25,.90) 37%, rgba(3,12,25,.58) 66%, rgba(3,12,25,.74) 100%),
    linear-gradient(180deg, rgba(2,10,22,.18) 0%, rgba(2,10,22,.2) 70%, rgba(2,10,22,.82) 100%);
}

.hero-content {
  max-width: 860px;
  padding-top: calc(var(--nav-height) + clamp(72px, 9vh, 120px));
  padding-bottom: clamp(72px, 8vh, 108px);
}

.hero-badge {
  margin-bottom: 24px;
  padding: 8px 13px;
  gap: 9px;
  color: #bff5ff;
  background: rgba(9,138,204,.12);
  border: 1px solid rgba(92,224,255,.24);
  border-radius: 10px;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .14em;
  box-shadow: inset 0 1px rgba(255,255,255,.05);
}
.hero-badge span { font-size: .65rem; color: var(--brand-cyan); }

.hero-title {
  max-width: 820px;
  margin-bottom: 24px;
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 6.7vw, 6.35rem);
  line-height: .98;
  letter-spacing: -.065em;
  text-wrap: balance;
  text-shadow: 0 22px 70px rgba(0,0,0,.30);
}

.hero-title .highlight {
  display: inline-block;
  font-family: var(--font-accent);
  font-weight: 600;
  letter-spacing: -.025em;
  color: #63e6ff;
  text-shadow: 0 0 35px rgba(24,214,255,.22);
}

.hero-description {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(238,247,255,.76);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.78;
}

.hero .btn-group { gap: 12px; }
.hero .btn-lg { min-height: 56px; padding: 15px 25px; font-size: .96rem; }
.hero .btn-primary span { display: none; }

.hero-stats {
  width: min(790px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(44px, 6vh, 70px);
  padding: 18px 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(4,15,30,.44);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  box-shadow: 0 22px 65px rgba(0,0,0,.22);
  overflow: hidden;
}

.hero-stat {
  padding: 5px 18px;
  border-right: 1px solid rgba(255,255,255,.10);
}
.hero-stat:last-child { border-right: 0; }
.hero-stat-number {
  margin-bottom: 6px;
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: -.04em;
}
.hero-stat-number span { color: inherit; }
.hero-stat-label {
  color: rgba(219,236,248,.55);
  font-size: .66rem;
  letter-spacing: .09em;
}

/* -------- Editorial section system -------- */
.section { position: relative; overflow: clip; }
.section-light { background: #f8fafc; }
.section-ivory { background: #eef4f9; }
.section-blush { background: #f6f9fc; }
.section-dark { background: #061423; }
.section-navy { background: #081a2d; }

.section-header { margin-bottom: clamp(38px, 5vw, 68px); }
.section-header.centered { max-width: 820px; margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: #0878cf;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0870ff, #18d6ff);
}
.section-header.centered .eyebrow::after {
  content: '';
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #18d6ff, #0870ff);
}

.section-title {
  margin-bottom: 17px;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.section-subtitle {
  max-width: 720px;
  color: #657386;
  line-height: 1.78;
  font-size: 1rem;
}
.section-dark .section-title,
.section-navy .section-title,
.section-dark h2,
.section-navy h2,
.section-dark h3,
.section-navy h3,
.section-dark h4,
.section-navy h4 { color: #fff !important; }
.section-dark .section-subtitle,
.section-navy .section-subtitle { color: rgba(222,238,249,.67) !important; }
.section-dark .eyebrow,
.section-navy .eyebrow { color: #7beeff !important; }

/* -------- Occasion cards -------- */
.card {
  border: 1px solid rgba(7,36,66,.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(5,31,57,.07);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-7px);
  border-color: rgba(10,108,255,.18);
  box-shadow: 0 28px 70px rgba(5,31,57,.13);
}
.card-img-wrap { height: 250px; overflow: hidden; }
.card-img { height: 100%; width: 100%; object-fit: cover; filter: saturate(.9) contrast(1.02); }
.card:hover .card-img { transform: scale(1.04); }
.card-body { padding: 28px 28px 30px; }
.card-title { margin-bottom: 10px; font-size: 1.32rem; letter-spacing: -.035em; }
.card-text { color: #667487; line-height: 1.72; font-size: .94rem; }
.card .divider { margin-block: 22px; background: linear-gradient(90deg, rgba(10,108,255,.25), transparent); }
.card .u-inline-442efd6c8d {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-top: -52px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #0870ff, #17c7eb);
  border: 4px solid #fff;
  box-shadow: 0 10px 24px rgba(8,112,255,.22);
  font-size: 1.08rem !important;
}

/* -------- Dark value proposition -------- */
.section-dark::before,
.section-navy::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  top: -240px;
  right: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,214,255,.11), transparent 68%);
  pointer-events: none;
}

.section-dark .grid-4 > .u-inline-51dac484c1 {
  position: relative;
  padding: 28px 24px;
  border-radius: 18px;
  text-align: left !important;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.085);
  box-shadow: inset 0 1px rgba(255,255,255,.025);
}
.section-dark .grid-4 > .u-inline-51dac484c1:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.055);
  border-color: rgba(24,214,255,.20);
}
.section-dark .grid-4 .service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: 0 0 18px !important;
  border-radius: 13px !important;
  background: rgba(24,214,255,.09) !important;
  border: 1px solid rgba(24,214,255,.16) !important;
  color: #79edff;
  font-size: 1rem !important;
}
.section-dark .grid-4 h4 { font-size: 1.02rem !important; margin-bottom: 8px !important; }
.section-dark .grid-4 p { color: rgba(221,237,248,.61) !important; line-height: 1.7; font-size: .88rem; }

/* -------- Service cards -------- */
.service-card {
  padding: 31px;
  border-radius: 21px;
  border: 1px solid rgba(7,36,66,.09);
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 40px rgba(5,31,57,.055);
  backdrop-filter: blur(8px);
}
.service-card::before {
  left: 31px;
  right: auto;
  top: 0;
  width: 54px;
  height: 3px;
  border-radius: 0 0 99px 99px;
  background: linear-gradient(90deg, #0870ff, #18d6ff);
  transform: none;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(10,108,255,.2);
  box-shadow: 0 25px 65px rgba(5,31,57,.11);
}
.service-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 15px;
  color: #0870ff;
  background: linear-gradient(145deg, #eaf6ff, #effcff);
  border: 1px solid rgba(10,108,255,.10);
  font-size: 1.15rem;
  box-shadow: none;
}
.service-icon svg { width: 22px; height: 22px; stroke: currentColor; }
.service-card h3 { font-size: 1.2rem !important; }
.service-card p { color: #667487 !important; font-size: .91rem !important; line-height: 1.72; }

/* -------- Process -------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.process-step {
  position: relative;
  padding: 28px 24px 28px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(7,36,66,.08);
  box-shadow: 0 12px 38px rgba(5,31,57,.05);
  text-align: left;
}
.process-step::after { display: none; }
.process-step:hover { transform: translateY(-5px); box-shadow: 0 22px 52px rgba(5,31,57,.09); }
.step-number {
  width: 42px;
  height: 42px;
  margin: 0 0 24px;
  border-radius: 12px;
  background: #081a2d;
  color: #7defff;
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 800;
  box-shadow: none;
}
.process-step:hover .step-number { background: linear-gradient(135deg,#0870ff,#18d6ff); color:#fff; }
.process-step h4 { margin-bottom: 8px; font-size: 1.02rem; }
.process-step p { color: #69778a; font-size: .88rem; line-height: 1.68; }

/* -------- Gallery -------- */
.gallery-grid { grid-template-columns: repeat(12, 1fr); gap: 14px; }
.gallery-item {
  grid-column: span 4;
  height: 285px;
  border-radius: 18px;
  box-shadow: none;
  background: #081827;
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(6) { grid-column: span 5; }
.gallery-item:nth-child(2),
.gallery-item:nth-child(5) { grid-column: span 3; }
.gallery-item:nth-child(3),
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item img { height: 100%; width: 100%; object-fit: cover; filter: saturate(.9); }
.gallery-overlay {
  background: linear-gradient(180deg, transparent 35%, rgba(2,11,24,.86));
  opacity: 1;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 22px;
}
.gallery-caption {
  transform: none;
  opacity: .96;
  color: #fff;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.gallery-overlay::after {
  right: 18px;
  top: 18px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(3,16,32,.44);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(7px);
}

/* -------- Testimonials -------- */
.testimonial-card {
  min-height: 100%;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.085);
  background: rgba(255,255,255,.035) !important;
  box-shadow: none;
}
.testimonial-card::before {
  color: rgba(24,214,255,.18);
  font-family: var(--font-accent);
}
.testimonial-text { color: rgba(225,239,249,.72) !important; line-height: 1.78; font-size: .91rem; }
.stars { color: #62e7ff; letter-spacing: .12em; }
.testimonial-avatar {
  background: linear-gradient(135deg, rgba(10,108,255,.22), rgba(24,214,255,.13));
  border: 1px solid rgba(24,214,255,.18);
  color: #9df4ff;
}
.testimonial-role { color: rgba(218,236,248,.47); }

/* -------- Pricing -------- */
.pricing-card {
  padding: 34px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(7,36,66,.09);
  box-shadow: 0 14px 44px rgba(5,31,57,.055);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 25px 68px rgba(5,31,57,.1); }
.pricing-card.featured {
  background: #071a2e;
  border-color: rgba(24,214,255,.24);
  box-shadow: 0 24px 70px rgba(2,20,41,.22), 0 0 0 1px rgba(24,214,255,.06) inset;
}
.pricing-badge {
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(135deg,#0870ff,#18d6ff);
}
.pricing-name { letter-spacing: .09em; }
.pricing-price { font-family: var(--font-head); font-size: 1.65rem; letter-spacing: -.035em; }
.pricing-features li { color: #5c6b7d; }
.pricing-card.featured .pricing-features li { color: rgba(224,239,249,.72); }
.pricing-features li::before { color: #0b8ed5; }

/* -------- Forms / quote -------- */
.section-dark#quote { background: #04111f; }
#quote::after {
  content: '';
  position: absolute;
  inset: auto -10% -45% 40%;
  height: 700px;
  background: radial-gradient(circle, rgba(10,108,255,.16), transparent 68%);
  pointer-events: none;
}
#quote form,
.form-card {
  position: relative;
  z-index: 1;
  border-radius: 24px !important;
  background: rgba(255,255,255,.045) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  box-shadow: 0 30px 80px rgba(0,0,0,.22) !important;
  backdrop-filter: blur(12px);
}
#quote form { padding: clamp(24px,4vw,44px) !important; }
#quote .form-label { color: rgba(239,247,253,.82) !important; }
#quote .form-control {
  min-height: 51px;
  color: #fff;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
}
#quote .form-control:focus {
  border-color: rgba(24,214,255,.7);
  background: rgba(255,255,255,.075);
  box-shadow: 0 0 0 4px rgba(24,214,255,.08);
}
#quote .form-control::placeholder { color: rgba(218,233,244,.34); }
#quote select.form-control option { background: #0a1b2e; color: #fff; }

.form-control {
  border-radius: 12px;
  border-color: #d8e1ea;
  min-height: 50px;
  background: #fff;
}
.form-control:focus { border-color: #289de6; box-shadow: 0 0 0 4px rgba(10,108,255,.08); }

/* -------- Inner page heroes -------- */
.page-hero {
  min-height: 520px;
  background: #04111f;
}
.page-hero-bg { opacity: .47; filter: saturate(.84) brightness(.72); }
.page-hero-overlay {
  background: linear-gradient(90deg, rgba(3,13,27,.95) 0%, rgba(3,13,27,.81) 48%, rgba(3,13,27,.56) 100%), linear-gradient(180deg, transparent, rgba(3,13,27,.55));
}
.page-hero-content { max-width: 830px; padding-block: 100px 82px; }
.page-hero-content h1 { font-size: clamp(2.75rem,5vw,5rem); letter-spacing: -.06em; line-height: 1; }
.page-hero-content p { color: rgba(225,239,249,.7); max-width: 680px; }
.page-hero-logo { opacity: .07; }

/* -------- GEO/location pages: modernize without changing content -------- */
.geo-hero { min-height: 690px; background-color: #04111f; }
.geo-hero__overlay {
  background: linear-gradient(90deg, rgba(3,13,27,.96), rgba(3,13,27,.72) 58%, rgba(3,13,27,.55)), linear-gradient(180deg, transparent, rgba(3,13,27,.74));
}
.geo-location-badge,
.geo-travel-badge,
.geo-event-tag,
.geo-nearby-pill { border-radius: 11px; }
.geo-hero__title { letter-spacing: -.06em; line-height: 1; }
.geo-service-card,
.geo-sidebar-card,
.geo-trust-item,
.geo-testimonial { border-radius: 20px; }
.geo-services--dark,
.geo-testimonials--dark { background: #07182a; }
.geo-urgency-ribbon { background: #0a6cff; }

/* -------- Footer -------- */
.site-footer {
  background: #020a14;
  border-top: 1px solid rgba(24,214,255,.10);
}
.site-footer::before {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(24,214,255,.55), transparent);
}
.footer-grid { gap: clamp(36px,5vw,72px); }
.footer-logo { width: min(245px,72vw); opacity: .94; }
.footer-tagline,
.footer-brand p { color: rgba(218,235,247,.52); }
.footer-heading,
.footer-col h4 { color: #fff; letter-spacing: -.02em; }
.footer-links a,
.footer-contact-item,
.footer-contact-item a { color: rgba(219,235,247,.58); }
.footer-links a:hover,
.footer-contact-item a:hover { color: #72eaff; }
.social-link {
  border-radius: 11px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
}
.social-link:hover { background: rgba(24,214,255,.10); border-color: rgba(24,214,255,.22); color:#77ecff; }
.footer-bottom { border-top-color: rgba(255,255,255,.07); }

/* -------- Privacy control: understated, not app-like -------- */
.privacy-consent {
  width: min(620px, calc(100vw - 28px));
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 17px 18px;
  border-radius: 16px;
  background: rgba(4,14,28,.96);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 20px 65px rgba(0,0,0,.38);
}
.privacy-consent h2 { font-size: 1rem; letter-spacing: -.02em; }
.privacy-consent p { font-size: .78rem; line-height: 1.55; }
.consent-actions { margin-top: 12px; }
.consent-actions .btn { min-height: 38px; padding: 8px 13px; font-size: .76rem; }

/* Chat intentionally hidden in the visual-first presentation.
   Contact and quote CTAs remain available throughout the site. */
.chat-launcher { display: none !important; }

/* -------- Motion -------- */
.reveal { transition: opacity .6s ease, transform .7s cubic-bezier(.2,.7,.2,1); }

/* -------- Responsive -------- */
@media (max-width: 1080px) {
  .nav-links a { padding-inline: 9px; font-size: .78rem; }
  .nav-cta { padding-inline: 14px; }
  .gallery-item,
  .gallery-item:nth-child(n) { grid-column: span 6; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  :root { --nav-height: 74px; }
  .site-nav { background: rgba(4,14,29,.9); }
  .nav-logo-img { width: min(190px, 52vw); }
  .hamburger span { background: #fff; }
  .mobile-nav {
    background: rgba(3,13,27,.985);
    backdrop-filter: blur(20px);
  }
  .mobile-nav a { border-bottom-color: rgba(255,255,255,.07); }
  .hero { min-height: 760px; }
  .hero-content { max-width: 760px; }
  .hero-title { font-size: clamp(3.15rem, 10vw, 5.2rem); }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .hero-stat:nth-child(2) { border-right: 0; }
  .hero-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.10); padding-bottom: 16px; }
  .hero-stat:nth-child(n+3) { padding-top: 16px; }
}

@media (max-width: 720px) {
  .section-header.centered { text-align: left; margin-inline: 0; }
  .section-header.centered .section-subtitle { margin-inline: 0; }
  .section-header.centered .eyebrow::after { display: none; }
  .hero-bg { background-position: 63% center; }
  .hero-overlay {
    background: linear-gradient(90deg, rgba(3,12,25,.96), rgba(3,12,25,.78)), linear-gradient(180deg, rgba(3,12,25,.15), rgba(3,12,25,.86));
  }
  .hero-title { font-size: clamp(2.75rem, 13vw, 4.4rem); }
  .hero-description { font-size: .96rem; }
  .hero .btn-group { display: grid; grid-template-columns: 1fr; width: 100%; }
  .hero .btn { width: 100%; justify-content: center; }
  .hero-stats { margin-top: 38px; }
  .hero-stat { padding-inline: 14px; }
  .card-img-wrap { height: 220px; }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item,
  .gallery-item:nth-child(n) { grid-column: 1; height: 260px; }
  .pricing-card { padding: 28px 24px; }
  .page-hero { min-height: 450px; }
  .page-hero-content { padding-block: 84px 60px; }
}

@media (max-width: 480px) {
  .hero { min-height: 720px; }
  .hero-badge { font-size: .64rem; letter-spacing: .1em; }
  .hero-title { font-size: clamp(2.55rem, 13.5vw, 3.6rem); }
  .hero-stats { border-radius: 15px; }
  .hero-stat-number { font-size: 1.35rem; }
  .section-title { font-size: clamp(2rem, 10vw, 2.7rem); }
  .card-body { padding: 24px; }
  .service-card { padding: 26px 23px; }
  .privacy-consent { bottom: 10px; width: calc(100vw - 20px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg { transform: none !important; }
}

/* ============================================================
   HEADER + FOOTER REFINEMENT — 2026-08-10
   Clean brand-first navigation and balanced conversion footer.
   ============================================================ */

/* ---------- Header ---------- */
.site-nav {
  height: 82px;
  background: rgba(4, 16, 30, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .075);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.site-nav.scrolled {
  background: rgba(3, 14, 28, .965);
  border-bottom-color: rgba(24, 214, 255, .13);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .24);
}

.site-nav .container {
  max-width: 1440px;
}

.nav-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 2.5vw, 42px);
}

.nav-logo {
  min-width: 0;
}

.nav-logo-img {
  display: block;
  width: clamp(170px, 15vw, 202px);
  max-width: 202px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 139, 255, .13));
}

/* Prevent legacy image-fallback markup from ever appearing alongside a valid logo. */
.nav-logo-fallback,
.nav-logo-fallback[hidden] {
  display: none !important;
}

.nav-links {
  justify-self: center;
  align-self: stretch;
  justify-content: center;
  gap: clamp(2px, .35vw, 7px);
  min-width: 0;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  position: relative;
  height: 100%;
  padding: 0 clamp(9px, .85vw, 14px);
  border-radius: 0;
  color: rgba(240, 247, 252, .78);
  background: transparent !important;
  font-size: .84rem;
  font-weight: 650;
  letter-spacing: .01em;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a.active {
  color: var(--brand-cyan);
}

/* Retire the old dropdown-character / underline collision. */
.nav-dropdown > a::after,
.nav-links > li > a::after {
  content: none !important;
  display: none !important;
}

.nav-links > li > a::before {
  content: '';
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 0;
  height: 2px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform .22s ease, opacity .22s ease;
}

.nav-links > li > a:hover::before,
.nav-links > li > a.active::before {
  transform: scaleX(1);
  opacity: 1;
}

.nav-chevron {
  margin-left: 5px;
  flex: 0 0 auto;
  opacity: .72;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.dropdown-menu {
  top: calc(100% - 1px);
  left: 50%;
  width: 258px;
  min-width: 258px;
  padding: 9px;
  background: rgba(4, 16, 31, .985);
  border: 1px solid rgba(118, 224, 255, .12);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
}

.dropdown-menu li a {
  display: flex;
  height: auto;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 9px;
  color: rgba(231, 242, 250, .75);
  font-size: .82rem;
}

.dropdown-menu li a::before,
.dropdown-menu li a::after {
  display: none !important;
  content: none !important;
}

.dropdown-menu li a:hover,
.dropdown-menu li a:focus-visible {
  color: #ffffff;
  background: rgba(24, 214, 255, .07) !important;
}

.nav-cta {
  margin-left: 0;
  min-height: 42px;
  padding: 10px 21px;
  border-radius: 999px;
  white-space: nowrap;
  font-size: .8rem;
  box-shadow: 0 10px 28px rgba(0, 153, 226, .22);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 58px 0 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(8, 108, 255, .08), transparent 28%),
    #020a14;
  border-top: 1px solid rgba(24, 214, 255, .11);
}

.site-footer::before {
  top: 0;
  width: min(1160px, 90vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(24, 214, 255, .5), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.45fr) repeat(4, minmax(145px, 1fr));
  gap: clamp(28px, 3.2vw, 50px);
  align-items: start;
  padding-bottom: 48px;
}

.footer-brand {
  min-width: 0;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}

.footer-logo {
  display: block;
  width: clamp(190px, 17vw, 225px);
  max-width: 225px;
  height: auto;
  margin: 0;
  filter: none;
  opacity: 1;
}

.footer-tagline,
.footer-brand p {
  max-width: 320px;
  margin: 0;
  color: rgba(216, 232, 244, .58);
  font-size: .88rem;
  line-height: 1.75;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
}

.footer-social-row .social-link,
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: rgba(226, 239, 248, .68);
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .085);
  box-shadow: none;
}

.footer-social-row .social-link:hover,
.social-link:hover {
  color: #ffffff;
  background: rgba(24, 214, 255, .09);
  border-color: rgba(24, 214, 255, .24);
  transform: translateY(-2px);
  box-shadow: none;
}

.footer-col {
  min-width: 0;
}

.footer-heading,
.site-footer .footer-heading {
  margin: 2px 0 18px;
  padding: 0;
  border: 0;
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -.015em;
  white-space: nowrap;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 0 0 10px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  color: rgba(211, 229, 242, .6);
  font-size: .84rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.footer-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  border-radius: 50%;
  background: rgba(24, 214, 255, .65);
  transition: background .2s ease, transform .2s ease;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 0;
  transform: translateX(2px);
}

.footer-links a:hover::before {
  background: var(--brand-cyan);
  transform: scale(1.25);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 5px;
  padding: 2px 6px;
  border: 1px solid rgba(24, 214, 255, .15);
  border-radius: 999px;
  background: rgba(24, 214, 255, .07);
  color: rgba(139, 236, 255, .78);
  font-size: .58rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.footer-view-all {
  margin-top: 3px;
  color: rgba(139, 236, 255, .78) !important;
  font-weight: 650;
}

.footer-contact {
  display: grid;
  gap: 13px;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  margin: 0;
  color: rgba(211, 229, 242, .6);
  font-size: .83rem;
  line-height: 1.5;
}

.footer-contact-item .icon {
  margin-top: 3px;
  color: var(--brand-cyan);
}

.footer-contact-item a {
  color: rgba(211, 229, 242, .68);
  overflow-wrap: anywhere;
}

.footer-contact-item a:hover {
  color: #ffffff;
}

.footer-quote-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  margin-top: 20px;
  padding: 9px 15px;
  border: 1px solid rgba(24, 214, 255, .23);
  border-radius: 999px;
  color: #dff9ff;
  background: rgba(24, 214, 255, .075);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.footer-quote-link:hover {
  color: #ffffff;
  background: rgba(24, 214, 255, .13);
  border-color: rgba(24, 214, 255, .35);
  transform: translateY(-1px);
}

.footer-bottom {
  min-height: 70px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .065);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 34px;
}

.footer-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
}

.footer-bottom p,
.footer-copy,
.footer-legal,
.footer-legal a {
  color: rgba(205, 221, 234, .43);
  font-size: .76rem;
  line-height: 1.5;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-legal a {
  text-decoration: none;
  transition: color .2s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

.footer-built-by {
  padding-left: 15px;
  border-left: 1px solid rgba(255, 255, 255, .09);
}

.footer-built-by a {
  color: rgba(139, 236, 255, .66);
  font-weight: 600;
}

.footer-bottom-logo {
  display: none !important;
}

@media (max-width: 1180px) {
  .nav-inner {
    gap: 18px;
  }

  .nav-logo-img {
    width: 168px;
  }

  .nav-links a {
    padding-inline: 9px;
    font-size: .78rem;
  }

  .nav-cta {
    padding-inline: 16px;
  }

  .footer-grid {
    grid-template-columns: minmax(240px, 1.3fr) repeat(2, minmax(160px, 1fr));
    row-gap: 38px;
  }

  .footer-contact-col {
    grid-column: 2 / -1;
  }
}

@media (max-width: 900px) {
  .site-nav {
    height: 74px;
  }

  .nav-inner {
    display: flex;
    justify-content: space-between;
  }

  .nav-logo-img {
    width: 172px;
    max-width: 172px;
    height: auto;
  }

  .footer-grid {
    grid-template-columns: 1.35fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
  }

  .footer-logo-link {
    margin-bottom: 0;
  }

  .footer-brand p,
  .footer-tagline {
    max-width: 420px;
  }

  .footer-social-row {
    margin-top: 0;
  }

  .footer-contact-col {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .site-footer {
    padding-top: 46px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 26px;
    padding-bottom: 38px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-logo {
    width: 205px;
  }

  .footer-social-row {
    margin-top: 3px;
  }

  .footer-contact-col {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-contact-item:last-child {
    grid-column: 1 / -1;
  }

  .footer-quote-link {
    width: max-content;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .nav-logo-img {
    width: 148px;
    max-width: 148px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact-col {
    grid-column: auto;
  }

  .footer-contact {
    grid-template-columns: 1fr;
  }

  .footer-contact-item:last-child {
    grid-column: auto;
  }

  .footer-heading,
  .site-footer .footer-heading {
    margin-bottom: 14px;
  }

  .footer-bottom {
    padding-block: 18px 22px;
  }

  .footer-legal {
    gap: 7px 13px;
  }

  .footer-built-by {
    width: 100%;
    padding: 7px 0 0;
    border-left: 0;
  }
}

@media (max-width: 900px) {
  .hamburger {
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 11px;
    background: rgba(255, 255, 255, .035);
  }

  .hamburger:hover,
  .hamburger:focus-visible {
    border-color: rgba(24, 214, 255, .28);
    background: rgba(24, 214, 255, .06);
  }

  .mobile-nav {
    padding: calc(var(--nav-height) + 18px) 20px 32px;
    gap: 3px;
    background: rgba(3, 13, 27, .992);
  }

  .mobile-nav a {
    padding: 13px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    border-radius: 9px;
    color: rgba(235, 245, 251, .82);
    font-size: .96rem;
    font-weight: 600;
  }

  .mobile-nav a:hover,
  .mobile-nav a[aria-current="page"] {
    color: #ffffff;
    background: rgba(24, 214, 255, .06);
  }

  .mobile-nav .mobile-cta {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 999px;
  }
}
