:root {
  --bg: #0a0a0a;
  --bg-elev: #131313;
  --bg-card: #181818;
  --line: #262626;
  --line-strong: #383838;
  --text: #fafafa;
  --text-dim: #a3a3a3;
  --text-muted: #737373;
  --accent: #b91c1c;
  --accent-bright: #dc2626;
  --accent-deep: #7f1414;
  --whatsapp: #25D366;
  --whatsapp-hover: #1ea952;
  --font-display: 'Anton', 'Impact', sans-serif;
  --font-heading: 'Archivo', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle film grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ============= FLOATING WHATSAPP ============= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: var(--whatsapp);
  color: white;
  padding: 16px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s;
  animation: pulse-ring 2.4s infinite;
}
.whatsapp-float:hover { background: var(--whatsapp-hover); transform: scale(1.06) translateY(-2px); }
.whatsapp-float svg { width: 22px; height: 22px; flex-shrink: 0; }

@keyframes pulse-ring {
  0% { box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45), 0 0 0 24px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============= HEADER ============= */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.85; }
.logo img {
  height: 46px;
  width: auto;
  display: block;
}
.footer-brand .logo img { height: 64px; }
nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
}
nav a.nav-link {
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
nav a.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s;
}
nav a.nav-link:hover { color: var(--text); }
nav a.nav-link:hover::after { width: 100%; }

.nav-cta {
  background: var(--whatsapp);
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--whatsapp-hover); transform: translateY(-1px); }
.nav-cta svg { width: 16px; height: 16px; }

.nav-mobile-toggle { display: none; }

/* ============= HERO ============= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(220, 38, 38, 0.18), transparent 55%),
    radial-gradient(circle at 85% 75%, rgba(220, 38, 38, 0.10), transparent 55%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at center, black 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at center, black 25%, transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 28px;
  animation: fade-up 0.8s 0.1s both;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: blink 1.6s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(58px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: 0px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fade-up 0.9s 0.2s both;
}
.hero h1 .red { color: var(--accent); }
.hero h1 .stroke {
  -webkit-text-stroke: 2px var(--text);
  color: transparent;
}

.hero p.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.6;
  animation: fade-up 0.9s 0.35s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fade-up 0.9s 0.5s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease, box-shadow 0.25s, background 0.2s, border-color 0.2s;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}
.btn-primary:hover { background: var(--whatsapp-hover); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5); }
.btn-ghost {
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn svg { width: 18px; height: 18px; }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  animation: fade-up 0.9s 0.65s both;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--text);
  line-height: 1;
}
.hero-stat .num .red { color: var(--accent); }
.hero-stat .label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 8px;
}

/* Hero side / car visual */
.hero-visual {
  position: relative;
  animation: fade-up 1s 0.4s both;
}
.hero-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-elev) 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 80%; height: 200%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.12), transparent 70%);
  pointer-events: none;
}
.hero-card-label {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 14px;
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.hero-card-desc {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 22px;
  position: relative;
}
.hero-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.hero-card-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.hero-card-list .ico {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--accent);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
}

/* Decorative chip behind */
.hero-chip {
  position: absolute;
  top: -22px; left: -22px;
  background: var(--accent);
  color: white;
  font-family: var(--font-display);
  letter-spacing: 1.5px;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  transform: rotate(-6deg);
  z-index: 3;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============= SECTION ============= */
section {
  padding: 120px 0;
  position: relative;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.section-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--accent);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.section-title .red { color: var(--accent); }
.section-lead {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 680px;
  line-height: 1.7;
}
.section-head { margin-bottom: 64px; max-width: 800px; }

/* ============= ABOUT / WHAT WE DO ============= */
.about {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(220,38,38,0.12), transparent 50%),
    linear-gradient(180deg, var(--bg-card), var(--bg-elev));
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.about-emblem {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
  width: 100%;
}
.about-emblem .about-logo {
  max-width: 80%;
  width: 360px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 10px 40px rgba(185, 28, 28, 0.25));
}
.about-emblem .tag {
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.about-corner {
  position: absolute;
  width: 24px; height: 24px;
  border: 2px solid var(--accent);
}
.about-corner.tl { top: 16px; left: 16px; border-right: none; border-bottom: none; }
.about-corner.tr { top: 16px; right: 16px; border-left: none; border-bottom: none; }
.about-corner.bl { bottom: 16px; left: 16px; border-right: none; border-top: none; }
.about-corner.br { bottom: 16px; right: 16px; border-left: none; border-top: none; }

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.about-content p {
  color: var(--text-dim);
  margin-bottom: 18px;
  line-height: 1.75;
}
.about-points {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.about-points li:hover { border-color: var(--accent); transform: translateX(4px); }
.about-points .check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: grid;
  place-items: center;
}
.about-points .check svg { width: 14px; height: 14px; }
.about-points strong { color: var(--text); display: block; margin-bottom: 2px; }
.about-points span { color: var(--text-dim); font-size: 14px; }

/* ============= SERVICES ============= */
.services { background: var(--bg); }
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 40px;
  flex-wrap: wrap;
}
.services-head .left { flex: 1; min-width: 320px; }
.services-head .right {
  max-width: 380px;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.service-card {
  padding: 36px 28px;
  background: var(--bg-elev);
  transition: background 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  cursor: default;
  min-height: 320px;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.35s ease;
}
.service-card:hover { background: var(--bg-card); }
.service-card:hover::before { width: 100%; }
.service-card:hover .service-icon { background: var(--accent); color: white; border-color: var(--accent); transform: rotate(-6deg); }
.service-card:hover .service-num { color: var(--accent); }

.service-num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--text-muted);
  transition: color 0.3s;
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--accent);
  transition: all 0.35s ease;
  margin-bottom: 4px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-name {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text);
}
.service-desc {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.65;
  flex-grow: 1;
}
.service-bens {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  padding-top: 16px;
  border-top: 1px dashed var(--line-strong);
  line-height: 1.55;
}
.service-bens b { color: var(--text); font-weight: 700; }

/* ============= DIFFERENTIALS ============= */
.why {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
  border-top: 1px solid var(--line);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-card {
  padding: 36px 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-card);
  transition: all 0.3s ease;
  position: relative;
}
.why-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(220, 38, 38, 0.3);
}
.why-num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 18px;
  display: block;
}
.why-title {
  font-family: var(--font-display);
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  line-height: 1.05;
}
.why-desc {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ============= LOCATION ============= */
.location { border-top: 1px solid var(--line); background: var(--bg); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: stretch;
}
.location-info h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.location-info > p {
  color: var(--text-dim);
  margin-bottom: 36px;
  line-height: 1.7;
}
.location-blocks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.location-block {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color 0.2s;
  background: var(--bg-elev);
}
.location-block:hover { border-color: var(--accent); }
.location-block .ico {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--accent);
  color: white;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.location-block .ico svg { width: 20px; height: 20px; }
.location-block .label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.location-block .value {
  font-size: 16px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.4;
}
.location-block a.value { color: var(--text); }
.location-block a.value:hover { color: var(--accent); }

.location-map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 480px;
  position: relative;
  background: var(--bg-card);
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.5) brightness(0.92);
  min-height: 480px;
}

/* ============= FINAL CTA ============= */
.cta-final {
  border-top: 1px solid var(--line);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(220, 38, 38, 0.18), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(37, 211, 102, 0.08), transparent 50%);
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.cta-inner h2 .red { color: var(--accent); }
.cta-inner p {
  color: var(--text-dim);
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.cta-final .btn { padding: 20px 32px; font-size: 17px; }

/* ============= FOOTER ============= */
footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 28px;
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: var(--text-dim);
  font-size: 14px;
  margin-top: 18px;
  line-height: 1.65;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li { color: var(--text-dim); font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--text-muted);
  font-size: 13px;
}
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-credit {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.footer-credit a {
  color: var(--text-dim);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  margin-left: 6px;
  transition: color 0.2s;
}
.footer-credit a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.footer-credit a:hover { color: var(--accent); }
.footer-credit a:hover::after { transform: scaleX(1); }

/* ============= SCROLL REVEAL ============= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============= RESPONSIVE ============= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { aspect-ratio: 16/9; max-height: 420px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  section { padding: 80px 0; }
  nav ul { display: none; }
  .nav-cta { padding: 9px 14px; font-size: 12px; }
  .logo img { height: 38px; }
  .footer-brand .logo img { height: 56px; }
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero-stats { gap: 18px; flex-wrap: wrap; }
  .hero-stat .num { font-size: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .whatsapp-float { padding: 14px 18px; font-size: 14px; }
  .whatsapp-float .label-long { display: none; }
  .container { padding: 0 18px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
