:root {
  --navy: #0B1F3A;
  --navy-mid: #142947;
  --navy-light: #1e3a5f;
  --gold: #B8965A;
  --gold-light: #D4AF7A;
  --gold-pale: #f0e4cc;
  --cream: #F8F4EE;
  --white: #ffffff;
  --text-dark: #0B1F3A;
  --text-mid: #3a4d62;
  --text-light: #7a8fa6;
  --border: rgba(184,150,90,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 60px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
}

header.scrolled {
  background: rgba(11,31,58,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
  height: 68px;
}

.logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 42px;
  width: auto;
  filter: brightness(1.1);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}

.logo-text .tagline {
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

nav a:hover { color: var(--gold-light); }
nav a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 600 !important;
  transition: background 0.3s ease, transform 0.2s ease !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(184,150,90,0.08) 0%, transparent 70%),
    linear-gradient(135deg, transparent 40%, rgba(184,150,90,0.04) 100%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-lines::before {
  content: '';
  position: absolute;
  top: -100px; right: 120px;
  width: 1px; height: 140%;
  background: linear-gradient(to bottom, transparent, rgba(184,150,90,0.3), transparent);
  animation: lineSlide 8s ease-in-out infinite alternate;
}

.hero-lines::after {
  content: '';
  position: absolute;
  top: -100px; right: 280px;
  width: 1px; height: 140%;
  background: linear-gradient(to bottom, transparent, rgba(184,150,90,0.12), transparent);
  animation: lineSlide 10s ease-in-out infinite alternate-reverse;
}

@keyframes lineSlide {
  from { transform: translateY(-5%); }
  to   { transform: translateY(5%); }
}

.hero-geo {
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  border: 1px solid rgba(184,150,90,0.12);
  border-radius: 50%;
  animation: geoSpin 40s linear infinite;
}

.hero-geo::before {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(184,150,90,0.08);
  border-radius: 50%;
}

@keyframes geoSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
}

.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 48px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}

.btn-primary-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  padding: 16px 36px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-primary-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(184,150,90,0.4);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 15px 36px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 2px;
  transition: border-color 0.3s, color 0.3s;
}

.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.hero-stats {
  position: absolute;
  bottom: 60px; right: 60px;
  z-index: 2;
  display: flex;
  gap: 48px;
  animation: fadeUp 0.8s 0.6s ease both;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
  display: block;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   SECTION BASE
══════════════════════════════════════ */
.section {
  padding: 120px 60px;
}

.container-md {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 100px;
  align-items: center;
}

.about-text {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-top: 28px;
}

.about-text p + p { margin-top: 20px; }

.about-checklist {
  list-style: none;
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
}

.about-checklist li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.about-card {
  background: var(--navy);
  border-radius: 4px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.about-card::after {
  content: '"';
  position: absolute;
  bottom: -30px; right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16rem;
  line-height: 1;
  color: rgba(184,150,90,0.06);
  pointer-events: none;
}

.about-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.about-since {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}

.about-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.about-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 32px;
}

.btn-gold-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  padding: 13px 30px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: 2px;
  transition: background 0.3s, color 0.3s;
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

/* MVV Cards */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 80px;
  border: 1px solid var(--border);
}

.mvv-card {
  background: var(--cream);
  padding: 56px 48px;
  position: relative;
  transition: background 0.3s;
}

.mvv-card:hover { background: #f3ede3; }

.mvv-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.mvv-icon i { color: var(--gold); font-size: 1.1rem; }

.mvv-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
}

.mvv-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services { background: var(--navy); }

.services .section-title { color: var(--white); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
}

.services-desc {
  max-width: 400px;
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}

.service-card {
  background: var(--navy);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.service-card:hover { background: var(--navy-mid); }
.service-card:hover::before { width: 100%; }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(184,150,90,0.15);
  line-height: 1;
  margin-bottom: 28px;
  display: block;
}

.service-icon {
  width: 48px; height: 48px;
  background: rgba(184,150,90,0.1);
  border: 1px solid rgba(184,150,90,0.25);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s, border-color 0.3s;
}

.service-card:hover .service-icon {
  background: rgba(184,150,90,0.2);
  border-color: var(--gold);
}

.service-icon i { color: var(--gold); font-size: 1rem; }

.service-card h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
}

.service-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

/* Sectores especializados */
.sectors-card {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border: 1px solid rgba(184,150,90,0.2);
  border-radius: 4px;
  padding: 56px 60px;
  margin-top: 1px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.sectors-icons {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.sector-circle {
  width: 64px; height: 64px;
  background: rgba(184,150,90,0.12);
  border: 1px solid rgba(184,150,90,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sector-circle i { color: var(--gold-light); font-size: 1.2rem; }

.sectors-text h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.sectors-text p {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.sectors-text strong { color: var(--gold-light); font-weight: 500; }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(11,31,58,0.1);
  border: 1px solid rgba(11,31,58,0.1);
  margin-top: 72px;
}

.contact-item {
  background: var(--cream);
  padding: 52px 40px;
  transition: background 0.3s;
}

.contact-item:hover { background: #f0e9dc; }

.contact-item-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.contact-item-icon i { color: var(--gold); font-size: 1rem; }

.contact-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-item p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
}

.contact-item a {
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover { color: var(--gold); }

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: #25D366;
  color: white !important;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: background 0.2s, transform 0.2s;
}

.whatsapp-link:hover { background: #1ebe5b; transform: translateY(-1px); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-link {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold) !important;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
}

.social-link:hover { background: var(--gold); color: var(--navy) !important; transform: translateY(-2px); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--navy);
  padding: 80px 60px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-top: 20px;
  max-width: 340px;
}

.footer-social { display: flex; gap: 12px; margin-top: 28px; }

.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-col h6 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.footer-links { list-style: none; }

.footer-links li + li { margin-top: 14px; }

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 300;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-contact-list { list-style: none; }

.footer-contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
}

.footer-contact-list li + li { margin-top: 16px; }

.footer-contact-list i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-list a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════ */
.fab-whatsapp {
  position: fixed;
  bottom: 40px; right: 40px;
  z-index: 9999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.fab-whatsapp:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 16px 48px rgba(37,211,102,0.5);
}

.scroll-top {
  position: fixed;
  bottom: 110px; right: 42px;
  z-index: 9999;
  width: 46px; height: 46px;
  background: var(--navy);
  border: 1px solid rgba(184,150,90,0.3);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
}

.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--gold); color: var(--navy); }

/* ══════════════════════════════════════
   DIVIDER
══════════════════════════════════════ */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 16px 0 40px;
}

.gold-divider span {
  width: 60px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.gold-divider em {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  font-style: normal;
}

/* ══════════════════════════════════════
   SCROLL ANIMATION
══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view { 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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .section { padding: 80px 40px; }
  header { padding: 0 40px; }
  .hero-content { padding: 0 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { right: 40px; gap: 32px; }
}

@media (max-width: 768px) {
  header { padding: 0 24px; }
  nav { display: none; }
  .section { padding: 70px 24px; }
  .hero-content { padding: 0 24px; }
  .hero h1 { font-size: 2.8rem; }
  .mvv-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .sectors-card { flex-direction: column; gap: 32px; padding: 40px 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  footer { padding: 60px 24px 32px; }
  .hero-stats { position: static; margin-top: 60px; justify-content: flex-start; }
  .services-header { flex-direction: column; gap: 20px; align-items: flex-start; }
  .fab-whatsapp { bottom: 24px; right: 24px; }
  .scroll-top { bottom: 96px; right: 27px; }
}