/* ============================
   Toon Shine, Design Tokens
   ============================ */
:root {
  --ink: #0a0a0b;
  --ink-soft: #1d1c1a;

  --bg: #09090b;
  --bg-soft: #131316;
  --card: #18181c;
  --line: rgba(255,255,255,0.12);
  --text: #f4f4f2;
  --muted: #9a9a9d;

  --shine: #2f7dfa;
  --shine-dark: #1c5bd1;
  --shine-bright: #6fa8ff;
  --shine-light: rgba(47,125,250,0.16);

  --surface: #ffffff;
  --surface-line: #e6e6e4;
  --surface-muted: #6b6b70;
  --surface-soft: #f2f2f1;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.30), 0 1px 1px rgba(0,0,0,0.20);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.45);
  --shadow-lg: 0 24px 56px rgba(0,0,0,0.60);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Fraunces', 'Playfair Display', var(--font);

  --container: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================
   Scroll reveal
   (only hides content once JS confirms it can reveal it again;
   if JS never runs, .reveal elements stay fully visible)
   ============================ */
html.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ============================
   Icons
   ============================ */
.icon {
  width: 1.05em;
  height: 1.05em;
  display: inline-block;
  vertical-align: -0.18em;
  flex-shrink: 0;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--shine-bright);
  background: var(--shine-light);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin-bottom: 12px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: var(--font);
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.btn:hover::after { left: 130%; }

.btn-primary {
  background: var(--shine);
  color: #fff;
  box-shadow: 0 8px 20px rgba(47,125,250,0.35);
}
.btn-primary:hover { background: var(--shine-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(47,125,250,0.45); }

.btn-dark {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--line);
}
.btn-dark:hover { background: var(--ink-soft); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--shine); color: var(--shine-bright); }

.btn-block { width: 100%; }

.btn-arrow { transition: transform 0.25s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================
   Nav
   ============================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9,9,11,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(9,9,11,0.97);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  transition: padding 0.3s ease;
}
.nav.scrolled .nav-inner { padding: 11px 0; }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #000000 50%, var(--shine) 50%);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--shine-bright); }

.nav-cta { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: 0.2s ease;
}

/* ============================
   Hero
   ============================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
  background:
    radial-gradient(circle at 85% 10%, rgba(47,125,250,0.20), transparent 45%),
    radial-gradient(circle at 8% 95%, rgba(47,125,250,0.10), transparent 40%),
    linear-gradient(180deg, #0c0c0f 0%, var(--bg) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

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

.hero .eyebrow, .hero h1, .hero-sub, .hero-actions, .hero-badges {
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero .eyebrow { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.15s; }
.hero-sub { animation-delay: 0.28s; }
.hero-actions { animation-delay: 0.4s; }
.hero-badges { animation-delay: 0.52s; }

.hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  margin-bottom: 20px;
  color: var(--text);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-tel {
  font-weight: 600;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.hero-badges {
  display: flex;
  gap: 22px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #000000 0%, #16181d 55%, var(--shine-dark) 130%);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px -24px rgba(47,125,250,0.5);
}

.hero .hero-visual {
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  will-change: transform;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.06) 0 2px, transparent 2px 40px);
}

.hero-visual .shine-car {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual .droplets span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  animation: drop 3.2s ease-in-out infinite;
}

@keyframes drop {
  0% { transform: translateY(-10px); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(220px); opacity: 0; }
}

.hero-stat-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
}

.hero-stat-card div strong {
  display: block;
  font-size: 1.3rem;
  font-family: var(--font-display);
  color: var(--ink);
}
.hero-stat-card div span {
  font-size: 0.82rem;
  color: var(--surface-muted);
}

/* ============================
   About
   ============================ */
.about {
  background: var(--bg-soft);
}

.about-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.about-inner p { max-width: 620px; margin-left: auto; margin-right: auto; }

.about h2 { margin-bottom: 18px; color: var(--text); }
.about p { color: var(--muted); font-size: 1.02rem; margin-bottom: 16px; }

.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.fact {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.fact .ico { font-size: 1.3rem; color: var(--shine-bright); display: inline-flex; }

/* ============================
   Services / Pricing
   ============================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.plan {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  color: var(--text);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md), 0 0 32px -14px rgba(47,125,250,0.5); border-color: rgba(47,125,250,0.4); }

.plan.featured {
  border-color: var(--shine);
  box-shadow: var(--shadow-md), 0 0 40px -20px rgba(47,125,250,0.6);
  background: linear-gradient(180deg, var(--card) 0%, rgba(47,125,250,0.10) 260%);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 30px;
  background: var(--shine);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}

.plan-icon { font-size: 1.8rem; margin-bottom: 14px; color: var(--shine-bright); }

.plan h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--text);
}

.plan-tagline {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.plan-time {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.plan ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}

.plan li {
  display: flex;
  gap: 10px;
  font-size: 0.93rem;
  align-items: flex-start;
  color: var(--muted);
}

.plan li.included-note {
  font-weight: 600;
  color: var(--text);
}

.plan li .check {
  color: var(--shine-bright);
  font-weight: 700;
  flex-shrink: 0;
}

/* Add-ons */
.addons {
  margin-top: 56px;
  background: linear-gradient(135deg, #101014 0%, #18181d 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--text);
  box-shadow: var(--shadow-md);
}

.addons-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.addons-head h3 { font-size: 1.3rem; color: var(--text); }
.addons-head p { color: var(--muted); font-size: 0.92rem; }

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

.addon-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}

.addon-card .price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--shine-bright);
  margin: 6px 0 4px;
}

.addon-card .name { font-size: 0.88rem; color: rgba(255,255,255,0.75); }

/* ============================
   Why Choose Us
   ============================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md), 0 0 28px -16px rgba(47,125,250,0.5); border-color: rgba(47,125,250,0.35); }

.why-card .ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--shine-light);
  color: var(--shine-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.why-card h4 { font-size: 1.05rem; margin-bottom: 8px; color: var(--text); }
.why-card p { font-size: 0.92rem; color: var(--muted); }

/* ============================
   Trust Strip
   ============================ */
.trust-strip {
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 40px 24px;
}

.trust-stat {
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid var(--line);
}
.trust-stat:last-child { border-right: none; }

.trust-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--shine-bright);
  margin-bottom: 4px;
}

.trust-stat span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* ============================
   Testimonials
   ============================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 28px -16px rgba(47,125,250,0.5);
  border-color: rgba(47,125,250,0.35);
}

.testimonial-card .stars {
  display: flex;
  gap: 3px;
  color: var(--shine-bright);
  margin-bottom: 14px;
}
.testimonial-card .stars .icon { width: 15px; height: 15px; }

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 22px;
  line-height: 1.6;
}

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

.testimonial-author .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--shine-light);
  color: var(--shine-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
}

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

/* ============================
   Coverage
   ============================ */
.coverage {
  background: var(--bg-soft);
  color: var(--text);
}

.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.map-embed {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg), 0 0 60px -24px rgba(47,125,250,0.4);
  background: #0d0e10;
}
.map-embed iframe {
  display: block;
  pointer-events: none;
  filter: invert(1) hue-rotate(180deg) grayscale(0.25) brightness(0.92) contrast(0.9);
}

.map-zone {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68%;
  aspect-ratio: 1/1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,125,250,0.30) 0%, rgba(47,125,250,0.14) 45%, transparent 72%);
  border: 1.5px dashed rgba(111,168,255,0.55);
  pointer-events: none;
  animation: zonePulse 3.5s ease-in-out infinite;
}
@keyframes zonePulse {
  0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.045); }
}

.map-zone-label {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(9,9,11,0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  pointer-events: none;
}
.map-zone-label .icon { color: var(--shine-bright); }

.coverage h2 { color: var(--text); }
.coverage-sub { color: var(--muted); margin-bottom: 28px; }

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.area-tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

.coverage-note {
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--shine);
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* ============================
   How it Works
   ============================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step {
  text-align: center;
  padding: 0 12px;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--shine);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 18px;
  box-shadow: 0 0 0 6px var(--shine-light);
}

.step h4 { font-size: 1.05rem; margin-bottom: 8px; color: var(--text); }
.step p { font-size: 0.9rem; color: var(--muted); }

/* ============================
   FAQ
   ============================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item.open { border-color: rgba(47,125,250,0.4); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
}

.faq-icon {
  color: var(--shine-bright);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 240px; }
.faq-answer p {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ============================
   Final CTA
   ============================ */
.final-cta {
  background: linear-gradient(135deg, var(--shine-dark), var(--shine));
  color: #fff;
  text-align: center;
  border-radius: var(--radius-lg);
  margin: 0 24px;
  padding: 64px 32px;
}

.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 32px; font-size: 1.05rem; }

.final-cta .btn-dark { background: #fff; color: var(--ink); border: none; }
.final-cta .btn-dark:hover { background: var(--surface-soft); }

/* ============================
   Footer
   ============================ */
footer {
  background: var(--bg-soft);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 0.92rem; max-width: 280px; margin-bottom: 18px; }

.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.footer-socials a:hover { background: var(--shine); }

.footer-col h5 {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col li { font-size: 0.92rem; }
.footer-col a:hover { color: var(--shine-bright); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================
   Booking Modal
   ============================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal {
  position: relative;
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 36px;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-lg), 0 0 80px -20px rgba(47,125,250,0.35);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(280px circle at var(--mx, 85%) var(--my, 10%), rgba(47,125,250,0.28), transparent 70%);
  transition: background 0.1s ease-out;
  pointer-events: none;
  z-index: 0;
}

.modal-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 4px;
}

.modal-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--shine-bright);
  margin-bottom: 4px;
}

.modal-head h3 { font-size: 1.5rem; color: var(--text); }
.modal-close {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--line);
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.modal-close:hover { background: rgba(255,255,255,0.12); border-color: rgba(47,125,250,0.4); transform: rotate(90deg); }

.modal p.hint { position: relative; z-index: 1; color: var(--muted); font-size: 0.9rem; margin-bottom: 26px; }

.field {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(10px);
}
.modal-overlay.open .field {
  animation: fieldFadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.modal-overlay.open .field-row .field:nth-child(2) { animation-delay: 0.04s; }
@keyframes fieldFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--text);
}

.field-input { position: relative; display: flex; align-items: center; }

.field-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  transition: color 0.15s ease;
}
.field-icon-top { top: 14px; left: 14px; transform: none; }

.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px 11px 42px;
  font-family: var(--font);
  font-size: 0.95rem;
  background: rgba(255,255,255,0.03);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  color-scheme: dark;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: 0.75; }

.field select {
  appearance: none;
  padding-right: 38px;
  cursor: pointer;
}
.field-chevron {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--shine);
  background: rgba(47,125,250,0.06);
  box-shadow: 0 0 0 4px var(--shine-light);
}
.field-input:focus-within .field-icon,
.field-input:focus-within .field-chevron { color: var(--shine-bright); }

.field textarea { resize: vertical; min-height: 76px; padding-top: 13px; }
.field-input-textarea { align-items: flex-start; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

#bookingForm .btn-primary { margin-top: 6px; }

.form-success {
  position: relative;
  z-index: 1;
  display: none;
  text-align: center;
  padding: 24px 0 4px;
}
.form-success.animate-in { animation: successPop 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes successPop {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}
.form-success .ico {
  font-size: 2.8rem;
  color: var(--shine-bright);
  margin-bottom: 14px;
  filter: drop-shadow(0 0 16px rgba(47,125,250,0.5));
}
.form-success h4 { margin-bottom: 8px; color: var(--text); font-size: 1.15rem; }
.form-success p { color: var(--muted); font-size: 0.92rem; margin-bottom: 20px; }

/* ============================
   Floating Actions
   ============================ */
.float-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.float-actions.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.float-btn .icon { width: 22px; height: 22px; }
.float-btn:hover { transform: translateY(-3px) scale(1.05); }

.float-whatsapp {
  background: var(--shine);
  color: #fff;
  box-shadow: 0 8px 22px rgba(47,125,250,0.45);
}
.float-call {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--line);
}

/* ============================
   Spotlight card glow
   ============================ */
.plan, .why-card, .testimonial-card, .fact, .faq-item {
  position: relative;
  --mx: 50%;
  --my: 50%;
}
.plan::before, .why-card::before, .testimonial-card::before, .fact::before, .faq-item::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(220px circle at var(--mx) var(--my), rgba(47,125,250,0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}
.plan:hover::before, .why-card:hover::before, .testimonial-card:hover::before, .fact:hover::before, .faq-item:hover::before { opacity: 1; }

/* ============================
   Mobile
   ============================ */
@media (max-width: 940px) {
  .hero-inner, .coverage-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .map-embed { max-width: 420px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .addons-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 700px) {
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .why-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .addons-grid { grid-template-columns: 1fr; }
}

/* Mobile nav drawer */
.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 20px 24px 28px;
  gap: 18px;
  box-shadow: var(--shadow-md);
}
