/* ===== VARIABLES ===== */
:root {
  --bg-primary:   #0C0C0B;
  --bg-secondary: #131312;
  --bg-card:      #181817;
  --bg-card-hover:#1E1E1C;
  --accent:       #1A6FFF;
  --accent-hover: #0057E0;
  --accent-light: #5B9BFF;
  --accent-glow:  rgba(26,111,255,0.18);
  --text-primary: #F2F2F0;
  --text-secondary: #808078;
  --text-muted:   #3E3E3C;
  --border:       #232321;
  --border-subtle:#1A1A18;
  --radius:       10px;
  --radius-lg:    18px;
  --radius-xl:    24px;
  --shadow:       0 4px 32px rgba(0,0,0,0.45);
  --shadow-hover: 0 12px 48px rgba(0,0,0,0.6);
  --shadow-blue:  0 8px 40px rgba(26,111,255,0.22);
  --transition:   0.22s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-light); }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; }
p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.75; }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT ===== */
.page-wrapper { padding-top: 70px; position: relative; z-index: 1; animation: page-fade-in 0.55s ease both; }
@keyframes page-fade-in { from { opacity: 0; } to { opacity: 1; } }
#footer-placeholder { position: relative; z-index: 1; }

/* Global ambient bg layer — injected by main.js */
#page-bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 8rem 0; position: relative; }
.section-sm { padding: 4.5rem 0; }
/* Alternating section — blends into the global bg animation via gradient fade */
.section-alt {
  padding: 6rem 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(6,6,5,0.58) 14%,
    rgba(6,6,5,0.58) 86%,
    transparent 100%
  );
}
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { max-width: 520px; margin: 0 auto; font-size: 0.97rem; }
.section-label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--accent-light);
  background: rgba(26,111,255,0.08);
  border: 1px solid rgba(26,111,255,0.2);
  padding: 0.3rem 0.9rem; border-radius: 50px;
  margin-bottom: 1rem;
}
.text-accent {
  background: linear-gradient(130deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gradient dividers between sections (continuous flow) */
.section + .section::before,
.section-sm + .section::before,
.section + .section-sm::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 50%; max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,111,255,0.15) 40%, rgba(26,111,255,0.15) 60%, transparent);
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(5,5,5,0.65);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  height: 70px; padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--text-primary); }
.nav-logo span { color: var(--accent); }
.nav-logo img { height: 54px !important; }
.nav-links { display: flex; align-items: center; gap: 2.25rem; }
.nav-links a { color: var(--text-secondary); font-size: 0.875rem; font-weight: 500; transition: color var(--transition); letter-spacing: 0.01em; }
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  background: var(--accent) !important;
  color: white !important;
  padding: 0.5rem 1.5rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all var(--transition) !important;
  box-shadow: 0 0 0 0 rgba(26,111,255,0) !important;
}
.nav-cta:hover {
  background: var(--accent-hover) !important;
  color: white !important;
  box-shadow: 0 4px 20px rgba(26,111,255,0.35) !important;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-primary); transition: var(--transition); }
.mobile-nav {
  display: none; position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(5,5,5,0.94);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 2rem; z-index: 999;
  flex-direction: column; gap: 0;
}
.mobile-nav.active { display: flex; }
.mobile-nav a { color: var(--text-secondary); font-size: 1rem; font-weight: 500; padding: 0.8rem 0; border-bottom: 1px solid var(--border-subtle); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .nav-cta { text-align: center; background: var(--accent) !important; color: white !important; border-radius: 50px !important; margin-top: 0.75rem; border-bottom: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 0.92rem;
  cursor: pointer; border: none;
  transition: all var(--transition);
  text-decoration: none; font-family: inherit;
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover {
  background: var(--accent-hover); color: white;
  box-shadow: 0 6px 28px rgba(26,111,255,0.4);
  transform: translateY(-1px);
}
.btn-outline {
  background: rgba(255,255,255,0.03);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: rgba(26,111,255,0.5);
  color: var(--accent-light);
  background: rgba(26,111,255,0.06);
}
.btn-lg { padding: 1.1rem 2.6rem; font-size: 0.98rem; }
.btn-block { width: 100%; justify-content: center; border-radius: var(--radius); }

/* ── SHIMMER CTA ── */
@keyframes shimmer-sweep {
  0%   { left: -70%; }
  100% { left: 120%; }
}
.btn-shimmer {
  position: relative;
  overflow: hidden;
  color: white !important;
}
.btn-shimmer::after {
  content: '';
  position: absolute;
  top: 0; left: -70%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255,255,255,0.18) 45%,
    rgba(255,255,255,0.28) 50%,
    rgba(255,255,255,0.18) 55%,
    transparent 100%
  );
  animation: shimmer-sweep 2.2s ease-in-out infinite;
  pointer-events: none;
}
.btn-shimmer:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26,111,255,0.55) !important;
  color: white !important;
}
.btn-shimmer:hover::after { animation-duration: 1.1s; }

/* ===== HERO ===== */
.hero {
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--bg-primary);
  padding: 6rem 0 5rem;
}

/* ── HEAT SIGNAL ANIMATION LAYER ── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}

/* Orb 1 — large ambient heat source, top-right */
.hero-orb-1 {
  width: 900px; height: 900px;
  background: radial-gradient(
    circle at 38% 42%,
    rgba(26,111,255,0.30) 0%,
    rgba(26,111,255,0.14) 28%,
    rgba(26,111,255,0.04) 55%,
    transparent 72%
  );
  filter: blur(72px);
  top: -380px; right: -220px;
  animation: orb-drift-1 18s ease-in-out infinite;
}

/* Orb 2 — medium, bottom-left, counter-drift */
.hero-orb-2 {
  width: 580px; height: 580px;
  background: radial-gradient(
    circle,
    rgba(91,155,255,0.22) 0%,
    rgba(26,111,255,0.10) 40%,
    transparent 68%
  );
  filter: blur(56px);
  bottom: -160px; left: -60px;
  animation: orb-drift-2 22s ease-in-out infinite;
}

/* Orb 3 — small, center, the bright "flare" */
.hero-orb-3 {
  width: 340px; height: 340px;
  background: radial-gradient(
    circle,
    rgba(220,235,255,0.20) 0%,
    rgba(120,175,255,0.20) 22%,
    rgba(26,111,255,0.12) 50%,
    transparent 72%
  );
  filter: blur(32px);
  top: 8%; left: 38%;
  animation: orb-pulse 11s ease-in-out infinite;
}

/* Orb 4 — very large, full-field ambient glow (deepest layer) */
.hero-orb-4 {
  width: 1200px; height: 700px;
  background: radial-gradient(
    ellipse at 60% 50%,
    rgba(26,111,255,0.07) 0%,
    rgba(26,111,255,0.02) 50%,
    transparent 70%
  );
  filter: blur(100px);
  top: -100px; left: -200px;
  animation: orb-drift-4 28s ease-in-out infinite;
}

/* Very subtle grain overlay for texture depth */
.hero-noise {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

@keyframes orb-drift-1 {
  0%,100% { transform: translate(0,0) scale(1);     opacity: 0.88; }
  20%     { transform: translate(-30px,45px) scale(1.05); opacity: 1;    }
  45%     { transform: translate(-65px,20px) scale(0.96); opacity: 0.82; }
  70%     { transform: translate(-25px,65px) scale(1.03); opacity: 0.95; }
}
@keyframes orb-drift-2 {
  0%,100% { transform: translate(0,0) scale(1);    }
  30%     { transform: translate(55px,-50px) scale(1.07); }
  65%     { transform: translate(30px,-90px) scale(0.93); }
}
@keyframes orb-pulse {
  0%,100% { opacity: 0.55; transform: scale(1);    }
  50%     { opacity: 1;    transform: scale(1.22); }
}
@keyframes orb-drift-4 {
  0%,100% { transform: translate(0,0); opacity: 0.9; }
  50%     { transform: translate(80px, -30px); opacity: 0.7; }
}

/* Hero layout */
.hero-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(26,111,255,0.08);
  border: 1px solid rgba(26,111,255,0.2);
  color: var(--accent-light);
  padding: 0.35rem 1rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.3px;
  backdrop-filter: blur(4px);
}
.hero h1 { margin: 1.1rem 0 1.25rem; line-height: 1.1; }
.hero-sub { font-size: 0.92rem; max-width: 420px; margin-bottom: 2.25rem; line-height: 1.75; color: var(--text-secondary); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero single image */
.hero-image {
  position: relative; z-index: 2;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.07), 0 28px 70px rgba(0,0,0,0.6), var(--shadow-blue);
}
.hero-image img {
  width: 100%; height: 540px;
  object-fit: cover; object-position: center 40%;
  display: block;
}

/* ===== PAGE HERO (interior pages) ===== */
.page-hero {
  padding: 5.5rem 0 4rem;
  background: radial-gradient(ellipse at 50% 0%, rgba(26,111,255,0.10) 0%, transparent 65%);
  text-align: center;
}
.breadcrumb { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-secondary); }

/* ===== FEATURE CARDS ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  display: flex; align-items: flex-start; gap: 1rem;
  text-align: left;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover {
  border-color: rgba(26,111,255,0.3);
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px);
}
.feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(26,111,255,0.08);
  border: 1px solid rgba(26,111,255,0.18);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-light);
  transition: background var(--transition);
}
.feature-card:hover .feature-icon { background: rgba(26,111,255,0.14); }
.feature-card-body { flex: 1; min-width: 0; }
.feature-card h3 { margin-bottom: 0.3rem; font-size: 0.95rem; }
.feature-card p { font-size: 0.83rem; line-height: 1.55; margin: 0; }

/* ===== PACKAGES ===== */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; align-items: start; }
.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.package-card:hover {
  border-color: rgba(26,111,255,0.3);
  box-shadow: var(--shadow-blue);
  transform: translateY(-3px);
}
.package-card.featured { border-color: rgba(26,111,255,0.45); }
.package-badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: var(--accent); color: white;
  font-size: 0.68rem; font-weight: 700;
  padding: 0.25rem 0.8rem; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.package-header { padding: 1.5rem 1.75rem 1rem; border-bottom: 1px solid var(--border-subtle); }
.package-header h3 { margin-bottom: 0.3rem; }
.package-header p { font-size: 0.88rem; margin: 0; }
.package-pricing { padding: 1rem 1.75rem; border-bottom: 1px solid var(--border-subtle); display: flex; flex-direction: column; gap: 0.5rem; }
.price-row { display: flex; justify-content: space-between; align-items: center; }
.price-label { color: var(--text-secondary); font-size: 0.85rem; }
.price-amount { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.3rem; }
.price-amount.highlight {
  background: linear-gradient(130deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-size: 1.5rem;
}
.package-features-list { padding: 1.1rem 1.75rem 1.5rem; }
.package-features-list ul { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.package-features-list li { display: flex; align-items: flex-start; gap: 0.65rem; color: var(--text-secondary); font-size: 0.87rem; }
.package-features-list li::before {
  content: '';
  display: inline-block; flex-shrink: 0;
  width: 16px; height: 16px; margin-top: 2px;
  background-color: var(--accent);
  -webkit-mask-image: url('/icons/check-fat.svg');
  mask-image: url('/icons/check-fat.svg');
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}

/* ===== ADD-ONS ===== */
.addons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.addon-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
}
.addon-card:hover { border-color: rgba(26,111,255,0.3); transform: translateY(-2px); }
.addon-icon { font-size: 1.5rem; margin-bottom: 0.85rem; }
.addon-card h4 { margin-bottom: 0.4rem; }
.addon-card p { font-size: 0.87rem; margin: 0; }

/* ===== SERVICE AREAS ===== */
.areas-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.85rem; }
.area-link {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem;
  text-align: center; color: var(--text-secondary);
  font-size: 0.87rem; font-weight: 500;
  transition: all var(--transition);
}
.area-link:hover { border-color: var(--accent); color: var(--accent-light); background: rgba(26,111,255,0.05); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, rgba(26,111,255,0.12), rgba(91,155,255,0.05));
  border: 1px solid rgba(26,111,255,0.2);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(26,111,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 0.5rem; position: relative; }
.cta-phone {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  background: linear-gradient(130deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin: 1.25rem 0; position: relative;
}
.cta-phone:hover { opacity: 0.85; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(26,111,255,0.1); border: 1px solid rgba(26,111,255,0.25);
  color: var(--accent-light); padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; margin-bottom: 1rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.testimonials-grid > div { padding: 1.5rem !important; gap: 0.75rem !important; }

/* ===== SHOWCASE STRIP ===== */
.showcase-strip {
  margin-top: 2rem;
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--border);
}
.showcase-strip img { width: 100%; height: 260px; object-fit: cover; display: block; }
.showcase-strip-caption {
  background: var(--bg-card); padding: 2rem;
  display: flex; flex-direction: column; justify-content: center;
}
.showcase-strip-caption h3 { margin-bottom: 0.4rem; font-size: 1rem; }
.showcase-strip-caption p { font-size: 0.87rem; margin: 0; }

/* ===== BEFORE / AFTER SLIDER ===== */
.ba-slider {
  position: relative; width: 100%; height: 400px;
  border-radius: var(--radius-xl); overflow: hidden;
  cursor: ew-resize; user-select: none; touch-action: pan-y;
  box-shadow: var(--shadow);
}
.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-before img, .ba-after img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  display: block; pointer-events: none;
}
.ba-after { clip-path: inset(0 50% 0 0); }
.ba-label {
  position: absolute; bottom: 1rem;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  padding: 0.22rem 0.75rem; border-radius: 50px;
  pointer-events: none; z-index: 5;
}
.ba-label-before { left: 1rem; background: rgba(0,0,0,0.65); color: rgba(255,255,255,0.82); }
.ba-label-after  { right: 1rem; background: var(--accent); color: white; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  z-index: 10; pointer-events: none; width: 48px;
}
.ba-handle-line { flex: 1; width: 2px; background: rgba(255,255,255,0.88); }
.ba-handle-circle {
  width: 46px; height: 46px;
  background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  color: #1a1a1a;
}

/* ===== RESULTS STRIP ===== */
.results-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.6rem; }
.results-strip-item { border-radius: var(--radius); overflow: hidden; }
.results-strip-item img {
  width: 100%; height: 160px;
  object-fit: cover; display: block;
  transition: transform 0.3s ease;
}
.results-strip-item:hover img { transform: scale(1.05); }

/* ===== SERVICES PAGE ===== */
.services-list { display: grid; gap: 1.25rem; }
.service-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  display: flex; align-items: flex-start; gap: 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}
.service-item:hover { border-color: rgba(26,111,255,0.3); transform: translateY(-2px); }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(26,111,255,0.08); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
  color: var(--accent-light);
}
.service-item h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.service-item p { font-size: 0.9rem; margin: 0; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.contact-detail { display: flex; gap: 1.1rem; margin-bottom: 1.75rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(26,111,255,0.08); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  color: var(--accent-light);
}
.contact-text h4 { margin-bottom: 0.2rem; font-size: 0.95rem; }
.contact-text p, .contact-text a { font-size: 0.9rem; margin: 0; color: var(--text-secondary); }
.contact-text a:hover { color: var(--accent-light); }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--text-secondary); margin-bottom: 0.5rem; letter-spacing: 0.01em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.9rem 1.1rem;
  color: var(--text-primary); font-size: 0.95rem;
  font-family: inherit; transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26,111,255,0.12);
}
.form-group select option { background: var(--bg-secondary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.gallery-item {
  aspect-ratio: 4/3;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.88rem; text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-blue); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery-item:hover img { transform: scale(1.04); }

/* ===== CITY PAGE ===== */
.city-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: start; }
.city-check-list { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.75rem 0; }
.city-check-list li { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--text-secondary); font-size: 0.95rem; }
.city-check-list li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.how-it-works { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.step-card { text-align: center; padding: 2rem 1rem; }
.step-number {
  width: 52px; height: 52px;
  background: rgba(26,111,255,0.08); border: 1.5px solid rgba(26,111,255,0.35);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--accent);
}
.step-card h4 { margin-bottom: 0.4rem; }
.step-card p { font-size: 0.88rem; margin: 0; }
.sticky-cta-card {
  background: var(--bg-card); border: 1px solid rgba(26,111,255,0.3);
  border-radius: var(--radius-xl); padding: 2.25rem;
  position: sticky; top: 90px; text-align: center;
}
.sticky-cta-card h3 { margin-bottom: 0.5rem; }
.sticky-cta-card p { font-size: 0.9rem; margin-bottom: 1.5rem; }
.big-phone { display: block; font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--accent); margin-bottom: 1rem; }
.related-areas h4 { font-size: 0.88rem; margin-bottom: 0.75rem; color: var(--text-secondary); font-weight: 600; }
.related-links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.related-link {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: 50px; padding: 0.3rem 0.9rem;
  font-size: 0.8rem; color: var(--text-secondary); transition: var(--transition);
}
.related-link:hover { color: var(--accent-light); border-color: rgba(26,111,255,0.4); }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.value-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: border-color var(--transition);
}
.value-card:hover { border-color: rgba(26,111,255,0.25); }
.value-icon {
  width: 44px; height: 44px;
  background: rgba(26,111,255,0.08); border: 1px solid rgba(26,111,255,0.15);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; color: var(--accent-light);
}
.value-card h4 { margin-bottom: 0.5rem; font-size: 0.95rem; }
.value-card p { font-size: 0.87rem; margin: 0; }
.addon-icon { color: var(--accent-light); font-size: 1.5rem; margin-bottom: 0.85rem; }

/* ===== FOOTER ===== */
footer {
  position: relative;
  background: linear-gradient(to bottom, transparent 0%, var(--bg-secondary) 14%);
  padding: 8rem 0 2.5rem;
  margin-top: 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3.5rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { display: inline-block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; max-width: 260px; margin-bottom: 1.25rem; line-height: 1.75; }
.footer-social { display: flex; gap: 0.6rem; }
.social-btn {
  width: 36px; height: 36px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); font-size: 0.78rem; font-weight: 700;
  transition: var(--transition);
}
.social-btn:hover { border-color: rgba(26,111,255,0.5); color: var(--accent-light); }
.footer-col h4 {
  font-size: 0.7rem; font-weight: 700; margin-bottom: 1.25rem;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a { color: var(--text-secondary); font-size: 0.875rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--text-primary); }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid var(--border-subtle);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-layout { gap: 2.5rem; }
  .hero-image img { height: 460px; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .how-it-works { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: 1fr; }
  .sticky-cta-card { position: static; }
  .about-grid { gap: 3rem; }
}
@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  .section { padding: 5rem 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .showcase-strip { grid-template-columns: 1fr; }
  .showcase-strip img { height: 200px; }
  .ba-slider { height: 300px; }
  .results-strip { grid-template-columns: repeat(3, 1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-layout { grid-template-columns: 1fr; gap: 0; }
  .hero-image { margin-top: 2.5rem; }
  .hero-image img { height: 300px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { padding: 3rem 1.75rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  /* Scale down orbs on tablet */
  .hero-orb-1 { width: 560px; height: 560px; top: -220px; right: -160px; }
  .hero-orb-2 { width: 360px; height: 360px; }
  .hero-orb-3 { width: 220px; height: 220px; }
  .hero-orb-4 { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .ba-slider { height: 260px; }
  .results-strip { grid-template-columns: repeat(2, 1fr); }
  .results-strip-item img { height: 130px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero { padding: 0; min-height: 100svh; }
  .hero-layout { grid-template-columns: 1fr; position: relative; min-height: 100svh; }
  .hero-content { position: relative; z-index: 2; padding: 3.5rem 0 4rem; }
  .hero-image {
    position: absolute;
    top: 0; bottom: 0;
    left: -1.25rem; right: -1.25rem;
    border-radius: 0; z-index: 0; margin-top: 0;
    box-shadow: none;
  }
  .hero-image::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
      to top,
      rgba(12,12,11,0.97) 0%,
      rgba(12,12,11,0.88) 35%,
      rgba(12,12,11,0.45) 65%,
      rgba(12,12,11,0.15) 100%
    );
  }
  .hero-image img { height: 100%; object-position: center 55%; }
  .hero-sub { color: rgba(255,255,255,0.72) !important; }
  .hero .hero-badge {
    background: rgba(10,10,10,0.42);
    border-color: rgba(255,255,255,0.16);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
  /* Smaller orbs on mobile */
  .hero-orb-1 { width: 400px; height: 400px; top: -150px; right: -150px; filter: blur(50px); }
  .hero-orb-2 { width: 260px; height: 260px; filter: blur(40px); }
  .hero-orb-3 { width: 180px; height: 180px; filter: blur(28px); left: 20%; }
  .hero-orb-4 { display: none; }
}


/* ═══════════════════════════════════════════════════
   CINEMATIC HERO
   ═══════════════════════════════════════════════════ */

.hero-cinematic {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background: #040404;
  --hc-mx: 50%;
  --hc-my: 62%;
}

/* ── Mouse-reactive light glow ── */
.hc-mouse-glow {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: radial-gradient(
    540px circle at var(--hc-mx) var(--hc-my),
    rgba(255,255,255,0.055) 0%,
    rgba(255,255,255,0.018) 40%,
    transparent 68%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hero-cinematic:hover .hc-mouse-glow { opacity: 1; }

/* ── Vehicle Stage ── */
.hc-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.hc-vehicle-wrap {
  position: absolute;
  inset: 0;
  will-change: transform;
  animation: hc-drift 26s ease-in-out infinite;
}
.hc-vehicle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  display: block;
  filter: brightness(0.70) saturate(0.68) contrast(1.06);
  animation: hc-transform 7.5s ease-in-out 1.4s infinite backwards;
  will-change: filter;
}

/* Camera drift — subtle Ken Burns */
@keyframes hc-drift {
  0%, 100% { transform: scale(1.05) translate(0%,    0%);    }
  28%       { transform: scale(1.08) translate(-0.7%, 0.4%);  }
  56%       { transform: scale(1.06) translate( 0.5%, -0.5%); }
}

/* Vehicle transformation — synced with light sweep */
@keyframes hc-transform {
  0%,  14% { filter: brightness(0.70) saturate(0.68) contrast(1.06); }
  38%      { filter: brightness(0.88) saturate(0.88) contrast(1.10); }
  54%      { filter: brightness(0.98) saturate(1.02) contrast(1.13); }
  74%, 100%{ filter: brightness(0.70) saturate(0.68) contrast(1.06); }
}

/* ── Light Sweep ── */
.hc-sweep {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.hc-sweep::after {
  content: '';
  position: absolute;
  top: -40%;
  left: 0;
  width: 26%;
  height: 180%;
  background: linear-gradient(
    108deg,
    transparent              0%,
    rgba(255,255,255,0.015) 20%,
    rgba(255,255,255,0.08)  50%,
    rgba(255,255,255,0.015) 80%,
    transparent            100%
  );
  animation: hc-sweep-move 7.5s ease-in-out 1.4s infinite;
  will-change: transform, opacity;
  pointer-events: none;
}
@keyframes hc-sweep-move {
  0%,  9% { transform: translateX(-130%) skewX(-18deg); opacity: 0; }
  13%      { opacity: 1; }
  38%      { opacity: 1; }
  50%, 100%{ transform: translateX(400%) skewX(-18deg); opacity: 0; }
}

/* ── Dust Particles Canvas ── */
.hc-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.5;
}

/* ── Directional Overlay ── */
.hc-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(to top,
      rgba(4,4,4,0.97) 0%,
      rgba(4,4,4,0.76) 20%,
      rgba(4,4,4,0.30) 42%,
      transparent      62%
    ),
    linear-gradient(to right,
      rgba(4,4,4,0.58) 0%,
      rgba(4,4,4,0.18) 32%,
      transparent      58%
    ),
    linear-gradient(to bottom,
      rgba(4,4,4,0.38) 0%,
      transparent      18%
    ),
    radial-gradient(ellipse at 50% 90%,
      transparent 30%,
      rgba(4,4,4,0.42) 100%
    );
}

/* ── Content ── */
.hc-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2.5rem 2rem;
}

.hc-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.6rem;
  animation: hc-fade-up 0.9s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}
.hc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(26,111,255,0.7);
  animation: hc-ping 2.8s ease-out 1.8s infinite;
}
@keyframes hc-ping {
  0%    { box-shadow: 0 0 0 0 rgba(26,111,255,0.7); }
  70%   { box-shadow: 0 0 0 8px rgba(26,111,255,0); }
  100%  { box-shadow: 0 0 0 0 rgba(26,111,255,0);   }
}

/* Cinematic text reveal — lines slide up from behind a clip */
.hc-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 1.8rem;
  display: flex;
  flex-direction: column;
}
.hc-line {
  display: block;
  overflow: hidden;
  line-height: 1.05;
}
.hc-line-inner {
  display: block;
  animation: hc-line-up 0.9s cubic-bezier(0.16,1,0.3,1) both;
}
.hc-line-1 .hc-line-inner { animation-delay: 0.52s; }
.hc-line-2 .hc-line-inner {
  animation-delay: 0.74s;
  color: rgba(255,255,255,0.52);
}
@keyframes hc-line-up {
  from { transform: translateY(108%); }
  to   { transform: translateY(0);    }
}

.hc-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 460px;
  margin: 0 auto 2.5rem;
  animation: hc-fade-up 0.9s cubic-bezier(0.16,1,0.3,1) 0.95s both;
}

/* ── CTA Buttons ── */
.hc-actions {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  animation: hc-fade-up 0.9s cubic-bezier(0.16,1,0.3,1) 1.12s both;
}

.hc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  color: #080808;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 1rem 1.85rem;
  border-radius: 5px;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 4px 28px rgba(0,0,0,0.45);
  position: relative;
  overflow: hidden;
}
.hc-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.18) 100%);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.hc-btn-primary:hover {
  color: #080808;
  transform: translateY(-2px);
  box-shadow: 0 10px 48px rgba(0,0,0,0.55);
}
.hc-btn-primary:hover::before { opacity: 1; }
.hc-btn-primary svg { transition: transform 0.22s ease; flex-shrink: 0; }
.hc-btn-primary:hover svg { transform: translateX(4px); }

.hc-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.72);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 1rem 1.6rem;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.20);
  text-decoration: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.hc-btn-ghost:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.42);
  color: #fff;
  transform: translateY(-1px);
}

@keyframes hc-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}


/* ── Trust Strip ── */
.hc-trust {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(6,6,6,0.75);
  border-top: 1px solid rgba(255,255,255,0.07);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  backdrop-filter: blur(28px) saturate(160%);
  animation: hc-fade-up 0.9s cubic-bezier(0.16,1,0.3,1) 1.35s both;
}
.hc-trust-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  height: 52px;
}
.hc-pill {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 1.35rem;
  height: 100%;
  color: rgba(255,255,255,0.65);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.15px;
  white-space: nowrap;
  cursor: default;
  transition: color 0.2s ease;
}
.hc-pill:hover { color: rgba(255,255,255,0.95); }
.hc-pill svg { color: rgba(255,255,255,0.38); flex-shrink: 0; transition: color 0.2s ease; }
.hc-pill:hover svg { color: var(--accent-light); }
.hc-pill-div {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.09);
  flex-shrink: 0;
}

/* ── Scroll Indicator ── */
.hc-scroll {
  position: absolute;
  top: 46%;
  right: 2.25rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: hc-fade-up 0.9s cubic-bezier(0.16,1,0.3,1) 1.8s both;
}
.hc-scroll-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.28);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hc-scroll-line {
  width: 1px;
  height: 52px;
  overflow: hidden;
  position: relative;
}
.hc-scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: hc-scroll-tick 1.6s ease-in-out 2.2s infinite;
}
@keyframes hc-scroll-tick {
  0%   { transform: translateY(-100%); opacity: 1; }
  50%  { transform: translateY(0%);    opacity: 1; }
  100% { transform: translateY(100%);  opacity: 0; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hc-content { padding: 0 1.75rem 2.75rem; }
  .hc-trust-inner { height: auto; padding: 0.8rem 1.75rem; flex-wrap: wrap; gap: 0.45rem; }
  .hc-pill {
    height: auto;
    padding: 0.35rem 0.9rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 50px;
    font-size: 0.72rem;
  }
  .hc-pill-div { display: none; }
  .hc-scroll { display: none; }
}
@media (max-width: 600px) {
  .hc-content { padding: 0 1.25rem 2.5rem; text-align: center; }
  .hc-headline { font-size: clamp(2.6rem, 13vw, 3.8rem); text-align: center; }
  .hc-eyebrow { justify-content: center; text-align: center; }
  .hc-sub { font-size: 0.92rem; max-width: 100%; text-align: center; margin-left: auto; margin-right: auto; }
  .hc-actions { flex-direction: column; align-items: stretch; }
  .hc-btn-primary, .hc-btn-ghost { justify-content: center; width: 100%; }
  .hc-trust-inner { padding: 0.65rem 1.25rem; }
  .hc-pill { font-size: 0.68rem; padding: 0.3rem 0.75rem; }
  .hc-vehicle-img { object-position: center 72%; }
}


/* ═══════════════════════════════════════════════════
   CINEMATIC GLASS THEME — matches hero aesthetic
   ═══════════════════════════════════════════════════ */

/* Feature cards */
.feature-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.feature-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(26,111,255,0.28);
}

/* Package cards */
.package-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.09);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.package-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(26,111,255,0.30);
}
.package-card.featured {
  background: rgba(26,111,255,0.07);
  border-color: rgba(26,111,255,0.32);
}

/* Package sub-sections */
.package-header,
.package-pricing,
.package-features-list { background: transparent !important; }
.package-pricing { border-color: rgba(255,255,255,0.07) !important; }

/* Area links */
.area-link {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.area-link:hover {
  background: rgba(26,111,255,0.08);
  border-color: rgba(26,111,255,0.28);
}

/* CTA banner */
.cta-banner {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.09);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}
.cta-banner::before {
  background: radial-gradient(ellipse at 50% 0%, rgba(26,111,255,0.10) 0%, transparent 60%);
}

/* Membership teaser */
.membership-teaser {
  background: rgba(26,111,255,0.06) !important;
  border-color: rgba(26,111,255,0.22) !important;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* Footer */
footer {
  background: linear-gradient(to bottom, transparent 0%, rgba(4,4,4,0.96) 14%);
}
.social-btn {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.09);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.social-btn:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
}
