/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:          #eef1f4;
  --bg-soft:     #f5f6f4;
  --white:       #ffffff;
  --ink:         #101820;
  --ink-soft:    #38444d;
  --ink-mute:    #6b7680;

  --blue:        #1b5c9e;
  --blue-dark:   #0f3f70;
  --blue-deep:   #0a2136;
  --blue-pale:   #dde6ee;

  --steel:       #55636e;
  --steel-pale:  #e4e8eb;

  --accent:      #d0271c;
  --accent-dark: #a81f15;
  --accent-pale: #fadbd7;

  --whatsapp:    #25d366;
  --whatsapp-dark: #1da851;

  --line:        rgba(16, 24, 32, 0.11);
  --shadow-sm:   0 2px 10px rgba(16, 24, 32, 0.07);
  --shadow-md:   0 12px 32px rgba(16, 24, 32, 0.13);
  --shadow-lg:   0 24px 60px rgba(16, 24, 32, 0.20);

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-btn:  10px;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --sans:        "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display:     "Oswald", var(--sans);

  --nav-h: 92px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg-soft);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  text-wrap: balance;
  line-height: 1.1;
  letter-spacing: -0.005em;
  font-weight: 600;
  text-transform: none;
}
h1 { text-transform: uppercase; letter-spacing: 0.01em; font-weight: 700; }
::selection { background: var(--accent); color: var(--white); }
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.section { position: relative; padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section-bg-white { background: var(--white); }
.section-bg-pale  { background: var(--bg); }
.section-bg-deep {
  background: linear-gradient(160deg, var(--blue-deep) 0%, var(--blue-dark) 60%, var(--blue) 130%);
  color: var(--blue-pale);
}
.section-bg-deep h2, .section-bg-deep h3 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: .4rem .9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.section-bg-deep .eyebrow { background: rgba(255,255,255,0.12); color: #cfe0ff; }

.section-head { max-width: 640px; margin-bottom: 2.75rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: .85rem; }
.section-sub { font-size: 1.08rem; color: var(--ink-mute); }
.section-bg-deep .section-sub { color: #b9cdf0; }

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--ink); color: var(--white);
  z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.6rem;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: .98rem;
  white-space: nowrap;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .25s var(--ease-out);
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(208, 39, 28, .35);
}
.btn-accent:hover { background: var(--accent-dark); box-shadow: 0 18px 38px rgba(208, 39, 28, .42); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(37, 211, 102, .32);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); box-shadow: 0 18px 38px rgba(37, 211, 102, .4); }

.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

.section-bg-deep .btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.section-bg-deep .btn-ghost:hover { border-color: var(--white); }

.btn-lg { padding: 1.15rem 2.1rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* =============================================================
   5. Navigation
   ============================================================= */
.topbar {
  background: var(--blue-deep);
  color: #cfe0ff;
  font-size: .82rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .5rem;
  flex-wrap: wrap;
}
.topbar-item { display: inline-flex; align-items: center; gap: .4rem; }
.topbar-item svg { width: 15px; height: 15px; }
.topbar a:hover { color: var(--white); }

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(238, 246, 253, 0.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease-out), border-color .3s var(--ease-out), background .3s var(--ease-out);
}
@supports not (backdrop-filter: blur(14px)) {
  .navbar { background: rgba(238, 246, 253, 0.98); }
}
.navbar.is-scrolled {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
  background: rgba(255,255,255,0.92);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.32rem;
  color: var(--ink);
}
.brand-mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: clip;
  box-shadow: 0 8px 18px rgba(10,33,54,.35);
  flex-shrink: 0;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.footer-brand .brand-mark { width: 76px; height: 76px; }

.nav-links {
  display: none;
  align-items: center;
  gap: 1.9rem;
  font-size: .93rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.nav-links a { position: relative; padding-block: .3rem; }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--blue); }

.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font: inherit;
  font-weight: 600;
  color: var(--ink-soft);
  padding-block: .3rem;
}
.nav-dropdown-trigger svg { width: 15px; height: 15px; transition: transform .25s var(--ease-out); }
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger { color: var(--blue); }
.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown:focus-within .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-trigger[data-nav-active="true"] { color: var(--blue); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: .6rem;
  display: grid;
  gap: .1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease-out), transform .2s var(--ease-out);
  z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: .65rem .8rem;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--bg); color: var(--blue); }
.nav-dropdown-menu a[aria-current="page"] { background: var(--blue-pale); color: var(--blue); }

.nav-cta { display: flex; align-items: center; gap: .6rem; }
.nav-cta .btn { padding: .75rem 1.15rem; font-size: .88rem; }
.nav-call {
  display: none;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  color: var(--ink);
  font-size: .95rem;
}
.nav-call svg { width: 18px; height: 18px; color: var(--accent); }

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--line);
}
.nav-toggle svg { width: 20px; height: 20px; }

.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--white);
  z-index: 99;
  padding: 1.5rem 1.25rem 6.5rem;
  overflow-y: auto;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s var(--ease-out), transform .28s var(--ease-out);
}
.mobile-menu.is-open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem .25rem;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
}
.mobile-menu a[aria-current="page"] { color: var(--blue); }
.mobile-menu-ctas { display: grid; gap: .75rem; margin-top: 1.5rem; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-call { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* =============================================================
   6. Floating call/WhatsApp action bar (persistent — mobile-first)
   ============================================================= */
.float-actions {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  box-shadow: 0 -8px 24px rgba(11,31,51,.14);
}
.float-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem;
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
}
.float-actions a svg { width: 19px; height: 19px; }
.float-call { background: var(--accent); }
.float-whatsapp { background: var(--whatsapp); }

@media (min-width: 960px) {
  .float-actions {
    left: auto; right: 1.75rem; bottom: 1.75rem;
    grid-template-columns: none;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    background: none;
    box-shadow: none;
  }
  .float-actions a {
    border-radius: var(--radius-btn);
    padding: .95rem 1.5rem;
    box-shadow: var(--shadow-md);
    transition: transform .25s var(--ease-out);
  }
  .float-actions a:hover { transform: translateY(-3px) scale(1.03); }
  .float-call { box-shadow: 0 14px 30px rgba(208,39,28,.35); }
  .float-whatsapp { box-shadow: 0 14px 30px rgba(37,211,102,.35); }
}

/* body padding so content/footer isn't hidden behind mobile float bar */
body { padding-bottom: 58px; }
@media (min-width: 960px) { body { padding-bottom: 0; } }

/* =============================================================
   7. Hero
   ============================================================= */
.hazard-strip {
  height: 6px;
  background: repeating-linear-gradient(-45deg, var(--accent), var(--accent) 14px, var(--blue-deep) 14px, var(--blue-deep) 28px);
}
.hero {
  position: relative;
  overflow: clip;
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(5rem, 10vw, 8rem);
  background: linear-gradient(180deg, var(--bg) 0%, #e2e7eb 100%);
}
.hero-mesh {
  position: absolute; inset: -10% -10% 0 -10%; z-index: 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(27,92,158,.14) 0%, transparent 50%),
    radial-gradient(circle at 88% 8%, rgba(208,39,28,.10) 0%, transparent 46%);
  pointer-events: none;
}
.hero-watermark {
  position: absolute; z-index: 0; pointer-events: none;
  top: -6%; right: -6%;
  width: min(46vw, 520px);
  color: var(--blue);
  opacity: .05;
  transform: rotate(18deg);
}
.hero-watermark svg { width: 100%; height: auto; }
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  border: 1px solid var(--line);
  padding: .5rem 1rem .5rem .6rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.4rem;
}
.hero-badge .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.25);
  animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,.25);} 50% { box-shadow: 0 0 0 6px rgba(34,197,94,.12);} }

.hero-title {
  font-size: clamp(2.3rem, 5.2vw, 3.6rem);
  max-width: 15ch;
  margin-bottom: 1.15rem;
}
.hero-title em {
  font-style: normal;
  color: var(--blue);
  position: relative;
}
.hero-sub {
  font-size: 1.14rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 1.9rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.8rem; }
.hero-trust {
  display: flex; flex-wrap: wrap;
  gap: 1.4rem 2rem;
}
.hero-trust-item { display: flex; align-items: center; gap: .55rem; font-size: .9rem; font-weight: 600; color: var(--ink-soft); }
.hero-trust-item svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }

.hero-visual { position: relative; }
.hero-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  overflow: clip;
}
.hero-card-icon {
  width: 84px; height: 84px;
  border-radius: 22px;
  background: linear-gradient(145deg, var(--blue) 0%, var(--blue-dark) 100%);
  display: grid; place-items: center;
  margin-bottom: 1.4rem;
  box-shadow: 0 14px 28px rgba(27,92,158,.3);
}
.hero-card-icon svg { width: 44px; height: 44px; color: var(--white); }
.hero-card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.hero-card p { color: var(--ink-mute); font-size: .95rem; }
.hero-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: clip;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  max-width: 460px;
  margin-inline: auto;
}
.hero-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 78% 40%;
}
.hero-photo-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,33,54,.32) 0%, transparent 32%);
}
@media (min-width: 960px) {
  .hero-photo-frame { aspect-ratio: 3 / 4; max-width: 480px; }
}

.hero-stat-chip {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: .9rem 1.2rem;
  display: flex; align-items: center; gap: .7rem;
  animation: floatY 5s ease-in-out infinite;
}
.hero-stat-chip strong { display: block; font-size: 1.15rem; color: var(--ink); font-family: var(--display); }
.hero-stat-chip span { font-size: .78rem; color: var(--ink-mute); }
.hero-stat-chip.chip-1 { top: -1.2rem; right: -1rem; animation-delay: .3s; }
.hero-stat-chip.chip-2 { bottom: -1.4rem; left: -1.2rem; animation-delay: 1s; }
.hero-stat-chip .dot-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--accent-pale);
  display: grid; place-items: center;
}
.hero-stat-chip .dot-icon svg { width: 22px; height: 22px; color: var(--accent); }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-wave {
  position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: auto; display: block; }

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 3rem; }
  .hero-visual { padding-inline: 1.5rem; }
}

/* =============================================================
   7b. Icon row (borderless triplet — "Por qué elegirnos" style)
   ============================================================= */
.icon-row-grid {
  display: grid;
  gap: 2.25rem;
  grid-template-columns: 1fr;
  text-align: center;
}
@media (min-width: 780px) { .icon-row-grid { grid-template-columns: repeat(3, 1fr); text-align: left; } }
.icon-row-item { display: flex; flex-direction: column; align-items: center; gap: .3rem; }
@media (min-width: 780px) { .icon-row-item { align-items: flex-start; } }
.icon-row-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--blue-pale);
  display: grid; place-items: center;
  margin-bottom: .6rem;
  transition: transform .3s var(--ease-out);
}
.icon-row-item:hover .icon-row-icon { transform: translateY(-4px); }
.icon-row-icon svg { width: 26px; height: 26px; color: var(--blue); }
.icon-row-item h2 { font-size: 1.08rem; margin-bottom: .35rem; }
.icon-row-item p { font-size: .9rem; color: var(--ink-mute); }

/* =============================================================
   7c. Layered photo stack (hero / feature visual)
   ============================================================= */
.stack {
  position: relative;
  max-width: 380px;
  margin-inline: auto;
  padding: 1.5rem 1.5rem 2.75rem;
}
.stack-layer {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: clip;
  box-shadow: var(--shadow-lg);
}
.stack-layer img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.stack-layer::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(195deg, rgba(11,31,51,0) 30%, rgba(6,33,79,.72) 100%);
}
.stack-behind {
  position: absolute;
  inset: 2.4rem -1.6rem auto auto;
  width: 78%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--blue) 0%, var(--blue-dark) 100%);
  z-index: 0;
  box-shadow: var(--shadow-md);
}
.stack-layer { z-index: 1; }
.stack-caption {
  position: absolute; left: 1.9rem; right: 1.9rem; bottom: 3.1rem; z-index: 2;
  color: var(--white);
}
.stack-caption strong { display: block; font-family: var(--display); font-size: 1.2rem; margin-bottom: .2rem; }
.stack-caption span { font-size: .82rem; color: #cfe0ff; }
.stack-dots {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  display: flex; gap: .4rem;
}
.stack-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--line); }
.stack-dots span:first-child { width: 20px; border-radius: 999px; background: var(--blue); }

/* =============================================================
   8. Service / feature cards
   ============================================================= */
.grid-3 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.8rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(27,92,158,.25);
}
.card-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--blue-pale);
  display: grid; place-items: center;
  margin-bottom: 1.3rem;
  transition: background .35s var(--ease-out), transform .35s var(--ease-out);
}
.card:hover .card-icon { background: var(--blue); transform: scale(1.08) rotate(-4deg); }
.card-icon svg { width: 30px; height: 30px; color: var(--blue); transition: color .35s var(--ease-out); }
.card:hover .card-icon svg { color: var(--white); }
.card h3 { font-size: 1.22rem; margin-bottom: .6rem; }
.card p { color: var(--ink-mute); font-size: .95rem; margin-bottom: 1.1rem; }
.card-link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--blue); font-size: .92rem; }
.card-link svg { width: 16px; height: 16px; transition: transform .25s var(--ease-out); }
.card-link:hover svg { transform: translateX(4px); }

.card.card-accent { border-color: rgba(208,39,28,.3); }
.card.card-accent .card-icon { background: var(--accent-pale); }
.card.card-accent .card-icon svg { color: var(--accent); }
.card.card-accent:hover .card-icon { background: var(--accent); }
.card.card-accent:hover .card-icon svg { color: var(--white); }

/* =============================================================
   9. Stats strip
   ============================================================= */
.stats-strip {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
@media (min-width: 720px) { .stats-strip { grid-template-columns: repeat(4, 1fr); } }
.stat-item strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  color: var(--white);
}
.stat-item span { font-size: .88rem; color: #b9cdf0; font-weight: 600; }

/* =============================================================
   10. Process steps
   ============================================================= */
.steps {
  display: grid; gap: 1.75rem;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 860px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding-left: 3.4rem; }
.step-num {
  position: absolute; left: 0; top: 0;
  width: 2.6rem; height: 2.6rem;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  color: var(--blue);
  font-family: var(--display);
  font-weight: 700;
  display: grid; place-items: center;
  font-size: 1.05rem;
}
.step h4 { font-size: 1.08rem; margin-bottom: .4rem; }
.step p { font-size: .92rem; color: var(--ink-mute); }

/* =============================================================
   11. Testimonials
   ============================================================= */
.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.9rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testi-stars { display: flex; gap: .2rem; margin-bottom: 1rem; color: #f5a524; }
.testi-stars svg { width: 17px; height: 17px; }
.testi-quote { font-size: .97rem; color: var(--ink-soft); flex-grow: 1; margin-bottom: 1.3rem; }
.testi-person { display: flex; align-items: center; gap: .75rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue-pale);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; color: var(--blue);
  flex-shrink: 0;
}
.testi-person strong { display: block; font-size: .92rem; color: var(--ink); }
.testi-person span { font-size: .8rem; color: var(--ink-mute); }

/* =============================================================
   12. FAQ accordion
   ============================================================= */
.faq-list { max-width: 780px; margin-inline: auto; display: grid; gap: .9rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: clip;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  text-align: left;
}
.faq-q svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; transition: transform .3s var(--ease-out); }
.faq-item[open] .faq-q svg { transform: rotate(45deg); }
.faq-a { padding: 0 1.4rem 1.3rem; color: var(--ink-mute); font-size: .95rem; }

/* =============================================================
   13. CTA band
   ============================================================= */
.cta-band {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  display: grid;
  gap: 1.75rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 860px) {
  .cta-band { grid-template-columns: 1.3fr auto; text-align: left; }
}
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); margin-bottom: .5rem; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
@media (min-width: 860px) { .cta-band-actions { justify-content: flex-end; } }

/* =============================================================
   14. Coverage list
   ============================================================= */
.coverage-list { display: flex; flex-wrap: wrap; gap: .7rem; }
.coverage-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white);
  border: 1px solid var(--line);
  padding: .6rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink-soft);
}
.coverage-chip svg { width: 16px; height: 16px; color: var(--accent); }

/* =============================================================
   15. Footer
   ============================================================= */
.site-footer { background: var(--blue-deep); color: #a9c1e8; padding-block: 3.5rem 2rem; }
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .brand { color: var(--white); margin-bottom: .9rem; }
.footer-brand p { font-size: .92rem; max-width: 32ch; }
.footer-col h4 { color: var(--white); font-size: .92rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .65rem; }
.footer-col a { font-size: .92rem; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between;
  font-size: .82rem;
}

/* =============================================================
   16. Page hero (inner pages, simpler than home hero)
   ============================================================= */
.page-hero {
  position: relative;
  overflow: clip;
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  background: linear-gradient(180deg, var(--bg) 0%, #e2e7eb 100%);
}
.breadcrumbs { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--ink-mute); margin-bottom: 1.3rem; }
.breadcrumbs a:hover { color: var(--blue); }
.breadcrumbs svg { width: 13px; height: 13px; }

/* =============================================================
   17. Alternating content panels (service detail sections)
   ============================================================= */
.panel {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) { .panel { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }
.panel.reverse .panel-media { order: -1; }
@media (min-width: 960px) { .panel.reverse .panel-media { order: 2; } }
.panel-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.panel-media.portrait img { aspect-ratio: 3/4; max-width: 420px; margin-inline: auto; }
.panel-media.square img { aspect-ratio: 1/1; max-width: 420px; margin-inline: auto; }
.panel-list { display: grid; gap: .9rem; margin-top: 1.5rem; }
.panel-list li { display: flex; align-items: flex-start; gap: .7rem; font-size: .97rem; color: var(--ink-soft); }
.panel-list svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; margin-top: .12rem; }

/* =============================================================
   17b. Contact form + info cards
   ============================================================= */
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1.2fr .8fr; gap: 2.75rem; } }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}
.field { display: grid; gap: .45rem; margin-bottom: 1.3rem; }
.field label { font-size: .88rem; font-weight: 700; color: var(--ink); }
.field .required { color: var(--accent); }
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: .96rem;
  padding: .85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--ink);
  width: 100%;
  transition: border-color .2s var(--ease-out), background .2s var(--ease-out);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; gap: 1.3rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form-note { font-size: .82rem; color: var(--ink-mute); margin-top: .8rem; }
.form-success {
  display: none;
  align-items: center;
  gap: .7rem;
  background: #e9f9ef;
  border: 1px solid #bfe8cd;
  color: #1a7a3d;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .92rem;
  margin-bottom: 1.3rem;
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
  display: grid;
  gap: 1.4rem;
}
.info-row { display: flex; align-items: flex-start; gap: .9rem; }
.info-row-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--blue-pale);
  display: grid; place-items: center;
}
.info-row-icon svg { width: 22px; height: 22px; color: var(--blue); }
.info-row strong { display: block; font-size: .95rem; color: var(--ink); margin-bottom: .15rem; }
.info-row span, .info-row a { font-size: .9rem; color: var(--ink-mute); }
.info-row a:hover { color: var(--blue); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: clip;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  aspect-ratio: 16/11;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* =============================================================
   18. Wave divider (SVG, decorative between sections)
   ============================================================= */
.wave-divider { line-height: 0; position: relative; }
.wave-divider svg { width: 100%; height: auto; display: block; }

/* =============================================================
   19. Responsive breakpoints reference
   ============================================================= */
@media (min-width: 540px) { }
@media (min-width: 720px) { }
@media (min-width: 960px) { }
@media (min-width: 1280px) { }

/* =============================================================
   20. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-badge .dot { animation: none; }
  .hero-stat-chip { animation: none; }
}
