/* ================================================================
   MUEVEME.ES — Sistema de diseño
   Mudanzas y Limpieza profesional en Tarragona
   Optimizado para SEO + GEO + Core Web Vitals
   ================================================================ */

/* ------------------------------------------------------------
   1. Design tokens
   ------------------------------------------------------------ */
:root {
  /* Brand colors */
  --c-primary: #1d3557;        /* deep navy */
  --c-primary-700: #15273f;
  --c-primary-900: #0c1a2c;
  --c-secondary: #457b9d;      /* mid blue */
  --c-secondary-600: #366a8a;
  --c-accent: #10b981;         /* emerald - CTAs */
  --c-accent-hover: #059669;
  --c-accent-soft: #d1fae5;

  /* Surfaces */
  --c-bg: #ffffff;
  --c-bg-soft: #f7f9fc;
  --c-bg-tint: #eef3f8;
  --c-border: #e2e8f0;
  --c-border-strong: #cbd5e1;

  /* Text */
  --c-text: #0f172a;
  --c-text-soft: #334155;
  --c-text-mute: #64748b;
  --c-text-invert: #ffffff;
  --c-text-invert-soft: rgba(255,255,255,.78);

  /* Status */
  --c-warning: #f59e0b;
  --c-danger: #ef4444;
  --c-success: #10b981;
  --c-star: #fbbf24;

  /* Typography */
  --ff-display: "Public Sans", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-body: "Public Sans", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --fs-xs: 0.8125rem;     /* 13 */
  --fs-sm: 0.875rem;      /* 14 */
  --fs-base: 1rem;        /* 16 */
  --fs-md: 1.0625rem;     /* 17 */
  --fs-lg: 1.1875rem;     /* 19 */
  --fs-xl: 1.375rem;      /* 22 */
  --fs-2xl: 1.625rem;     /* 26 */
  --fs-3xl: 2rem;         /* 32 */
  --fs-4xl: 2.5rem;       /* 40 */
  --fs-5xl: 3.25rem;      /* 52 */
  --fs-6xl: 4rem;         /* 64 */

  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-normal: 1.55;
  --lh-relaxed: 1.7;

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 2.5rem;
  --sp-8: 3rem;
  --sp-10: 4rem;
  --sp-12: 5rem;
  --sp-16: 7rem;
  --sp-20: 9rem;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 9999px;

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.04);
  --sh-md: 0 4px 12px rgba(15,23,42,.07), 0 2px 4px rgba(15,23,42,.04);
  --sh-lg: 0 12px 32px rgba(15,23,42,.09), 0 4px 8px rgba(15,23,42,.04);
  --sh-xl: 0 24px 48px rgba(15,23,42,.12), 0 8px 16px rgba(15,23,42,.06);
  --sh-ring: 0 0 0 4px rgba(16,185,129,.18);

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --header-h: 76px;

  /* Motion */
  --t-fast: 150ms;
  --t-base: 220ms;
  --t-slow: 400ms;
  --ease: cubic-bezier(.2,.7,.3,1);
}

/* ------------------------------------------------------------
   2. Reset
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
img { font-style: italic; background-repeat: no-repeat; }
button { font: inherit; cursor: pointer; }
a { color: var(--c-secondary); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--c-accent); }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--ff-display); font-weight: 800; line-height: var(--lh-tight); color: var(--c-text); letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
hr { border: 0; height: 1px; background: var(--c-border); margin: var(--sp-7) 0; }
::selection { background: var(--c-accent); color: #fff; }

/* ------------------------------------------------------------
   3. Layout primitives
   ------------------------------------------------------------ */
.container { width: 100%; max-width: var(--container); padding: 0 var(--sp-5); margin: 0 auto; }
.container--narrow { max-width: var(--container-narrow); }
.section { padding: var(--sp-12) 0; }
.section--tight { padding: var(--sp-8) 0; }
.section--tint { background: var(--c-bg-soft); }
.section--primary { background: var(--c-primary); color: var(--c-text-invert); }
.section--primary h1, .section--primary h2, .section--primary h3 { color: var(--c-text-invert); }
.section--primary p { color: var(--c-text-invert-soft); }
.grid { display: grid; gap: var(--sp-6); }
.grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 960px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid--2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .section { padding: var(--sp-10) 0; }
}

/* ------------------------------------------------------------
   4. Typography helpers
   ------------------------------------------------------------ */
.eyebrow { display: inline-block; font-size: var(--fs-sm); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--c-accent); margin-bottom: var(--sp-3); }
.eyebrow--light { color: var(--c-accent-soft); }
.lead { font-size: var(--fs-lg); color: var(--c-text-soft); line-height: var(--lh-relaxed); max-width: 60ch; }
.text-mute { color: var(--c-text-mute); }
.text-soft { color: var(--c-text-soft); }
h1, .h1 { font-size: clamp(2rem, 4.5vw, var(--fs-6xl)); line-height: 1.05; letter-spacing: -0.02em; }
h2, .h2 { font-size: clamp(1.625rem, 3.2vw, var(--fs-4xl)); line-height: 1.1; letter-spacing: -0.015em; }
h3, .h3 { font-size: clamp(1.25rem, 2.2vw, var(--fs-2xl)); line-height: 1.2; }
h4, .h4 { font-size: var(--fs-xl); line-height: 1.25; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto var(--sp-8); }
.section-head .lead { margin: var(--sp-3) auto 0; }

/* ------------------------------------------------------------
   5. Buttons
   ------------------------------------------------------------ */
.btn { display: inline-flex; align-items: center; gap: var(--sp-2); padding: 14px 26px; border-radius: var(--r-full); font-weight: 700; font-size: var(--fs-base); line-height: 1; border: 2px solid transparent; cursor: pointer; transition: transform var(--t-fast) var(--ease), background var(--t-base) var(--ease), color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease); text-decoration: none; }
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--c-accent); color: #fff; box-shadow: var(--sh-md); }
.btn--primary:hover { background: var(--c-accent-hover); color: #fff; box-shadow: var(--sh-lg); }
.btn--secondary { background: var(--c-primary); color: #fff; }
.btn--secondary:hover { background: var(--c-primary-700); color: #fff; }
.btn--outline { background: transparent; border-color: var(--c-primary); color: var(--c-primary); }
.btn--outline:hover { background: var(--c-primary); color: #fff; }
.btn--ghost { background: transparent; color: var(--c-text); }
.btn--ghost:hover { color: var(--c-accent); }
.btn--lg { padding: 18px 32px; font-size: var(--fs-md); }
.btn--block { display: flex; width: 100%; justify-content: center; }
.btn--whatsapp { background: #25D366; color: #fff; }
.btn--whatsapp:hover { background: #1ebe5a; color: #fff; }
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ------------------------------------------------------------
   6. Header / nav
   ------------------------------------------------------------ */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--c-border); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: var(--sp-5); }
.brand { display: flex; align-items: center; gap: var(--sp-3); font-family: var(--ff-display); font-weight: 800; font-size: var(--fs-xl); color: var(--c-primary); letter-spacing: -0.01em; }
.brand__mark { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-secondary) 100%); display: grid; place-items: center; color: #fff; font-size: 20px; font-weight: 800; box-shadow: var(--sh-md); }
.brand small { display: block; font-size: 10px; font-weight: 600; letter-spacing: .18em; color: var(--c-text-mute); text-transform: uppercase; margin-top: -2px; }
.nav { display: flex; align-items: center; gap: var(--sp-6); }
.nav__link { color: var(--c-text); font-weight: 600; font-size: var(--fs-sm); padding: 6px 0; position: relative; }
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--c-primary); }
.nav__link[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--c-accent); border-radius: 2px; }
.nav__cta { display: flex; align-items: center; gap: var(--sp-3); }
.nav__phone { display: inline-flex; align-items: center; gap: var(--sp-2); font-weight: 700; color: var(--c-primary); font-size: var(--fs-sm); }
.nav__phone svg { width: 16px; height: 16px; }
.nav__toggle { display: none; background: transparent; border: 0; padding: 8px; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content: ""; display: block; width: 24px; height: 2px; background: var(--c-primary); border-radius: 2px; position: relative; transition: transform var(--t-base) var(--ease); }
.nav__toggle span::before { position: absolute; top: -7px; }
.nav__toggle span::after { position: absolute; top: 7px; }
@media (max-width: 980px) {
  .nav { display: none; position: absolute; top: var(--header-h); left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--c-border); flex-direction: column; align-items: stretch; padding: var(--sp-4) var(--sp-5); gap: var(--sp-2); }
  .nav.is-open { display: flex; }
  .nav__link { padding: 12px 0; border-bottom: 1px solid var(--c-border); }
  .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav__phone-mobile { display: block; padding-top: var(--sp-3); }
}

/* ------------------------------------------------------------
   7. Hero
   ------------------------------------------------------------ */
.hero { position: relative; padding: var(--sp-12) 0 var(--sp-10); background: linear-gradient(160deg, #ffffff 0%, var(--c-bg-soft) 60%, var(--c-bg-tint) 100%); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 400px at 85% 15%, rgba(69,123,157,.18), transparent 70%); pointer-events: none; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: var(--sp-10); align-items: center; position: relative; }
@media (max-width: 960px) { .hero__grid { grid-template-columns: 1fr; gap: var(--sp-7); } .hero { padding: var(--sp-8) 0 var(--sp-7); } }
.hero h1 { color: var(--c-primary); margin-bottom: var(--sp-4); }
.hero h1 .accent { color: var(--c-secondary); }
.hero__sub { font-size: var(--fs-lg); color: var(--c-text-soft); line-height: var(--lh-relaxed); margin-bottom: var(--sp-6); max-width: 56ch; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-6); }
.hero__trust { display: flex; flex-wrap: wrap; gap: var(--sp-5) var(--sp-7); padding-top: var(--sp-4); border-top: 1px solid var(--c-border); }
.hero__trust strong { display: block; color: var(--c-primary); font-size: var(--fs-xl); font-weight: 800; }
.hero__trust span { font-size: var(--fs-sm); color: var(--c-text-mute); }

.hero__visual { position: relative; display: flex; flex-direction: column; gap: var(--sp-4); }
.hero-card { background: #fff; border-radius: var(--r-xl); box-shadow: var(--sh-xl); overflow: hidden; border: 1px solid var(--c-border); }
.hero-card__top { padding: var(--sp-6); background: var(--c-primary); color: #fff; }
.hero-card__top h3 { color: #fff; font-size: var(--fs-xl); margin-bottom: var(--sp-2); }
.hero-card__top p { color: var(--c-text-invert-soft); font-size: var(--fs-sm); margin: 0; }
.hero-card__body { padding: var(--sp-6); }
.field { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.field label { font-size: var(--fs-sm); font-weight: 600; color: var(--c-text); }
.field input, .field select, .field textarea { width: 100%; padding: 14px 16px; font: inherit; font-size: var(--fs-base); border: 1.5px solid var(--c-border-strong); border-radius: var(--r-md); background: #fff; color: var(--c-text); transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--c-accent); box-shadow: var(--sh-ring); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
@media (max-width: 480px) { .field--row { grid-template-columns: 1fr; } }
.field__hint { font-size: var(--fs-xs); color: var(--c-text-mute); }
.choice { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.choice__opt { flex: 1 1 0; min-width: 90px; }
.choice__opt input { position: absolute; opacity: 0; pointer-events: none; }
.choice__opt label { display: block; padding: 12px 14px; border: 1.5px solid var(--c-border-strong); border-radius: var(--r-md); text-align: center; cursor: pointer; font-size: var(--fs-sm); font-weight: 600; transition: all var(--t-fast) var(--ease); }
.choice__opt input:checked + label { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.choice__opt label:hover { border-color: var(--c-secondary); }

/* Trust badges: en flujo normal, después del card; se apilan en columna si no caben */
.hero__badges { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; }
.hero__badge { background: #fff; padding: 12px 16px; border-radius: var(--r-lg); box-shadow: var(--sh-md); display: flex; align-items: center; gap: var(--sp-3); flex: 0 0 auto; }
.hero__badge svg { width: 28px; height: 28px; color: var(--c-accent); flex-shrink: 0; }
.hero__badge strong { display: block; font-size: var(--fs-base); color: var(--c-primary); }
.hero__badge span { display: block; font-size: var(--fs-xs); color: var(--c-text-mute); white-space: nowrap; }
@media (max-width: 540px) { .hero__badges { display: none; } }

/* ------------------------------------------------------------
   8. Cards (service, value, etc.)
   ------------------------------------------------------------ */
.card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: var(--sp-6); transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease); }
.card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); border-color: var(--c-secondary); }
.card__icon { width: 56px; height: 56px; border-radius: var(--r-md); display: grid; place-items: center; background: var(--c-accent-soft); color: var(--c-accent); margin-bottom: var(--sp-4); }
.card__icon svg { width: 28px; height: 28px; }
.card__icon--blue { background: rgba(69,123,157,.12); color: var(--c-secondary); }
.card__icon--navy { background: rgba(29,53,87,.1); color: var(--c-primary); }
.card h3 { font-size: var(--fs-xl); margin-bottom: var(--sp-3); color: var(--c-primary); }
.card p { color: var(--c-text-soft); margin-bottom: var(--sp-4); }
.card__list { display: grid; gap: var(--sp-2); margin: var(--sp-4) 0; }
.card__list li { display: flex; gap: var(--sp-2); align-items: flex-start; color: var(--c-text-soft); font-size: var(--fs-sm); }
.card__list li::before { content: "✓"; color: var(--c-accent); font-weight: 800; flex-shrink: 0; }
.card__link { display: inline-flex; align-items: center; gap: var(--sp-2); color: var(--c-primary); font-weight: 700; margin-top: var(--sp-3); }
.card__link::after { content: "→"; transition: transform var(--t-fast) var(--ease); }
.card__link:hover { color: var(--c-accent); }
.card__link:hover::after { transform: translateX(4px); }

/* ------------------------------------------------------------
   9. Value props / features row
   ------------------------------------------------------------ */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
@media (max-width: 960px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .features { grid-template-columns: 1fr; } }
.feature { display: flex; gap: var(--sp-3); padding: var(--sp-4); background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg); }
.feature__icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--r-md); display: grid; place-items: center; background: var(--c-accent-soft); color: var(--c-accent); }
.feature__icon svg { width: 22px; height: 22px; }
.feature h4 { font-size: var(--fs-base); color: var(--c-primary); margin-bottom: 2px; }
.feature p { font-size: var(--fs-sm); color: var(--c-text-mute); margin: 0; }

/* ------------------------------------------------------------
   10. Process steps
   ------------------------------------------------------------ */
.steps { counter-reset: step; display: grid; gap: var(--sp-5); }
.steps__item { display: grid; grid-template-columns: 56px 1fr; gap: var(--sp-4); padding: var(--sp-5); background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg); position: relative; }
.steps__num { width: 56px; height: 56px; border-radius: 50%; background: var(--c-primary); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: var(--fs-xl); font-family: var(--ff-display); }
.steps__item h3 { color: var(--c-primary); margin-bottom: var(--sp-2); font-size: var(--fs-lg); }
.steps__item p { color: var(--c-text-soft); margin: 0; }
.steps__item time { display: inline-block; font-size: var(--fs-xs); color: var(--c-text-mute); font-weight: 600; letter-spacing: .04em; margin-bottom: 4px; }

/* ------------------------------------------------------------
   11. Reviews / testimonials
   ------------------------------------------------------------ */
.reviews-summary { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; padding: var(--sp-5) var(--sp-6); background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg); box-shadow: var(--sh-sm); }
.reviews-summary__score { font-family: var(--ff-display); font-weight: 800; font-size: var(--fs-4xl); color: var(--c-primary); }
.reviews-summary__stars { display: inline-flex; gap: 2px; color: var(--c-star); }
.reviews-summary__stars svg { width: 18px; height: 18px; }
.reviews-summary__src { color: var(--c-text-mute); font-size: var(--fs-sm); }

.review { padding: var(--sp-5); background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg); display: flex; flex-direction: column; gap: var(--sp-3); }
.review__head { display: flex; gap: var(--sp-3); align-items: center; }
.review__avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--c-secondary) 0%, var(--c-primary) 100%); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: var(--fs-md); font-family: var(--ff-display); flex-shrink: 0; }
.review__name { font-weight: 700; color: var(--c-primary); font-size: var(--fs-base); line-height: 1.2; }
.review__date { color: var(--c-text-mute); font-size: var(--fs-xs); }
.review__stars { color: var(--c-star); display: inline-flex; gap: 1px; }
.review__stars svg { width: 14px; height: 14px; }
.review__text { color: var(--c-text-soft); font-size: var(--fs-sm); line-height: var(--lh-relaxed); margin: 0; }
.review__src { font-size: var(--fs-xs); color: var(--c-text-mute); display: inline-flex; gap: 4px; align-items: center; margin-top: auto; padding-top: var(--sp-3); border-top: 1px solid var(--c-border); }

/* ------------------------------------------------------------
   12. FAQ accordion
   ------------------------------------------------------------ */
.faq { display: grid; gap: var(--sp-3); }
.faq__item { background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-md); overflow: hidden; }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); width: 100%; padding: var(--sp-4) var(--sp-5); background: transparent; border: 0; text-align: left; font-size: var(--fs-md); font-weight: 700; color: var(--c-primary); font-family: var(--ff-display); cursor: pointer; }
.faq__q::after { content: "+"; font-size: 24px; line-height: 1; color: var(--c-accent); font-weight: 400; transition: transform var(--t-base) var(--ease); flex-shrink: 0; }
.faq__item[open] .faq__q::after { content: "−"; }
.faq__a { padding: 0 var(--sp-5) var(--sp-5); color: var(--c-text-soft); line-height: var(--lh-relaxed); }
.faq__a p { margin: 0 0 var(--sp-3); }
.faq__a p:last-child { margin: 0; }

/* ------------------------------------------------------------
   13. CTA banner
   ------------------------------------------------------------ */
.cta-banner { background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-700) 100%); color: #fff; border-radius: var(--r-xl); padding: var(--sp-10) var(--sp-8); text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 80% 30%, rgba(16,185,129,.18), transparent 60%); }
.cta-banner h2 { color: #fff; margin-bottom: var(--sp-3); }
.cta-banner p { color: var(--c-text-invert-soft); max-width: 50ch; margin: 0 auto var(--sp-6); font-size: var(--fs-lg); }
.cta-banner__buttons { display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap; position: relative; }
.cta-banner__phone { display: inline-flex; align-items: center; gap: var(--sp-2); margin-top: var(--sp-4); color: var(--c-text-invert-soft); font-size: var(--fs-sm); }
.cta-banner__phone strong { color: #fff; font-size: var(--fs-lg); }

/* ------------------------------------------------------------
   14. Zones / locations
   ------------------------------------------------------------ */
.zones { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--sp-3); }
.zone { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); padding: var(--sp-4) var(--sp-5); background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-md); color: var(--c-text); font-weight: 600; transition: all var(--t-base) var(--ease); }
.zone:hover { border-color: var(--c-accent); color: var(--c-accent); transform: translateY(-2px); box-shadow: var(--sh-md); }
.zone small { display: block; font-size: var(--fs-xs); color: var(--c-text-mute); font-weight: 500; }
.zone__km { font-size: var(--fs-xs); color: var(--c-text-mute); background: var(--c-bg-soft); padding: 4px 8px; border-radius: var(--r-full); }

/* ------------------------------------------------------------
   15. Article / blog post
   ------------------------------------------------------------ */
.article { max-width: 760px; margin: 0 auto; }
.article h1 { margin-bottom: var(--sp-5); }
.article h2 { margin: var(--sp-8) 0 var(--sp-4); color: var(--c-primary); }
.article h3 { margin: var(--sp-6) 0 var(--sp-3); color: var(--c-primary); }
.article p { color: var(--c-text-soft); font-size: var(--fs-md); line-height: var(--lh-relaxed); margin-bottom: var(--sp-4); }
.article ul, .article ol { padding-left: var(--sp-5); margin-bottom: var(--sp-4); }
.article ul li, .article ol li { color: var(--c-text-soft); margin-bottom: var(--sp-2); line-height: var(--lh-relaxed); }
.article ul { list-style: disc; }
.article ol { list-style: decimal; }
.article a { color: var(--c-secondary); text-decoration: underline; text-underline-offset: 3px; }
.article blockquote { border-left: 4px solid var(--c-accent); padding: var(--sp-4) var(--sp-5); background: var(--c-bg-soft); border-radius: 0 var(--r-md) var(--r-md) 0; margin: var(--sp-5) 0; color: var(--c-text); font-style: italic; }
.article-meta { display: flex; align-items: center; gap: var(--sp-3); color: var(--c-text-mute); font-size: var(--fs-sm); margin-bottom: var(--sp-6); }
.article-meta time { font-weight: 600; }
.article-meta .tag { background: var(--c-bg-tint); color: var(--c-primary); padding: 4px 10px; border-radius: var(--r-full); font-weight: 600; font-size: var(--fs-xs); letter-spacing: .04em; }

/* ------------------------------------------------------------
   16. Footer
   ------------------------------------------------------------ */
.footer { background: var(--c-primary-900); color: var(--c-text-invert); padding: var(--sp-12) 0 var(--sp-5); margin-top: var(--sp-12); }
.footer a { color: var(--c-text-invert-soft); }
.footer a:hover { color: #fff; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--sp-7); padding-bottom: var(--sp-7); border-bottom: 1px solid rgba(255,255,255,.1); }
@media (max-width: 860px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__top { grid-template-columns: 1fr; } }
.footer__col h4 { color: #fff; font-size: var(--fs-base); font-weight: 700; margin-bottom: var(--sp-3); }
.footer__col ul { display: grid; gap: var(--sp-2); }
.footer__col a { font-size: var(--fs-sm); }
.footer__brand { color: #fff; font-size: var(--fs-2xl); font-weight: 800; font-family: var(--ff-display); margin-bottom: var(--sp-3); }
.footer__about { color: var(--c-text-invert-soft); font-size: var(--fs-sm); line-height: var(--lh-relaxed); margin-bottom: var(--sp-4); max-width: 38ch; }
.footer__contact { display: grid; gap: var(--sp-2); font-size: var(--fs-sm); color: var(--c-text-invert-soft); }
.footer__contact strong { color: #fff; display: block; font-size: var(--fs-base); margin-top: var(--sp-2); }
.footer__bottom { padding-top: var(--sp-5); display: flex; justify-content: space-between; gap: var(--sp-4); flex-wrap: wrap; color: rgba(255,255,255,.5); font-size: var(--fs-xs); }

/* ------------------------------------------------------------
   17. Floating WhatsApp + phone CTAs
   ------------------------------------------------------------ */
.float-cta { position: fixed; right: 16px; bottom: 16px; z-index: 40; display: flex; flex-direction: column; gap: 10px; }
.float-cta a { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--sh-lg); color: #fff; transition: transform var(--t-base) var(--ease); }
.float-cta a:hover { transform: scale(1.05); }
.float-cta .whatsapp { background: #25D366; }
.float-cta .phone { background: var(--c-primary); }
.float-cta svg { width: 26px; height: 26px; }
@media (max-width: 600px) { .float-cta { right: 12px; bottom: 12px; } .float-cta a { width: 50px; height: 50px; } }

/* ------------------------------------------------------------
   18. Utility
   ------------------------------------------------------------ */
.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; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-3 { margin-bottom: var(--sp-3); }
.mb-5 { margin-bottom: var(--sp-5); }
.divider { display: flex; align-items: center; gap: var(--sp-3); margin: var(--sp-5) 0; color: var(--c-text-mute); font-size: var(--fs-xs); }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--c-border); }
.check-list { display: grid; gap: var(--sp-2); }
.check-list li { display: flex; gap: var(--sp-2); align-items: flex-start; color: var(--c-text-soft); }
.check-list li::before { content: "✓"; color: var(--c-accent); font-weight: 800; flex-shrink: 0; }

/* ------------------------------------------------------------
   19. Page-specific: contact, services detail
   ------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-7); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: grid; gap: var(--sp-4); }
.contact-info__item { display: flex; gap: var(--sp-3); padding: var(--sp-4); background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-md); }
.contact-info__icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--r-md); background: var(--c-accent-soft); color: var(--c-accent); display: grid; place-items: center; }
.contact-info__icon svg { width: 22px; height: 22px; }
.contact-info__item h4 { font-size: var(--fs-base); color: var(--c-primary); margin-bottom: 2px; }
.contact-info__item p, .contact-info__item a { font-size: var(--fs-sm); color: var(--c-text-soft); }

.hero--inner { padding: var(--sp-10) 0 var(--sp-7); background: linear-gradient(160deg, var(--c-bg-soft) 0%, #fff 100%); border-bottom: 1px solid var(--c-border); }
.breadcrumb { display: flex; gap: var(--sp-2); flex-wrap: wrap; font-size: var(--fs-sm); color: var(--c-text-mute); margin-bottom: var(--sp-4); }
.breadcrumb a { color: var(--c-text-soft); }
.breadcrumb span[aria-current] { color: var(--c-primary); font-weight: 600; }

/* Two-column with sidebar */
.with-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: var(--sp-8); align-items: start; }
@media (max-width: 960px) { .with-sidebar { grid-template-columns: 1fr; } }
.sidebar { display: grid; gap: var(--sp-4); position: sticky; top: calc(var(--header-h) + 16px); }
.sidebar__card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: var(--sp-5); }
.sidebar__card h4 { font-size: var(--fs-base); color: var(--c-primary); margin-bottom: var(--sp-3); }

/* Price table / data */
.data-row { display: flex; justify-content: space-between; gap: var(--sp-3); padding: var(--sp-3) 0; border-bottom: 1px dashed var(--c-border); }
.data-row:last-child { border-bottom: 0; }
.data-row strong { color: var(--c-primary); }

/* Tables */
.table-wrap { overflow-x: auto; border: 1px solid var(--c-border); border-radius: var(--r-md); }
.table { width: 100%; border-collapse: collapse; min-width: 600px; }
.table th, .table td { padding: 14px 16px; text-align: left; font-size: var(--fs-sm); border-bottom: 1px solid var(--c-border); }
.table th { background: var(--c-bg-soft); font-weight: 700; color: var(--c-primary); }
.table tr:last-child td { border-bottom: 0; }
.table tr:hover td { background: var(--c-bg-soft); }

/* Skip link */
.skip-link { position: absolute; top: -100px; left: 8px; padding: 8px 16px; background: var(--c-primary); color: #fff; z-index: 100; border-radius: var(--r-sm); }
.skip-link:focus { top: 8px; color: #fff; }

/* Print */
@media print {
  .header, .footer, .float-cta, .cta-banner__buttons { display: none; }
}
