/* =============================================
   MOTOBOYS — Segurança e Rapidez
   Brand: Bold industrial, speed-driven, dark & fiery
   Palette: #0F0F0F | #E8523A | #FF7A5C | #F5F0EC
   Fonts: Barlow Condensed + Syne
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Syne:wght@400;500;600;700;800&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #0F0F0F;
  --dark:     #181818;
  --surface:  #1E1E1E;
  --border:   #2A2A2A;
  --orange:   #E8523A;
  --orange-2: #FF7A5C;
  --orange-3: #FF9E89;
  --cream:    #F5F0EC;
  --white:    #FFFFFF;
  --muted:    #888888;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Syne', sans-serif;
  --radius:   12px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--orange); color: var(--white); }

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── UTILITIES ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 6px 14px;
  border: 1px solid var(--orange);
  border-radius: 100px;
  margin-bottom: 20px;
}
.tag::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.6); opacity: 0.5; }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--orange-2); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(232,82,58,0.4); }
.btn-primary:hover::before { opacity: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.section-title em { font-style: normal; color: var(--orange); }

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-top: 16px;
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 32px;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo-img { height: 44px; width: auto; }
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav__logo-text span { color: var(--orange); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { font-size: 14px; padding: 11px 24px; }

.nav__burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 1px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(232,82,58,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(232,82,58,0.06) 0%, transparent 60%),
    var(--black);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.25;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}
.hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--orange);
  border-radius: 1px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(60px, 8vw, 104px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero__title .line-orange { color: var(--orange); }
.hero__title .line-stroke {
  -webkit-text-stroke: 2px var(--cream);
  color: transparent;
}
.hero__desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 40px;
}
.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero__phone {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero__phone-icon {
  width: 44px; height: 44px;
  background: rgba(232,82,58,0.15);
  border: 1px solid rgba(232,82,58,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__phone-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.hero__phone-num { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--white); }

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,82,58,0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%       { transform: scale(1.1); opacity: 1; }
}

.hero__moto-svg {
  width: 100%;
  max-width: 560px;
  position: relative;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(232,82,58,0.25));
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.hero__speed-lines {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
}
.hero__speed-lines span {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange));
  border-radius: 1px;
  animation: speed-in 1.5s ease-in-out infinite;
}
.hero__speed-lines span:nth-child(1) { width: 120px; animation-delay: 0s; }
.hero__speed-lines span:nth-child(2) { width: 80px;  animation-delay: 0.2s; }
.hero__speed-lines span:nth-child(3) { width: 50px;  animation-delay: 0.4s; }
@keyframes speed-in {
  0%   { opacity: 0; transform: scaleX(0); transform-origin: right; }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: scaleX(1); transform-origin: right; }
}

/* Stats bar */
.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.hero__stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--orange);
}
.stat-item { flex: 1; }
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-num span { color: var(--orange); }
.stat-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ── MARQUEE ── */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee-run 20s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-item .dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.marquee-item.highlight { color: var(--orange); }
@keyframes marquee-run {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SERVICES ── */
.services {
  padding: 120px 0;
  position: relative;
}
.services__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--surface);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { background: #232323; }
.service-card:hover::after { transform: scaleX(1); }
.service-card__num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-card__num { color: rgba(232,82,58,0.15); }
.service-card__icon {
  width: 56px; height: 56px;
  margin-bottom: 20px;
  color: var(--orange);
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--white);
}
.service-card__desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── HOW IT WORKS ── */
.how {
  padding: 120px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.how::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,82,58,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.how__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.how__steps { display: flex; flex-direction: column; gap: 0; }
.how__step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.how__step:last-child { border-bottom: none; }
.how__step:hover .how__step-num { background: var(--orange); color: var(--white); }
.how__step-num {
  width: 48px; height: 48px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--muted);
  flex-shrink: 0;
  transition: var(--transition);
}
.how__step-body {}
.how__step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.how__step-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

.how__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how__map-card {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.how__map-svg { width: 100%; border-radius: 8px; }
.how__eta {
  position: absolute;
  bottom: 32px; right: 32px;
  background: var(--orange);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 24px rgba(232,82,58,0.4);
}
.how__eta span { font-size: 28px; display: block; }

/* ── FEATURES ── */
.features {
  padding: 120px 0;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  gap: 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 0% 0%, rgba(232,82,58,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.feat-card:hover { border-color: rgba(232,82,58,0.3); transform: translateY(-4px); }
.feat-card:hover::before { opacity: 1; }
.feat-card--wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
}
.feat-icon {
  width: 56px; height: 56px;
  background: rgba(232,82,58,0.1);
  border: 1px solid rgba(232,82,58,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.feat-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.feat-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 120px 0;
  background: var(--surface);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.testi-card {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: var(--transition);
  position: relative;
}
.testi-card:hover { border-color: rgba(232,82,58,0.3); transform: translateY(-4px); }
.testi-quote {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: rgba(232,82,58,0.2);
  line-height: 0.7;
  margin-bottom: 16px;
}
.testi-text { font-size: 15px; color: var(--cream); line-height: 1.7; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--orange);
  flex-shrink: 0;
}
.testi-name { font-weight: 700; color: var(--white); font-size: 14px; }
.testi-role { font-size: 12px; color: var(--muted); margin-top: 2px; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-stars span { color: var(--orange); font-size: 14px; }

/* ── COVERAGE MAP ── */
.coverage {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.coverage__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.coverage__zones { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
.zone-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: var(--transition);
}
.zone-item:hover { border-color: rgba(232,82,58,0.3); }
.zone-name { font-weight: 600; font-size: 14px; color: var(--white); }
.zone-time { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--orange); }
.zone-bar { width: 100%; height: 3px; background: var(--border); border-radius: 2px; margin-top: 8px; position: relative; overflow: hidden; }
.zone-bar::after { content: ''; position: absolute; inset-y: 0; left: 0; background: var(--orange); border-radius: 2px; transition: width 1s ease; }

.coverage__map-container {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  padding: 24px;
}

/* ── CTA ── */
.cta {
  padding: 120px 0;
}
.cta__box {
  background: var(--orange);
  border-radius: 20px;
  padding: 80px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}
.cta__box::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta__box::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 200px;
  width: 300px; height: 300px;
  background: rgba(0,0,0,0.08);
  border-radius: 50%;
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--white);
  position: relative;
  z-index: 2;
}
.cta__sub { font-size: 16px; color: rgba(255,255,255,0.75); margin-top: 16px; position: relative; z-index: 2; }
.cta__actions { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 2; flex-shrink: 0; }
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--white);
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-cta-white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
.btn-cta-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0,0,0,0.2);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-cta-dark:hover { background: rgba(0,0,0,0.35); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer__brand .nav__logo { margin-bottom: 20px; }
.footer__brand p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer__col-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 14px; color: var(--muted); transition: var(--transition); }
.footer__links a:hover { color: var(--orange); }
.footer__social { display: flex; gap: 12px; margin-top: 24px; }
.footer__social a {
  width: 40px; height: 40px;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--transition);
}
.footer__social a:hover { border-color: var(--orange); color: var(--orange); background: rgba(232,82,58,0.1); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.footer__bottom p { font-size: 13px; color: var(--muted); }
.footer__bottom .heart { color: var(--orange); }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__eyebrow { justify-content: center; }
  .hero__desc { margin: 0 auto 40px; }
  .hero__actions { justify-content: center; }
  .hero__phone { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { display: none; }
  .how__inner { grid-template-columns: 1fr; }
  .how__visual { display: none; }
  .coverage__inner { grid-template-columns: 1fr; }
  .coverage__map-container { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta__box { grid-template-columns: 1fr; text-align: center; }
  .cta__actions { flex-direction: row; justify-content: center; }
}
@media (max-width: 768px) {
  .services__header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .services__grid { grid-template-columns: 1fr; gap: 0; }
  .features__grid { grid-template-columns: 1fr; }
  .feat-card--wide { flex-direction: column; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 20px; }
  .cta__box { padding: 48px 32px; }
  .cta__actions { flex-direction: column; }
}

/* ── MOBILE NAV ── */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 80vw; max-width: 340px;
  height: 100vh;
  background: var(--dark);
  border-left: 1px solid var(--border);
  z-index: 2000;
  padding: 100px 40px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--orange); }
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

/* ── COUNTER ANIMATION ── */
.counter { display: inline; }