:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --ink: #0f172a;
  --muted: #475569;
  --brand: #0f2348;
  --brand-2: #1e4fd8;
  --brand-3: #1b3a8a;
  --gold: #d97706;
  --gold-2: #f59e0b;
  --line: #d7e0ec;
  --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.06);
  --shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
  --radius: 16px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; }
/* Defensive default so any inline icon can never blow up the layout.
   Specific container rules (.service-icon svg, etc.) override this. */
svg { width: 1.25rem; height: 1.25rem; flex: 0 0 auto; }
body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% -10%, #e8f1ff 0%, #f4f7fb 40%, #f4f7fb 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

/* ===== Top utility strip ===== */
.topbar {
  background: var(--brand);
  color: #cbd5e1;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px 0;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar-link {
  color: white;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar-link:hover { color: var(--gold-2); }
.topbar-hours {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar-sep {
  opacity: 0.4;
}
.icon { width: 16px; height: 16px; flex: 0 0 auto; }

/* ===== Header (single-row: logo left, nav center, phone right) ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  position: relative;
}
.brand { display: inline-flex; flex: 0 0 auto; }
.brand img {
  height: 68px;
  width: auto;
  display: block;
}
.nav {
  display: flex;
  gap: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.mobile-nav-extras { display: none; }
.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav a:hover { color: var(--brand-2); background: #edf3ff; }
.nav a.active {
  color: white;
  background: var(--brand);
}
.header-phone {
  flex: 0 0 auto;
  text-decoration: none;
  color: var(--brand);
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.header-phone:hover { color: var(--brand-2); }
.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 2px solid var(--brand);
  background: #fff;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex: 0 0 auto;
  position: relative;
  z-index: 10;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--brand);
}

/* ===== Header actions (phone + lang) ===== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

/* ===== Language switcher (in header) ===== */
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #f8fafc;
}
.lang-btn {
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  font-weight: 800;
  font-size: 0.75rem;
  cursor: pointer;
  color: var(--muted);
}
.lang-btn img {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  border: 1px solid #d1d9e6;
}
.lang-btn.active {
  background: var(--brand);
  color: white;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  color: white;
  min-height: clamp(540px, 78vh, 780px);
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 14, 34, 0.82) 0%, rgba(8, 20, 46, 0.72) 50%, rgba(6, 14, 34, 0.86) 100%),
    url("./assets/hero__sergio-office.png") center center/cover no-repeat;
}
.hero-content {
  position: relative;
  padding: 96px 0 80px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.eyebrow {
  margin: 0 0 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-2);
  font-weight: 800;
}
.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.hero-copy {
  margin-top: 18px;
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
  color: #dbe7ff;
  font-size: 1.05rem;
}
.hero-cta {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-season {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: #c8dcff;
}
.hero-season .icon { color: var(--gold-2); }
.hero-season a {
  color: white;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(245, 158, 11, 0.7);
  text-underline-offset: 3px;
}
.hero-season a:hover { color: var(--gold-2); }

/* ===== Hero proof bar (Google badge + trust) ===== */
.hero-proof {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.2s ease;
}
.google-badge:hover { background: rgba(255, 255, 255, 0.2); }
.google-badge-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}
.google-badge .stars {
  color: var(--gold-2);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  line-height: 1;
}
.google-badge-text { opacity: 0.85; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: #1a1404;
}
.btn-primary:hover { background: var(--gold-2); transform: translateY(-1px); }
.btn-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.16); }
.btn-ghost {
  background: white;
  color: var(--brand);
  border-color: var(--line);
}
.btn-ghost:hover { background: #eef3ff; border-color: #b7c9e6; }

.text-link {
  color: var(--brand-2);
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.text-link:hover { text-decoration: underline; }

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: #eef3fb; }
.section-dark {
  background: linear-gradient(115deg, #0f2348 0%, #1b3a8a 100%);
  color: white;
}
.section h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  letter-spacing: -0.01em;
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.section-head .text-link {
  margin-top: 4px;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  max-width: 60ch;
}
.section-dark .section-head p { color: #c8dcff; }
.section-eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 800;
  margin: 0 0 8px;
}
.section-intro {
  margin: -14px 0 0;
  color: var(--muted);
  max-width: 60ch;
}

/* ===== Stats strip ===== */
.stats {
  margin-top: -64px;
  position: relative;
  z-index: 5;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-lg);
}
.stat {
  text-align: center;
  padding: 8px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat-value {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 700;
}

/* ===== Visual story / tall image grid ===== */
.tall-grid {
  margin-top: 12px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.tall-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #dbe7f8;
  position: relative;
}
.tall-item img {
  width: 100%;
  height: clamp(320px, 38vw, 460px);
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.tall-item:hover img { transform: scale(1.04); }
.tall-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.78));
  color: white;
  font-weight: 800;
}

/* ===== Reviews ===== */
.reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}
.stars {
  color: var(--gold-2);
  letter-spacing: 1px;
  font-size: 1rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.review-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card .stars { font-size: 1.05rem; }
.review-text {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex: 0 0 auto;
}
.review-author strong { display: block; line-height: 1.2; }
.review-source {
  font-size: 0.8rem;
  color: var(--muted);
}
.reviews-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.google-g-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

/* ===== Service tiles (image + text cards) ===== */
.service-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.service-tile {
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: white;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.service-tile-img {
  height: 160px;
  background-size: cover;
  background-position: center;
}
.service-tile-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-tile-body h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--heading);
}
.service-tile-body p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ===== Insurance pills ===== */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.pill {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 16px;
  font-weight: 800;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}
.pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fef3c7;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pill-icon svg { width: 20px; height: 20px; }

/* ===== About section ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.about-grid h2 { margin-bottom: 8px; }
.about-grid p { color: var(--muted); }
.about-grid .lead {
  font-size: 1.08rem;
  color: var(--ink);
}
.about-sign {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  text-align: center;
}
.about-sign img {
  width: 100%;
  height: auto;
}
.about-sign .about-photo {
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}
.about-sign .signature {
  margin: 12px auto 6px;
  max-width: 160px;
}
.about-sign .name {
  margin-top: 8px;
  font-weight: 800;
  color: var(--ink);
}
.about-sign .role {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.quote {
  margin-top: 32px;
  background: white;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 26px;
  font-size: 1.1rem;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.quote-author {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 700;
}

/* ===== Values ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.value-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eef3ff;
  color: var(--brand-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.value-icon svg { width: 22px; height: 22px; }
.value-card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.value-card p { margin: 0; color: var(--muted); }

/* ===== Team ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.team-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.team-card img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 999px;
  border: 3px solid #eef3ff;
  /* Uniform monotone so mixed headshots feel consistent. */
  filter: grayscale(1) contrast(1.03) brightness(1.02);
  transition: filter 0.3s ease;
}
.team-card:hover img { filter: grayscale(0.15) contrast(1.02); }
.team-card h3 { margin: 12px 0 4px; }
.team-card p { margin: 0; color: var(--muted); font-weight: 600; }

/* ===== CTA banner ===== */
.cta-banner {
  background: linear-gradient(115deg, #0f2348 0%, #1b3a8a 100%);
  color: white;
  border-radius: 22px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 18px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(closest-side, rgba(245, 158, 11, 0.25), transparent);
  pointer-events: none;
}
.cta-banner h2 { margin: 0 0 6px; font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
.cta-banner p { margin: 0; color: #c8dcff; max-width: 56ch; }
.cta-banner-actions { display: flex; flex-direction: column; gap: 8px; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: start;
}
.contact-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 22px;
  display: grid;
  gap: 10px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-list .ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #eef3ff;
  color: var(--brand-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.contact-list .ico svg { width: 18px; height: 18px; }
.contact-list a { color: var(--ink); text-decoration: none; font-weight: 700; }
.contact-list a:hover { color: var(--brand-2); }
.contact-list .label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
}
.map-card iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}
.map-card-foot {
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--muted);
}
.small-note {
  margin-top: 10px;
  color: #64748b;
  font-size: 0.82rem;
}

/* ===== Contact form ===== */
.form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.form-card h2 { margin: 0 0 6px; }
.form-lead {
  margin: 0 0 18px;
  color: var(--muted);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 38px;
  cursor: pointer;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--brand-2);
  box-shadow: 0 0 0 3px rgba(30, 79, 216, 0.14);
}
.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid {
  border-color: #dc2626;
}
.form-submit { margin-top: 18px; }
.form-note {
  margin: 12px 0 0;
  font-size: 0.8rem;
  color: #64748b;
}
.form-success {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  font-weight: 700;
}

/* ===== Footer ===== */
.site-footer {
  background: linear-gradient(180deg, #0f2348 0%, #0a1834 100%);
  color: #cbd5e1;
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}
.footer-brand img {
  height: 70px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 8px;
}
.footer-brand p {
  margin: 0;
  max-width: 36ch;
  color: #c0cce0;
}
.footer-col h4 {
  margin: 0 0 12px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.footer-col a {
  color: #cbd5e1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col a:hover { color: var(--gold-2); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ===== Subhero (inner page banner) ===== */
.subhero {
  position: relative;
  padding: 96px 0 64px;
  color: white;
  overflow: hidden;
  text-align: center;
}
.subhero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(245, 158, 11, 0.14), transparent 60%);
}
.subhero-services {
  background: linear-gradient(120deg, rgba(9, 22, 49, 0.88), rgba(15, 58, 138, 0.6)),
    url("./assets/hero__servicios__f89cbf0d.jpg") center/cover no-repeat;
}
.subhero-about {
  background: linear-gradient(120deg, rgba(9, 22, 49, 0.88), rgba(15, 58, 138, 0.6)),
    url("./assets/hero__wave__94ca5087.jpg") center/cover no-repeat;
}
.subhero-contact {
  background: linear-gradient(120deg, rgba(9, 22, 49, 0.88), rgba(15, 58, 138, 0.6)),
    url("./assets/hero__pexels-elvis-2528118-edited__0d727b34.jpg") center/cover no-repeat;
}
.subhero-eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold-2);
  margin: 0 0 10px;
}
.subhero h1 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3rem);
  letter-spacing: -0.01em;
}
.subhero-lead {
  margin-top: 12px;
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
  color: #dbe7ff;
}

/* ===== Detail cards (services page) ===== */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.detail-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  align-items: start;
}
.detail-card .detail-media {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 100%;
  min-height: 220px;
  background: #e2e8f0;
}
.detail-card .detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.detail-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #eef3ff;
  color: var(--brand-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.detail-icon svg { width: 20px; height: 20px; }
.detail-card h2 {
  margin: 0;
  font-size: 1.2rem;
}
.detail-card .detail-body p {
  margin: 0 0 10px;
  color: var(--muted);
}
.detail-card ul {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.detail-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
}
.detail-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 999px;
  margin-top: 9px;
}

/* ===== Sticky mobile CTA ===== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
  padding: 8px max(10px, env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom));
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mobile-cta a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 6px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--brand);
  background: #eef3ff;
}
.mobile-cta a:first-child {
  background: var(--gold);
  color: #1a1404;
}
.mobile-cta a svg { width: 20px; height: 20px; }

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .service-tiles { grid-template-columns: repeat(3, 1fr); }
  .service-tile-img { height: 140px; }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(2n) { border-right: 0; }
}

@media (max-width: 980px) {
  .topbar-hours { display: none; }
  .header-actions { display: none; }
  .menu-toggle { display: flex; }
  .header-wrap {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    padding: 10px 0;
  }
  .menu-toggle { grid-column: 3; justify-self: end; }
  .brand { grid-column: 2; justify-self: center; margin: 0; }
  .brand img { height: 60px; }
  .nav {
    position: absolute;
    top: calc(100% + 4px);
    left: 12px;
    right: 12px;
    transform: none;
    display: none;
    padding: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    z-index: 100;
  }
  body.nav-open .nav { display: flex; }
  .nav a {
    padding: 14px 16px;
    border-radius: 12px;
    background: #f8fbff;
    font-size: 1rem;
    font-weight: 700;
    color: var(--heading);
    transition: background 0.15s;
  }
  .nav a:hover { background: #edf3ff; }
  .nav a.active { background: var(--brand); color: white; }
  .nav .mobile-nav-extras {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    margin-top: 8px;
  }
  .nav .mobile-nav-phone {
    text-decoration: none;
    color: white;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 12px;
    background: var(--brand);
  }
  .nav .mobile-nav-phone .icon { width: 20px; height: 20px; stroke: white; }
  .nav .mobile-lang-switch {
    display: flex;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: visible;
    background: #f1f5f9;
  }
  .nav .mobile-lang-switch .lang-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 800;
    border: 0;
    background: transparent;
    border-radius: 12px;
    cursor: pointer;
    color: var(--muted);
  }
  .nav .mobile-lang-switch .lang-btn.active {
    background: var(--brand);
    color: white;
  }
  .nav .mobile-lang-switch .lang-btn img {
    width: 22px;
    height: 15px;
    border-radius: 3px;
    border: 1px solid rgba(0,0,0,0.1);
  }
  .stats { margin-top: -32px; }
  .stats-grid { padding: 16px; }
  .visual-story .tall-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-card { grid-template-columns: 1fr; }
  .detail-card .detail-media { min-height: 220px; }
  .about-grid,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { grid-template-columns: 1fr; }
  .cta-banner-actions { flex-direction: row; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .mobile-cta { display: grid; }
  body { padding-bottom: 78px; }
}

@media (max-width: 640px) {
  .topbar { font-size: 0.78rem; }
  .topbar-sep { display: none; }
  .header-wrap { gap: 8px; }
  .brand img { height: 54px; }
  .hero-content { padding: 72px 0 64px; }
  .hero h1 { font-size: clamp(1.65rem, 7vw, 2.25rem); }
  .service-tiles { grid-template-columns: repeat(2, 1fr); }
  .service-tile-img { height: 120px; }
  .team-grid,
  .tall-grid,
  .reviews-grid,
  .insurance-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; padding: 14px; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
  .stat:last-child { border-bottom: 0; padding-bottom: 0; }
  .tall-item img { height: clamp(220px, 62vw, 320px); }
  .btn { width: 100%; justify-content: center; }
  .reviews-actions .btn { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
