/* ============================================================
   Auto Logo — Royal & Gold
   ============================================================ */

:root {
  --royal:        #1B45A8;
  --royal-deep:   #0E3293;
  --royal-light:  #2E5BC8;
  --gold:         #FFD500;
  --gold-deep:    #E5B800;
  --gold-soft:    #FFE45C;
  --ink:          #0A1228;
  --ink-soft:     #3A2A5C;
  --bone:         #F4F1EC;
  --white:        #FFFFFF;
  --whatsapp:     #25D366;
  --line:         rgba(14, 50, 147, 0.10);
  --line-light:   rgba(255, 255, 255, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Assistant', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--gold); color: var(--ink); }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* container */
.container-x { width: 100%; max-width: 1280px; margin: 0 auto; padding-inline: 20px; }
@media (min-width: 768px) { .container-x { padding-inline: 32px; } }
@media (min-width: 1280px) { .container-x { padding-inline: 48px; } }

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; z-index: 100;
  background: transparent;
}
.scroll-progress span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed; bottom: 96px; left: 20px; z-index: 40;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--royal-deep); color: var(--white);
  border: 2px solid var(--gold);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  cursor: pointer;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); background: var(--royal); }
.back-to-top svg { width: 20px; height: 20px; }
@media (max-width: 768px) {
  .back-to-top { bottom: 88px; left: 12px; width: 40px; height: 40px; }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; right: 0; left: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px -12px rgba(14, 50, 147, 0.18);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  height: 100px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  line-height: 1;
}
.brand-logo {
  width: 130px;
  height: 80px;
  object-fit: contain;
}
.brand-tagline {
  font-family: 'Heebo', sans-serif;
  font-size: 11.5px;
  color: var(--royal-deep);
  letter-spacing: 0.02em;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .header-inner {
    height: 58px;
    padding: 0;
    position: relative;
    justify-content: flex-start;
  }
  .brand {
    order: 0;
    gap: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    pointer-events: auto;
  }
  .header-menu {
    order: 1;
    width: 28px !important;
    height: 28px !important;
    border-radius: 6px;
    padding: 0;
  }
  .header-menu span {
    width: 14px !important;
    height: 9px !important;
  }
  .brand-tagline { display: none; }
  .brand-logo { width: 92px; height: 50px; }
}

.header-nav { display: none; gap: 24px; }
@media (min-width: 1024px) { .header-nav { display: flex; } }
.nav-link {
  font-weight: 600; font-size: 14px; color: var(--ink);
  position: relative; padding: 4px 0;
  transition: color 0.2s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; right: 0; left: 0;
  height: 2px; background: var(--gold); transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-link:hover { color: var(--royal); }
.nav-link:hover::after { transform: scaleX(1); }

.header-cta {
  display: none;
  align-items: center; gap: 12px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--royal) 0%, var(--royal-deep) 100%);
  color: var(--white);
  border-radius: 100px;
  transition: all 0.25s ease;
  box-shadow: 0 6px 16px -4px rgba(27, 69, 168, 0.35);
}
@media (min-width: 768px) { .header-cta { display: inline-flex; } }
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(27, 69, 168, 0.55);
}
.header-cta-icon {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--royal-deep);
  border-radius: 50%;
  box-shadow: 0 4px 8px -2px rgba(255, 213, 0, 0.4), inset 0 -2px 0 rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.header-cta-icon svg { width: 18px; height: 18px; }
.header-cta-body { display: flex; flex-direction: column; line-height: 1.2; gap: 1px; }
.header-cta-label { font-size: 12px; opacity: 0.85; font-weight: 500; letter-spacing: 0.01em; }
.header-cta-num { font-weight: 800; font-size: 17px; font-family: 'Heebo', sans-serif; }

.header-menu {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--royal-deep); color: var(--white);
  display: grid; place-items: center;
  border: 0; cursor: pointer;
}
@media (min-width: 1024px) { .header-menu { display: none; } }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; top: 58px; right: 0; left: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 16px 20px;
  display: none;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 16px 32px -16px rgba(14, 50, 147, 0.25);
}
@media (min-width: 768px) {
  .mobile-drawer { top: 100px; }
}
.mobile-drawer.is-open { display: flex; }
.drawer-link {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 600; color: var(--ink);
  font-size: 15px;
}
.drawer-link:last-of-type { border-bottom: 0; }
.drawer-cta {
  display: block;
  padding: 14px 18px;
  text-align: center;
  background: var(--gold);
  color: var(--royal-deep);
  font-weight: 800;
  border-radius: 12px;
  margin-top: 8px;
}
.drawer-cta-wa { background: var(--whatsapp); color: var(--white); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 16px;
  font-family: 'Heebo', sans-serif;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s cubic-bezier(.2,.8,.2,1);
  white-space: nowrap;
  text-align: center;
}
.btn-xl { padding: 18px 38px; font-size: 18px; }
.btn-block { width: 100%; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--royal-deep);
  box-shadow: 0 14px 36px -12px rgba(255, 213, 0, 0.55);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 22px 50px -14px rgba(255, 213, 0, 0.7); }
.btn-royal {
  background: var(--royal);
  color: var(--white);
  box-shadow: 0 14px 36px -12px rgba(27, 69, 168, 0.55);
}
.btn-royal:hover { background: var(--royal-deep); transform: translateY(-2px); }
.btn-wa {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 14px 36px -12px rgba(37, 211, 102, 0.55);
}
.btn-wa:hover { transform: translateY(-2px); background: #1ebd5b; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(10, 18, 40, 0.2);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 90px; padding-bottom: 60px;
  overflow: hidden;
  background: var(--royal-deep);
  color: var(--white);
}
.hero-photo { position: absolute; inset: 0; z-index: 0; }
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-wash {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(14, 50, 147, 0.92) 0%, rgba(14, 50, 147, 0.6) 50%, rgba(10, 18, 40, 0.85) 100%);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
  opacity: 0.6;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 213, 0, 0.15);
  border: 1px solid rgba(255, 213, 0, 0.4);
  color: var(--gold);
  border-radius: 100px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.hero-pill-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
  font-family: 'Heebo', sans-serif;
  font-weight: 900;
  font-size: clamp(38px, 7vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-title-accent { color: var(--gold); }

.hero-sub {
  font-size: clamp(16px, 2.2vw, 21px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 36px;
}
.hero-sub strong { color: var(--gold); font-weight: 700; }

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
}
.trust-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}
.hero-scroll span {
  position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 2px;
  background: var(--gold);
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  50% { transform: translate(-50%, 14px); opacity: 0.3; }
}
@media (max-width: 768px) { .hero-scroll { display: none; } }

/* ============================================================
   TRIPLE CTA STRIP
   ============================================================ */
.triple-cta {
  display: none !important;
  background: var(--royal-deep);
  padding: 32px 0;
  border-top: 1px solid rgba(255, 213, 0, 0.2);
}
@media (min-width: 1024px) { .triple-cta { display: block !important; } }
.triple-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cta-block {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: var(--white);
  transition: all 0.25s;
}
.cta-block:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 213, 0, 0.4);
  transform: translateY(-2px);
}
.cta-icon {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
}
.cta-phone .cta-icon { background: var(--gold); color: var(--royal-deep); }
.cta-wa .cta-icon { background: var(--whatsapp); color: var(--white); }
.cta-waze .cta-icon { background: #33CCFF; color: var(--white); }
.cta-label { display: block; font-weight: 800; font-size: 17px; font-family: 'Heebo', sans-serif; }
.cta-sub { display: block; font-size: 13px; opacity: 0.7; margin-top: 2px; }

/* ============================================================
   SECTION TYPOGRAPHY
   ============================================================ */
.section-title {
  font-family: 'Heebo', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 14px;
}
.section-title-light { color: var(--white); }
.section-sub {
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 40px;
  max-width: 680px;
}
.section-sub-light { color: rgba(255, 255, 255, 0.85); }
.section-head-center {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 760px;
}
.section-head-center .section-sub { margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--royal);
  padding: 4px 12px;
  background: rgba(27, 69, 168, 0.08);
  border-radius: 100px;
  margin-bottom: 14px;
}
.eyebrow-light {
  color: var(--gold);
  background: rgba(255, 213, 0, 0.15);
}

.hl-gold { color: var(--gold); }
.hl-royal { color: var(--royal); }
.link-gold { color: var(--royal); font-weight: 700; text-decoration: underline; text-decoration-color: var(--gold); }

/* ============================================================
   WHY US — premium 3D cards with depth
   ============================================================ */
.why-us {
  position: relative;
  padding: 100px 0 110px;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(27, 69, 168, 0.05), transparent 50%),
    radial-gradient(ellipse at 20% 100%, rgba(255, 213, 0, 0.06), transparent 50%),
    var(--bone);
  overflow: hidden;
}
.why-decor {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}
.why-decor-1 {
  top: -120px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255, 213, 0, 0.18), transparent 70%);
}
.why-decor-2 {
  bottom: -100px; left: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(27, 69, 168, 0.12), transparent 70%);
}

.why-head {
  position: relative;
  text-align: center;
  margin-bottom: 56px;
  z-index: 1;
}
.why-head .section-sub { margin-inline: auto; }

.why-grid {
  position: relative;
  z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-card {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
  border-radius: 24px;
  padding: 36px 26px 30px;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 800px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 -2px 0 rgba(14, 50, 147, 0.04) inset,
    0 1px 3px rgba(14, 50, 147, 0.06),
    0 8px 24px -4px rgba(14, 50, 147, 0.08),
    0 24px 48px -16px rgba(14, 50, 147, 0.10);
  transition:
    transform 0.5s cubic-bezier(.2, .85, .25, 1),
    box-shadow 0.5s cubic-bezier(.2, .85, .25, 1);
}
.why-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 -2px 0 rgba(14, 50, 147, 0.05) inset,
    0 2px 6px rgba(14, 50, 147, 0.08),
    0 16px 36px -8px rgba(14, 50, 147, 0.18),
    0 40px 80px -16px rgba(255, 213, 0, 0.22);
}

/* Top gradient stripe */
.why-stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--royal), var(--royal-light), var(--gold), var(--gold-deep));
  background-size: 200% 100%;
  background-position: 0% 50%;
  transition: background-position 0.6s ease;
}
.why-card:hover .why-stripe { background-position: 100% 50%; }

/* Big watermark number in corner */
.why-bignum {
  position: absolute;
  top: 18px; left: 22px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 62px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.8px rgba(255, 213, 0, 0.65);
  text-stroke: 1.8px rgba(255, 213, 0, 0.65);
  transition: -webkit-text-stroke-color 0.4s, transform 0.4s, filter 0.4s;
  pointer-events: none;
  user-select: none;
}
.why-card:hover .why-bignum {
  -webkit-text-stroke-color: var(--gold);
  text-stroke-color: var(--gold);
  transform: translateY(-2px) scale(1.04);
  filter: drop-shadow(0 4px 12px rgba(255, 213, 0, 0.35));
}

/* Icon stack — layered glow + bg + shine + svg */
.why-icon-stack {
  position: relative;
  width: 84px; height: 84px;
  margin-bottom: 24px;
  transition: transform 0.5s cubic-bezier(.2, .85, .25, 1);
}
.why-card:hover .why-icon-stack { transform: translateY(-4px) rotate(-3deg); }

.why-icon-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(255, 213, 0, 0.45) 0%, transparent 65%);
  filter: blur(14px);
  opacity: 0;
  transition: opacity 0.5s;
  border-radius: 50%;
}
.why-card:hover .why-icon-glow { opacity: 1; }

.why-icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--royal) 0%, var(--royal-deep) 60%, #0a1f6e 100%);
  box-shadow:
    0 12px 24px -6px rgba(14, 50, 147, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.18),
    inset 0 -4px 0 rgba(0, 0, 0, 0.15);
}

/* Highlight shine on top edge */
.why-icon-shine {
  position: absolute;
  top: 4px; left: 8px; right: 8px;
  height: 18px;
  border-radius: 18px 18px 50% 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.22), transparent);
  pointer-events: none;
}

.why-icon-svg {
  position: relative;
  width: 100%; height: 100%;
  padding: 14px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

.why-title {
  position: relative;
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  z-index: 1;
}
.why-text {
  position: relative;
  font-size: 15px;
  line-height: 1.62;
  color: var(--ink-soft);
  z-index: 1;
}

/* Subtle decorative corner accent */
.why-corner {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 213, 0, 0.12), transparent 70%);
  opacity: 0.5;
  transition: opacity 0.5s, transform 0.5s;
  pointer-events: none;
}
.why-card:hover .why-corner {
  opacity: 1;
  transform: scale(1.6);
}

/* ============================================================
   WHAT WE CHECK — premium royal-blue grid with 3D cards
   ============================================================ */
.what-section {
  position: relative;
  padding: 100px 0 120px;
  background:
    radial-gradient(ellipse at 80% -10%, rgba(46, 91, 200, 0.45), transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(255, 213, 0, 0.08), transparent 50%),
    linear-gradient(180deg, var(--royal-deep) 0%, #0a1f6e 50%, var(--ink) 100%);
  color: var(--white);
  overflow: hidden;
}
.what-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 213, 0, 0.08) 1px, transparent 0);
  background-size: 36px 36px;
  opacity: 0.5;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}
.what-decor {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
}
.what-decor-tl {
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255, 213, 0, 0.18), transparent 70%);
}
.what-decor-br {
  bottom: -120px; left: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(46, 91, 200, 0.35), transparent 70%);
}

.what-head {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  z-index: 2;
}
.what-head .section-sub { margin-inline: auto; }

.check-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) { .check-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .check-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }

.check-card {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 26px 22px 22px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(.2, .85, .25, 1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 -1px 0 rgba(0, 0, 0, 0.2) inset,
    0 8px 24px -8px rgba(0, 0, 0, 0.25);
}
/* Top gold gradient stripe */
.check-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
/* Corner glow */
.check-card::after {
  content: '';
  position: absolute;
  top: -40px; left: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255, 213, 0, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.check-card:hover {
  transform: translateY(-6px);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
  border-color: rgba(255, 213, 0, 0.4);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 16px 32px -8px rgba(0, 0, 0, 0.4),
    0 0 60px -8px rgba(255, 213, 0, 0.2);
}
.check-card:hover::before { opacity: 1; }
.check-card:hover::after { opacity: 1; }

/* Number badge — top left */
.check-num {
  position: absolute;
  top: 20px; left: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--gold);
  background: rgba(255, 213, 0, 0.10);
  border: 1px solid rgba(255, 213, 0, 0.3);
  padding: 4px 10px;
  border-radius: 8px;
  letter-spacing: 0.04em;
  transition: all 0.3s;
}
.check-card:hover .check-num {
  background: rgba(255, 213, 0, 0.2);
  border-color: var(--gold);
}

/* Icon box */
.check-icon {
  display: grid; place-items: center;
  width: 58px; height: 58px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 213, 0, 0.18), rgba(255, 213, 0, 0.06));
  border: 1px solid rgba(255, 213, 0, 0.22);
  color: var(--gold);
  margin-bottom: 18px;
  transition: all 0.4s cubic-bezier(.2, .85, .25, 1);
  box-shadow:
    0 4px 12px -4px rgba(255, 213, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.check-icon svg { width: 30px; height: 30px; }
.check-card:hover .check-icon {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(135deg, rgba(255, 213, 0, 0.28), rgba(255, 213, 0, 0.12));
  border-color: var(--gold);
  box-shadow:
    0 10px 24px -6px rgba(255, 213, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.check-title {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.check-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.74);
}
.check-text strong {
  color: var(--gold);
  font-weight: 700;
}

/* Tag on accent cards */
.check-tag {
  position: absolute;
  top: 20px; right: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: var(--royal-deep);
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px -4px rgba(255, 213, 0, 0.5);
}

/* Featured/final card (item 12) — same cell size, gold theme */
.check-card-final {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  border: 1px solid var(--gold);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 -2px 0 rgba(0, 0, 0, 0.1) inset,
    0 18px 40px -12px rgba(255, 213, 0, 0.45);
}
.check-card-final::before {
  background: linear-gradient(90deg, transparent, var(--royal-deep), transparent);
  opacity: 1;
}
.check-card-final::after { display: none; }
.check-card-final:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 100%);
  border-color: var(--gold-soft);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 26px 56px -12px rgba(255, 213, 0, 0.6);
}
.check-card-final .check-num {
  color: var(--gold);
  background: var(--royal-deep);
  border-color: var(--royal-deep);
}
.check-card-final:hover .check-num {
  background: var(--ink);
  border-color: var(--ink);
}
.check-card-final .check-icon {
  background: var(--royal-deep);
  border-color: var(--royal-deep);
  color: var(--gold);
  box-shadow:
    0 8px 16px -4px rgba(14, 50, 147, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.check-card-final:hover .check-icon {
  background: var(--ink);
  border-color: var(--ink);
  transform: scale(1.08) rotate(-4deg);
}
.check-card-final .check-title {
  color: var(--royal-deep);
}
.check-card-final .check-text {
  color: rgba(14, 50, 147, 0.85);
}
.check-card-final .check-text strong { color: var(--royal-deep); }

/* Mobile only — center everything inside each check card */
@media (max-width: 639px) {
  .check-card {
    text-align: center;
    padding-top: 56px;
  }
  .check-card .check-icon {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: 70px 0;
  background: var(--bone);
}
.pricing-card {
  background: linear-gradient(135deg, var(--royal-deep), var(--royal));
  border-radius: 24px;
  padding: 56px 32px;
  color: var(--white);
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: ''; position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255, 213, 0, 0.12);
  filter: blur(50px);
}
.pricing-card > * { position: relative; }
.pricing-title {
  font-family: 'Heebo', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.pricing-text {
  font-size: 17px;
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 14px;
  color: rgba(255, 255, 255, 0.92);
}
.pricing-text strong { color: var(--gold); font-weight: 700; }
/* ponytail: prominent insurance-report banner inside pricing card */
.pricing-banner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 24px auto 28px;
  padding: 18px 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--royal-deep);
  border-radius: 100px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 -2px 0 rgba(0, 0, 0, 0.1) inset,
    0 12px 32px -10px rgba(255, 213, 0, 0.65);
  font-family: 'Heebo', sans-serif;
}
.pricing-banner-icon {
  display: inline-grid; place-items: center;
  width: 22px !important; height: 22px !important;
  color: var(--royal-deep);
  flex-shrink: 0;
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.pricing-banner-icon svg { width: 20px !important; height: 20px !important; }
.pricing-banner-text {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.pricing-banner-text strong { font-weight: 900; }
@media (max-width: 640px) {
  .pricing-banner {
    display: flex;
    padding: 12px 18px;
    gap: 10px;
    border-radius: 100px;
  }
  .pricing-banner-icon { width: 20px !important; height: 20px !important; }
  .pricing-banner-icon svg { width: 18px !important; height: 18px !important; }
  .pricing-banner-text { font-size: 14px; }
}

/* Footer phones with labels */
.footer-phone {
  display: flex !important;
  flex-direction: column;
  gap: 2px !important;
}
.footer-phone-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
  font-weight: 500;
}
.footer-phone a {
  font-family: 'Heebo', sans-serif;
  font-weight: 700 !important;
  font-size: 15px !important;
  color: var(--white) !important;
}
.footer-phone a:hover { color: var(--gold) !important; }

.pricing-text-bold {
  font-weight: 700;
  color: var(--white);
  font-size: 18px;
  margin-bottom: 32px !important;
}
.pricing-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 90px 0;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 140px;
  gap: 10px;
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 14px;
  }
}
.gallery-tile {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--ink);
  transition: transform 0.3s;
  cursor: default;
}
.gallery-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.gallery-tile:hover img { transform: scale(1.06); }
.gallery-tile-lg { grid-column: span 2; grid-row: span 2; }
.gallery-tile-wide { grid-column: span 2; }
@media (max-width: 767px) {
  .gallery-tile-lg, .gallery-tile-wide { grid-column: span 2; grid-row: auto; }
}

/* ============================================================
   REVIEWS — Google Reviews wall with masonry
   ============================================================ */
.reviews {
  position: relative;
  padding: 100px 0 110px;
  background:
    linear-gradient(180deg, #F8FAFB 0%, #EEF2F7 100%);
  color: var(--ink);
  overflow: hidden;
}
.reviews-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(14, 50, 147, 0.06) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
  pointer-events: none;
}
.reviews-decor {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
}
.reviews-decor-1 {
  top: -80px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.18), transparent 70%);
}
.reviews-decor-2 {
  bottom: -100px; left: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255, 213, 0, 0.16), transparent 70%);
}

/* Hero */
.reviews-hero {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
  z-index: 2;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(14, 50, 147, 0.08);
  padding: 8px 18px 8px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px -4px rgba(14, 50, 147, 0.15);
}
.google-g {
  width: 24px; height: 24px;
  flex-shrink: 0;
}
.google-badge-text {
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #5F6368;
  letter-spacing: 0.01em;
}
.reviews .section-title { color: var(--ink); margin-bottom: 28px; }
.reviews .section-title-light { color: var(--ink); }
.reviews .hl-gold { color: var(--royal); }

.reviews-rating-row {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid rgba(14, 50, 147, 0.08);
  border-radius: 18px;
  padding: 16px 26px;
  box-shadow: 0 8px 24px -8px rgba(14, 50, 147, 0.15);
}
.reviews-rating-big {
  font-family: 'Heebo', sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  background: linear-gradient(135deg, #FBBC04 0%, #F09F00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.reviews-rating-stars {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.reviews-rating-stars > span:first-child {
  font-size: 22px;
  color: #FBBC04;
  letter-spacing: 0.08em;
  line-height: 1;
}
.reviews-rating-meta {
  font-size: 13px;
  color: #5F6368;
}
.reviews-rating-meta strong {
  color: var(--ink);
  font-weight: 800;
}

/* Masonry-style review grid */
.review-grid {
  position: relative;
  z-index: 2;
  column-count: 1;
  column-gap: 18px;
  margin-bottom: 48px;
}
@media (min-width: 640px) { .review-grid { column-count: 2; } }
@media (min-width: 1024px) { .review-grid { column-count: 3; } }
@media (min-width: 1280px) { .review-grid { column-count: 4; } }

.review-card {
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(14, 50, 147, 0.08);
  border-radius: 16px;
  padding: 18px 18px 20px;
  margin-bottom: 18px;
  box-shadow:
    0 1px 3px rgba(14, 50, 147, 0.04),
    0 4px 12px -4px rgba(14, 50, 147, 0.06);
  transition: all 0.3s cubic-bezier(.2, .85, .25, 1);
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 213, 0, 0.5);
  box-shadow:
    0 1px 3px rgba(14, 50, 147, 0.06),
    0 16px 32px -8px rgba(14, 50, 147, 0.18);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.review-avatar {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  box-shadow: 0 2px 6px -2px rgba(0, 0, 0, 0.2);
}
.review-id {
  flex: 1;
  min-width: 0;
  line-height: 1.25;
}
.review-name {
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-date {
  font-size: 12px;
  color: #5F6368;
  margin-top: 2px;
}
.review-google {
  flex-shrink: 0;
  width: 20px; height: 20px;
  opacity: 0.85;
}
.review-google svg { width: 100%; height: 100%; display: block; }

.review-stars {
  font-size: 16px;
  color: #FBBC04;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 10px;
}
.review-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: #3C4043;
}

.reviews-cta-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
}
.reviews-cta-wrap .btn svg { transition: transform 0.3s; }
.reviews-cta-wrap .btn:hover svg { transform: translate(-3px, -3px); }

/* Mobile only — show 5 reviews + CTA */
@media (max-width: 639px) {
  .review-card:nth-child(n+6) { display: none; }
}

/* ============================================================
   SERVICE AREA — text card + large framed map
   ============================================================ */
.service-area {
  position: relative;
  padding: 100px 0 110px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(27, 69, 168, 0.06), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(255, 213, 0, 0.06), transparent 50%),
    var(--bone);
  overflow: hidden;
}
.area-decor {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
}
.area-decor-1 {
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255, 213, 0, 0.18), transparent 70%);
}
.area-decor-2 {
  bottom: -100px; left: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(27, 69, 168, 0.12), transparent 70%);
}
.area-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(14, 50, 147, 0.04) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.5;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 75%);
  z-index: 0;
}

.area-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (min-width: 900px) {
  .area-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 40px;
  }
}

/* Text card (right in RTL) */
.area-card {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFCFE 100%);
  border: 1px solid rgba(14, 50, 147, 0.08);
  border-radius: 22px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 -1px 0 rgba(14, 50, 147, 0.05) inset,
    0 2px 6px rgba(14, 50, 147, 0.04),
    0 24px 48px -16px rgba(14, 50, 147, 0.16);
  overflow: hidden;
}
.area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--royal), var(--gold), var(--royal));
  background-size: 200% 100%;
  animation: areaStripe 6s ease-in-out infinite;
}
@keyframes areaStripe {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.area-card::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 213, 0, 0.10), transparent 70%);
  pointer-events: none;
}

.area-card .eyebrow { margin-bottom: 18px; }
.area-title {
  font-family: 'Heebo', sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 0;
}
.area-title-accent {
  display: block;
  margin-top: 6px;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--royal);
  letter-spacing: -0.005em;
}
.area-divider {
  height: 3px;
  width: 60px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  border-radius: 100px;
  margin: 22px 0;
}
.area-body {
  position: relative;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.area-body:last-of-type { margin-bottom: 24px; }
.area-body strong {
  color: var(--royal);
  font-weight: 800;
  background: linear-gradient(180deg, transparent 65%, rgba(255, 213, 0, 0.35) 65%);
  padding: 0 2px;
}

.area-meta {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(27, 69, 168, 0.05), rgba(255, 213, 0, 0.04));
  border: 1px solid rgba(14, 50, 147, 0.07);
  border-radius: 14px;
}
.area-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.area-meta-icon {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--royal), var(--royal-deep));
  color: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 4px 8px -2px rgba(14, 50, 147, 0.25);
}
.area-meta-icon svg { width: 17px; height: 17px; }
.area-meta-text {
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
}

.area-ctas {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-ctas .btn { flex: 1 1 auto; min-width: 200px; }
.btn-royal-ghost {
  background: transparent;
  color: var(--royal-deep);
  border: 2px solid rgba(14, 50, 147, 0.18);
}
.btn-royal-ghost:hover {
  background: var(--royal-deep);
  color: var(--white);
  border-color: var(--royal-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(14, 50, 147, 0.4);
}

/* Map block (left in RTL) — large + premium frame */
.area-map-block {
  position: relative;
  min-height: 360px;
}
.area-map-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 22px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow:
    0 4px 12px -4px rgba(14, 50, 147, 0.15),
    0 28px 60px -18px rgba(14, 50, 147, 0.3);
}
.area-map-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.area-map-frame iframe { display: block; }
@media (max-width: 899px) {
  .area-map-block { min-height: 320px; }
  .area-map-frame { min-height: 320px; }
}

/* Floating badge over the map */
.area-map-badge {
  position: absolute;
  top: 18px; right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 14px;
  background: var(--white);
  border-radius: 100px;
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: 13.5px;
  color: var(--royal-deep);
  box-shadow:
    0 4px 10px -2px rgba(0, 0, 0, 0.18),
    0 12px 28px -8px rgba(14, 50, 147, 0.35);
  border: 1.5px solid rgba(255, 213, 0, 0.7);
}
.area-map-badge-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 213, 0, 0.3);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 213, 0, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(255, 213, 0, 0.1); }
}

@media (max-width: 767px) {
  .area-card { padding: 30px 24px; }
  .area-ctas .btn { min-width: unset; width: 100%; }
}

/* ============================================================
   FAQ — premium accordion
   ============================================================ */
.faq {
  position: relative;
  padding: 100px 0 110px;
  background: linear-gradient(180deg, var(--white) 0%, var(--bone) 100%);
  overflow: hidden;
}
.faq-decor {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
}
.faq-decor-1 {
  top: 10%; left: -120px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255, 213, 0, 0.10), transparent 70%);
}
.faq-decor-2 {
  bottom: 5%; right: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(27, 69, 168, 0.07), transparent 70%);
}

.faq-head {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
  z-index: 1;
}
.faq-head .section-title {
  line-height: 1.2;
}
.faq-head .hl-royal {
  color: var(--royal);
}

.faq-list {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(14, 50, 147, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(.2, .85, .25, 1);
  position: relative;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 -1px 0 rgba(14, 50, 147, 0.04) inset,
    0 2px 6px rgba(14, 50, 147, 0.04),
    0 8px 24px -10px rgba(14, 50, 147, 0.08);
}
.faq-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--royal), var(--gold));
  opacity: 0;
  transition: opacity 0.35s;
}
.faq-item:hover {
  border-color: rgba(255, 213, 0, 0.45);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 -1px 0 rgba(14, 50, 147, 0.04) inset,
    0 4px 12px rgba(14, 50, 147, 0.06),
    0 18px 36px -10px rgba(14, 50, 147, 0.14);
}
.faq-item[open] {
  background: linear-gradient(180deg, var(--white) 0%, #FBFCFE 100%);
  border-color: var(--royal);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 -1px 0 rgba(14, 50, 147, 0.06) inset,
    0 4px 12px rgba(14, 50, 147, 0.06),
    0 22px 44px -14px rgba(14, 50, 147, 0.2);
}
.faq-item[open]::before { opacity: 1; }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-num {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--royal-deep));
  color: var(--gold);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: grid;
  place-items: center;
  letter-spacing: 0.02em;
  box-shadow:
    0 4px 10px -4px rgba(14, 50, 147, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.35s cubic-bezier(.2, .85, .25, 1);
}
.faq-item[open] .faq-num {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--royal-deep);
  box-shadow:
    0 4px 12px -2px rgba(255, 213, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

.faq-q {
  flex: 1;
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.faq-toggle {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(14, 50, 147, 0.07);
  display: grid;
  place-items: center;
  transition: all 0.35s cubic-bezier(.2, .85, .25, 1);
}
.faq-toggle svg {
  width: 16px; height: 16px;
  color: var(--royal);
  transition: transform 0.35s;
}
.faq-item[open] .faq-toggle {
  background: var(--royal);
  transform: rotate(135deg);
}
.faq-item[open] .faq-toggle svg {
  color: var(--white);
}

.faq-a {
  padding: 0 24px 24px 78px;
  animation: faqOpen 0.4s cubic-bezier(.2, .85, .25, 1);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.faq-a p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.faq-a a {
  color: var(--royal);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}
.faq-a strong {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 640px) {
  .faq-item summary { padding: 18px 16px; gap: 12px; }
  .faq-num { width: 34px; height: 34px; font-size: 13px; }
  .faq-q { font-size: 15.5px; }
  .faq-toggle { width: 32px; height: 32px; }
  .faq-a { padding: 0 16px 18px 62px; }
  .faq-a p { font-size: 14.5px; }
}

/* ============================================================
   LEAD FORM
   ============================================================ */
.lead-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--royal-deep), var(--royal));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.lead-section::before {
  content: ''; position: absolute;
  bottom: -100px; right: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(255, 213, 0, 0.12);
  filter: blur(80px);
}
.lead-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  position: relative;
}
@media (min-width: 900px) { .lead-grid { grid-template-columns: 1fr 1.1fr; align-items: center; } }
.lead-promises { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.lead-promise {
  font-size: 15px; font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.lead-closing {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 213, 0, 0.25);
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}
.lead-closing a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 213, 0, 0.5);
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  transition: text-decoration-color 0.2s;
}
.lead-closing a:hover {
  text-decoration-color: var(--gold);
}

.lead-form {
  background: var(--white);
  color: var(--ink);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 36px 72px -24px rgba(0,0,0,0.4);
  display: flex; flex-direction: column; gap: 14px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .lead-section { padding: 64px 0 80px; }
  .lead-grid { gap: 28px; }
  .lead-form {
    padding: 22px 18px;
    border-radius: 16px;
    box-shadow: 0 18px 36px -14px rgba(0, 0, 0, 0.3);
    gap: 12px;
  }
  .lead-form input,
  .lead-form select {
    font-size: 16px !important;
    padding: 12px 14px;
  }
  .lead-label span {
    font-size: 12.5px;
  }
  .lead-form .btn-xl {
    font-size: 16px;
    padding: 16px 24px;
  }
}
.lead-label { display: flex; flex-direction: column; gap: 6px; }
.lead-label span {
  font-size: 13px; font-weight: 700;
  color: var(--royal-deep);
}
.lead-form input, .lead-form select {
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: 'Assistant', sans-serif;
  font-size: 15px;
  background: var(--bone);
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
.lead-form input:focus, .lead-form select:focus {
  outline: 0;
  border-color: var(--royal);
  background: var(--white);
}
.lead-fineprint {
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 4px;
}

/* ============================================================
   PRE-FOOTER BANNER
   ============================================================ */
.pre-footer {
  position: relative;
  padding: 70px 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255, 213, 0, 0.14), transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(46, 91, 200, 0.35), transparent 60%),
    linear-gradient(135deg, var(--royal-deep) 0%, var(--ink) 100%);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}
.pre-footer::before,
.pre-footer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100%;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 213, 0, 0.10) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.5;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 50%, black 25%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 25%, transparent 70%);
}
.pre-footer-title {
  font-family: 'Heebo', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 6vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0;
  position: relative;
}
.pre-footer-bang {
  color: var(--gold);
  display: inline-block;
  transform: translateY(4px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 60px 0 24px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); } }
.footer-logo { width: 260px; max-width: 100%; margin-bottom: 20px; }
@media (max-width: 767px) {
  .footer-logo {
    width: 130px;
    margin-right: 0;
    margin-left: auto;
    margin-inline-start: 0;
    margin-inline-end: auto;
    display: block;
  }
  .footer-brand .footer-tagline,
  .footer-brand .footer-social { text-align: start; }
}
.footer-tagline { font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, 0.75); }

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.social-link {
  display: grid; place-items: center;
  width: 32px; height: 32px;
  min-width: 32px; min-height: 32px;
  max-width: 32px; max-height: 32px;
  border-radius: 8px;
  color: var(--white);
  transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
  box-shadow: 0 3px 8px -2px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}
.social-link svg {
  width: 16px !important;
  height: 16px !important;
  display: block;
}
.social-ig {
  background: linear-gradient(45deg, #FCAF45 0%, #F77737 25%, #FD1D1D 50%, #C13584 70%, #833AB4 85%, #405DE6 100%);
}
.social-fb { background: #1877F2; }
.social-link:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.5);
}
.footer-col h4 {
  font-family: 'Heebo', sans-serif;
  font-weight: 800; font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a { font-size: 14px; line-height: 1.55; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between;
  padding-top: 24px; margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-credit a { color: var(--gold); }

/* ============================================================
   MOBILE STICKY BOTTOM BAR
   ============================================================ */
.mobile-bottom-bar {
  position: fixed; bottom: 0; right: 0; left: 0;
  z-index: 40;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  gap: 6px;
  box-shadow: 0 -8px 32px -12px rgba(14, 50, 147, 0.2);
}
@media (min-width: 1024px) { .mobile-bottom-bar { display: none; } }
.mbb-link {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 10px 8px;
  border-radius: 10px;
  font-weight: 700; font-size: 12px;
  color: var(--white);
}
.mbb-link svg { width: 18px; height: 18px; }
.mbb-phone { background: var(--gold); color: var(--royal-deep); }
.mbb-wa { background: var(--whatsapp); }
.mbb-waze { background: var(--royal); }
.mbb-link:active { transform: scale(0.97); }

/* Add bottom padding for mobile bar */
@media (max-width: 1023px) {
  body { padding-bottom: 70px; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.focus\:not-sr-only:focus {
  position: static;
  width: auto; height: auto;
  padding: revert; margin: revert;
  overflow: visible; clip: auto;
  white-space: normal;
}

/* ============================================================
   ANIMATIONS — SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
