/* ================================================================
   MUDANZAGLOBAL — CSS Mobile-First
   Diseño: azul marino + naranja energético — profesional y cálido
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Barlow:wght@400;500;600;700&display=swap');

:root {
  --blue: #1a3a6b;
  --blue-2: #1e4d8c;
  --blue-3: #254fa0;
  --orange: #f97316;
  --orange-2: #ea6000;
  --orange-light: #fff7ed;
  --green: #16a34a;
  --red: #dc2626;
  --yellow: #fbbf24;
  --dark: #0f1a2e;
  --text: #1e293b;
  --text-2: #64748b;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --t: 0.2s cubic-bezier(0.4,0,0.2,1);
  /* Mobile spacing */
  --px: 16px;
  --py: 48px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Barlow', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── HEADER ── */
.hdr {
  position: sticky; top: 0; z-index: 300;
  background: var(--blue);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hdr-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--px); height: 60px; max-width: 1200px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), #e05500);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  box-shadow: 0 0 12px rgba(249,115,22,0.4);
}
.logo-text { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.3rem; color: white; letter-spacing: 0.5px; line-height: 1; }
.logo-text span { color: var(--orange); }
.hdr-tel { display: flex; align-items: center; gap: 6px; color: white; font-weight: 700; font-size: 0.95rem; }
.hdr-tel svg { color: var(--orange); flex-shrink: 0; }
.hdr-nav-desktop { display: none; }
.hdr-cta { display: flex; gap: 8px; align-items: center; }
.btn-wa {
  display: flex; align-items: center; gap: 6px;
  background: #25d366; color: white;
  padding: 8px 14px; border-radius: 30px;
  font-weight: 700; font-size: 0.82rem;
  box-shadow: 0 3px 10px rgba(37,211,102,0.35);
  transition: var(--t);
}
.btn-wa:hover { background: #1dba5a; transform: translateY(-1px); }
/* Mobile menu toggle */
.nav-toggle { display: flex; flex-direction: column; gap: 4px; padding: 4px; }
.nav-toggle span { width: 22px; height: 2px; background: white; border-radius: 2px; transition: var(--t); }

/* ── MOBILE MENU ── */
.mobile-nav {
  position: fixed; top: 60px; left: 0; right: 0; bottom: 0; z-index: 290;
  background: var(--blue); padding: 24px var(--px);
  display: flex; flex-direction: column; gap: 6px;
  transform: translateX(-100%); transition: transform 0.3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  color: rgba(255,255,255,0.85); padding: 14px 16px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 1.05rem; transition: var(--t);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav a:hover, .mobile-nav a.act { color: white; background: rgba(255,255,255,0.08); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: white; padding: 14px 24px; border-radius: var(--radius-sm);
  font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 1rem;
  box-shadow: 0 4px 16px rgba(249,115,22,0.35); transition: var(--t);
  width: 100%; text-align: center; border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,0.45); }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: white; color: var(--blue);
  padding: 13px 24px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.95rem;
  border: 2px solid var(--blue); transition: var(--t);
  width: 100%;
}
.btn-secondary:hover { background: var(--blue); color: white; }
.btn-sm {
  padding: 9px 18px; font-size: 0.875rem; width: auto;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, var(--dark) 0%, var(--blue) 60%, var(--blue-3) 100%);
  padding: 40px var(--px) 48px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; bottom: -60px; right: -40px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.15), transparent 70%);
  pointer-events: none;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(249,115,22,0.2); border: 1px solid rgba(249,115,22,0.4);
  color: #fdba74; padding: 5px 12px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 16px;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(2.2rem, 7vw, 4rem); color: white;
  line-height: 1.05; letter-spacing: -0.5px; margin-bottom: 14px;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-sub { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 28px; line-height: 1.6; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.trust-item { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,0.8); font-size: 0.82rem; font-weight: 600; }
.hero-ctas { display: flex; flex-direction: column; gap: 10px; }

/* ── QUOTE FORM — MAIN FEATURE ── */
.quote-section {
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 24px;
  margin: -24px var(--px) 0;
  position: relative; z-index: 10;
  border: 2px solid rgba(249,115,22,0.15);
}
.quote-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 1.4rem; color: var(--blue); margin-bottom: 4px;
}
.quote-subtitle { font-size: 0.85rem; color: var(--text-2); margin-bottom: 20px; }
.form-steps { display: flex; gap: 4px; margin-bottom: 20px; }
.step-dot {
  height: 4px; border-radius: 2px; background: var(--border); flex: 1; transition: var(--t);
}
.step-dot.done { background: var(--orange); }
.step-label { font-size: 0.78rem; color: var(--text-2); font-weight: 600; margin-bottom: 16px; }
.step-panel { display: none; }
.step-panel.on { display: block; }
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 12px 14px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Barlow', sans-serif; font-size: 0.95rem; color: var(--text);
  background: var(--bg); transition: var(--t); appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none; border-color: var(--orange); background: white;
}
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkbox-group { display: flex; flex-direction: column; gap: 8px; }
.cb-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border: 2px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; transition: var(--t); }
.cb-item:has(input:checked) { border-color: var(--orange); background: var(--orange-light); }
.cb-item input { width: 18px; height: 18px; accent-color: var(--orange); flex-shrink: 0; }
.cb-item span { font-size: 0.9rem; font-weight: 600; }
.form-nav { display: flex; gap: 10px; margin-top: 16px; }
.btn-next { background: var(--orange); color: white; padding: 13px 20px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.95rem; flex: 1; border: none; cursor: pointer; font-family: inherit; transition: var(--t); }
.btn-next:hover { background: var(--orange-2); }
.btn-prev { background: var(--bg); border: 2px solid var(--border); color: var(--text-2); padding: 12px 16px; border-radius: var(--radius-sm); font-weight: 600; border: 2px solid var(--border); cursor: pointer; font-family: inherit; }

/* ── RESULT BOX ── */
.result-box {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  border-radius: var(--radius); padding: 24px; color: white; text-align: center;
}
.result-label { font-size: 0.85rem; opacity: 0.75; margin-bottom: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.result-price { font-family: 'Barlow Condensed', sans-serif; font-size: 3.2rem; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 4px; }
.result-range { font-size: 0.82rem; opacity: 0.7; margin-bottom: 16px; }
.result-note { font-size: 0.78rem; opacity: 0.65; line-height: 1.5; margin-top: 10px; }
.result-checks { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; text-align: left; }
.result-check { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; }
.result-check svg { color: var(--yellow); flex-shrink: 0; }
.result-form { background: rgba(255,255,255,0.07); border-radius: var(--radius-sm); padding: 16px; margin-top: 16px; }
.result-form p { font-size: 0.88rem; margin-bottom: 12px; opacity: 0.9; }

/* ── SECTIONS ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 var(--px); }
.section { padding: var(--py) 0; }
.sec-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: clamp(1.6rem, 5vw, 2.2rem); color: var(--dark);
  letter-spacing: -0.3px; line-height: 1.1; margin-bottom: 6px;
}
.sec-title span { color: var(--orange); }
.sec-sub { color: var(--text-2); font-size: 0.95rem; margin-bottom: 28px; }
.sec-hdr { margin-bottom: 28px; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.srv-card {
  background: white; border-radius: var(--radius);
  border: 2px solid var(--border); padding: 18px 14px;
  text-align: center; transition: var(--t); cursor: pointer;
  box-shadow: var(--shadow);
}
.srv-card:hover, .srv-card:active { border-color: var(--orange); background: var(--orange-light); transform: translateY(-2px); }
.srv-icon { font-size: 2rem; margin-bottom: 8px; }
.srv-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); margin-bottom: 3px; }
.srv-desc { font-size: 0.78rem; color: var(--text-2); line-height: 1.4; }

/* ── CITY LINKS ── */
.city-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.city-card {
  background: white; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  transition: var(--t); cursor: pointer; box-shadow: var(--shadow);
}
.city-card:hover { border-color: var(--blue); background: #f0f5ff; transform: translateY(-1px); }
.city-emoji { font-size: 1.3rem; flex-shrink: 0; }
.city-info { flex: 1; min-width: 0; }
.city-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.city-price { font-size: 0.75rem; color: var(--text-2); }

/* ── HOW IT WORKS ── */
.steps { display: flex; flex-direction: column; gap: 16px; }
.step-card {
  background: white; border-radius: var(--radius);
  border: 1.5px solid var(--border); padding: 18px;
  display: flex; gap: 14px; align-items: flex-start;
  box-shadow: var(--shadow);
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: white; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1.2rem; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(249,115,22,0.3);
}
.step-body h3 { font-weight: 700; font-size: 1rem; color: var(--dark); margin-bottom: 4px; }
.step-body p { font-size: 0.875rem; color: var(--text-2); line-height: 1.5; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: flex; flex-direction: column; gap: 12px; }
.test-card {
  background: white; border-radius: var(--radius);
  border: 1.5px solid var(--border); padding: 18px;
  box-shadow: var(--shadow);
}
.test-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.test-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-3));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 1rem; flex-shrink: 0;
}
.test-info { flex: 1; }
.test-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.test-detail { font-size: 0.75rem; color: var(--text-2); }
.test-stars { color: var(--yellow); font-size: 0.9rem; margin-left: auto; }
.test-text { font-size: 0.875rem; color: var(--text); line-height: 1.6; font-style: italic; }
.test-service { display: inline-block; background: var(--bg); color: var(--text-2); padding: 2px 8px; border-radius: 10px; font-size: 0.72rem; font-weight: 600; margin-top: 8px; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; padding: 16px 0;
  font-weight: 700; font-size: 0.95rem; color: var(--dark);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: none; cursor: pointer; border: none; font-family: inherit;
}
.faq-icon { color: var(--orange); font-size: 1.2rem; flex-shrink: 0; transition: var(--t); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { font-size: 0.875rem; color: var(--text-2); line-height: 1.65; padding-bottom: 16px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── BLOG GRID ── */
.blog-grid { display: flex; flex-direction: column; gap: 16px; }
.blog-card {
  background: white; border-radius: var(--radius);
  border: 1.5px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow); cursor: pointer; transition: var(--t);
  display: flex; gap: 0; flex-direction: column;
}
.blog-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: rgba(26,58,107,0.2); }
.blog-card-img {
  height: 150px; background: linear-gradient(135deg, var(--blue), var(--blue-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.blog-card-body { padding: 16px; }
.blog-cat { display: inline-block; background: var(--orange-light); color: var(--orange-2); padding: 2px 10px; border-radius: 10px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
.blog-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--dark); line-height: 1.2; margin-bottom: 6px; }
.blog-desc { font-size: 0.82rem; color: var(--text-2); line-height: 1.5; margin-bottom: 10px; }
.blog-meta { display: flex; gap: 10px; }
.blog-meta span { font-size: 0.73rem; color: var(--text-2); display: flex; align-items: center; gap: 3px; }
.blog-keywords { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.bkw { background: var(--bg); color: var(--text-2); padding: 2px 8px; border-radius: 8px; font-size: 0.7rem; }

/* ── ARTICLE DETAIL ── */
.art-wrap { padding: var(--py) var(--px); }
.art-back { display: inline-flex; align-items: center; gap: 6px; color: var(--orange); font-weight: 700; margin-bottom: 20px; cursor: pointer; border: none; background: none; font-family: inherit; padding: 0; }
.art-hero {
  background: linear-gradient(135deg, var(--dark), var(--blue));
  border-radius: var(--radius); padding: 24px; margin-bottom: 24px;
}
.art-cat-pill { display: inline-block; background: rgba(249,115,22,0.2); border: 1px solid rgba(249,115,22,0.4); color: #fdba74; padding: 3px 10px; border-radius: 10px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.art-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(1.5rem,5vw,2.2rem); color: white; line-height: 1.1; margin-bottom: 10px; }
.art-hero-meta { display: flex; gap: 14px; flex-wrap: wrap; }
.art-hero-meta span { font-size: 0.78rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 4px; }
.art-body { background: white; border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-md); border: 1.5px solid var(--border); }
.art-body h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--dark); margin: 28px 0 12px; border-left: 3px solid var(--orange); padding-left: 12px; }
.art-body h3 { font-weight: 700; font-size: 1.05rem; color: var(--dark); margin: 20px 0 8px; }
.art-body p { margin-bottom: 14px; font-size: 0.95rem; line-height: 1.75; color: var(--text); }
.art-body ul, .art-body ol { padding-left: 20px; margin-bottom: 14px; }
.art-body li { margin-bottom: 7px; font-size: 0.9rem; line-height: 1.6; }
.art-body .art-lead { font-size: 1.05rem; color: var(--text); font-weight: 500; border-left: 3px solid var(--orange); padding-left: 14px; background: var(--orange-light); padding: 14px 14px 14px 16px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-bottom: 20px; }
.art-price-table { background: var(--bg); border-radius: var(--radius-sm); overflow: hidden; margin: 16px 0; border: 1.5px solid var(--border); }
.apt-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.apt-row:last-child { border-bottom: none; }
.apt-row strong { color: var(--orange); font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; }
.art-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-3));
  border-radius: var(--radius); padding: 20px; margin-top: 24px; text-align: center;
}
.art-cta p { color: rgba(255,255,255,0.8); font-size: 0.875rem; margin-bottom: 12px; }
.art-cta h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.3rem; color: white; margin-bottom: 6px; }

/* ── DRIVER REGISTRATION ── */
.driver-section { background: linear-gradient(160deg, var(--dark), var(--blue)); padding: var(--py) 0; }
.driver-card { background: white; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-lg); }
.driver-card h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.6rem; color: var(--dark); margin-bottom: 6px; }
.driver-card .sub { color: var(--text-2); font-size: 0.9rem; margin-bottom: 20px; }
.driver-benefits { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.dbenefit { display: flex; gap: 10px; align-items: flex-start; }
.dbenefit-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--orange-light); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.dbenefit-text h4 { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.dbenefit-text p { font-size: 0.8rem; color: var(--text-2); }
.driver-form-wrap { background: var(--bg); border-radius: var(--radius-sm); padding: 18px; margin-top: 20px; }
.driver-form-wrap h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--dark); margin-bottom: 14px; }

/* ── CITY PAGE ── */
.city-hero {
  background: linear-gradient(160deg, var(--dark) 0%, var(--blue) 100%);
  padding: 40px var(--px) 60px;
}
.city-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(2rem,6vw,3rem); color: white; line-height: 1.05; margin-bottom: 10px; }
.city-hero h1 span { color: var(--orange); }
.city-hero p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 20px; }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, var(--orange), var(--orange-2)); padding: 32px var(--px); text-align: center; }
.cta-banner h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.7rem; color: white; margin-bottom: 6px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 18px; }

/* ── STATS ── */
.stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-card { background: white; border-radius: var(--radius-sm); padding: 18px 14px; text-align: center; box-shadow: var(--shadow); border: 1.5px solid var(--border); }
.stat-n { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 900; color: var(--orange); line-height: 1; }
.stat-l { font-size: 0.78rem; color: var(--text-2); font-weight: 600; margin-top: 3px; }

/* ── FOOTER ── */
.ftr { background: var(--dark); padding: 40px var(--px) 80px; }
.ftr-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.5rem; color: white; margin-bottom: 8px; }
.ftr-logo span { color: var(--orange); }
.ftr-desc { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 24px; line-height: 1.6; }
.ftr-sections { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.ftr-sec h4 { font-weight: 700; color: rgba(255,255,255,0.7); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.ftr-sec a, .ftr-sec p { display: block; color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 7px; cursor: pointer; transition: var(--t); line-height: 1.4; }
.ftr-sec a:hover { color: rgba(255,255,255,0.85); }
.ftr-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; color: rgba(255,255,255,0.3); font-size: 0.78rem; line-height: 1.6; }
.ftr-tel { color: var(--orange) !important; font-weight: 700; font-size: 1rem !important; }

/* ── FLOATING CTA ── */
.float-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: white; border-top: 1px solid var(--border);
  padding: 12px var(--px); display: flex; gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.float-cta-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 13px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.9rem; cursor: pointer; border: none; transition: var(--t);
  font-family: inherit;
}
.fca-primary { background: var(--orange); color: white; }
.fca-wa { background: #25d366; color: white; }
.fca-primary:hover { background: var(--orange-2); }
.fca-wa:hover { background: #1dba5a; }

/* ── PAGES ── */
[data-page] { display: none; }
[data-page].on { display: block; }

/* ── TOAST ── */
.toast { position: fixed; bottom: 80px; left: var(--px); right: var(--px); z-index: 9999; background: var(--dark); color: white; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.875rem; font-weight: 600; box-shadow: var(--shadow-md); transform: translateY(20px); opacity: 0; transition: var(--t); display: flex; align-items: center; gap: 10px; }
.toast.on { transform: translateY(0); opacity: 1; }
.toast.ok { border-left: 4px solid var(--green); }
.toast.err { border-left: 4px solid var(--red); }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); }

/* ════ TABLET/DESKTOP ════ */
@media (min-width: 640px) {
  :root { --px: 24px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .stats-row { grid-template-columns: repeat(4, 1fr); }
  .fg-row { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: row; }
  .btn-primary, .btn-secondary { width: auto; }
  .float-cta { display: none; }
}

@media (min-width: 900px) {
  :root { --px: 40px; }
  .hdr-nav-desktop { display: flex; gap: 4px; flex: 1; margin: 0 20px; }
  .hdr-nav-desktop a { color: rgba(255,255,255,0.75); padding: 7px 14px; border-radius: 8px; font-size: 0.875rem; font-weight: 600; transition: var(--t); cursor: pointer; }
  .hdr-nav-desktop a:hover, .hdr-nav-desktop a.act { color: white; background: rgba(255,255,255,0.1); }
  .nav-toggle { display: none; }
  .services-grid { grid-template-columns: repeat(6, 1fr); }
  .city-grid { grid-template-columns: repeat(4, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 80px var(--px) 100px; }
  .hero h1 { max-width: 700px; }
  .quote-section { margin: -40px auto 0; max-width: 820px; }
  .steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ftr-sections { grid-template-columns: repeat(4, 1fr); }
  .driver-benefits { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1100px) {
  .hero { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
  .hero-right { /* quote inline on wide screens */ }
  .quote-section { margin: 0; position: relative; z-index: 1; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .blog-card { flex-direction: row; }
  .blog-card-img { width: 140px; height: auto; min-height: 130px; flex-shrink: 0; }
}
