:root {
  --blue-900: #042C53;
  --blue-800: #0C447C;
  --blue-700: #185FA5;
  --blue-500: #378ADD;
  --blue-200: #85B7EB;
  --blue-100: #B5D4F4;
  --blue-50: #E6F1FB;
  --gray-900: #1a1a2e;
  --gray-800: #16213e;
  --gray-700: #0f3460;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --accent: #00A8E8;
  --accent-dark: #007bba;
  --text-dark: #0d1b2a;
  --text-muted: #4b5563;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(4, 44, 83, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: all 0.2s;
  cursor: pointer;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-cta {
  background: var(--whatsapp) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover { background: var(--whatsapp-dark) !important; }
.hamburger { display: none; cursor: pointer; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: white; margin: 5px 0; border-radius: 2px;
  transition: all 0.3s;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--gray-800) 40%, #0a1628 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 70px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,168,232,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(24,95,165,0.2) 0%, transparent 50%);
  z-index: 0;
}

/* VIDEO BACKGROUND */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  filter: blur(2px) brightness(0.5);
  transform: scale(1.04);
}
.hero-video.active { opacity: 1; }
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4, 44, 83, 0.75) 0%,
    rgba(10, 15, 30, 0.50) 60%,
    rgba(10, 15, 30, 0.35) 100%
  );
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

/* INDICADORES */
.hero-video-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.indicator.active {
  background: var(--accent, #00a8e8);
  transform: scale(1.3);
  border-color: var(--accent, #00a8e8);
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,168,232,0.15);
  border: 1px solid rgba(0,168,232,0.3);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-badge img { width: 14px; height: 14px; object-fit: contain; }
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.btn-wpp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-wpp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}
.btn-wpp svg { width: 22px; height: 22px; fill: white; flex-shrink: 0; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all 0.25s;
  cursor: pointer;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.stat-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.hero-main-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.hero-card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--blue-700));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
}
.hero-card-icon img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-title {
  font-family: 'Syne', sans-serif;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.hero-card-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.6;
}
.floating-badge {
  position: absolute;
  background: rgba(4,44,83,0.9);
  border: 1px solid rgba(0,168,232,0.3);
  border-radius: 10px;
  padding: 10px 16px;
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}
.floating-badge.b1 { top: -20px; right: -20px; animation-delay: 0s; }
.floating-badge.b2 { bottom: -20px; left: -20px; animation-delay: 1.5s; }
.floating-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--whatsapp); }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* SECTION STYLES */
section { padding: 5rem 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* SERVICES GRID */
.services-section { background: var(--gray-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--blue-700));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: var(--blue-200); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: var(--blue-50);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s;
  overflow: hidden;
}
.service-icon img { width: 100%; height: 100%; object-fit: cover; }
.service-card:hover .service-icon { background: var(--blue-700); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-dark); }
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--blue-700);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1rem;
  cursor: pointer;
  text-decoration: none;
}

/* DIFERENCIAIS */
.diff-section {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%);
  color: white;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.diff-item { display: flex; gap: 1rem; align-items: flex-start; }
.diff-icon {
  width: 56px; height: 56px;
  background: rgba(0,168,232,0.2);
  border: 1px solid rgba(0,168,232,0.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.diff-icon img { width: 100%; height: 100%; object-fit: cover; }
.diff-content h4 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.diff-content p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* CTA STRIP */
.cta-strip {
  background: linear-gradient(135deg, var(--accent) 0%, var(--blue-700) 100%);
  padding: 4rem 0;
  text-align: center;
}
.cta-strip h2 { color: white; font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 0.75rem; }
.cta-strip p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 2rem; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual { position: relative; }
.about-img-box {
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border-radius: 24px;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-img-box img { width: 100%; height: 100%; object-fit: cover; }
.about-stat-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--white);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  text-align: center;
  min-width: 130px;
}
.about-stat-float .num { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--blue-700); display: block; }
.about-stat-float .lbl { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.mvv-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 12px; padding: 1.25rem; }
.mvv-card .mvv-icon { width: 40px; height: 40px; margin-bottom: 0.5rem; overflow: hidden; border-radius: 8px; }
.mvv-card .mvv-icon img { width: 100%; height: 100%; object-fit: cover; }
.mvv-card h4 { font-size: 0.85rem; font-weight: 700; color: var(--blue-700); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.4rem; }
.mvv-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* SERVIÇO DETALHE */
.service-detail-hero {
  background: linear-gradient(135deg, var(--blue-900), var(--gray-800));
  color: white; padding: 8rem 0 4rem; text-align: center;
}
.service-detail-hero h1 { color: white; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.service-detail-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.service-detail-body { padding: 4rem 0; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.detail-card { background: var(--gray-50); border-radius: 16px; padding: 2rem; border: 1px solid var(--gray-200); }
.detail-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; color: var(--blue-800); display: flex; align-items: center; gap: 8px; }
.detail-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.detail-card ul li { font-size: 0.92rem; color: var(--text-muted); padding-left: 1.5rem; position: relative; line-height: 1.5; }
.detail-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 800; }

/* PORTFOLIO */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; margin-top: 3rem; }
.portfolio-card { background: var(--white); border-radius: 20px; overflow: hidden; border: 1px solid var(--gray-200); transition: all 0.3s; }
.portfolio-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.portfolio-img { height: 240px; background: var(--blue-50); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.portfolio-img img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-content { padding: 1.75rem; }
.portfolio-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.portfolio-content h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--text-dark); }
.portfolio-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.25rem; }
.portfolio-meta { display: flex; gap: 1rem; border-top: 1px solid var(--gray-100); padding-top: 1rem; }
.portfolio-meta span { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }

/* CONTATO */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; margin-top: 3rem; }
.contact-info-card { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 48px; height: 48px; background: var(--blue-50); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.contact-icon img { width: 100%; height: 100%; object-fit: cover; }
.contact-item h4 { font-size: 0.95rem; margin-bottom: 2px; color: var(--text-dark); }
.contact-item p { font-size: 0.9rem; color: var(--text-muted); }
.contact-form { background: var(--white); padding: 2.5rem; border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.05); border: 1px solid var(--gray-100); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.85rem 1rem; border-radius: 10px;
  border: 1.5px solid var(--gray-200); font-family: inherit; font-size: 0.95rem; transition: all 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent); background: var(--blue-50);
}
.btn-submit { width: 100%; background: var(--blue-700); color: white; border: none; padding: 1rem; border-radius: 10px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.3s; }
.btn-submit:hover { background: var(--blue-900); transform: translateY(-2px); }

/* FOOTER */
footer { background: var(--blue-900); color: white; padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 4rem; margin-bottom: 4rem; }
.footer-col h4 { font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--white); }
.footer-col p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; cursor: pointer; }
.footer-links a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 1rem; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-contact img { width: 16px; height: 16px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: center; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }

/* WPP FLOAT */
.wpp-float { position: fixed; bottom: 30px; right: 30px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.wpp-bubble { background: white; padding: 10px 16px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); font-size: 0.85rem; font-weight: 600; color: var(--text-dark); position: relative; animation: float 3s ease-in-out infinite; }
.wpp-bubble::after { content: ''; position: absolute; bottom: -8px; right: 20px; border-left: 8px solid transparent; border-right: 8px solid transparent; border-top: 8px solid white; }
.wpp-btn { width: 60px; height: 60px; background: var(--whatsapp); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(37,211,102,0.4); transition: all 0.3s; }
.wpp-btn:hover { transform: scale(1.1); background: var(--whatsapp-dark); }
.wpp-btn svg { width: 32px; height: 32px; fill: white; }

/* CLIENT LOGOS */
.client-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 3rem; }
.client-logo-box { background: var(--white); border: 1px solid var(--gray-200); padding: 1rem 1.5rem; border-radius: 12px; font-weight: 700; color: var(--blue-800); display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.client-logo-box img { width: 24px; height: 24px; object-fit: cover; border-radius: 4px; }

/* PAGE HERO (outras páginas) */
.page-hero {
  background: var(--blue-900);
  padding: 8rem 0 4rem;
  text-align: center;
}
.page-hero .section-label { color: var(--accent); }
.page-hero h1 { color: white; font-size: clamp(2rem,4vw,3rem); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 620px; margin: 0 auto; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner, .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-inner { padding: 0 1.5rem; }
}
@media (max-width: 768px) {
  .hero { padding-top: 100px; text-align: center; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { margin: 0 auto 2rem; }
  .hero-ctas { justify-content: center; }
  .hero-stats { grid-template-columns: 1fr; }
  .mvv-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
}
