/* ============================================================
   FATUEX — Design Minimalista
   Paleta baseada na logo: azul-marinho + branco
   ============================================================ */

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

:root {
  /* Cores extraídas da logo */
  --navy:        #0d1b6e;
  --navy-mid:    #1a2d8a;
  --navy-light:  #2d45b0;
  --navy-tint:   #eef0fb;
  --navy-tint-2: #f4f5fd;

  /* Neutros */
  --white:       #ffffff;
  --off-white:   #f8f9fc;
  --bg:          #ffffff;
  --bg-section:  #f8f9fc;
  --border:      #e4e6ef;
  --border-dark: #c8ccdf;

  /* Texto */
  --text:        #0d1220;
  --text-muted:  #5a6080;
  --text-light:  #9098b8;

  /* Sombras */
  --shadow-sm:   0 1px 4px rgba(13, 27, 110, 0.06);
  --shadow:      0 4px 16px rgba(13, 27, 110, 0.08);
  --shadow-lg:   0 8px 32px rgba(13, 27, 110, 0.12);
  --shadow-xl:   0 16px 48px rgba(13, 27, 110, 0.14);

  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--navy-light); border-radius: 2px; }

/* ── Tipografia ── */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; color: var(--text); }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.25rem); }
p  { color: var(--text-muted); line-height: 1.8; }
a  { text-decoration: none; color: inherit; }

.navy-text { color: var(--navy); }

/* underline decorativo */
.u-line {
  position: relative;
  display: inline-block;
}
.u-line::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  opacity: 0.25;
}

/* ── Container ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Sections ── */
section { padding: 96px 0; }
.section-alt { background: var(--bg-section); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-tint);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
  border: 1px solid rgba(13,27,110,0.12);
}

.section-header {
  max-width: 640px;
  margin-bottom: 60px;
}
.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-header p { margin-top: 14px; font-size: 1.05rem; }

/* ── Divisor ── */
.divider {
  width: 40px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  margin: 20px 0;
  opacity: 0.7;
}
.center .divider { margin: 20px auto; }

/* ══════════════════════════════════════════════
   BOTÕES
══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(13,27,110,0.25);
}
.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13,27,110,0.30);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost {
  background: var(--navy-tint);
  color: var(--navy);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--navy-tint-2);
  border-color: var(--border-dark);
}

.btn-sm { padding: 9px 20px; font-size: 0.82rem; }

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(255,255,255,0);
  transition: all 0.35s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border), 0 4px 16px rgba(0,0,0,0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.nav-logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--navy); }

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--navy-mid) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* detalhe geométrico sutil */
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: var(--navy-tint);
  border-radius: 50%;
  opacity: 0.5;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -160px; left: -80px;
  width: 400px; height: 400px;
  background: var(--navy-tint-2);
  border-radius: 50%;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--navy);
  border-radius: 1px;
}

.hero h1 {
  margin-bottom: 20px;
  max-width: 540px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Visual lado direito */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-logo-display {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-display img {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 12px 32px rgba(13,27,110,0.15));
}

.hero-logo-ring {
  position: absolute;
  width: 320px; height: 320px;
  border: 1px solid var(--border);
  border-radius: 50%;
}
.hero-logo-ring-2 {
  position: absolute;
  width: 420px; height: 420px;
  border: 1px dashed var(--border);
  border-radius: 50%;
  animation: slowSpin 40s linear infinite;
}

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Badges flutuantes no hero */
.hero-badge-float {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.hero-badge-float .dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
}
.float-1 { top: 60px; right: -20px; }
.float-2 { bottom: 80px; left: -30px; }
.float-3 { top: 50%; right: -40px; transform: translateY(-50%); }

/* Stats do hero */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ══════════════════════════════════════════════
   SERVIÇOS
══════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 36px 28px;
  transition: all 0.25s ease;
  cursor: default;
}
.service-card:hover {
  background: var(--navy-tint-2);
}
.service-card:hover .service-icon { background: var(--navy); color: var(--white); }

.service-icon {
  width: 44px; height: 44px;
  background: var(--navy-tint);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 18px;
  transition: all 0.25s;
  color: var(--navy);
}

.service-card h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--text);
}
.service-card p {
  font-size: 0.84rem;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   MERCADO / PROPOSTA
══════════════════════════════════════════════ */
.market-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.market-text h2 { margin-bottom: 16px; }
.market-text p { margin-bottom: 14px; }

.market-quote {
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 3px solid var(--navy);
  background: var(--navy-tint-2);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.market-quote p {
  color: var(--text);
  font-size: 0.95rem;
  font-style: italic;
  margin: 0;
  line-height: 1.7;
}

/* cards do lado visual */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.feature-item:hover {
  border-color: var(--border-dark);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.feature-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.05em;
  background: var(--navy-tint);
  padding: 4px 9px;
  border-radius: 5px;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-item h4 {
  font-size: 0.9rem;
  margin-bottom: 3px;
}
.feature-item p { font-size: 0.82rem; margin: 0; }

/* ══════════════════════════════════════════════
   NÚMEROS
══════════════════════════════════════════════ */
.numbers-strip {
  background: var(--navy);
  padding: 64px 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}
.number-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--navy);
}
.number-item strong {
  display: block;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.number-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ══════════════════════════════════════════════
   METODOLOGIA
══════════════════════════════════════════════ */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.method-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  position: relative;
  transition: all 0.25s;
}
.method-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
}

.method-card-num {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  opacity: 0.06;
  line-height: 1;
}
.method-card h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.method-card p { font-size: 0.875rem; }

/* ══════════════════════════════════════════════
   DIFERENCIAIS
══════════════════════════════════════════════ */
.diff-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.diff-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.diff-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background 0.2s;
}
.diff-row:last-child { border-bottom: none; }
.diff-row:hover { background: var(--navy-tint-2); }

.diff-row-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: var(--navy-tint);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.diff-row h4 { font-size: 0.9rem; margin-bottom: 2px; }
.diff-row p  { font-size: 0.82rem; margin: 0; }

/* ══════════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════════ */
.cta-section {
  background: var(--navy);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--white);
  max-width: 620px;
  margin: 0 auto 18px;
}
.cta-section p {
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto 36px;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--navy-tint);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo-wrap img { height: 34px; width: auto; }
.footer-logo-wrap span {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.footer-brand p {
  font-size: 0.86rem;
  max-width: 270px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 34px; height: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.footer-col h5 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.86rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--navy); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.8rem;
  margin: 0;
  color: var(--text-light);
}

/* ══════════════════════════════════════════════
   PÁGINAS INTERNAS
══════════════════════════════════════════════ */
.page-hero {
  padding: 150px 0 72px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-hero .eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--navy);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p {
  max-width: 560px;
  font-size: 1.05rem;
}

/* Timeline */
.timeline { position: relative; max-width: 720px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--border) 100%);
}

.tl-item {
  padding-left: 36px;
  padding-bottom: 44px;
  position: relative;
}
.tl-item:last-child { padding-bottom: 0; }

.tl-dot {
  position: absolute;
  left: -5px;
  top: 4px;
  width: 12px; height: 12px;
  background: var(--navy);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px var(--navy-tint);
}

.tl-year {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tl-item h4 { font-size: 1rem; margin-bottom: 7px; }
.tl-item p { font-size: 0.875rem; }

/* Contato */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 { margin-bottom: 12px; }
.contact-info > p { margin-bottom: 36px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: none; }

.contact-icon {
  width: 38px; height: 38px; min-width: 38px;
  background: var(--navy-tint);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  color: var(--navy);
}
.contact-item-text label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 2px;
}
.contact-item-text strong { font-size: 0.9rem; color: var(--text); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 { margin-bottom: 6px; }
.contact-form-wrap > p { font-size: 0.875rem; margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 15px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(13,27,110,0.07);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: white; }

/* ══════════════════════════════════════════════
   ANIMAÇÕES
══════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-delay-1 { transition-delay: 0.08s; }
.fade-in-delay-2 { transition-delay: 0.16s; }
.fade-in-delay-3 { transition-delay: 0.24s; }
.fade-in-delay-4 { transition-delay: 0.32s; }
.fade-in-delay-5 { transition-delay: 0.40s; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .market-inner { grid-template-columns: 1fr; gap: 48px; }
  .diff-inner { grid-template-columns: 1fr; gap: 48px; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 0; background: var(--white); align-items: center; justify-content: center; gap: 28px; z-index: 999; border-top: 3px solid var(--navy); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; z-index: 1000; }
  .services-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 480px) {
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { justify-content: center; }
}
