/* ============================================================
   Carteyes Tracking Service — Stylesheet
   Palette pulled from logo: navy #031334, off-white #fafafa.
   Accent (CTA only): amber #ff7a29. WhatsApp green reserved for
   WhatsApp actions to match user expectation of that brand mark.
   ============================================================ */

:root {
  --navy-950: #020c1e;
  --navy-900: #031334;
  --navy-800: #0b2350;
  --navy-700: #17356e;
  --navy-100: #e7ebf3;
  --navy-50: #f3f5f9;

  --ink: #0c1526;
  --muted: #4c5872;
  --muted-light: #7c869c;

  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --border: #e2e6ee;

  --accent: #ff7a29;
  --accent-dark: #d9600f;
  --accent-light: #fff0e2;

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

  --white: #ffffff;

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

  --shadow-sm: 0 1px 2px rgba(3, 19, 52, 0.06), 0 1px 1px rgba(3, 19, 52, 0.04);
  --shadow-md: 0 8px 24px rgba(3, 19, 52, 0.10);
  --shadow-lg: 0 20px 48px rgba(3, 19, 52, 0.16);

  --container: 1180px;
  --header-h: 72px;
  --mobile-bar-h: 64px;

  --font-display: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul[class], ol[class] { margin: 0; padding: 0; list-style: none; }
img, picture, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--mobile-bar-h);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(1.9rem, 4.4vw, 2.9rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.15rem; }

p { color: var(--muted); }

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

section { padding: 64px 0; }
.section-alt { background: var(--bg-alt); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-head {
  max-width: 640px;
  margin: 0 0 36px;
}
.section-head p { margin-top: 10px; font-size: 1.02rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-900);
  color: #fff;
  padding: 12px 18px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

/* Focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.2s ease; }
.btn:active { transform: translateY(1px); }
.btn:hover svg { transform: translateX(3px); }
.btn-whatsapp:hover svg, .btn-outline:hover svg, .btn-outline-light:hover svg { transform: none; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--accent-dark); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  border-color: var(--navy-800);
  color: var(--navy-900);
}
.btn-outline:hover { background: var(--navy-900); color: #fff; }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); }

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand img {
  height: 40px;
  width: 40px;
  object-fit: contain;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--navy-800);
  position: relative;
  padding: 6px 2px;
}
.main-nav a:hover { color: var(--accent-dark); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; color: var(--navy-900); }

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s;
  }
  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .main-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
  }
  .header-actions .btn-outline-header-text { display: none; }
  .nav-toggle { display: inline-flex; }
}

@media (min-width: 901px) {
  .header-actions .call-label { display: inline; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 48px 0 44px;
  background:
    radial-gradient(circle at 85% 15%, rgba(255,122,41,0.10), transparent 55%),
    radial-gradient(circle, rgba(3,19,52,0.06) 1px, transparent 1px),
    linear-gradient(180deg, var(--navy-50) 0%, #ffffff 70%);
  background-size: auto, 22px 22px, auto;
  border-bottom: 1px solid var(--border);
}

.text-accent {
  color: var(--accent);
  position: relative;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero-copy .eyebrow { background: var(--navy-100); color: var(--navy-800); }
.hero-copy h1 { margin-bottom: 16px; }
.hero-copy .lede {
  font-size: 1.08rem;
  max-width: 52ch;
  margin-bottom: 26px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.trust-strip li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-800);
}
.trust-strip svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

.hero-visual { display: flex; justify-content: center; }
.hero-visual svg { width: 100%; max-width: 440px; height: auto; overflow: visible; }

/* Sliding vehicle marker following the tracked route, nose pointed forward */
.route-marker {
  offset-path: path('M40 260 C 90 225, 95 295, 140 250 S 195 140, 190 110');
  offset-rotate: auto;
  transform-box: fill-box;
  transform-origin: center;
  animation: drive-route 4.5s linear infinite;
}
@keyframes drive-route {
  from { offset-distance: 0%; }
  to { offset-distance: 100%; }
}

/* Radar pulses expanding from the destination pin */
.radar-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: radar-pulse 3.6s ease-out infinite;
}
.radar-ring--2 { animation-delay: 1.2s; }
.radar-ring--3 { animation-delay: 2.4s; }
@keyframes radar-pulse {
  0% { transform: scale(0.4); opacity: 0.7; }
  100% { transform: scale(3.4); opacity: 0; }
}

/* Gentle floating bob for the phone mockup and status pill */
.float-phone, .float-pill {
  transform-box: fill-box;
  transform-origin: center;
  animation: float-bob 4.8s ease-in-out infinite;
}
.float-pill { animation-duration: 4.2s; animation-delay: 0.4s; }
@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Soft blinking "live" indicator dots */
.pulse-dot {
  transform-box: fill-box;
  transform-origin: center;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* Radar sweep inside the phone screen */
.radar-sweep {
  transform-origin: 75px 90px;
  animation: radar-sweep 3s linear infinite;
}
@keyframes radar-sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 320px; margin: 0 auto; }
}

/* ---------- Includes strip ---------- */
.includes { padding: 40px 0; }
.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.includes-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.includes-item .icon-badge { flex-shrink: 0; }
.includes-item .includes-label { font-weight: 600; font-size: 0.92rem; color: var(--navy-900); }

@media (max-width: 760px) {
  .includes-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .includes-grid { grid-template-columns: 1fr; }
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy-900);
  color: #fff;
}
.icon-badge svg { width: 20px; height: 20px; }

/* ---------- Packages ---------- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}
.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.package-card.is-popular {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent), var(--shadow-md);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(255,122,41,0.5), var(--shadow-sm);
  animation: badge-glow 2.6s ease-in-out infinite;
}
@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,122,41,0.45), var(--shadow-sm); }
  50% { box-shadow: 0 0 0 6px rgba(255,122,41,0), var(--shadow-sm); }
}
.package-name { font-size: 1.08rem; margin-bottom: 6px; }
.package-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.package-price .cur { font-size: 1.1rem; font-weight: 600; color: var(--muted-light); }
.package-desc { font-size: 0.9rem; margin-bottom: 18px; min-height: 40px; }
.package-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
  flex-grow: 1;
}
.package-features li {
  display: flex;
  gap: 9px;
  font-size: 0.88rem;
  color: var(--navy-800);
  line-height: 1.4;
}
.package-features svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.package-ideal {
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 18px;
}
.package-ideal strong { color: var(--navy-800); }

.packages-foot {
  text-align: center;
  margin-top: 30px;
  font-size: 0.96rem;
  color: var(--muted);
}
.packages-foot a { color: var(--whatsapp-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 1080px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .packages-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA repeat band ---------- */
.cta-band {
  background: var(--navy-900);
  background-image: radial-gradient(circle at 15% 20%, rgba(255,122,41,0.18), transparent 45%);
  color: #fff;
  padding: 44px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 52ch; margin: 0 auto 24px; }
.cta-band .cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Who it's for ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.audience-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  text-align: left;
}
.audience-card .icon-badge { margin-bottom: 14px; background: var(--accent-light); color: var(--accent-dark); }
.audience-card h3 { font-size: 1rem; margin-bottom: 8px; }
.audience-card p { font-size: 0.88rem; margin: 0; }
.audience-card .rec {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy-800);
}

@media (max-width: 900px) {
  .audience-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .audience-grid { grid-template-columns: 1fr; }
}

/* ---------- Why choose ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-item {
  display: flex;
  gap: 14px;
  padding: 6px 0;
}
.why-item .icon-badge { background: var(--navy-900); }
.why-item h3 { font-size: 0.98rem; margin-bottom: 4px; }
.why-item p { font-size: 0.86rem; margin: 0; }

@media (max-width: 820px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 22px 22px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 14px;
}
.step h3 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: 0.88rem; margin: 0; }

@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; }
}

/* ---------- Renewals table ---------- */
.renewals-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.renewals-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.renewals-table caption { text-align: left; margin-bottom: 12px; color: var(--muted); font-size: 0.9rem; }
.renewals-table th, .renewals-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.96rem;
}
.renewals-table thead th {
  background: var(--navy-900);
  color: #fff;
  font-weight: 600;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.renewals-table tbody tr:not(:last-child) { border-bottom: 1px solid var(--border); }
.renewals-table tbody tr:nth-child(even) { background: var(--bg-alt); }
.renewals-table td.price { font-weight: 700; color: var(--navy-900); font-family: var(--font-display); text-align: right; }
.renewals-note { text-align: center; margin-top: 18px; font-size: 0.9rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-weight: 600;
  color: var(--navy-900);
  font-size: 0.98rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.2s ease;
}
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-answer { padding: 0 20px 20px; font-size: 0.92rem; color: var(--muted); }

/* ---------- Quote form + contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}
.quote-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.quote-card h2 { margin-bottom: 6px; }
.quote-card > p { margin-bottom: 22px; font-size: 0.94rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.86rem; font-weight: 600; color: var(--navy-800); }
.field .hint { font-size: 0.76rem; color: var(--muted-light); font-weight: 400; }
.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: #fff;
  outline: none;
}
.field input:invalid:not(:placeholder-shown) { border-color: #d64545; }
.field-error {
  font-size: 0.78rem;
  color: #c53030;
  min-height: 1em;
}
.form-submit { margin-top: 22px; }
.form-status {
  margin-top: 12px;
  font-size: 0.86rem;
  color: var(--navy-800);
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 26px;
}
.contact-card h3 { color: #fff; font-size: 1.02rem; margin-bottom: 16px; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.92rem;
}
.contact-line:first-of-type { border-top: none; }
.contact-line svg { width: 19px; height: 19px; color: var(--accent); flex-shrink: 0; }
.contact-line a { font-weight: 600; }
.contact-line a:hover { color: var(--accent); }

.locations-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.locations-card h3 { margin-bottom: 14px; font-size: 1.02rem; }
.locations-card ul { display: flex; flex-direction: column; gap: 10px; }
.locations-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--navy-800);
  font-size: 0.92rem;
}
.locations-card svg { width: 18px; height: 18px; color: var(--accent); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.72);
  padding: 50px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 34px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 34px; width: 34px; object-fit: contain; }
.footer-brand span { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.05rem; }
.footer-col h4 { color: #fff; font-size: 0.9rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.04em; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; }
.footer-col a:hover { color: #fff; }
.footer-tagline { max-width: 40ch; font-size: 0.9rem; margin-bottom: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Sticky WhatsApp (desktop) ---------- */
.fab-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #fff;
  padding: 14px 20px 14px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  font-weight: 700;
  font-size: 0.92rem;
}
.fab-whatsapp:hover { background: var(--whatsapp-dark); }
.fab-whatsapp svg { width: 24px; height: 24px; }

@media (max-width: 700px) {
  .fab-whatsapp { display: none; }
}

/* ---------- Sticky mobile bottom bar ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 450;
  height: var(--mobile-bar-h);
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 20px rgba(3,19,52,0.12);
}
.mobile-bar .row { display: grid; grid-template-columns: 1fr 1fr; height: 100%; }
.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.94rem;
}
.mobile-bar a svg { width: 20px; height: 20px; }
.mobile-bar .call { background: var(--navy-900); color: #fff; }
.mobile-bar .wa { background: var(--whatsapp); color: #fff; }

@media (max-width: 700px) {
  .mobile-bar { display: block; }
}

/* ---------- Hero visual bits (used by inline SVG) ---------- */
.visual-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 18px;
}

/* ---------- Utility ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.lazy-fade { opacity: 1; }

/* Scroll reveal — only active with JS (see .js on <html>); no-JS visitors see content normally */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
