/* ============================================================
   ALBE SOCIAL — Folha de estilos principal
   ============================================================ */

/* ---- Variáveis ---- */
:root {
  --copper: #b47154;
  --copper-light: #c9896a;
  --copper-dark: #8a5540;
  --off-white: #f7f4f0;
  --warm-white: #faf8f5;
  --dark: #1a1714;
  --mid: #4a4540;
  --light-mid: #8a8480;
}

/* ---- Reset ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--warm-white);
  color: var(--dark);
  overflow-x: hidden;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 60px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(180, 113, 84, 0.12);
}
.logo-img { height: 36px; width: auto; }
nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}
nav ul a {
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.3s;
}
nav ul a:hover { color: var(--copper); }
.nav-cta {
  font-size: 0.74rem !important;
  font-weight: 500 !important;
  color: var(--copper) !important;
  border: 1px solid var(--copper);
  padding: 10px 20px;
  border-radius: 2px;
  transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--copper) !important; color: white !important; }

/* Hambúrguer */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--mid);
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  overflow: hidden;
}
.hero-left {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}
.hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--copper); }
h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.4s;
}
h1 em { font-style: italic; color: var(--copper); font-weight: 300; }
.hero-sub {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--mid);
  max-width: 460px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.6s;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.8s;
}
.btn-primary {
  background: var(--copper);
  color: white;
  border: none;
  padding: 15px 34px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--copper-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(180, 113, 84, 0.3);
}
.btn-secondary {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--mid);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}
.btn-secondary:hover { color: var(--copper); }
.btn-secondary::after { content: '→'; transition: transform 0.3s; }
.btn-secondary:hover::after { transform: translateX(4px); }

/* Hero direita */
.hero-right {
  position: relative;
  background: #1a1714;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards 0.3s;
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(15%);
  mix-blend-mode: luminosity;
  opacity: 0.85;
}
.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(180, 113, 84, 0.25) 0%, transparent 60%);
  pointer-events: none;
}
.hero-photo-gradient {
  position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, #1a1714 0%, transparent 100%);
  pointer-events: none;
}
.hero-name-tag { position: absolute; bottom: 48px; left: 48px; right: 48px; }
.hero-name-tag p {
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5); margin-bottom: 6px;
}
.hero-name-tag h3 { font-size: 1.4rem; font-weight: 500; color: white; line-height: 1.2; }
.hero-name-tag h3 span { color: var(--copper-light); }
.decoration-line {
  position: absolute; top: 0; bottom: 0; right: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--copper), transparent);
  opacity: 0.3;
}

/* ============================================================
   SEÇÕES COMPARTILHADAS
   ============================================================ */
.section-label {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; width: 22px; height: 1px; background: var(--copper); }
h2 { font-size: clamp(1.7rem, 2.5vw, 2.4rem); font-weight: 600; line-height: 1.25; color: var(--dark); }
.divider {
  height: 1px;
  background: linear-gradient(to right, rgba(180, 113, 84, 0.3), transparent);
  max-width: 980px; margin: 0 auto;
}

/* ============================================================
   POSICIONAMENTO
   ============================================================ */
.section-positioning {
  padding: 120px 60px;
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 100px; align-items: start;
}
.positioning-text p { font-size: 0.95rem; font-weight: 300; line-height: 1.9; color: var(--mid); margin-bottom: 24px; }
.positioning-text p strong { color: var(--dark); font-weight: 600; }

/* ============================================================
   RESULTADOS
   ============================================================ */
.section-results { padding: 120px 60px; max-width: 1100px; margin: 0 auto; }
.results-header { margin-bottom: 64px; max-width: 600px; }
.results-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(180, 113, 84, 0.1);
  border: 1px solid rgba(180, 113, 84, 0.1);
}
.result-item { background: var(--warm-white); padding: 52px 48px; transition: background 0.3s; }
.result-item:hover { background: #f0ece7; }
.result-number { font-size: 3rem; font-weight: 700; color: var(--copper); opacity: 0.25; line-height: 1; margin-bottom: 24px; }
.result-title { font-size: 1.1rem; font-weight: 600; color: var(--dark); margin-bottom: 14px; }
.result-desc { font-size: 0.88rem; font-weight: 300; line-height: 1.85; color: var(--light-mid); }

/* ============================================================
   SOBRE
   ============================================================ */
.section-about { padding: 120px 60px; background: var(--dark); position: relative; overflow: hidden; }
.section-about::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(180, 113, 84, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.about-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start; position: relative; z-index: 1;
}
.about-left .section-label { color: var(--copper-light); }
.about-left .section-label::before { background: var(--copper-light); }
.about-left h2 { color: white; }
.about-left h2 em { color: var(--copper-light); font-style: italic; font-weight: 300; }
.about-text { margin-top: 28px; }
.about-text p { font-size: 0.92rem; font-weight: 300; line-height: 1.9; color: rgba(255, 255, 255, 0.55); margin-bottom: 20px; }
.about-text p strong { color: rgba(255, 255, 255, 0.85); font-weight: 500; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 48px;
  background: rgba(180, 113, 84, 0.15);
}
.about-stat { background: rgba(255, 255, 255, 0.03); padding: 28px 16px; text-align: center; transition: background 0.3s; }
.about-stat:hover { background: rgba(180, 113, 84, 0.1); }
.about-stat-value { font-size: 1.8rem; font-weight: 600; color: var(--copper-light); line-height: 1; margin-bottom: 8px; }
.about-stat-label { font-size: 0.65rem; font-weight: 400; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.35); text-transform: uppercase; line-height: 1.4; }

/* Trust seals */
.about-right { display: flex; flex-direction: column; gap: 16px; }
.trust-seal { border: 1px solid rgba(180, 113, 84, 0.2); padding: 24px 28px; display: flex; align-items: flex-start; gap: 18px; transition: all 0.3s; }
.trust-seal:hover { border-color: rgba(180, 113, 84, 0.5); background: rgba(180, 113, 84, 0.05); }
.trust-seal-icon {
  width: 38px; height: 38px; border-radius: 2px;
  background: rgba(180, 113, 84, 0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--copper-light);
}
.trust-seal-content h4 { font-size: 0.88rem; font-weight: 600; color: white; margin-bottom: 5px; }
.trust-seal-content p { font-size: 0.8rem; font-weight: 300; line-height: 1.7; color: rgba(255, 255, 255, 0.4); }

/* ============================================================
   PROCESSO
   ============================================================ */
.section-process { padding: 120px 60px; background: var(--off-white); }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-header { margin-bottom: 72px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute;
  top: 27px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(to right, var(--copper), rgba(180, 113, 84, 0.15));
}
.process-step { padding: 0 20px; }
.process-step-number {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--off-white); border: 1px solid var(--copper);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 600; color: var(--copper);
  margin-bottom: 28px; position: relative; z-index: 1;
}
.process-step h4 { font-size: 0.92rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.process-step p { font-size: 0.82rem; font-weight: 300; line-height: 1.8; color: var(--light-mid); }

/* ============================================================
   DIAGNÓSTICO
   ============================================================ */
.section-diagnostic {
  padding: 120px 60px;
  background: var(--warm-white);
  max-width: 1100px;
  margin: 0 auto;
}
.diagnostic-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.diagnostic-left h2 { margin-bottom: 20px; }
.diagnostic-left p { font-size: 0.95rem; font-weight: 300; line-height: 1.9; color: var(--mid); margin-bottom: 40px; }
.diagnostic-checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.diagnostic-checklist li { display: flex; align-items: flex-start; gap: 14px; font-size: 0.88rem; font-weight: 400; color: var(--mid); line-height: 1.6; }
.check-icon {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(180, 113, 84, 0.12); border: 1px solid var(--copper);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px; color: var(--copper);
}
.diagnostic-right { background: var(--dark); padding: 52px 48px; position: relative; overflow: hidden; }
.diagnostic-right::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 113, 84, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.diagnostic-right h3 { font-size: 1.3rem; font-weight: 600; color: white; margin-bottom: 8px; line-height: 1.3; }
.diagnostic-right h3 em { color: var(--copper-light); font-style: italic; font-weight: 300; }
.diagnostic-right > p { font-size: 0.82rem; font-weight: 300; color: rgba(255, 255, 255, 0.4); margin-bottom: 36px; line-height: 1.7; }
.diagnostic-form { display: flex; flex-direction: column; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.35); }
.form-field input,
.form-field select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(180, 113, 84, 0.2);
  border-radius: 2px;
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem; font-weight: 300;
  color: white; outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-field input::placeholder { color: rgba(255, 255, 255, 0.2); }
.form-field input:focus,
.form-field select:focus { border-color: var(--copper); }
.form-field select { appearance: none; cursor: pointer; color: rgba(255, 255, 255, 0.5); }
.form-field select option { background: #1a1714; color: white; }
.form-note { font-size: 0.72rem; font-weight: 300; color: rgba(255, 255, 255, 0.25); text-align: center; margin-top: 4px; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.section-testimonials { padding: 120px 60px; max-width: 1100px; margin: 0 auto; }
.testimonials-header { margin-bottom: 64px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--off-white); padding: 40px 32px;
  border-top: 2px solid var(--copper);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(180, 113, 84, 0.1); }
.testimonial-quote { font-size: 2.5rem; color: var(--copper); opacity: 0.3; line-height: 1; margin-bottom: 16px; font-family: Georgia, serif; }
.testimonial-text { font-size: 0.88rem; font-weight: 300; line-height: 1.85; color: var(--mid); margin-bottom: 24px; font-style: italic; }
.testimonial-author { padding-top: 18px; border-top: 1px solid rgba(180, 113, 84, 0.15); }
.testimonial-author strong { display: block; font-size: 0.84rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.testimonial-author span { font-size: 0.72rem; color: var(--copper); letter-spacing: 0.08em; text-transform: uppercase; }

/* ============================================================
   FAQ
   ============================================================ */
.section-faq { padding: 120px 60px; background: var(--off-white); }
.faq-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 100px; align-items: start;
}
.faq-left h2 { margin-bottom: 20px; }
.faq-left p { font-size: 0.92rem; font-weight: 300; line-height: 1.9; color: var(--mid); margin-bottom: 36px; }
.faq-contact-prompt { font-size: 0.82rem; font-weight: 300; color: var(--light-mid); line-height: 1.7; }
.faq-contact-prompt a { color: var(--copper); text-decoration: none; font-weight: 500; }
.faq-contact-prompt a:hover { text-decoration: underline; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(180, 113, 84, 0.15); overflow: hidden; }
.faq-item:first-child { border-top: 1px solid rgba(180, 113, 84, 0.15); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  cursor: pointer; text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem; font-weight: 500; color: var(--dark);
  transition: color 0.3s;
}
.faq-question:hover { color: var(--copper); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(180, 113, 84, 0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--copper); transition: all 0.3s;
}
.faq-item.open .faq-icon { background: var(--copper); color: white; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 24px; font-size: 0.88rem; font-weight: 300; line-height: 1.85; color: var(--mid); }

/* ============================================================
   CTA
   ============================================================ */
.section-cta { background: var(--dark); padding: 140px 60px; text-align: center; position: relative; overflow: hidden; }
.section-cta::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(180, 113, 84, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-inner .section-label { justify-content: center; margin-bottom: 28px; color: var(--copper-light); }
.cta-inner .section-label::before { background: var(--copper-light); }
.cta-inner h2 { color: white; margin-bottom: 24px; }
.cta-inner h2 em { color: var(--copper-light); font-style: italic; font-weight: 300; }
.cta-inner > p { font-size: 0.95rem; font-weight: 300; line-height: 1.9; color: rgba(255, 255, 255, 0.45); margin-bottom: 48px; }
.contact-links { display: flex; justify-content: center; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.contact-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255, 255, 255, 0.6); text-decoration: none;
  font-size: 0.8rem; font-weight: 400; letter-spacing: 0.05em;
  border: 1px solid rgba(180, 113, 84, 0.3);
  padding: 12px 22px; border-radius: 2px; transition: all 0.3s;
}
.contact-item:hover { color: white; border-color: var(--copper); background: rgba(180, 113, 84, 0.1); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--dark); }
.footer-top {
  padding: 72px 60px 60px;
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px;
}
.footer-brand p { font-size: 0.85rem; font-weight: 300; line-height: 1.8; color: rgba(255, 255, 255, 0.35); margin-top: 20px; max-width: 260px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(180, 113, 84, 0.25); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.4); text-decoration: none; transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--copper); color: var(--copper-light); background: rgba(180, 113, 84, 0.08); }
.footer-col h4 { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { text-decoration: none; font-size: 0.83rem; font-weight: 300; color: rgba(255, 255, 255, 0.35); transition: color 0.3s; }
.footer-col ul a:hover { color: var(--copper-light); }
.footer-col .footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 300;
  color: rgba(255, 255, 255, 0.35); text-decoration: none; transition: color 0.3s;
}
.footer-col .footer-contact-item:hover { color: var(--copper-light); }
.footer-col .footer-contact-item svg { flex-shrink: 0; opacity: 0.6; }
.footer-bottom {
  border-top: 1px solid rgba(180, 113, 84, 0.1);
  padding: 24px 60px;
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.73rem; color: rgba(255, 255, 255, 0.2); letter-spacing: 0.05em; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.73rem; color: rgba(255, 255, 255, 0.2); text-decoration: none; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--copper-light); }

/* ============================================================
   ANIMAÇÕES
   ============================================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVO — ≤ 900px
   ============================================================ */
@media (max-width: 900px) {
  /* Nav */
  nav { padding: 16px 20px; }
  nav ul {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(180, 113, 84, 0.12);
    padding: 16px 20px 20px;
  }
  nav ul.open { display: flex; }
  nav ul li { padding: 10px 0; border-bottom: 1px solid rgba(180, 113, 84, 0.08); }
  nav ul li:last-child { border-bottom: none; padding-top: 16px; }
  nav ul a { font-size: 0.82rem; }
  .nav-cta { border: none; padding: 0; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 100px 24px 60px; }
  .hero-right { height: 70vw; }

  /* Seções */
  .section-positioning { grid-template-columns: 1fr; gap: 40px; padding: 80px 24px; }
  .section-results { padding: 80px 24px; }
  .results-grid { grid-template-columns: 1fr; }
  .section-about { padding: 80px 24px; }
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .section-process { padding: 80px 24px; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .section-testimonials { padding: 80px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .section-diagnostic { padding: 80px 24px; }
  .diagnostic-inner { grid-template-columns: 1fr; gap: 48px; }
  .diagnostic-right { padding: 36px 28px; }
  .section-faq { padding: 80px 24px; }
  .faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .section-cta { padding: 80px 24px; }
  .contact-links { flex-direction: column; align-items: center; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding: 48px 24px 40px; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}
