/* Box Delivery LLC — shared stylesheet */

:root {
  --navy: #0b2a5b;
  --navy-dark: #071b3d;
  --navy-deeper: #050f24;
  --red: #c8102e;
  --red-dark: #9c0c23;
  --white: #ffffff;
  --ink: #0f2038;
  --muted: #5b6b84;
  --muted-light: #8695ab;
  --bg-alt: #f4f6fb;
  --line: #e4e8f1;
  --ok: #1a9c5a;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --max-width: 1180px;
  --shadow-sm: 0 2px 10px rgba(11, 42, 91, 0.06);
  --shadow: 0 18px 40px rgba(11, 42, 91, 0.12);
  --shadow-lg: 0 30px 70px rgba(11, 42, 91, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Poppins", "Inter", sans-serif;
  line-height: 1.15;
  margin: 0;
  color: var(--navy);
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 24px;
}

.section--tight { padding: 56px 24px; }

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn--red {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(200, 16, 46, 0.32);
}
.btn--red:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(200, 16, 46, 0.4); }

.btn--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(11, 42, 91, 0.28);
}
.btn--navy:hover { transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn--outline:hover { background: rgba(255, 255, 255, 0.1); }

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--outline-navy:hover { background: rgba(11, 42, 91, 0.06); }

.btn--whatsapp {
  background: #22c55e;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.32);
}
.btn--whatsapp:hover { transform: translateY(-2px); }

.btn--block { width: 100%; }
.btn--sm { padding: 10px 20px; font-size: 0.88rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  text-decoration: none;
  flex-shrink: 0;
}

.nav__brand-mark {
  height: 32px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(11, 42, 91, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 6px;
  flex-shrink: 0;
}

.nav__brand-mark img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav__brand span.accent { color: var(--red); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1;
  justify-content: center;
}

.nav__links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--red); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-toggle {
  display: flex;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  font-size: 0.78rem;
  font-weight: 700;
}

.lang-toggle button {
  border: none;
  background: transparent;
  padding: 7px 12px;
  color: var(--muted);
}

.lang-toggle button.is-active {
  background: var(--navy);
  color: var(--white);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 6px;
}
.nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.nav__links-mobile { display: none; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(200, 16, 46, 0.28), transparent 55%),
    radial-gradient(ellipse at 85% 100%, rgba(255, 255, 255, 0.06), transparent 45%),
    linear-gradient(120deg, rgba(11, 42, 91, 0.82) 0%, rgba(9, 32, 68, 0.72) 45%, rgba(5, 15, 36, 0.6) 100%),
    url("assets/img/hero-bg.webp?v=20260822c") center/cover no-repeat;
  color: var(--white);
  padding: 72px 24px 96px;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 4.6vw, 3.4rem);
  margin-bottom: 20px;
}

.hero h1 .hl { color: #ff8a9d; }

.hero__subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 0 28px;
}

.flag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.flag-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 7px 13px 7px 9px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.flag-chip .flag { font-size: 1.05rem; }

.flag-icon {
  width: 20px;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.flag-icon--sm { width: 16px; }
.flag-icon--lg { width: 26px; }

/* Quote widget */
.quote-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}

.quote-widget label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 8px;
}

.quote-widget select {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg-alt);
}

.select-with-flag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.select-with-flag select { margin-bottom: 0; }

.quote-widget .eta-badge {
  display: inline-block;
  background: #e8f7ee;
  color: var(--ok);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.quote-widget-checks {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.quote-widget-checks li {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.quote-widget-checks li::before {
  content: "✓";
  color: var(--ok);
  font-weight: 800;
  flex-shrink: 0;
}

/* Deposit callout */
.deposit-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.2), rgba(200, 16, 46, 0.05));
  border: 1.5px solid rgba(200, 16, 46, 0.45);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 30px;
  max-width: 540px;
}

.deposit-badge__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(200, 16, 46, 0.35);
}

.deposit-badge__title {
  font-weight: 800;
  color: var(--white);
  font-size: 1.02rem;
  margin: 0 0 3px;
}

.deposit-badge__text {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

/* Rating badges */
.rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
  align-items: center;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 10px 16px;
  border-radius: 12px;
}

.rating-badge strong { font-size: 1.05rem; }
.rating-badge .stars { color: #ffc94d; letter-spacing: 1px; }
.rating-badge small { color: rgba(255, 255, 255, 0.65); display: block; font-size: 0.72rem; }

.stat-pair {
  display: flex;
  gap: 22px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.stat-pill strong { display: block; font-size: 1.3rem; color: var(--white); }
.stat-pill span { font-size: 0.78rem; color: rgba(255, 255, 255, 0.65); }

/* ---------- Steps (visual, photo cards) ---------- */
.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.step-card {
  flex: 1 1 220px;
  max-width: 250px;
  text-align: center;
}

.step-card__img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 5;
  margin-bottom: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover .step-card__img-wrap {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.step-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.step-card__time {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.step-card__num {
  position: absolute;
  bottom: 14px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  border: 2.5px solid var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.step-card h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--muted);
  font-size: 0.86rem;
  margin: 0;
  line-height: 1.55;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-light);
  font-size: 1.3rem;
  padding-top: 90px;
  flex: 0 0 auto;
}

.steps-closer {
  text-align: center;
  margin-top: 36px;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
}
.steps-closer .red { color: var(--red); }

/* ---------- Trust / deliveries section ---------- */
.section--dark {
  background: linear-gradient(180deg, var(--navy-deeper), var(--navy-dark));
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.trust-headline {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 20px;
}
.trust-headline .accent { color: #ff8a9d; }
.trust-headline u { text-decoration-color: var(--red); }

.deliveries-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 22px;
}

.deliveries-card .stat {
  font-size: 1.9rem;
  font-weight: 800;
  color: #4ade80;
  margin-bottom: 4px;
}
.deliveries-card .stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.delivery-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
}
.delivery-row:last-child { border-bottom: none; }
.delivery-row .city { color: var(--white); font-weight: 600; }
.delivery-row .from { color: rgba(255, 255, 255, 0.55); }
.delivery-row .time { color: rgba(255, 255, 255, 0.45); font-size: 0.78rem; white-space: nowrap; }
.delivery-row .check { color: #4ade80; margin-right: 6px; }
.delivery-row .flag-icon { margin-right: 7px; vertical-align: -3px; }

.deliveries-note {
  margin-top: 14px;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.4);
}

.trust-points {
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

.trust-point {
  display: flex;
  gap: 14px;
}
.trust-point__num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-point h4 { color: var(--white); font-size: 0.98rem; margin-bottom: 4px; }
.trust-point p { color: rgba(255, 255, 255, 0.6); font-size: 0.88rem; margin: 0; }

/* ---------- WhatsApp banner ---------- */
.wa-banner {
  background: var(--navy-deeper);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.wa-banner__text {
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wa-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  width: fit-content;
}
.wa-banner__badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
}

.wa-banner h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.wa-banner p { color: rgba(255, 255, 255, 0.65); margin-bottom: 26px; }

.img-placeholder {
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 14px, rgba(255,255,255,0.02) 14px 28px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 24px;
}

.img-placeholder--light {
  background: repeating-linear-gradient(135deg, #eef1f8 0 14px, #e4e8f1 14px 28px);
  color: var(--muted-light);
  border-radius: var(--radius);
  border-left: none;
}

/* ---------- Real photo frames (replace placeholders once images exist) ---------- */
.photo-frame {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wa-banner__photo {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.wa-banner__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wa-banner__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5, 15, 36, 0.35), transparent 40%);
}

/* ---------- Double CTA band ---------- */
.dual-cta {
  background: var(--bg-alt);
  padding: 56px 24px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.dual-cta h3 { font-size: 1.4rem; margin-bottom: 6px; }
.dual-cta p { color: var(--muted); margin-bottom: 22px; }
.dual-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deeper);
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 24px 28px;
}

.footer__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.footer__wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4ade80;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.footer ul { display: grid; gap: 10px; }
.footer ul a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.88rem;
}
.footer ul a:hover { color: var(--white); }

.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  font-size: 0.8rem;
}

.footer__social { display: flex; gap: 14px; }
.footer__social a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.82rem;
}
.footer__social a:hover { color: var(--white); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--navy), var(--navy-dark));
  color: var(--white);
  padding: 60px 24px 70px;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255, 255, 255, 0.72); max-width: 600px; margin: 0 auto; }
.breadcrumb-mini {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
.breadcrumb-mini a { color: rgba(255, 255, 255, 0.7); text-decoration: none; }

/* ---------- Generic content blocks ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.check-list { display: grid; gap: 12px; margin-top: 18px; }
.check-list li {
  display: flex;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--muted);
}
.check-list li::before {
  content: "✓";
  color: var(--ok);
  font-weight: 800;
  flex-shrink: 0;
}
.check-list strong { color: var(--ink); }

.badge-diff {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fdeaee;
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.diff-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
}
.diff-card .icon { font-size: 1.6rem; margin-bottom: 12px; display: block; }
.diff-card h3 { font-size: 1rem; margin-bottom: 8px; }
.diff-card p { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* ---------- How it works numbered blocks ---------- */
.how-block {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 26px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.how-block:last-child { border-bottom: none; }
.how-block__num {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-block h3 { font-size: 1.3rem; margin-bottom: 10px; }
.how-block p { color: var(--muted); margin-bottom: 14px; }

.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 18px 0;
}
.rate-table th, .rate-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.rate-table th { color: var(--navy); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; }
.rate-table td { color: var(--muted); }

/* ---------- Restrictions page ---------- */
.legal-box {
  background: #fff5f6;
  border: 1.5px solid #f3c6cd;
  border-radius: var(--radius);
  padding: 30px;
}
.legal-box h2 {
  color: var(--red-dark);
  font-size: 1.3rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.legal-box p {
  color: #6b3038;
  font-size: 0.94rem;
  line-height: 1.75;
  margin: 0;
}

/* ---------- Puntos de entrega ---------- */
.locator-box {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.locator-box .input-row {
  display: flex;
  gap: 10px;
  margin: 22px 0;
}
.locator-box input {
  flex: 1;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}
.locator-result {
  margin-top: 20px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-align: left;
  display: none;
}
.locator-result.is-visible { display: block; }
.locator-result h4 { font-size: 0.95rem; margin-bottom: 6px; }
.locator-result p { font-size: 0.85rem; color: var(--muted); margin: 2px 0; }
.locator-result a.btn { margin-top: 12px; }

/* ---------- Calculator (cotizar.html) ---------- */
.calc-shell {
  max-width: 760px;
  margin: -60px auto 0;
  position: relative;
  z-index: 2;
}

.calc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
}

.calc-step { display: none; }
.calc-step.is-active { display: block; }

.calc-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.calc-tab {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}
.calc-tab.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  font-size: 0.96rem;
  font-family: inherit;
  background: var(--white);
}
.form-row textarea { resize: vertical; min-height: 80px; }
.form-row small { color: var(--muted-light); font-size: 0.78rem; display: block; margin-top: 6px; }

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

.unit-toggle { display: flex; gap: 8px; margin-bottom: 14px; }
.unit-toggle button {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
}
.unit-toggle button.is-active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.size-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.size-option {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 10px;
  text-align: center;
  background: var(--white);
}
.size-option strong { display: block; font-size: 0.95rem; color: var(--navy); }
.size-option span { font-size: 0.72rem; color: var(--muted-light); }
.size-option input { display: none; }
.size-option.is-active { border-color: var(--red); background: #fff5f6; }

.weight-mode-link {
  font-size: 0.82rem;
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 18px;
  display: inline-block;
}

.radio-pill-row { display: flex; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.radio-pill {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  background: var(--white);
}
.radio-pill.is-active { background: var(--red); color: var(--white); border-color: var(--red); }

.result-summary {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 20px;
}
.result-summary__route {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--navy);
}
.result-line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.92rem;
}
.result-line:last-child { border-bottom: none; }
.result-line .label { color: var(--muted); }
.result-line .label small { display: block; font-size: 0.75rem; color: var(--muted-light); }
.result-total {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
}

.step-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin: 28px 0 0;
  font-size: 0.8rem;
  color: var(--muted-light);
}
.step-breadcrumb .active { color: var(--red); font-weight: 700; }
.step-breadcrumb span:not(:last-child)::after { content: "›"; margin-left: 6px; color: var(--muted-light); }

.radio-yesno { display: flex; gap: 12px; margin-top: 8px; }
.radio-yesno label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink);
  cursor: pointer;
}

.warning-note {
  font-size: 0.78rem;
  color: var(--red-dark);
  background: #fdeaee;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-top: 10px;
}

.pay-summary {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 20px;
}
.pay-summary .result-line { font-size: 0.88rem; }

.card-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.existing-client-link {
  text-align: center;
  margin-top: 18px;
  font-size: 0.85rem;
}
.existing-client-link a { color: var(--navy); font-weight: 700; text-decoration: none; }

/* ---------- Team photo placeholder / about ---------- */
.about-hero-img {
  border-radius: var(--radius-lg);
  min-height: 320px;
}

.mission-block { margin-bottom: 40px; }
.mission-block h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mission-block p { color: var(--muted); margin: 0; }

.history-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.history-stats .card { text-align: center; }
.history-stats strong { display: block; font-size: 1.8rem; color: var(--red); font-family: "Poppins", sans-serif; }
.history-stats span { font-size: 0.85rem; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .wa-banner { grid-template-columns: 1fr; }
  .wa-banner .img-placeholder { min-height: 200px; border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }
  .two-col { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .history-stats { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__links-mobile.is-open {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 24px 18px;
    border-top: 1px solid var(--line);
    background: var(--white);
  }
  .nav__links-mobile a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    padding: 10px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--line);
  }
  .step-arrow { display: none; }
  .step-card { flex: 1 1 40%; max-width: 260px; }
  .how-block { grid-template-columns: 56px 1fr; }
  .how-block__num { width: 48px; height: 48px; font-size: 1.1rem; border-radius: 12px; }
}

@media (max-width: 640px) {
  .section { padding: 60px 20px; }
  .step-card { flex: 1 1 100%; max-width: 280px; }
  .footer__grid { grid-template-columns: 1fr; }
  .form-grid-2, .form-grid-3 { grid-template-columns: 1fr; }
  .size-grid { grid-template-columns: 1fr 1fr; }
  .calc-card { padding: 26px 20px; }
  .calc-shell { margin-top: -40px; }
  .wa-banner__text { padding: 48px 24px; }
  .dual-cta__buttons { flex-direction: column; align-items: stretch; }
  .history-stats { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
}
