/* ================================================================
   DriveShield Marketing — Design v2 (Light Theme)
   © 2026 Ethio Digital Platforms PLC
================================================================ */

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --white:      #ffffff;
  --bg-soft:    #f8faff;
  --bg-blue:    #edf1ff;
  --navy:       #0c1b2e;
  --navy-mid:   #1e3a5f;
  --blue:       #1b4fff;
  --blue-dark:  #1238c0;
  --ink:        #334155;
  --muted:      #64748b;
  --border:     #e2e8f0;
  --plan-dark:  #0f2566;
  --teal:       #0b8a79;
  --shadow-sm:  0 2px 8px rgba(12,27,46,.07);
  --shadow-md:  0 8px 32px rgba(12,27,46,.10);
  --shadow-lg:  0 24px 64px rgba(12,27,46,.13);
  --radius:     14px;
  --radius-sm:  8px;
  --radius-lg:  22px;
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
body[data-lang="am"] {
  font-family: "Noto Sans Ethiopic", "Manrope", system-ui, sans-serif;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  margin: 0;
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 800; }
h3 { font-size: clamp(1rem, 1.8vw, 1.2rem); font-weight: 700; }
p  { margin: 0; }

.section-kicker {
  display: block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: .6rem;
}
.section-copy {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.78;
  max-width: 58ch;
}
.section-note {
  color: var(--muted);
  font-size: .9rem;
  margin-top: .75rem;
}

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
}
.section { padding: 6rem 0; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .82rem 1.55rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 24px rgba(27,79,255,.28);
}
.button-primary:hover, .button-primary:focus-visible {
  background: var(--blue-dark);
  box-shadow: 0 10px 32px rgba(27,79,255,.4);
}
.button-secondary {
  background: var(--white);
  color: var(--navy-mid);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.button-secondary:hover, .button-secondary:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}
.button-compact {
  padding: .65rem 1.15rem;
  font-size: .88rem;
}
.button-white-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
}
.button-white-outline:hover, .button-white-outline:focus-visible {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}
.button-white-fill {
  background: #fff;
  color: var(--navy);
}
.button-white-fill:hover, .button-white-fill:focus-visible { background: #e8f0ff; }

/* ─── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 18px rgba(12,27,46,.06);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .95rem 0;
  gap: 1rem;
}
.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  flex-shrink: 0;
}
.brand-logo {
  width: clamp(130px, 16vw, 185px);
  height: auto;
}
.brand-sub {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.nav-links {
  display: flex;
  gap: 1.3rem;
  align-items: center;
}
.nav-links a {
  color: var(--navy-mid);
  font-weight: 600;
  font-size: .92rem;
  transition: color .15s;
}
.nav-links a:hover { color: var(--blue); }
.header-cta-group {
  display: flex;
  gap: .55rem;
  align-items: center;
}

/* ─── LANG TOGGLE ────────────────────────────────────────────── */
.lang-toggle { position: relative; display: inline-flex; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  font-size: .82rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--navy-mid);
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .15s, color .15s;
  white-space: nowrap;
}
.lang-btn:hover { border-color: var(--blue); color: var(--blue); }
.lang-globe { width: 14px; height: 14px; opacity: .55; }
.lang-chevron { width: 12px; height: 12px; transition: transform .2s; }
.lang-toggle.open .lang-btn .lang-chevron { transform: rotate(180deg); }
.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 162px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  z-index: 1000;
  overflow: hidden;
}
@keyframes langFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lang-toggle.open .lang-menu { display: block; animation: langFadeIn .15s ease; }
.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  font-size: .86rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--navy-mid);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  transition: background .12s;
}
.lang-option:hover { background: var(--bg-soft); }
.lang-option.is-active { color: var(--blue); font-weight: 700; background: #eef2ff; }
.lang-option > span:first-child { font-weight: 800; min-width: 22px; }
.lang-check { margin-left: auto; width: 13px; height: 13px; color: var(--blue); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  padding: 5.5rem 0 4rem;
  background: linear-gradient(160deg, #f6f9ff 0%, #edf2ff 45%, #f0f5ff 100%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  width: 550px; height: 550px;
  right: -100px; top: -150px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(27,79,255,.07), transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-content { padding: 1.5rem 0; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(27,79,255,.08);
  border: 1px solid rgba(27,79,255,.18);
  color: var(--blue);
  font-size: .8rem;
  font-weight: 700;
  padding: .38rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.35rem;
}
.hero-title { margin-top: .4rem; margin-bottom: .9rem; }
.hero-em { color: var(--blue); font-style: normal; }
.hero-desc {
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.76;
  max-width: 52ch;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
.hero-note { font-size: .86rem; color: var(--muted); }
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.hero-phone-wrap {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 55px rgba(12,27,46,.2));
}
.hero-phone-svg {
  width: clamp(195px, 26vw, 285px);
  height: auto;
}
.hero-car-wrap { width: 100%; max-width: 520px; margin-top: -.5rem; }
.hero-car-svg { width: 100%; height: auto; }

/* ─── FEATURES SECTION ───────────────────────────────────────── */
.features-section { padding: 6rem 0; background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.features-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #1a3356 0%, #0c1b2e 55%, #112040 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-img-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
  font-size: .76rem;
  font-weight: 700;
  padding: .38rem .9rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.features-body { display: flex; flex-direction: column; gap: 1.25rem; }
.features-body .section-copy { max-width: 48ch; }
.features-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  font-weight: 600;
  color: var(--navy);
  font-size: .97rem;
  line-height: 1.45;
}
.feat-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.feat-check svg { color: #fff; }

/* ─── PLANS SECTION ──────────────────────────────────────────── */
.plans-section { padding: 6rem 0; background: var(--bg-soft); }
.plans-header { text-align: center; margin-bottom: 3rem; }
.plans-header h2 { margin-bottom: .65rem; }
.plans-header .section-copy { margin: .65rem auto 0; text-align: center; }
.plans-header .section-note { text-align: center; }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.plan-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.plan-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.plan-card-featured {
  background: var(--plan-dark);
  border-color: var(--plan-dark);
  position: relative;
  box-shadow: 0 14px 48px rgba(15,37,102,.32);
}
.plan-card-featured:hover { box-shadow: 0 20px 60px rgba(15,37,102,.42); transform: translateY(-3px); }
.plan-card-featured h3 { color: #fff; }
.plan-card-featured .plan-tag { color: rgba(255,255,255,.7); }
.plan-card-featured .plan-summary { color: rgba(255,255,255,.75); }
.plan-card-featured .price-block strong { color: #fff; }
.plan-card-featured .plan-upfront,
.plan-card-featured .plan-monthly { color: rgba(255,255,255,.58); }
.plan-card-featured ul { border-top-color: rgba(255,255,255,.15); }
.plan-card-featured li { color: rgba(255,255,255,.88); }
.plan-tag {
  font-size: .76rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.plan-badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: .26rem .82rem;
  border-radius: 999px;
  letter-spacing: .04em;
  align-self: flex-start;
}
.plan-card h3 { font-size: 1.45rem; margin-top: .1rem; }
.price-block { display: flex; align-items: baseline; gap: .35rem; }
.price-block strong {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
}
.plan-upfront, .plan-monthly { font-size: .78rem; color: var(--muted); font-weight: 600; }
.price-subscription .price-block strong { font-size: 1.2rem; }
.price-subscription { margin-top: -.4rem; }
.plan-summary { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.plan-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .48rem;
  border-top: 1.5px solid var(--border);
  padding-top: .9rem;
  flex: 1;
}
.plan-card li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .88rem;
  color: var(--ink);
  line-height: 1.45;
}
.plan-card li::before {
  content: "";
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='8' fill='%231b4fff'/%3E%3Cpath d='M5 8.5l2 2 4-4' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.plan-card-featured li::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='8' fill='rgba(255%2C255%2C255%2C.22)'/%3E%3Cpath d='M5 8.5l2 2 4-4' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.plan-button { width: 100%; margin-top: .5rem; border-radius: var(--radius-sm); }
.plan-card-featured .button-secondary {
  color: #fff;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.32);
}
.plan-card-featured .button-secondary:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.55);
}
.plans-compatibility { text-align: center; margin-top: 1.75rem; font-size: .86rem; color: var(--muted); }

/* ─── WHY SECTION ────────────────────────────────────────────── */
.why-section { padding: 6rem 0; background: var(--white); text-align: center; }
.why-section .section-kicker { display: block; }
.why-section h2 { margin-bottom: 3rem; }
.why-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; text-align: center; }
.why-pillar { display: flex; flex-direction: column; align-items: center; gap: .85rem; }
.wp-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(27,79,255,.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.why-pillar h3 { font-size: 1.06rem; }
.why-pillar p { color: var(--muted); font-size: .94rem; line-height: 1.65; max-width: 30ch; margin: 0 auto; }
.why-note { margin-top: 2.5rem; font-size: .9rem; color: var(--muted); text-align: center; }

/* ─── PRIORITY SECTION ───────────────────────────────────────── */
.priority-section { padding: 6rem 0; background: var(--bg-soft); }
.priority-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.priority-content { display: flex; flex-direction: column; gap: 1.1rem; }
.priority-content h2 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); }
.priority-content .section-copy { max-width: 50ch; }
.priority-list {
  list-style: none;
  margin: .25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.priority-list li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-weight: 600;
  color: var(--navy);
  font-size: .96rem;
  line-height: 1.5;
}
.priority-list .feat-check { flex-shrink: 0; margin-top: 2px; }
.priority-visual { display: flex; justify-content: center; align-items: center; }
.priority-phone-svg {
  width: clamp(195px, 25vw, 275px);
  height: auto;
  filter: drop-shadow(0 18px 52px rgba(12,27,46,.22));
}

/* ─── CONTACT SECTION ────────────────────────────────────────── */
.contact-section { padding: 6rem 0; background: var(--white); }
.contact-shell { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 500px;
  background: linear-gradient(165deg, #1a3356 0%, #0c1b2e 60%, #162852 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.contact-photo-silhouette {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .14;
}
.contact-photo-badge {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
.contact-photo-badge strong { display: block; font-size: .95rem; color: #fff; margin-bottom: .25rem; }
.contact-photo-badge span { font-size: .82rem; opacity: .75; }
.contact-photo-note {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-top: .75rem;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.contact-form-card {
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}
.contact-form-card h2 { font-size: clamp(1.45rem, 2.4vw, 1.9rem); margin-bottom: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-bottom: .9rem; }
label { display: flex; flex-direction: column; gap: .32rem; }
label > span, .message-field > span { font-size: .82rem; font-weight: 700; color: var(--navy); }
input[type="text"], input[type="tel"], select, textarea {
  padding: .7rem .95rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy);
  font-size: .93rem;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,79,255,.11);
}
.message-field { display: flex; flex-direction: column; gap: .32rem; margin-bottom: .9rem; }
textarea { resize: vertical; min-height: 88px; }
.form-button { width: 100%; padding: .95rem; font-size: 1rem; border-radius: var(--radius-sm); cursor: pointer; }
.form-status { font-size: .83rem; color: var(--muted); margin-top: .85rem; text-align: center; line-height: 1.55; }
.form-status.is-success { color: var(--teal); }
.form-status.is-error { color: #c0392b; }
.contact-reassurance { font-size: .8rem; color: var(--muted); margin-top: .4rem; }

/* ─── FAQ SECTION ────────────────────────────────────────────── */
.faq-section { padding: 6rem 0; background: var(--bg-blue); }
.faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4.5rem; align-items: start; }
.faq-heading { position: sticky; top: 6rem; }
.faq-heading h2 { font-size: clamp(2rem, 3.2vw, 2.8rem); }
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 1.1rem 1.3rem;
  font-weight: 700;
  color: var(--navy);
  font-size: .97rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 20px; height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%231b4fff' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 1.3rem 1.1rem; color: var(--muted); font-size: .93rem; line-height: 1.66; }

/* ─── CTA BANNER ─────────────────────────────────────────────── */
.cta-section { padding: 5.5rem 0; background: var(--navy); }
.cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.cta-inner .section-kicker { color: rgba(255,255,255,.5); }
.cta-inner h2 { color: #fff; max-width: 22ch; font-size: clamp(1.8rem, 3vw, 2.75rem); }
.cta-inner > p { color: rgba(255,255,255,.68); max-width: 48ch; font-size: 1.04rem; line-height: 1.7; }
.cta-actions { display: flex; gap: .85rem; flex-wrap: wrap; justify-content: center; margin-top: .6rem; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer { background: var(--white); border-top: 1.5px solid var(--border); padding: 3.5rem 0 2rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand-block { display: flex; flex-direction: column; gap: .7rem; }
.footer-brand-logo { width: 140px; height: auto; }
.footer-brand-name { font-size: .78rem; font-weight: 700; color: var(--muted); }
.footer-tagline { font-size: .88rem; color: var(--muted); line-height: 1.62; max-width: 32ch; }
.footer-col h4 {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy);
  margin-bottom: .85rem;
  font-weight: 800;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { font-size: .9rem; color: var(--muted); transition: color .15s; }
.footer-col a:hover { color: var(--blue); }
.footer-contact-list { display: flex; flex-direction: column; gap: .55rem; }
.footer-contact-list a { display: flex; align-items: flex-start; gap: .45rem; font-size: .87rem; color: var(--muted); }
.footer-contact-list a:hover { color: var(--blue); }
.footer-contact-list svg { flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  padding-top: 1.75rem;
}
.footer-copy { font-size: .82rem; color: var(--muted); }
.footer-social { display: flex; gap: .85rem; align-items: center; }
.footer-social a { color: var(--muted); display: flex; align-items: center; transition: color .15s; }
.footer-social a:hover { color: var(--blue); }

/* ─── REVEAL ANIMATIONS ──────────────────────────────────────── */
.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .55s cubic-bezier(.22,.68,0,1.1),
    transform .55s cubic-bezier(.22,.68,0,1.1);
  transition-delay: var(--reveal-delay, 0ms);
}
.motion-ready [data-reveal].is-visible { opacity: 1; transform: none; }

/* ─── GPS PULSE ──────────────────────────────────────────────── */
@keyframes gpsPulse {
  0%   { opacity: .65; transform: scale(1); }
  70%  { opacity: 0;   transform: scale(1.9); }
  100% { opacity: 0;   transform: scale(2.1); }
}
.gps-pulse-1 { animation: gpsPulse 2.4s ease-out infinite; }
.gps-pulse-2 { animation: gpsPulse 2.4s ease-out .6s infinite; }
.gps-pulse-3 { animation: gpsPulse 2.4s ease-out 1.2s infinite; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero-grid, .features-grid, .priority-grid, .contact-shell { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .hero-car-wrap { max-width: 360px; margin: 0 auto; }
  .hero-phone-wrap { margin: 0 auto; }
  .plans-grid { grid-template-columns: 1fr; max-width: 430px; margin: 0 auto; }
  .why-pillars { grid-template-columns: 1fr; max-width: 430px; margin: 0 auto; }
  .faq-grid { grid-template-columns: 1fr; gap: 2rem; }
  .faq-heading { position: static; }
  .nav-links { display: none; }
  .hero { padding: 4rem 0 3rem; }
  .section, .features-section, .plans-section, .priority-section, .contact-section, .faq-section { padding: 4rem 0; }
  .contact-photo { min-height: 280px; }
}
@media (max-width: 600px) {
  .header-cta-group .button-compact:first-child { display: none; }
  .hero-actions { flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .why-section { text-align: left; }
  .why-pillar { align-items: flex-start; }
  .why-pillar p { margin: 0; }
}
