/* ═══════════════════════════════════════════
   Francis Multi Services — Neuro-Artisanal
   ═══════════════════════════════════════════ */

:root {
  --cream: #FFF8F0;
  --sand: #E8DDD3;
  --sage: #7C9A82;
  --sage-dark: #5F7D65;
  --blue: #4A7C9B;
  --blue-dark: #3A6280;
  --terracotta: #C4704B;
  --terracotta-dark: #A85A38;
  --charcoal: #2D2926;
  --charcoal-light: #4A4543;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 4px 24px rgba(45,41,38,.08);
  --shadow-hover: 0 8px 40px rgba(45,41,38,.14);
  --transition: .4s cubic-bezier(.25,.46,.45,.94);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .03;
  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='.85' 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;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section spacing */
section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--charcoal-light);
  max-width: 560px;
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--sage);
  color: #fff;
}
.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124,154,130,.35);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--sand);
}
.btn-secondary:hover {
  border-color: var(--sage);
  color: var(--sage);
  transform: translateY(-2px);
}

.btn-terracotta {
  background: var(--terracotta);
  color: #fff;
}
.btn-terracotta:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,112,75,.35);
}

.btn-white {
  background: #fff;
  color: var(--charcoal);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1140px;
  z-index: 1000;
  padding: 14px 28px;
  border-radius: var(--radius);
  background: rgba(255,248,240,.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(232,221,211,.4);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav.scrolled {
  background: rgba(255,248,240,.97);
  box-shadow: var(--shadow);
  top: 8px;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--charcoal);
  white-space: nowrap;
}

.nav-logo span { color: var(--sage); }

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

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--charcoal-light);
  transition: color .3s;
}

.nav-links a:hover { color: var(--sage); }

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

.nav-cta .btn { padding: 10px 24px; font-size: .85rem; }

.nav-portal {
  font-size: .85rem;
  font-weight: 500;
  color: var(--blue) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,154,130,.12);
  color: var(--sage-dark);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--sage);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--charcoal-light);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--charcoal-light);
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg { width: 18px; height: 18px; }

/* Floating illustration */
.hero-visual {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  z-index: 1;
  opacity: .18;
}

/* Particles canvas */
#particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── Services ── */
.services { background: #fff; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--sand);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg { width: 28px; height: 28px; stroke: #fff; fill: none; }

.service-card h3 { margin-bottom: 10px; }

.service-card p {
  font-size: .92rem;
  color: var(--charcoal-light);
  margin-bottom: 16px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-features li {
  font-size: .85rem;
  color: var(--charcoal-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* ── About / Why Us ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(124,154,130,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon svg { width: 22px; height: 22px; }

.value-item h4 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: .95rem; margin-bottom: 2px; }
.value-item p { font-size: .88rem; color: var(--charcoal-light); }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--sage);
  margin-bottom: 4px;
}

.stat-label {
  font-size: .85rem;
  color: var(--charcoal-light);
  font-weight: 500;
}

/* ── How It Works ── */
.how-it-works { background: #fff; }

.steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% + 36px);
  width: calc(100% - 72px);
  border-top: 2px dashed var(--sand);
  z-index: 1;
}

.step h3 { margin-bottom: 8px; }
.step p { font-size: .9rem; color: var(--charcoal-light); }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.testimonial-stars {
  color: var(--terracotta);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: .95rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  font-size: .9rem;
}

.testimonial-location {
  font-size: .8rem;
  color: var(--charcoal-light);
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--sage) 0%, var(--blue) 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner h2 { color: #fff; margin-bottom: 16px; position: relative; }
.cta-banner p { opacity: .9; margin-bottom: 32px; font-size: 1.05rem; position: relative; }

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

/* ── Contact Form ── */
.contact { background: #fff; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(124,154,130,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 20px; height: 20px; }

.contact-item h4 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: .9rem; margin-bottom: 2px; }
.contact-item p { font-size: .88rem; color: var(--charcoal-light); }
.contact-item a { color: var(--blue); }

.form-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  color: var(--charcoal);
  background: #fff;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(124,154,130,.15);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  margin-top: 4px;
}

/* Success message */
.form-success {
  text-align: center;
  padding: 48px 24px;
  display: none;
}

.form-success.show { display: block; }
.form-success svg { width: 64px; height: 64px; margin: 0 auto 20px; }
.form-success h3 { color: var(--sage); margin-bottom: 12px; }
.form-success p { color: var(--charcoal-light); font-size: .95rem; margin-bottom: 20px; }

.form-error {
  background: rgba(196,112,75,.1);
  color: var(--terracotta-dark);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  margin-bottom: 16px;
  display: none;
}

.form-error.show { display: block; }

/* ── Footer ── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.footer-brand p { font-size: .88rem; line-height: 1.7; }

.footer h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}

.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: .88rem; transition: color .3s; }
.footer ul li a:hover { color: var(--sage); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
}

/* ── Floating Elements ── */
.floating-phone {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(124,154,130,.4);
  transition: var(--transition);
  cursor: pointer;
}

.floating-phone:hover { background: var(--sage-dark); transform: scale(1.08); }

.floating-phone svg { width: 24px; height: 24px; }

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}

.floating-phone::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--sage);
  animation: pulse-ring 2s ease infinite;
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 92px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  border: none;
}

.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--cream); }
.scroll-top svg { width: 20px; height: 20px; }

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 12px;
    background: rgba(255,248,240,.97);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    gap: 20px;
  }

  .nav.open .nav-cta {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 220px);
    left: 0;
    right: 0;
    background: rgba(255,248,240,.97);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
  }

  /* Mobile menu overlay */
  .nav.open .nav-links,
  .nav.open .nav-cta {
    position: fixed;
    top: auto;
    left: 16px;
    right: 16px;
  }

  .nav.open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(45,41,38,.3);
    z-index: -1;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 16px;
    right: 16px;
    background: rgba(255,248,240,.97);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    z-index: 999;
    flex-direction: column;
    gap: 16px;
  }

  .mobile-menu.open { display: flex; }
  .mobile-menu a { padding: 8px 0; font-weight: 500; }

  .hero-visual { display: none; }

  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

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

  .steps { flex-direction: column; align-items: center; gap: 32px; }
  .step::after { display: none !important; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 64px 0; }
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { gap: 16px; }
  .stat-card { padding: 24px 16px; }
  .stat-number { font-size: 1.8rem; }
  .floating-phone { bottom: 16px; right: 16px; }
  .scroll-top { bottom: 16px; right: 80px; }
}

/* ═══════════════════════════════════════════
   Coverage Map — Illinois Interactive
   ═══════════════════════════════════════════ */
.coverage {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--cream) 0%, #FDF3E7 100%);
  position: relative;
}

.map-legend {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  font-size: .92rem;
  color: var(--charcoal-light);
}
.legend-item { display: inline-flex; align-items: center; gap: 10px; font-weight: 500; }
.legend-dot {
  width: 14px; height: 14px; border-radius: 4px;
  border: 1.5px solid rgba(0,0,0,.08);
}
.legend-dot.tier-1 { background: #7C9A82; }
.legend-dot.tier-2 { background: #E5B769; }
.legend-dot.tier-3 { background: #CFC6BD; }

.map-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.map-canvas {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  min-height: 560px;
  overflow: hidden;
}
.map-canvas svg {
  width: 100%;
  height: auto;
  display: block;
  font-family: 'Inter', sans-serif;
}

.map-loading {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
  background: #fff;
  z-index: 5;
  color: var(--charcoal-light);
  transition: opacity .4s;
}
.map-loading.hide { opacity: 0; pointer-events: none; }
.map-spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--sand);
  border-top-color: var(--sage);
  border-radius: 50%;
  animation: mapSpin 1s linear infinite;
}
@keyframes mapSpin { to { transform: rotate(360deg); } }

.county {
  stroke: #fff;
  stroke-width: 0.8;
  cursor: pointer;
  transition: fill .25s, transform .25s, filter .25s;
  transform-origin: center;
  transform-box: fill-box;
}
.county.tier-1 { fill: #7C9A82; }
.county.tier-2 { fill: #E5B769; }
.county.tier-3 { fill: #CFC6BD; }
.county:hover {
  filter: brightness(1.12) drop-shadow(0 4px 8px rgba(0,0,0,.12));
  stroke: var(--charcoal);
  stroke-width: 1.5;
}
.county.active {
  stroke: var(--charcoal);
  stroke-width: 2;
  filter: brightness(1.15) drop-shadow(0 6px 14px rgba(0,0,0,.2));
}

.map-tooltip {
  position: absolute;
  background: var(--charcoal);
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 500;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, calc(-100% - 12px));
  transition: opacity .18s;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.map-tooltip::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--charcoal);
}
.map-tooltip.show { opacity: 1; }

.map-panel {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 560px;
  position: sticky;
  top: 100px;
}
.panel-empty {
  text-align: center;
  color: var(--charcoal-light);
}
.panel-empty svg { margin: 0 auto 16px; display: block; }
.panel-empty h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.panel-empty p { font-size: .95rem; }

.panel-content { animation: panelFade .35s cubic-bezier(.25,.46,.45,.94); }
@keyframes panelFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.panel-tier {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.panel-tier.tier-1 { background: rgba(124,154,130,.15); color: var(--sage-dark); }
.panel-tier.tier-2 { background: rgba(229,183,105,.18); color: #9B7A2E; }
.panel-tier.tier-3 { background: rgba(74,69,67,.1); color: var(--charcoal-light); }
.panel-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 6px;
}
.panel-pop {
  font-size: .9rem;
  color: var(--charcoal-light);
  margin-bottom: 20px;
}
.panel-details {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 24px;
  font-size: .92rem;
  line-height: 1.65;
}
.panel-details ul { list-style: none; }
.panel-details li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 8px;
}
.panel-details li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
}
.panel-details li:last-child { margin-bottom: 0; }
.panel-cta { width: 100%; justify-content: center; }

.form-county-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,154,130,.12);
  color: var(--sage-dark);
  border: 1px solid rgba(124,154,130,.3);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: panelFade .35s;
}
.county-clear {
  background: none;
  border: none;
  color: var(--sage-dark);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0 0 4px;
  opacity: .6;
  transition: opacity .2s;
}
.county-clear:hover { opacity: 1; }

@media (max-width: 900px) {
  .map-wrap { grid-template-columns: 1fr; }
  .map-panel { position: static; min-height: auto; }
  .map-canvas { min-height: 420px; }
  .coverage { padding: 80px 0; }
}

/* ─── FAQ section ────────────────────────────────────── */
.faq {
  padding: 96px 0;
  background: var(--cream, #FBF7F2);
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border: 1px solid #E8DDD3;
  border-radius: 14px;
  padding: 20px 24px;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] {
  border-color: #4A7C9B;
  box-shadow: 0 6px 18px rgba(74,124,155,.08);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  color: #2D2926;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: #4A7C9B;
  transition: transform .2s;
  line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin: 14px 0 0;
  color: #6B6560;
  font-size: 15.5px;
  line-height: 1.65;
}
.faq-item p strong { color: #2D2926; }

/* ─── Hero social proof strip ────────────────────────── */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding: 18px 22px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(8px);
  border: 1px solid #E8DDD3;
  border-radius: 14px;
  max-width: 620px;
}
.proof-stars { display: flex; flex-direction: column; gap: 2px; }
.proof-stars > span:first-child {
  color: #E8A33D;
  font-size: 18px;
  letter-spacing: 2px;
}
.proof-count { font-size: 12.5px; color: #6B6560; font-weight: 500; }
.proof-divider { width: 1px; height: 28px; background: #E8DDD3; }
.proof-stat { font-size: 13px; color: #6B6560; line-height: 1.3; }
.proof-stat strong { display: block; font-size: 18px; color: #2D2926; font-family: 'DM Serif Display', serif; }

/* ─── Transparent pricing ────────────────────────────── */
.pricing { padding: 96px 0; background: #fff; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 8px;
}
.price-card {
  background: #FBF7F2;
  border: 1px solid #E8DDD3;
  border-radius: 18px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: #4A7C9B;
  box-shadow: 0 18px 40px rgba(74,124,155,.12);
}
.price-head { position: relative; margin-bottom: 20px; }
.price-head h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: #2D2926;
  margin: 0;
}
.price-tag {
  display: inline-block;
  background: #C4704B;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.price-body { flex: 1; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed #E8DDD3;
  font-size: 14.5px;
  color: #6B6560;
}
.price-row:last-child { border-bottom: none; }
.price-row strong { color: #2D2926; font-size: 15.5px; font-weight: 600; }
.price-cta { width: 100%; justify-content: center; }
.pricing-footnote {
  text-align: center;
  margin-top: 28px;
  color: #8A847F;
  font-size: 13.5px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Testimonials (hand-built cards) ────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #E8DDD3;
  border-radius: 18px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s, box-shadow .25s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(45,41,38,.08);
}
.testimonial-stars {
  color: #E8A33D;
  font-size: 18px;
  letter-spacing: 2px;
}
.testimonial-card p {
  color: #2D2926;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  font-style: italic;
}
.testimonial-card footer { display: flex; flex-direction: column; gap: 2px; }
.testimonial-card footer strong { color: #2D2926; font-size: 15px; }
.testimonial-card footer span { color: #8A847F; font-size: 13px; }

/* ─── Trust band ─────────────────────────────────────── */
.trust-band {
  padding: 72px 0;
  background: linear-gradient(180deg, #fff 0%, #FBF7F2 100%);
  border-top: 1px solid #F0E6DA;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.trust-cell { text-align: center; padding: 0 8px; }
.trust-cell svg { margin-bottom: 14px; }
.trust-cell h3 {
  font-size: 17px;
  color: #2D2926;
  margin: 0 0 8px;
  font-weight: 700;
}
.trust-cell p {
  color: #6B6560;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 640px) {
  .hero-proof { gap: 12px; padding: 14px 16px; }
  .proof-divider { display: none; }
  .price-card { padding: 24px 22px; }
}

/* ═══════════════════════════════════════════════════════
   CASA DIGITAL — capa neural · elite
   Apple + Tesla + Notion + sci-fi, pero cálido
   ═══════════════════════════════════════════════════════ */

:root {
  --home-glow: radial-gradient(1200px 600px at 20% 0%, rgba(212,167,101,0.12), transparent 60%),
               radial-gradient(900px 500px at 85% 10%, rgba(74,124,155,0.10), transparent 65%),
               radial-gradient(800px 700px at 50% 100%, rgba(124,154,130,0.08), transparent 70%);
  --glass-bg: rgba(255, 255, 255, 0.62);
  --glass-border: rgba(255, 255, 255, 0.55);
  --ink: #1c1a18;
  --warm-gold: #c9965a;
  --lumen: 0 20px 60px -20px rgba(201,150,90,0.25), 0 8px 24px -8px rgba(0,0,0,0.08);
}

/* Aurora de fondo — respiración lenta */
body {
  position: relative;
  background: #fdfaf5 var(--home-glow);
  background-attachment: fixed;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(600px 300px at var(--mx, 50%) var(--my, 30%), rgba(212,167,101,0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transition: background 120ms linear;
}

/* Cursor-trail luminoso (ventana que se limpia al pasar) */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,245,225,0.35), transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  transition: opacity 300ms ease;
  z-index: 1;
  opacity: 0;
}
@media (hover: hover) { .cursor-glow { opacity: 1; } }

/* Hero · overlay premium */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, transparent 45%, rgba(255,255,255,0.35) 50%, transparent 55%);
  background-size: 300% 300%;
  animation: shimmer 14s linear infinite;
  pointer-events: none;
  opacity: 0.6;
}
@keyframes shimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 200%; }
}

/* Hero-badge neural */
.hero-badge {
  backdrop-filter: blur(20px) saturate(180%);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--lumen);
  position: relative;
}
.hero-badge::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212,167,101,.6), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}

/* H1 · editorial con luz */
.hero-content h1 {
  letter-spacing: -0.02em;
}
.hero-content h1 em {
  background: linear-gradient(120deg, #c9965a 0%, #e8c48a 40%, #c9965a 80%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  position: relative;
}

/* Buttons · premium */
.btn-primary {
  background: linear-gradient(135deg, #4A7C9B 0%, #3A6280 100%) !important;
  box-shadow: 0 10px 30px -8px rgba(74,124,155,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(74,124,155,0.6); }
.btn-primary:hover::before { transform: translateX(120%); }

/* Section backgrounds — ritmo de habitaciones de la casa */
.services  { background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%); }
.pricing   { background: rgba(255, 255, 255, 0.55); backdrop-filter: blur(2px); }
.about     { background: transparent; }
.testimonials { background: rgba(253, 248, 240, 0.55); }
.faq       { background: rgba(255, 255, 255, 0.55); backdrop-filter: blur(2px); }
.coverage  { background: transparent; }

/* Cards glassmorphism — "ventanas" de la casa */
.price-card,
.testimonial-card,
.faq-item,
.form-card {
  backdrop-filter: blur(14px) saturate(160%);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--lumen);
}
.price-card:hover,
.testimonial-card:hover {
  border-color: rgba(201,150,90,0.5);
  box-shadow: 0 24px 60px -20px rgba(201,150,90,0.3), 0 10px 30px -10px rgba(74,124,155,0.2);
}

/* Nav · casa digital */
.nav {
  backdrop-filter: blur(18px) saturate(180%);
  background: rgba(253, 250, 245, 0.72) !important;
  border-bottom: 1px solid rgba(232, 221, 211, 0.5);
}

/* Floating call button — pulse premium */
.floating-phone {
  box-shadow: 0 12px 30px -8px rgba(124,154,130,0.45), 0 0 0 0 rgba(124,154,130,0.4);
  animation: pulse-ring 2.6s cubic-bezier(.66,0,0,1) infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 12px 30px -8px rgba(124,154,130,0.45), 0 0 0 0 rgba(124,154,130,0.45); }
  70%  { box-shadow: 0 12px 30px -8px rgba(124,154,130,0.45), 0 0 0 18px rgba(124,154,130,0); }
  100% { box-shadow: 0 12px 30px -8px rgba(124,154,130,0.45), 0 0 0 0 rgba(124,154,130,0); }
}

/* Fade-up refinado — compat con .visible de app.js */
.fade-up.in-view,
.fade-up.visible { opacity: 1 !important; transform: translateY(0) !important; }

/* Section labels — orbe luminoso */
.section-label {
  position: relative;
  padding-left: 18px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #c9965a, #7c9a82);
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(201,150,90,0.6);
}

/* Trust band · líneas conectoras */
.trust-band {
  position: relative;
}
.trust-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,150,90,.3), transparent);
  opacity: 0.7;
  pointer-events: none;
}

/* ============ La Casa · Interactive House ============ */
.the-house {
  padding: 120px 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(58,176,255,0.06), transparent 70%), #0a0e1a;
  position: relative;
  overflow: hidden;
}
.the-house h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #f5f0e8;
  margin: 12px 0 10px;
}
.the-house .section-sub {
  color: rgba(245,240,232,0.7);
  max-width: 640px;
  margin-bottom: 48px;
  font-size: 1.05rem;
}
.house-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .house-grid { grid-template-columns: 1fr; }
}
.house-stage {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #0a1628, #1a2f4a);
  box-shadow: 0 30px 80px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.06);
}
.house-svg {
  display: block;
  width: 100%;
  height: auto;
}
.hot {
  cursor: pointer;
  outline: none;
  transition: filter .3s ease, transform .3s ease;
  transform-origin: center;
  transform-box: fill-box;
}
.hot:hover, .hot:focus-visible {
  filter: drop-shadow(0 0 18px rgba(58,176,255,.7)) brightness(1.12);
}
.hot:hover .hot-pulse, .hot:focus-visible .hot-pulse { opacity: 1; }
.hot-pulse {
  opacity: 0.65;
  transform-origin: center;
  transform-box: fill-box;
  animation: hotPulse 2.2s ease-in-out infinite;
}
@keyframes hotPulse {
  0%,100% { transform: scale(1); opacity: .45; }
  50%     { transform: scale(1.6); opacity: .15; }
}

.house-panel {
  background: linear-gradient(180deg, rgba(245,240,232,.04), rgba(245,240,232,.02));
  border: 1px solid rgba(245,240,232,.08);
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color .3s ease;
}
.house-panel:has(.panel-detail:not([hidden])) {
  border-color: rgba(58,176,255,.35);
  box-shadow: 0 0 40px rgba(58,176,255,.15);
}
.panel-kicker {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3ab0ff;
  font-weight: 600;
}
.house-panel h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  color: #f5f0e8;
  margin: 4px 0;
  line-height: 1.2;
}
.house-panel p {
  color: rgba(245,240,232,.7);
  line-height: 1.6;
  font-size: .98rem;
}
.panel-bullets {
  list-style: none;
  padding: 0;
  margin: 8px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.panel-bullets li {
  color: rgba(245,240,232,.85);
  font-size: .92rem;
  padding-left: 2px;
}
.panel-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  color: #c9965a;
  margin: 4px 0 12px;
}
.panel-price span {
  font-size: .8rem;
  color: rgba(245,240,232,.55);
  font-family: inherit;
  font-weight: normal;
  letter-spacing: .5px;
}
.panel-detail .btn { align-self: flex-start; margin-top: 4px; }

/* ============ Nav flotante Tesla/Apple + scroll-spy ============ */
.nav {
  transition: transform .4s cubic-bezier(.22,.9,.25,1), background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.nav.is-floating {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  border-radius: 999px;
  background: rgba(10,14,26,0.72);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(245,240,232,0.1);
  box-shadow: 0 12px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.03) inset;
  padding: 10px 20px;
}
.nav.is-floating .nav-logo { color: #f5f0e8; }
.nav.is-floating .nav-links a { color: rgba(245,240,232,.82); }
.nav.is-floating .nav-links a:hover,
.nav.is-floating .nav-links a.is-active { color: #fff; }
.nav.is-hidden { transform: translate(-50%, -140%); }

.nav-links {
  position: relative;
}
.nav-indicator {
  position: absolute;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, #3ab0ff, #c9965a);
  border-radius: 2px;
  transition: transform .45s cubic-bezier(.22,.9,.25,1), width .45s cubic-bezier(.22,.9,.25,1), opacity .3s ease;
  opacity: 0;
  pointer-events: none;
  width: 0;
  left: 0;
  transform-origin: left center;
}
.nav-indicator.is-visible { opacity: 1; }
.nav-links a.is-active {
  color: #fff;
}

/* ============ Before / After showcase ============ */
.ba-showcase {
  padding: 120px 0;
  background: #0a0e1a;
  position: relative;
}
.ba-showcase h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #f5f0e8;
  margin: 12px 0 10px;
}
.ba-showcase .section-sub {
  color: rgba(245,240,232,0.7);
  max-width: 640px;
  margin-bottom: 48px;
}
.ba-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.ba-tab {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(245,240,232,.05);
  border: 1px solid rgba(245,240,232,.1);
  color: rgba(245,240,232,.75);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .3s ease;
  font-family: inherit;
}
.ba-tab:hover { color: #fff; border-color: rgba(58,176,255,.4); }
.ba-tab.is-active {
  background: linear-gradient(90deg, rgba(58,176,255,.2), rgba(201,150,90,.15));
  border-color: rgba(58,176,255,.5);
  color: #fff;
  box-shadow: 0 4px 20px rgba(58,176,255,.2);
}
.ba-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 15 / 8;
  border-radius: 24px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  box-shadow: 0 30px 80px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.06);
  outline: none;
}
.ba-frame:focus-visible { box-shadow: 0 0 0 3px #3ab0ff, 0 30px 80px rgba(0,0,0,.5); }
.ba-before, .ba-after {
  position: absolute;
  inset: 0;
}
.ba-before svg, .ba-after svg { width: 100%; height: 100%; display: block; }
.ba-after {
  clip-path: inset(0 0 0 50%);
  transition: clip-path .05s linear;
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}
.ba-handle-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.9), transparent);
}
.ba-handle-knob {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f5f0e8;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.45), 0 0 0 4px rgba(58,176,255,.25);
  margin: 8px 0;
}

/* ============ Theme toggle + dark mode ============ */
.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--charcoal);
  transition: all .3s ease;
  position: relative;
}
.theme-toggle:hover { background: rgba(255,255,255,.95); transform: scale(1.05); }
.theme-toggle svg { position: absolute; transition: transform .4s ease, opacity .3s ease; }
.theme-toggle .ti-sun { opacity: 0; transform: rotate(-90deg) scale(.6); }
.theme-toggle .ti-moon { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="dark"] .theme-toggle {
  background: rgba(245,240,232,.08);
  border-color: rgba(245,240,232,.15);
  color: #f5f0e8;
}
[data-theme="dark"] .theme-toggle:hover { background: rgba(245,240,232,.15); }
[data-theme="dark"] .theme-toggle .ti-moon { opacity: 0; transform: rotate(90deg) scale(.6); }
[data-theme="dark"] .theme-toggle .ti-sun { opacity: 1; transform: rotate(0) scale(1); }
.nav.is-floating .theme-toggle { background: rgba(245,240,232,.08); border-color: rgba(245,240,232,.15); color: #f5f0e8; }

[data-theme="dark"] body {
  background: #0a0e1a;
  color: #e8e4dc;
}
[data-theme="dark"] body::before {
  background: radial-gradient(800px 400px at var(--mx, 50%) var(--my, 20%), rgba(58,176,255,0.08), transparent 70%);
}
[data-theme="dark"] .nav { background: rgba(10,14,26,.7); }
[data-theme="dark"] .nav-logo,
[data-theme="dark"] .nav-links a { color: rgba(245,240,232,.85); }
[data-theme="dark"] .section-title,
[data-theme="dark"] h1, [data-theme="dark"] h2, [data-theme="dark"] h3 { color: #f5f0e8; }
[data-theme="dark"] .section-subtitle,
[data-theme="dark"] p { color: rgba(245,240,232,.72); }
[data-theme="dark"] .price-card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .trust-item,
[data-theme="dark"] .faq-item {
  background: rgba(245,240,232,.04);
  border-color: rgba(245,240,232,.08);
  color: #e8e4dc;
}
[data-theme="dark"] .price-card h3,
[data-theme="dark"] .price-row strong { color: #f5f0e8; }
[data-theme="dark"] .price-row span { color: rgba(245,240,232,.7); }
[data-theme="dark"] footer { background: #0a0e1a; }

/* ============ Calculator + Rate sheet ============ */
.calc {
  max-width: 900px;
  margin: 0 auto 48px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,.55));
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 30px 80px rgba(0,0,0,.15);
}
[data-theme="dark"] .calc { background: linear-gradient(180deg, rgba(245,240,232,.05), rgba(245,240,232,.02)); border-color: rgba(245,240,232,.08); }
.calc-head { padding: 24px 28px 0; }
.calc-head h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.6rem; margin-bottom: 4px; }
.calc-head p { color: rgba(0,0,0,.6); font-size: .9rem; }
[data-theme="dark"] .calc-head p { color: rgba(245,240,232,.7); }
.calc-body { padding: 20px 28px; display: flex; flex-direction: column; gap: 20px; }
.calc-group label { display: block; font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(0,0,0,.55); margin-bottom: 10px; }
[data-theme="dark"] .calc-group label { color: rgba(245,240,232,.65); }
.calc-group label strong { float: right; color: #3ab0ff; font-size: 1rem; letter-spacing: 0; text-transform: none; }
.calc-seg { display: flex; flex-wrap: wrap; gap: 6px; background: rgba(0,0,0,.04); border-radius: 14px; padding: 4px; }
[data-theme="dark"] .calc-seg { background: rgba(245,240,232,.05); }
.calc-seg button {
  flex: 1;
  min-width: 80px;
  padding: 10px 14px;
  border-radius: 10px;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  color: inherit;
  transition: all .25s ease;
  font-family: inherit;
}
.calc-seg button.is-active { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.08); color: #3ab0ff; }
[data-theme="dark"] .calc-seg button.is-active { background: rgba(58,176,255,.2); color: #fff; }
.calc input[type="range"] { width: 100%; height: 6px; border-radius: 999px; background: rgba(58,176,255,.2); outline: none; -webkit-appearance: none; }
.calc input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, #3ab0ff, #c9965a); cursor: pointer; box-shadow: 0 4px 12px rgba(58,176,255,.4); }
.calc input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, #3ab0ff, #c9965a); cursor: pointer; border: none; }
.calc-hint { margin-top: 8px; font-size: .8rem; color: rgba(0,0,0,.5); }
[data-theme="dark"] .calc-hint { color: rgba(245,240,232,.55); }
.calc-addons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 640px) { .calc-addons { grid-template-columns: 1fr; } }
.calc-addons label { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 10px; background: rgba(0,0,0,.03); cursor: pointer; text-transform: none; letter-spacing: 0; font-size: .88rem; color: inherit; font-weight: 500; }
[data-theme="dark"] .calc-addons label { background: rgba(245,240,232,.04); }
.calc-qty { width: 56px; margin-left: auto; padding: 4px 8px; border-radius: 6px; border: 1px solid rgba(0,0,0,.15); background: #fff; font-size: .85rem; }
[data-theme="dark"] .calc-qty { background: rgba(245,240,232,.08); color: #fff; border-color: rgba(245,240,232,.15); }
.calc-summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 28px;
  background: linear-gradient(90deg, rgba(58,176,255,.1), rgba(201,150,90,.08));
  border-top: 1px solid rgba(0,0,0,.06);
  flex-wrap: wrap;
}
[data-theme="dark"] .calc-summary { border-top-color: rgba(245,240,232,.08); }
.calc-kicker { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: #3ab0ff; font-weight: 700; }
.calc-price { font-family: 'Playfair Display', Georgia, serif; font-size: 2.4rem; font-weight: 700; line-height: 1; color: #0a0e1a; }
[data-theme="dark"] .calc-price { color: #fff; }
.calc-summary small { color: rgba(0,0,0,.55); font-size: .82rem; }
[data-theme="dark"] .calc-summary small { color: rgba(245,240,232,.65); }

.rate-sheet {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.rate-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow .3s ease;
}
[data-theme="dark"] .rate-card { background: rgba(245,240,232,.04); border-color: rgba(245,240,232,.08); }
.rate-head h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.6rem; margin-bottom: 4px; }
.rate-head p { color: rgba(0,0,0,.6); font-size: .88rem; margin-top: 4px; }
[data-theme="dark"] .rate-head p { color: rgba(245,240,232,.7); }
.rate-head .price-tag {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  background: linear-gradient(90deg, #3ab0ff, #c9965a); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 8px;
}
.rate-table { display: flex; flex-direction: column; }
.rt-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(var(--cols, 2), 1fr);
  gap: 8px;
  padding: 10px 4px;
  border-bottom: 1px solid rgba(0,0,0,.05);
  font-size: .9rem;
  align-items: center;
}
[data-theme="dark"] .rt-row { border-bottom-color: rgba(245,240,232,.06); }
.rt-row:last-child { border-bottom: none; }
.rt-row span { color: rgba(0,0,0,.7); }
[data-theme="dark"] .rt-row span { color: rgba(245,240,232,.75); }
.rt-row strong { text-align: right; font-weight: 700; }
.rt-head { --cols: 2; font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(0,0,0,.45); border-bottom: 2px solid rgba(0,0,0,.1); }
[data-theme="dark"] .rt-head { color: rgba(245,240,232,.55); border-bottom-color: rgba(245,240,232,.12); }
.rt-head strong { font-size: .72rem; }
.rate-card:nth-child(2) .rt-row { grid-template-columns: 1.2fr repeat(4, 1fr); }
.rate-card:nth-child(2) .rt-head { --cols: 4; }
.rt-compact .rt-row { grid-template-columns: 1.5fr 1fr; padding: 7px 4px; font-size: .85rem; }
.rate-extras {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-top: 12px; border-top: 1px dashed rgba(0,0,0,.15);
}
[data-theme="dark"] .rate-extras { border-top-color: rgba(245,240,232,.15); }
.rate-extras div {
  flex: 1 1 45%;
  display: flex; justify-content: space-between;
  padding: 6px 10px;
  background: rgba(58,176,255,.06);
  border-radius: 8px;
  font-size: .82rem;
}
[data-theme="dark"] .rate-extras div { background: rgba(58,176,255,.08); }
.rate-extras strong { color: #3ab0ff; }

/* ============ Pricing tilt 3D ============ */
.pricing-grid { perspective: 1400px; }
.price-card[data-tilt] {
  transform-style: preserve-3d;
  transform: perspective(1400px) rotateX(var(--tx, 0deg)) rotateY(var(--ty, 0deg)) translateZ(0);
  transition: transform .25s cubic-bezier(.22,.9,.25,1), box-shadow .3s ease;
  will-change: transform;
  position: relative;
}
.price-card[data-tilt]::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--gx, 50%) var(--gy, 50%), rgba(58,176,255,.18), transparent 40%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.price-card[data-tilt]:hover::after { opacity: 1; }
.price-card[data-tilt]:hover {
  box-shadow: 0 30px 70px rgba(0,0,0,.35), 0 0 0 1px rgba(58,176,255,.25) inset;
}
.price-card .price-head, .price-card .price-body, .price-card .price-cta {
  transform: translateZ(20px);
}

/* ============ A11y skip link + reduced motion ============ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: #3ab0ff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  z-index: 9999;
  text-decoration: none;
  font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; outline: 3px solid #c9965a; }
:focus-visible { outline: 3px solid #3ab0ff; outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ============ Blog ============ */
.blog-hero { padding: 100px 0 60px; text-align: center; }
.blog-hero h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.4rem, 5vw, 4rem); margin: 16px 0 10px; }
.blog-hero p { color: rgba(0,0,0,.6); font-size: 1.1rem; }
[data-theme="dark"] .blog-hero p { color: rgba(245,240,232,.7); }
.blog-list { padding: 40px 0 120px; }
.blog-list .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.blog-card { border-radius: 20px; overflow: hidden; background: rgba(255,255,255,.7); border: 1px solid rgba(0,0,0,.06); transition: transform .35s ease, box-shadow .35s ease; }
[data-theme="dark"] .blog-card { background: rgba(245,240,232,.04); border-color: rgba(245,240,232,.08); }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(0,0,0,.2); }
.blog-card a { display: block; text-decoration: none; color: inherit; }
.blog-thumb { aspect-ratio: 2/1; overflow: hidden; }
.blog-thumb svg { width: 100%; height: 100%; display: block; }
.blog-card .blog-meta { padding: 18px 20px 0; font-size: .78rem; color: rgba(0,0,0,.55); letter-spacing: .5px; }
[data-theme="dark"] .blog-card .blog-meta { color: rgba(245,240,232,.6); }
.blog-card .blog-meta span { color: #3ab0ff; font-weight: 700; text-transform: uppercase; }
.blog-card h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.35rem; padding: 10px 20px 6px; line-height: 1.25; }
.blog-card p { padding: 0 20px 22px; font-size: .92rem; color: rgba(0,0,0,.65); line-height: 1.55; }
[data-theme="dark"] .blog-card p { color: rgba(245,240,232,.75); }
.article { padding: 80px 0 120px; max-width: 760px; margin: 0 auto; }
.article header { padding-bottom: 32px; border-bottom: 1px solid rgba(0,0,0,.08); margin-bottom: 32px; }
[data-theme="dark"] .article header { border-bottom-color: rgba(245,240,232,.08); }
.breadcrumb { font-size: .82rem; color: rgba(0,0,0,.55); margin-bottom: 18px; }
.breadcrumb a { color: #3ab0ff; text-decoration: none; }
.article h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; line-height: 1.15; }
.article-sub { font-size: 1.15rem; color: rgba(0,0,0,.7); line-height: 1.55; }
[data-theme="dark"] .article-sub { color: rgba(245,240,232,.8); }
.article-meta { margin-top: 18px; font-size: .85rem; color: rgba(0,0,0,.5); }
.article-body h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.6rem; margin: 36px 0 14px; }
.article-body p, .article-body li { font-size: 1.02rem; line-height: 1.75; margin-bottom: 14px; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; }
.article-body li { margin-bottom: 6px; }
.article-cta { margin: 40px 0; padding: 32px; border-radius: 20px; background: linear-gradient(135deg, rgba(58,176,255,.08), rgba(201,150,90,.06)); text-align: center; }
.article-cta h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.6rem; margin-bottom: 8px; }
.article-cta p { margin-bottom: 18px; }
.site-footer { padding: 40px 0; text-align: center; color: rgba(0,0,0,.5); font-size: .88rem; }

/* ============ Coverage map ============ */
.coverage { padding: 120px 0; background: radial-gradient(ellipse at 20% 30%, rgba(58,176,255,.05), transparent 60%); }
.coverage h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem, 4vw, 3.2rem); margin: 12px 0 10px; }
.coverage .section-sub { max-width: 640px; margin-bottom: 48px; color: rgba(0,0,0,.6); }
[data-theme="dark"] .coverage .section-sub { color: rgba(245,240,232,.7); }
.coverage-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; align-items: stretch; }
@media (max-width: 900px) { .coverage-grid { grid-template-columns: 1fr; } }
.coverage-map {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.05);
  background: #0a1a10;
}
.coverage-map svg { width: 100%; height: auto; display: block; }
.pin { cursor: pointer; transition: filter .3s ease; }
.pin:hover { filter: drop-shadow(0 0 14px rgba(58,176,255,.8)); }
.coverage-panel {
  padding: 32px;
  border-radius: 24px;
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
[data-theme="dark"] .coverage-panel { background: rgba(245,240,232,.04); border-color: rgba(245,240,232,.08); }
.coverage-stat { display: flex; flex-direction: column; }
.coverage-stat strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  color: #3ab0ff;
  line-height: 1;
}
.coverage-stat span { font-size: .85rem; color: rgba(0,0,0,.6); letter-spacing: .5px; }
[data-theme="dark"] .coverage-stat span { color: rgba(245,240,232,.7); }
.coverage-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; font-size: .88rem; }
.coverage-list li { display: flex; align-items: center; gap: 8px; }
.coverage-list em { opacity: .6; font-style: normal; margin-left: 4px; }
.coverage-list .dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.coverage-list .tier-1 { background: #3ab0ff; box-shadow: 0 0 8px rgba(58,176,255,.6); }
.coverage-list .tier-2 { background: #c9965a; box-shadow: 0 0 8px rgba(201,150,90,.6); }
.coverage-list .tier-3 { background: rgba(0,0,0,.3); }

/* ============ Team ============ */
.team { padding: 120px 0; position: relative; }
.team h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem, 4vw, 3.2rem); margin: 12px 0 10px; }
.team .section-sub { color: rgba(0,0,0,.6); max-width: 640px; margin-bottom: 48px; }
[data-theme="dark"] .team .section-sub { color: rgba(245,240,232,.7); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.team-card {
  padding: 32px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(0,0,0,.06);
  text-align: center;
  transition: transform .4s ease, box-shadow .4s ease;
}
[data-theme="dark"] .team-card { background: rgba(245,240,232,.04); border-color: rgba(245,240,232,.08); }
.team-avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, hsl(var(--hue, 210) 70% 55%), hsl(calc(var(--hue, 210) + 40) 65% 45%));
  box-shadow: 0 10px 30px hsla(var(--hue, 210), 70%, 45%, .35), inset 0 1px 0 rgba(255,255,255,.2);
  position: relative;
}
.team-avatar::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, hsla(var(--hue, 210), 70%, 60%, .4), transparent);
  z-index: -1;
  animation: teamRing 5s linear infinite;
}
@keyframes teamRing { to { transform: rotate(360deg); } }
.team-card h3 { font-size: 1.2rem; margin-bottom: 4px; font-family: 'Playfair Display', Georgia, serif; }
.team-role { font-size: .85rem; color: #3ab0ff; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; margin-bottom: 12px; }
.team-bio { font-size: .92rem; line-height: 1.55; color: rgba(0,0,0,.65); margin-bottom: 14px; }
[data-theme="dark"] .team-bio { color: rgba(245,240,232,.75); }
.team-badges { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.team-badges span {
  padding: 4px 10px;
  font-size: .72rem;
  letter-spacing: .5px;
  border-radius: 999px;
  background: rgba(58,176,255,.12);
  color: #3ab0ff;
  font-weight: 600;
}

/* ============ Chat widget ============ */
.chat-widget { position: fixed; right: 20px; bottom: 20px; z-index: 950; }
.chat-launcher {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #3ab0ff, #c9965a);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(58,176,255,.45), 0 4px 12px rgba(0,0,0,.2);
  display: grid; place-items: center;
  position: relative;
  transition: transform .3s cubic-bezier(.22,.9,.25,1);
}
.chat-launcher:hover { transform: scale(1.08); }
.chat-launcher svg { position: absolute; transition: transform .3s ease, opacity .3s ease; }
.chat-launcher .chat-ico-close { opacity: 0; transform: rotate(-90deg) scale(.6); }
.chat-widget.is-open .chat-ico-open { opacity: 0; transform: rotate(90deg) scale(.6); }
.chat-widget.is-open .chat-ico-close { opacity: 1; transform: rotate(0) scale(1); }
.chat-pulse {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(58,176,255,.6);
  animation: chatPulse 2s ease-out infinite;
}
@keyframes chatPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.chat-widget.is-open .chat-pulse { display: none; }

.chat-panel {
  position: absolute;
  bottom: 74px;
  right: 0;
  width: min(360px, calc(100vw - 40px));
  height: 480px;
  max-height: calc(100vh - 120px);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(.95);
  opacity: 0;
  pointer-events: none;
  transition: all .35s cubic-bezier(.22,.9,.25,1);
}
[data-theme="dark"] .chat-panel { background: #1a1f2e; box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(245,240,232,.08); }
.chat-widget.is-open .chat-panel { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.chat-head {
  padding: 16px;
  background: linear-gradient(135deg, #3ab0ff, #c9965a);
  color: #fff;
  display: flex;
  gap: 12px;
  align-items: center;
}
.chat-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.25); display: grid; place-items: center; font-weight: 700; font-family: 'Playfair Display', Georgia, serif; }
.chat-who strong { display: block; font-size: .95rem; }
.chat-who span { font-size: .75rem; opacity: .85; display: flex; align-items: center; gap: 6px; }
.chat-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 2px rgba(74,222,128,.3); animation: chatDot 1.8s ease-in-out infinite; }
@keyframes chatDot { 50% { box-shadow: 0 0 0 5px rgba(74,222,128,.15); } }
.chat-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { max-width: 80%; padding: 10px 14px; border-radius: 16px; font-size: .9rem; line-height: 1.4; animation: chatIn .3s ease; }
@keyframes chatIn { from { opacity: 0; transform: translateY(6px); } }
.chat-them { background: #f0f2f5; color: #1a1a1a; align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-me { background: linear-gradient(135deg, #3ab0ff, #4a90e0); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
[data-theme="dark"] .chat-them { background: rgba(245,240,232,.08); color: #e8e4dc; }
.chat-quick { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.chat-quick button {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(58,176,255,.3);
  background: rgba(58,176,255,.08);
  color: #3ab0ff;
  font-size: .78rem;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s ease;
}
.chat-quick button:hover { background: rgba(58,176,255,.18); }
.chat-form {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(0,0,0,.08);
}
[data-theme="dark"] .chat-form { border-top-color: rgba(245,240,232,.08); }
.chat-form input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.1);
  background: #f5f5f5;
  font-family: inherit;
  font-size: .9rem;
}
[data-theme="dark"] .chat-form input { background: rgba(245,240,232,.08); border-color: rgba(245,240,232,.1); color: #e8e4dc; }
.chat-form input:focus { outline: none; border-color: #3ab0ff; background: #fff; }
.chat-form button {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #3ab0ff, #c9965a);
  color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.chat-form button:hover { transform: scale(1.08); }
@media (max-width: 720px) {
  .chat-widget { right: 12px; bottom: 90px; }
}

/* ============ Sticky mobile CTA ============ */
.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 900;
  display: none;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(10,14,26,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(245,240,232,0.12);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  transform: translateY(140%);
  transition: transform .45s cubic-bezier(.22,.9,.25,1);
}
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
}
.mcta-call {
  color: #f5f0e8;
  background: rgba(245,240,232,.08);
  border: 1px solid rgba(245,240,232,.15);
}
.mcta-quote {
  color: #0a0e1a;
  background: linear-gradient(90deg, #3ab0ff, #c9965a);
  box-shadow: 0 8px 20px rgba(58,176,255,.35);
}
@media (max-width: 720px) {
  .mobile-cta { display: flex; }
  body.has-mcta { padding-bottom: 84px; }
}

/* ═══════════════════════════════════════════════════════════════
   ELITE v2 — Density + Polish Layer (rewritten 2026-04-13)
   Restructura el ritmo visual sin tocar estructura HTML ni JS.
   Reglas más específicas (body.X …) ganan a las originales.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --radius-xs: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --hairline: 1px solid color-mix(in srgb, var(--charcoal) 8%, transparent);
  --hairline-strong: 1px solid color-mix(in srgb, var(--charcoal) 14%, transparent);
  --shadow-xs: 0 1px 2px rgba(45,41,38,.04), 0 1px 1px rgba(45,41,38,.03);
  --shadow-sm: 0 2px 8px rgba(45,41,38,.06), 0 1px 2px rgba(45,41,38,.04);
  --shadow-md: 0 8px 24px -8px rgba(45,41,38,.12), 0 2px 6px rgba(45,41,38,.05);
  --shadow-lg: 0 24px 48px -12px rgba(45,41,38,.18), 0 6px 12px rgba(45,41,38,.06);
  --ease-out: cubic-bezier(.22,1,.36,1);
}
[data-theme="dark"] {
  --hairline: 1px solid rgba(255,255,255,.08);
  --hairline-strong: 1px solid rgba(255,255,255,.14);
}

/* Typography refinement */
body { line-height: 1.6; letter-spacing: -0.005em; }
h1, h2, h3, h4 { letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 4.8vw, 4rem); line-height: 1.05; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.75rem); line-height: 1.1; }
h3 { font-size: 1.25rem; font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: -0.015em; }
.section-label { font-size: .7rem; letter-spacing: .2em; margin-bottom: 10px; }
.section-subtitle { font-size: 1rem; max-width: 620px; }

/* Container + rhythm */
body .container { max-width: 1200px; padding: 0 28px; }
body section { padding: clamp(56px, 7vw, 88px) 0; }
body .hero { padding-top: clamp(90px, 11vw, 130px); padding-bottom: clamp(60px, 8vw, 100px); }

/* Hairline dividers between adjacent sections */
body section + section:not(.cta-banner) { border-top: var(--hairline); }

/* Nav: frosted, thinner, floating */
.nav {
  background: color-mix(in srgb, var(--cream) 72%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: var(--hairline);
  padding: 14px 28px;
}
.nav.scrolled { box-shadow: var(--shadow-sm); padding: 10px 28px; }
[data-theme="dark"] .nav { background: color-mix(in srgb, var(--charcoal) 72%, transparent); }

/* Buttons: crisper, less round, with micro-motion */
.btn {
  border-radius: 999px;
  padding: 12px 22px;
  font-size: .9rem;
  letter-spacing: -0.01em;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), background .2s var(--ease-out);
  will-change: transform;
}
.btn-primary { box-shadow: 0 1px 0 rgba(255,255,255,.15) inset, var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, var(--shadow-md); }

/* Hero proof bar — tighter pills */
.hero-proof { gap: 18px; }
.hero-trust { gap: 20px; margin-top: 28px; }
.trust-item { font-size: .82rem; }

/* Cards: border-first, shadow on hover only */
.service-card,
.testimonial-card,
.stat-card {
  background: #fff;
  border: var(--hairline);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
}
[data-theme="dark"] .service-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .stat-card { background: rgba(255,255,255,.03); }
.service-card:hover,
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--sage) 40%, transparent);
}

/* Service grid: tighter, more columns on XL */
body .services-grid { gap: 18px; }
@media (min-width: 1280px) {
  body .services-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Service icon: smaller, flatter, asymmetric */
.service-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.service-icon svg { width: 22px; height: 22px; }

/* About grid densified */
body .about-grid { gap: 48px; }
.value-item { padding: 14px 0; border-bottom: var(--hairline); }
.value-item:last-child { border-bottom: none; }
.value-icon { width: 36px; height: 36px; border-radius: 10px; }
.value-icon svg { width: 18px; height: 18px; }

/* Stats: monospaced numerals, uppercase label */
.stat-card { padding: 22px; text-align: center; }
.stat-number { font-size: clamp(1.8rem, 3vw, 2.4rem); font-variant-numeric: tabular-nums; }
.stat-label { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--charcoal-light); }

/* How it works: number chip refined */
.step-number {
  width: 36px; height: 36px;
  font-size: .95rem; font-weight: 700;
  border-radius: 10px;
  background: var(--charcoal); color: var(--cream);
}
[data-theme="dark"] .step-number { background: var(--cream); color: var(--charcoal); }
.step:not(:last-child)::after { opacity: .25; }

/* Testimonials: quieter visuals, emphasis on text */
.testimonial-text { font-size: .95rem; line-height: 1.65; color: var(--charcoal); }
.testimonial-author { font-weight: 600; font-size: .88rem; margin-top: 14px; }
.testimonial-location { font-size: .78rem; color: var(--charcoal-light); }
.testimonial-stars { font-size: .9rem; letter-spacing: 2px; }

/* CTA banner: sharper gradient, less padding */
.cta-banner { padding: clamp(56px, 7vw, 80px) 0; border-radius: 0; }

/* Footer: tighter */
footer { padding: 56px 0 32px; }

/* FAQ: accordion-style hairlines instead of cards */
.faq-item {
  border: none !important;
  border-top: var(--hairline) !important;
  border-radius: 0 !important;
  padding: 18px 4px !important;
  background: transparent !important;
  box-shadow: none !important;
}
.faq-item:last-child { border-bottom: var(--hairline) !important; }
.faq-question { font-size: 1rem !important; font-weight: 600 !important; }

/* Contact form: denser inputs */
.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: var(--hairline-strong);
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--sage) 18%, transparent);
}

/* Reduce particle & cursor glow visibility (premium subtlety) */
#particles { opacity: .55; }
.cursor-glow { opacity: .4; }

/* Mobile rhythm */
@media (max-width: 720px) {
  body section { padding: 48px 0; }
  body .container { padding: 0 20px; }
  .service-card, .testimonial-card { padding: 22px; }
  .hero-actions { gap: 10px; }
  .btn { padding: 11px 18px; font-size: .88rem; }
}

/* Tab strip — sticky navegación por pestañas */
.tab-strip {
  position: sticky;
  top: 64px;
  z-index: 40;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 10px 28px;
  margin: 0 auto 0;
  max-width: 1200px;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: var(--hairline);
}
.tab-strip::-webkit-scrollbar { display: none; }
[data-theme="dark"] .tab-strip { background: color-mix(in srgb, var(--charcoal) 85%, transparent); }
.tab-strip-btn {
  flex: 0 0 auto;
  padding: 9px 18px;
  border: none;
  background: transparent;
  color: var(--charcoal-light);
  font-family: inherit;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s var(--ease-out), color .2s var(--ease-out);
  white-space: nowrap;
}
.tab-strip-btn:hover { background: color-mix(in srgb, var(--charcoal) 6%, transparent); color: var(--charcoal); }
.tab-strip-btn.is-active {
  background: var(--charcoal);
  color: var(--cream);
  font-weight: 600;
}
[data-theme="dark"] .tab-strip-btn.is-active { background: var(--cream); color: var(--charcoal); }

@media (max-width: 640px) {
  .tab-strip { display: none; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .btn, .service-card, .testimonial-card { transition: none; }
  #particles, .cursor-glow { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   HONEYCOMB v3 — Paleta neurológica lead-attractive (2026-04-13)
   Ámbar cálido (confianza + urgencia) · Charcoal cálido (autoridad)
   Contraste AAA forzado en texto clave. Dark mode reconstruido.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Honey palette */
  --honey: #E8A33D;
  --honey-deep: #C4811E;
  --honey-bright: #F5BC5A;
  --honey-soft: #FFE8B8;
  --honey-glow: rgba(232,163,61,.25);

  /* Neutrals cálidos */
  --cream: #FEF7EC;
  --cream-soft: #FBF0DC;
  --charcoal: #1C1711;
  --charcoal-soft: #2A2118;
  --charcoal-light: #5C4A38;
  --text-muted: #7A6650;

  /* Override sage/blue con tonos que armonicen con honey */
  --sage: #6B8E5F;         /* verde musgo: complemento natural del honey */
  --sage-dark: #527043;
  --blue: #2E5F7A;         /* azul teal profundo, evita chocar con amber */
  --blue-dark: #1F4459;
  --terracotta: #C4704B;
  --terracotta-dark: #A85A38;

  --shadow-sm: 0 2px 8px rgba(28,23,17,.06), 0 1px 2px rgba(28,23,17,.04);
  --shadow-md: 0 8px 24px -8px rgba(28,23,17,.14), 0 2px 6px rgba(28,23,17,.06);
  --shadow-lg: 0 24px 48px -12px rgba(28,23,17,.22), 0 6px 12px rgba(28,23,17,.08);
  --shadow-honey: 0 8px 24px -6px rgba(232,163,61,.35);
}

[data-theme="dark"] {
  --cream: #F5E7CC;
  --cream-soft: #E8D4A8;
  --charcoal: #0E0B07;            /* honey-black bg */
  --charcoal-soft: #1A1510;
  --charcoal-light: #B8A888;
  --text-muted: #8A7A60;
  --honey: #F5BC5A;               /* más brillante en dark para pop */
  --honey-deep: #E8A33D;
  --honey-soft: rgba(245,188,90,.2);
  --honey-glow: rgba(245,188,90,.35);
}

/* ── Base text contrast forzado ── */
body { color: var(--charcoal); background: var(--cream); }
h1, h2, h3, h4, h5 { color: var(--charcoal); }
p { color: var(--charcoal-soft); }
.section-subtitle { color: var(--text-muted); }
.section-label { color: var(--honey-deep); font-weight: 700; }

[data-theme="dark"] body { color: var(--cream); background: var(--charcoal); }
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4 { color: var(--cream); }
[data-theme="dark"] p { color: var(--cream-soft); }
[data-theme="dark"] .section-subtitle { color: var(--charcoal-light); }
[data-theme="dark"] .section-label { color: var(--honey); }

/* ── CTA = honey (neurocientífico: amber triggers urgency + warmth) ── */
.btn-primary {
  background: linear-gradient(135deg, var(--honey) 0%, var(--honey-deep) 100%);
  color: #1C1711;
  font-weight: 700;
  box-shadow: var(--shadow-honey);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--honey-bright) 0%, var(--honey) 100%);
  color: #1C1711;
  box-shadow: 0 12px 32px -8px rgba(232,163,61,.55);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--cream);
}
[data-theme="dark"] .btn-secondary { color: var(--cream); border-color: var(--cream); }
[data-theme="dark"] .btn-secondary:hover { background: var(--cream); color: var(--charcoal); }

/* ── Nav ── */
.nav { background: color-mix(in srgb, var(--cream) 78%, transparent); }
[data-theme="dark"] .nav { background: color-mix(in srgb, var(--charcoal) 78%, transparent); }
.nav-logo { color: var(--charcoal); }
.nav-logo span { color: var(--honey-deep); }
[data-theme="dark"] .nav-logo { color: var(--cream); }
[data-theme="dark"] .nav-logo span { color: var(--honey); }
.nav-links a { color: var(--charcoal-light); font-weight: 500; }
.nav-links a:hover { color: var(--honey-deep); }
[data-theme="dark"] .nav-links a { color: var(--cream-soft); }
[data-theme="dark"] .nav-links a:hover { color: var(--honey); }
.nav-portal { color: var(--charcoal); }
[data-theme="dark"] .nav-portal { color: var(--cream); }

/* ── Hero ── */
.hero h1 { color: var(--charcoal); }
.hero h1 em { color: var(--honey-deep); font-style: normal; font-weight: 700; position: relative; }
[data-theme="dark"] .hero h1 { color: var(--cream); }
[data-theme="dark"] .hero h1 em { color: var(--honey); }
.hero-subtitle { color: var(--charcoal-soft); }
.hero-subtitle strong { color: var(--honey-deep); font-weight: 700; }
[data-theme="dark"] .hero-subtitle { color: var(--cream-soft); }
[data-theme="dark"] .hero-subtitle strong { color: var(--honey); }
.hero-badge {
  background: linear-gradient(135deg, var(--honey-soft), rgba(245,188,90,.4));
  color: var(--honey-deep);
  border: 1px solid var(--honey);
  font-weight: 700;
}
[data-theme="dark"] .hero-badge {
  background: rgba(245,188,90,.15);
  color: var(--honey);
  border-color: rgba(245,188,90,.4);
}
.trust-item { color: var(--charcoal-soft); }
[data-theme="dark"] .trust-item { color: var(--cream-soft); }

/* ── Cards — honeycomb hexagonal feel ── */
.service-card,
.testimonial-card,
.stat-card,
.price-card,
.faq-item,
.trust-item {
  background: var(--cream-soft);
  border: 1px solid rgba(232,163,61,.15);
  color: var(--charcoal);
}
.service-card:hover,
.testimonial-card:hover {
  border-color: var(--honey);
  box-shadow: 0 12px 32px -8px rgba(232,163,61,.25);
}
[data-theme="dark"] .service-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .stat-card,
[data-theme="dark"] .price-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .trust-item {
  background: rgba(245,188,90,.04);
  border-color: rgba(245,188,90,.15);
  color: var(--cream);
}
[data-theme="dark"] .service-card:hover,
[data-theme="dark"] .testimonial-card:hover {
  border-color: var(--honey);
  box-shadow: 0 12px 32px -8px rgba(245,188,90,.25);
}
.service-card p,
.testimonial-text { color: var(--charcoal-soft); }
[data-theme="dark"] .service-card p,
[data-theme="dark"] .testimonial-text { color: var(--cream-soft); }

/* Service icon: honey hex */
.service-icon {
  background: linear-gradient(135deg, var(--honey), var(--honey-deep));
  color: #1C1711;
}
.service-icon svg { stroke: #1C1711; }

/* ── Stats ── */
.stat-number { color: var(--honey-deep); font-weight: 800; }
[data-theme="dark"] .stat-number { color: var(--honey); }
.stat-label { color: var(--text-muted); }
[data-theme="dark"] .stat-label { color: var(--charcoal-light); }

/* ── How it works ── */
.services,
.how-it-works { background: var(--cream); }
[data-theme="dark"] .services,
[data-theme="dark"] .how-it-works { background: var(--charcoal-soft); }
.step-number {
  background: linear-gradient(135deg, var(--honey), var(--honey-deep));
  color: #1C1711;
  font-weight: 800;
  box-shadow: var(--shadow-honey);
}

/* ── Testimonials stars ── */
.testimonial-stars,
.proof-stars span:first-child { color: var(--honey); }

/* ── Tab strip con honey accent ── */
.tab-strip {
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  border-bottom-color: rgba(232,163,61,.2);
}
[data-theme="dark"] .tab-strip {
  background: color-mix(in srgb, var(--charcoal) 92%, transparent);
  border-bottom-color: rgba(245,188,90,.2);
}
.tab-strip-btn { color: var(--text-muted); }
.tab-strip-btn:hover { background: var(--honey-soft); color: var(--honey-deep); }
.tab-strip-btn.is-active {
  background: linear-gradient(135deg, var(--honey), var(--honey-deep));
  color: #1C1711;
  box-shadow: var(--shadow-honey);
}
[data-theme="dark"] .tab-strip-btn { color: var(--charcoal-light); }
[data-theme="dark"] .tab-strip-btn:hover { background: rgba(245,188,90,.15); color: var(--honey); }
[data-theme="dark"] .tab-strip-btn.is-active {
  background: linear-gradient(135deg, var(--honey), var(--honey-deep));
  color: #1C1711;
}

/* ── CTA banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--honey-deep) 0%, var(--honey) 50%, var(--honey-bright) 100%);
}
.cta-banner::before { background: repeating-conic-gradient(from 0deg at 50% 50%, rgba(28,23,17,.08) 0deg 60deg, transparent 60deg 120deg); opacity: .6; }
.cta-banner h2 { color: #1C1711; }
.cta-banner p { color: #2A2118; opacity: .85; }

/* ── Form inputs ── */
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: var(--cream);
  border-color: rgba(28,23,17,.15);
  color: var(--charcoal);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--honey);
  box-shadow: 0 0 0 3px var(--honey-glow);
}
.contact-form label { color: var(--charcoal-soft); font-weight: 500; }
[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form textarea,
[data-theme="dark"] .contact-form select {
  background: rgba(245,188,90,.05);
  border-color: rgba(245,188,90,.2);
  color: var(--cream);
}
[data-theme="dark"] .contact-form label { color: var(--cream-soft); }
[data-theme="dark"] .contact-form input::placeholder,
[data-theme="dark"] .contact-form textarea::placeholder { color: var(--text-muted); }

/* ── Footer ── */
footer { background: var(--charcoal); color: var(--cream-soft); }
footer a { color: var(--cream-soft); }
footer a:hover { color: var(--honey); }
footer h4 { color: var(--cream); }
[data-theme="dark"] footer { background: #0A0705; }

/* ── Honeycomb texture en secciones alternas (sutil, sin distraer) ── */
.services::before,
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, var(--honey-soft) 1px, transparent 1px),
    radial-gradient(circle at 80% 80%, var(--honey-soft) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .4;
  pointer-events: none;
  z-index: 0;
}
.services, .testimonials { position: relative; }
.services > .container, .testimonials > .container { position: relative; z-index: 1; }

/* ── Price card destacada con honey ── */
.price-card.highlight,
.price-card[data-highlight] {
  border-color: var(--honey);
  box-shadow: var(--shadow-honey);
}
.price-card h3 { color: var(--charcoal); }
[data-theme="dark"] .price-card h3 { color: var(--cream); }

/* ── FAQ contrast ── */
.faq-question { color: var(--charcoal); }
[data-theme="dark"] .faq-question { color: var(--cream); }
.faq-answer { color: var(--charcoal-soft); }
[data-theme="dark"] .faq-answer { color: var(--cream-soft); }

/* Failsafe: si fade-up está dentro de un tab-panel visible, forzar opacity */
section:not([style*="display: none"]) .fade-up { opacity: 1 !important; transform: none !important; }

/* Step titles + descripciones con contraste explícito (fix screenshot user) */
.step h3 { color: var(--charcoal); font-weight: 700; }
.step p { color: var(--charcoal-soft); opacity: 1; }
[data-theme="dark"] .step h3 { color: var(--cream); }
[data-theme="dark"] .step p { color: var(--cream-soft); }
