/* =====================================================================
   HC SERVICES — #YoTeMudo — bespoke static site
   Design: "la caja del camión" — their real fleet is white cargo boxes
   lettered in black + orange, so the page is built as near-black asphalt
   with white "panel de camión" cards and orange hand-painted accents.
   Deliberately not the flat orange-on-black billboard of LAR/JRO (same
   palette family, different brand): here the white panel carries the
   content and the orange is signage, not background.
   Palette sampled by code (PIL/HSV) from logo.jpg:
     black #000000, white #fbfbfa, brand orange #dd6823
     (the brief's #c8722e was a JPEG-dulled read of the same ink).
   Type: Big Shoulders Display (display — US road-signage lineage, reads
   transport/wayfinding) + Public Sans (body). Unused by any sibling demo.
   NOTE: every line of copy is real — from HC's own truck lettering
   (#YoTeMudo), their logo (MUDANZAS · RECOGIDOS · ENTREGAS, residencial/
   industrial/comercial), their own WhatsApp intake message (the three
   quote questions + the day-before confirmation notice), their real
   permit number TCMU-440943 + seguro de carga, and Ryan Caraballo's real
   5-star Facebook review naming Daniel & Joshua. Photos are their own.
   Nothing invented.
   ===================================================================== */

:root {
  --orange:      #dd6823;   /* brand ink, sampled from the logo */
  --orange-hot:  #f4782c;   /* hover / highlight */
  --orange-deep: #b34e16;   /* pressed, shadow */
  --orange-tint: #fff1e6;
  --orange-soft: #ffd9bd;

  --asphalt:   #0a0a0b;   /* page base */
  --asphalt-2: #121215;
  --carbon:    #1a1a1e;
  --carbon-2:  #232329;
  --carbon-3:  #2f2f37;

  --panel:   #fbfbfa;     /* the white truck box */
  --panel-2: #f3f2ef;
  --panel-3: #e8e6e1;

  --ink:   #0a0a0b;       /* type on white panels */
  --body:  #55555f;
  --muted: #8b8b95;
  --line:  #e2e0db;

  --on-dark:       #fbfbfa;
  --on-dark-body:  #a8a8b3;
  --on-dark-muted: #74747f;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-sm:  0 2px 10px rgba(0,0,0,.10);
  --shadow:     0 30px 64px -32px rgba(0,0,0,.75);
  --shadow-org: 0 20px 42px -18px rgba(221,104,35,.55);

  --wrap: 1200px;
  --sp-section: clamp(72px, 9vw, 132px);
  --ease: cubic-bezier(.22,.61,.36,1);

  /* hazard stripe — the orange/black diagonal off the logo arc */
  --stripe: repeating-linear-gradient(-45deg,
    var(--orange) 0 14px, transparent 14px 28px);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--asphalt);
  color: var(--body);
  font-family: "Public Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: "Big Shoulders Display", "Arial Narrow", system-ui, sans-serif;
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.005em;
  color: var(--ink);
  margin: 0;
  text-transform: uppercase;
}

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
@media (max-width: 640px) { .wrap { width: min(100% - 32px, var(--wrap)); } }

svg { width: 20px; height: 20px; flex: none; }

/* ---------- shared bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  margin: 0 0 18px;
  font-family: "Public Sans", sans-serif;
  font-size: 12.5px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange);
}
.eyebrow svg { width: 16px; height: 16px; }

.section-head { max-width: 760px; margin-bottom: 54px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(36px, 5.4vw, 66px); }
.section-head h2 em { font-style: normal; color: var(--orange); }
.lead { font-size: 18px; margin: 18px 0 0; color: var(--body); }

.on-dark h2, .on-dark h3 { color: var(--on-dark); }
.on-dark .lead { color: var(--on-dark-body); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px;
  border: 0; border-radius: 999px;
  background: var(--orange); color: #fff;
  font-family: "Public Sans", sans-serif;
  font-size: 15.5px; font-weight: 800; letter-spacing: .01em;
  text-decoration: none; cursor: pointer;
  box-shadow: var(--shadow-org);
  transition: transform .22s var(--ease), background .22s var(--ease), box-shadow .22s var(--ease);
}
.btn:hover { background: var(--orange-hot); transform: translateY(-2px); }
.btn:active { background: var(--orange-deep); transform: translateY(0); }
.btn svg { width: 19px; height: 19px; }

.btn--ghost {
  background: transparent; color: var(--on-dark);
  border: 1.5px solid rgba(251,251,250,.28);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(251,251,250,.08); border-color: rgba(251,251,250,.5); }

.btn--dark { background: var(--ink); box-shadow: 0 18px 36px -18px rgba(0,0,0,.6); }
.btn--dark:hover { background: var(--carbon-2); }

.btn--wa { background: #1faa54; box-shadow: 0 20px 42px -18px rgba(31,170,84,.55); }
.btn--wa:hover { background: #24c261; }

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--orange-hot);
  outline-offset: 3px;
  border-radius: 6px;
}

/* reveal */
.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.is-visible {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(10,10,11,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(251,251,250,.09);
}
.nav__inner { display: flex; align-items: center; gap: 20px; padding: 12px 0; }

.brand { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
.brand img { width: 54px; height: 54px; border-radius: 50%; }
.brand__txt { display: flex; flex-direction: column; margin-left: 11px; line-height: 1; }
.brand__txt b {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 23px; font-weight: 800; color: var(--on-dark);
  text-transform: uppercase; letter-spacing: .01em;
}
.brand__txt span {
  font-size: 10.5px; font-weight: 700; letter-spacing: .13em;
  color: var(--orange); text-transform: uppercase; margin-top: 3px;
}

.nav__links { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav__links a {
  font-size: 14.5px; font-weight: 600; color: var(--on-dark-body);
  text-decoration: none; transition: color .18s var(--ease);
}
.nav__links a:hover { color: var(--on-dark); }
.nav__menu-cta { display: none; }

.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 800; color: var(--on-dark);
  text-decoration: none; white-space: nowrap;
}
.nav__phone svg { width: 17px; height: 17px; color: var(--orange); }
.nav__quote { padding: 11px 20px; font-size: 14px; }
.nav__toggle {
  display: none;
  background: transparent; border: 1.5px solid rgba(251,251,250,.22);
  color: var(--on-dark); border-radius: 10px; padding: 8px; cursor: pointer;
}

@media (max-width: 1040px) {
  .nav__links {
    position: fixed; inset: 74px 0 auto; z-index: 59;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 20px 20px;
    background: var(--asphalt-2);
    border-bottom: 1px solid rgba(251,251,250,.1);
    transform: translateY(-140%);
    transition: transform .38s var(--ease);
  }
  .nav__links.is-open { transform: none; }
  .nav__links a {
    padding: 15px 4px; font-size: 16px;
    border-bottom: 1px solid rgba(251,251,250,.08);
  }
  .nav__menu-cta {
    display: inline-flex; align-items: center; gap: 9px;
    margin-top: 14px; border: 0 !important; color: var(--orange) !important;
    font-weight: 800;
  }
  .nav__toggle { display: inline-flex; }
  .nav__phone span { display: none; }
  /* .nav__links goes fixed above, so its margin-left:auto stops pushing
     anything — the controls must claim the free space themselves or the
     hamburger drifts in beside the logo instead of sitting flush right. */
  .nav__cta { margin-left: auto; }
}
@media (max-width: 560px) {
  .nav__quote { display: none; }
  .brand img { width: 46px; height: 46px; }
  .brand__txt b { font-size: 20px; }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; overflow: hidden; background: var(--asphalt); }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 520px at 78% 14%, rgba(221,104,35,.20), transparent 62%),
    radial-gradient(700px 460px at 8% 92%, rgba(221,104,35,.09), transparent 60%);
  pointer-events: none;
}
.hero__stripe {
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--stripe);
  opacity: .9;
}
.hero__inner { position: relative; padding: clamp(56px, 8vw, 104px) 0 clamp(64px, 8vw, 108px); }
.hero__grid {
  display: grid; grid-template-columns: 1.06fr .94fr;
  gap: clamp(34px, 5vw, 68px); align-items: center;
}

.hero__lead h1 {
  color: var(--on-dark);
  font-size: clamp(52px, 8.2vw, 108px);
  letter-spacing: -.012em;
}
.hero__hash {
  display: block;
  color: var(--orange);
  font-style: italic;
  transform: skewX(-4deg);
  transform-origin: left;
}
.hero__sub {
  margin: 24px 0 0; max-width: 54ch;
  font-size: 18.5px; color: var(--on-dark-body);
}
.hero__sub b { color: var(--on-dark); font-weight: 700; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }

.hero__chips {
  display: flex; flex-wrap: wrap; gap: 9px;
  margin: 30px 0 0; padding: 0; list-style: none;
}
.hero__chips li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px;
  border: 1px solid rgba(251,251,250,.16);
  border-radius: 999px;
  background: rgba(251,251,250,.04);
  font-size: 13.5px; font-weight: 700; color: var(--on-dark);
}
.hero__chips svg { width: 15px; height: 15px; color: var(--orange); }

/* hero photo — framed as a cargo panel */
.hero__aside { position: relative; }
.photo-card {
  position: relative; margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--carbon);
  border: 1px solid rgba(251,251,250,.12);
  box-shadow: var(--shadow);
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px; border-radius: 999px;
  background: rgba(10,10,11,.82);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(251,251,250,.16);
  font-size: 12px; font-weight: 800; color: var(--on-dark);
  letter-spacing: .02em;
}
.photo-card__badge svg { width: 14px; height: 14px; color: var(--orange); }
.photo-card figcaption {
  padding: 14px 18px;
  background: var(--carbon);
  font-size: 13.5px; color: var(--on-dark-body);
  border-top: 1px solid rgba(251,251,250,.09);
}
/* keep the caption clear of the permit seal that hangs over this corner */
.hero__photo figcaption { padding-right: 132px; }
@media (max-width: 900px) { .hero__photo figcaption { padding-right: 104px; } }

/* the licencia seal, echoing a permit sticker on the truck door */
.seal {
  position: absolute; right: -14px; bottom: -20px; z-index: 3;
  display: grid; place-items: center;
  width: 132px; height: 132px; border-radius: 50%;
  background: var(--orange);
  color: #fff; text-align: center;
  box-shadow: 0 22px 40px -14px rgba(221,104,35,.7);
  border: 4px solid var(--asphalt);
}
.seal b {
  display: block;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 15px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; line-height: 1.1;
}
.seal span {
  display: block; margin-top: 3px;
  font-size: 13px; font-weight: 800; letter-spacing: .02em;
}
.seal small {
  display: block; margin-top: 4px;
  font-size: 9.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; opacity: .88;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__aside { max-width: 520px; }
  .seal { width: 108px; height: 108px; right: 8px; bottom: -14px; }
  .seal b { font-size: 13px; }
}

/* =====================================================================
   TRUST STRIP
   ===================================================================== */
.trust { background: var(--carbon); border-block: 1px solid rgba(251,251,250,.08); }
.trust__inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 30px; padding: 40px 0;
}
.trust__item { display: flex; gap: 14px; align-items: flex-start; }
.trust__item svg { width: 26px; height: 26px; color: var(--orange); margin-top: 2px; }
.trust__item b {
  display: block; color: var(--on-dark);
  font-size: 15.5px; font-weight: 800; margin-bottom: 3px;
}
.trust__item span { font-size: 13.5px; color: var(--on-dark-muted); line-height: 1.5; }
@media (max-width: 900px) { .trust__inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .trust__inner { grid-template-columns: 1fr; gap: 22px; } }

/* =====================================================================
   SERVICIOS — white cargo panels
   ===================================================================== */
.serv { background: var(--panel); padding-block: var(--sp-section); }
.serv__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.serv-card {
  position: relative; overflow: hidden;
  padding: 30px 26px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.serv-card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 4px;
  background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.serv-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange-soft);
  box-shadow: 0 26px 50px -26px rgba(0,0,0,.34);
}
.serv-card:hover::before { transform: scaleX(1); }
.serv-card__ic {
  display: grid; place-items: center;
  width: 52px; height: 52px; margin-bottom: 20px;
  border-radius: 14px;
  background: var(--orange-tint); color: var(--orange);
  border: 1px solid var(--orange-soft);
}
.serv-card__ic svg { width: 26px; height: 26px; }
.serv-card h3 { font-size: 27px; margin-bottom: 10px; }
.serv-card p { margin: 0; font-size: 14.5px; line-height: 1.6; }
.serv-card__tag {
  display: inline-block; margin-top: 16px;
  padding: 5px 12px; border-radius: 999px;
  background: var(--panel-2); border: 1px solid var(--line);
  font-size: 11.5px; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; color: var(--orange);
}
@media (max-width: 1040px) { .serv__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .serv__grid { grid-template-columns: 1fr; } }

/* sectores (residencial / industrial / comercial) */
.sectores {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-top: 44px;
}
.sectores li {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 20px;
  border-radius: 999px; border: 1px solid var(--line);
  background: #fff;
  font-size: 14px; font-weight: 700; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.sectores { list-style: none; padding: 0; }
.sectores svg { width: 17px; height: 17px; color: var(--orange); }

/* =====================================================================
   FLOTA
   ===================================================================== */
.flota { background: var(--asphalt); padding-block: var(--sp-section); position: relative; }
.flota__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 56px); align-items: center;
}
.flota__body h2 { font-size: clamp(36px, 5vw, 62px); }
.flota__body h2 em { font-style: normal; color: var(--orange); }
.flota__txt { margin: 20px 0 0; font-size: 17.5px; color: var(--on-dark-body); }
.flota__txt b { color: var(--on-dark); font-weight: 700; }

.stats { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; }
.stats li {
  flex: 1 1 130px;
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: var(--carbon);
  border: 1px solid rgba(251,251,250,.1);
}
.stats b {
  display: block;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 40px; font-weight: 800; color: var(--orange); line-height: 1;
}
.stats span {
  display: block; margin-top: 7px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; color: var(--on-dark-muted);
}

.flota__media { display: grid; gap: 16px; }
.flota__media .photo-card img { aspect-ratio: 1 / 1; }
.flota__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.flota__pair .photo-card img { aspect-ratio: 1 / 1; }
@media (max-width: 900px) { .flota__grid { grid-template-columns: 1fr; } }

/* =====================================================================
   TESTIMONIO
   ===================================================================== */
.testi { background: var(--panel-2); padding-block: var(--sp-section); }
/* the verified aggregate off their own reviews page header */
.rate-badge {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 26px; padding: 12px 20px 12px 16px;
  border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.rate-badge:hover { border-color: var(--orange); transform: translateY(-2px); }
.rate-badge__pct {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 40px; font-weight: 800; line-height: 1;
  color: var(--orange);
}
.rate-badge__txt { display: flex; flex-direction: column; text-align: left; line-height: 1.25; }
.rate-badge__txt b { font-size: 15px; font-weight: 800; color: var(--ink); }
.rate-badge__txt span { font-size: 13px; color: var(--muted); }
.rate-badge__fb { width: 20px; height: 20px; color: #1877f2; }
@media (max-width: 420px) { .rate-badge { gap: 11px; padding-right: 16px; } .rate-badge__pct { font-size: 33px; } }

/* ---- carousel ---- */
.carousel { position: relative; max-width: 940px; margin-inline: auto; }
/* Height is set from the active slide by JS — the reviews run from four words
   to a full paragraph, and stretching every card to fit the longest one leaves
   the short ones marooned in a huge empty box. */
.carousel__viewport {
  overflow: hidden; border-radius: var(--r-xl);
  transition: height .45s var(--ease);
}
.carousel__track {
  display: flex; align-items: flex-start;
  margin: 0; padding: 0; list-style: none;
  transition: transform .5s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .carousel__viewport, .carousel__track { transition: none; }
}

.rev {
  position: relative; flex: 0 0 100%; min-width: 100%;
  padding: clamp(34px, 4.4vw, 58px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: 0 34px 70px -40px rgba(0,0,0,.4);
  /* equal-height slides: short reviews shouldn't collapse the box */
  display: flex; flex-direction: column;
  min-height: 340px;
}
.rev::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 5px;
  background: var(--stripe);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.rev__stars { display: flex; gap: 4px; color: var(--orange); margin-bottom: 20px; }
.rev__stars svg { width: 22px; height: 22px; }
.rev__quote {
  margin: 0;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700; text-transform: none;
  font-size: clamp(23px, 2.7vw, 33px);
  line-height: 1.24; color: var(--ink);
  letter-spacing: 0;
  /* Slides are equal height, so a two-word review would otherwise hang at the
     top of an empty card — the auto margins center it in the leftover space.
     Do NOT make this a flex container to center it: the <b> and the plain text
     would become separate flex items and the space between them collapses. */
  margin-block: auto;
}
.rev__quote b { color: var(--orange); font-weight: 800; }
/* no margin-top:auto here — .rev__quote's auto margins already push this to
   the bottom, and a third auto would split the free space three ways. */
.rev__by {
  display: flex; align-items: center; gap: 14px;
  /* fixed margin keeps the rule off the last line when a long quote fills the
     card (the quote's auto margins collapse to 0 there) */
  margin-top: 26px; padding-top: 26px;
  border-top: 1px solid var(--line);
}
.rev__by .rev__av {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 20px; font-weight: 800; letter-spacing: .03em;
  flex: none;
}
.rev__who { display: flex; flex-direction: column; gap: 3px; }
.rev__who b { color: var(--ink); font-size: 15.5px; font-weight: 800; }
.rev__who > span {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--muted);
}
.rev__who svg { width: 14px; height: 14px; color: #1877f2; flex: none; }

.carousel__nav {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 26px;
}
.carousel__arrow {
  display: grid; place-items: center;
  width: 46px; height: 46px; flex: none;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff; color: var(--ink);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.carousel__arrow svg { width: 19px; height: 19px; transform: rotate(180deg); }
.carousel__arrow--next svg { transform: none; }
.carousel__arrow:hover { border-color: var(--orange); background: var(--orange); color: #fff; }
/* A counter, not dots: 24 dots is not a control anyone can aim at, and the
   "N / 24" doubles as proof of how many real reviews are in here. */
.carousel__count {
  margin: 0; min-width: 76px; text-align: center;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--muted); letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}
.carousel__count b { color: var(--orange); font-weight: 800; font-size: 26px; }
.testi__crew {
  display: flex; align-items: center; gap: 10px;
  margin: 34px auto 0; max-width: 940px;
  padding: 16px 20px;
  border-radius: var(--r-md);
  background: var(--ink); color: var(--on-dark);
  font-size: 14.5px;
}
.testi__crew svg { width: 19px; height: 19px; color: var(--orange); }
.testi__crew b { color: #fff; }

/* =====================================================================
   COTIZACIÓN — the conversion section
   ===================================================================== */
.quote { background: var(--asphalt); padding-block: var(--sp-section); position: relative; }
.quote__grid {
  display: grid; grid-template-columns: .85fr 1.15fr;
  gap: clamp(30px, 4vw, 56px); align-items: start;
}

.quote__side { position: sticky; top: 100px; }
@media (max-width: 980px) { .quote__side { position: static; } }
.quote__side h2 { font-size: clamp(36px, 4.8vw, 60px); color: var(--on-dark); }
.quote__side h2 em { font-style: normal; color: var(--orange); }
.quote__side p { color: var(--on-dark-body); font-size: 17px; }

.steps { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 16px; }
.steps li { display: flex; gap: 14px; align-items: flex-start; }
.steps__n {
  display: grid; place-items: center; flex: none;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(221,104,35,.16);
  border: 1px solid rgba(221,104,35,.4);
  color: var(--orange);
  font-size: 13px; font-weight: 800;
}
.steps b { display: block; color: var(--on-dark); font-size: 15px; font-weight: 700; }
.steps span { font-size: 14px; color: var(--on-dark-muted); }

/* aviso — their own day-before confirmation rule, stated plainly */
.aviso {
  display: flex; gap: 13px; align-items: flex-start;
  margin-top: 28px; padding: 18px 20px;
  border-radius: var(--r-md);
  background: rgba(221,104,35,.1);
  border: 1px solid rgba(221,104,35,.34);
  border-left: 4px solid var(--orange);
}
.aviso svg { width: 21px; height: 21px; color: var(--orange); margin-top: 1px; }
.aviso b { display: block; color: var(--on-dark); font-size: 14.5px; margin-bottom: 3px; }
.aviso span { font-size: 14px; color: var(--on-dark-body); line-height: 1.55; }

/* the form itself — a white panel */
.form-panel {
  padding: clamp(26px, 3.4vw, 42px);
  background: var(--panel);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  border: 1px solid rgba(251,251,250,.14);
}
.form-panel__head { margin-bottom: 26px; }
/* The panel is white but lives inside .quote.on-dark — restate the dark ink
   or `.on-dark h3` renders this heading white-on-white. */
.form-panel__head h3 { font-size: 32px; margin-bottom: 8px; color: var(--ink); }
.form-panel__head p { margin: 0; font-size: 14.5px; color: var(--body); }

.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.f-field { display: flex; flex-direction: column; gap: 7px; }
.f-field--full { grid-column: 1 / -1; }
.f-field > label {
  font-size: 13.5px; font-weight: 700; color: var(--ink);
  display: flex; align-items: center; gap: 7px;
}
.f-field > label svg { width: 15px; height: 15px; color: var(--orange); }
.f-req { color: var(--orange); }
.f-hint { font-size: 12.5px; color: var(--muted); line-height: 1.45; }

.f-field input,
.f-field select,
.f-field textarea {
  width: 100%;
  padding: 13px 15px;
  font-family: inherit; font-size: 15px; color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.f-field textarea { min-height: 132px; resize: vertical; line-height: 1.55; }
.f-field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2355555f' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; background-size: 17px;
  padding-right: 40px;
}
.f-field input:focus,
.f-field select:focus,
.f-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3.5px rgba(221,104,35,.16);
}
.f-field input::placeholder, .f-field textarea::placeholder { color: #adadb6; }

/* quick-add item chips */
.chips-add { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 2px; }
.chip-add {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px;
  border: 1.5px dashed var(--line);
  border-radius: 999px;
  background: #fff; color: var(--body);
  font-family: inherit; font-size: 12.5px; font-weight: 700;
  cursor: pointer;
  transition: all .18s var(--ease);
}
.chip-add::before { content: "+"; font-size: 14px; font-weight: 800; color: var(--orange); }
.chip-add:hover { border-color: var(--orange); border-style: solid; color: var(--ink); background: var(--orange-tint); }
.chip-add.is-added {
  border-style: solid; border-color: var(--orange);
  background: var(--orange); color: #fff;
}
.chip-add.is-added::before { content: "✓"; color: #fff; font-size: 11px; }

.f-actions { margin-top: 26px; }
.f-actions .btn { width: 100%; padding: 17px 26px; font-size: 16.5px; }
.f-alt {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-top: 16px; font-size: 13.5px; color: var(--muted);
}
.f-alt a { color: var(--ink); font-weight: 800; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; }
.f-alt a svg { width: 16px; height: 16px; color: var(--orange); }
.f-alt a:hover { color: var(--orange); }
.f-note {
  margin: 14px 0 0; text-align: center;
  font-size: 12.5px; color: var(--muted); line-height: 1.5;
}

/* Link out to the full Facebook reviews — the proof that the single quote
   above isn't the only one. */
.f-reviews {
  display: flex; align-items: center; gap: 10px;
  margin-top: 18px; padding: 13px 16px;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: #fff;
  font-size: 14px; font-weight: 700; color: var(--ink);
  text-decoration: none;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.f-reviews svg { width: 18px; height: 18px; color: #1877f2; }
.f-reviews__go { margin-left: auto; color: var(--muted) !important; width: 16px !important; height: 16px !important; transition: transform .2s var(--ease); }
.f-reviews:hover { border-color: var(--orange); background: var(--orange-tint); }
.f-reviews:hover .f-reviews__go { transform: translateX(3px); color: var(--orange) !important; }

.f-error {
  display: none;
  margin-top: 14px; padding: 12px 15px;
  border-radius: var(--r-sm);
  background: #fff2f2; border: 1px solid #f3c9c9;
  color: #a3282d; font-size: 13.5px; font-weight: 600;
}
.f-error.is-on { display: block; }

@media (max-width: 980px) { .quote__grid { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .f-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   CTA FINAL
   ===================================================================== */
.cta { position: relative; overflow: hidden; background: var(--carbon); padding-block: clamp(64px, 8vw, 108px); }
.cta::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: var(--stripe);
}
.cta__bg {
  position: absolute; inset: 0;
  background: radial-gradient(760px 420px at 50% 0%, rgba(221,104,35,.22), transparent 66%);
  pointer-events: none;
}
.cta__inner { position: relative; text-align: center; }
.cta__inner .eyebrow { justify-content: center; }
.cta h2 { font-size: clamp(40px, 6vw, 78px); color: var(--on-dark); }
.cta h2 em { font-style: normal; color: var(--orange); }
.cta__sub { max-width: 62ch; margin: 20px auto 0; color: var(--on-dark-body); font-size: 17.5px; }
.cta__phone { margin: 30px 0 26px; }
.cta__phone a {
  display: inline-flex; align-items: center; gap: 13px;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(38px, 5.4vw, 62px); font-weight: 800;
  color: var(--on-dark); text-decoration: none;
  transition: color .2s var(--ease);
}
.cta__phone a:hover { color: var(--orange); }
.cta__phone svg { width: .78em; height: .78em; color: var(--orange); }
.cta__actions { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--asphalt); padding: clamp(50px, 6vw, 76px) 0 30px; border-top: 1px solid rgba(251,251,250,.08); }
.footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(251,251,250,.08);
}
.footer__brand p { font-size: 14.5px; color: var(--on-dark-muted); margin: 16px 0 0; max-width: 44ch; }
.footer__tag {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 21px !important; font-weight: 800;
  color: var(--orange) !important; text-transform: uppercase;
  letter-spacing: .02em; margin-top: 12px !important;
}
.footer h4 {
  font-size: 20px; color: var(--on-dark); margin-bottom: 16px;
}
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer__list a, .footer__list span {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: var(--on-dark-muted); text-decoration: none;
  transition: color .18s var(--ease);
}
.footer__list a:hover { color: var(--orange); }
.footer__list svg { width: 17px; height: 17px; color: var(--orange); flex: none; }
.footer__lic {
  margin-top: 18px; padding: 12px 15px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(221,104,35,.34);
  background: rgba(221,104,35,.08);
  font-size: 12.5px; color: var(--on-dark-body); line-height: 1.5;
}
.footer__lic b { color: var(--orange); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  padding-top: 24px; font-size: 12.5px; color: var(--on-dark-muted);
}
.footer__isla { display: inline-flex; align-items: center; gap: 8px; }
.footer__isla svg { width: 15px; height: 15px; color: var(--orange); }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }

/* =====================================================================
   FLOATING WHATSAPP
   ===================================================================== */
.wa-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 20px; border-radius: 999px;
  background: #1faa54; color: #fff;
  font-size: 14.5px; font-weight: 800; text-decoration: none;
  box-shadow: 0 16px 34px -12px rgba(31,170,84,.75);
  transition: transform .22s var(--ease), background .22s var(--ease);
}
.wa-fab:hover { background: #24c261; transform: translateY(-2px); }
.wa-fab svg { width: 21px; height: 21px; }
@media (max-width: 560px) {
  .wa-fab span { display: none; }
  .wa-fab { padding: 15px; right: 14px; bottom: 14px; }
}
