/* ================================
   1. VARIÁVEIS CSS (DESIGN TOKENS)
   ================================ */
:root {
  /* Cores */
  --color-primary: #122c4f;
  --color-primary-dark: #0a1a30;
  --color-accent: #f99b39;
  --color-accent-dark: #e88a2a;
  --color-light: #fefefe;
  --color-gray: #e8ecef;
  --color-amber: #f5a623;
  --color-success: #2ecc71;
  --color-text-dark: #122c4f;
  --color-text-light: #fefefe;
  --color-text-muted: rgba(254, 254, 254, 0.7);

  /* Tipografia */
  --font-headings: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Espaçamentos */
  --container-max: 1200px;
  --container-padding: 40px;
  --section-gap: 100px;

  /* Border radius */
  --radius-card: 12px;
  --radius-btn: 8px;
  --radius-badge: 50px;

  /* Sombras */
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-btn: 0 4px 15px rgba(249, 155, 57, 0.4);
  --shadow-btn-hover: 0 6px 25px rgba(249, 155, 57, 0.6);

  /* Transições */
  --transition: all 0.3s ease;
  --transition-faq: max-height 0.4s ease;
}

/* ================================
   2. RESET / BASE
   ================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background: var(--color-light);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ================================
   3. TIPOGRAFIA GLOBAL
   ================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  line-height: 1.3;
  font-weight: 700;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

p {
  font-size: 18px;
  line-height: 1.7;
}

.text-accent {
  color: var(--color-accent);
}

/* ================================
   4. LAYOUT GLOBAL
   ================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

section {
  padding: var(--section-gap) 0;
}

/* ================================
   5. COMPONENTES REUTILIZÁVEIS
   ================================ */

/* Botão Primário */
.btn {
  display: inline-block;
  font-family: var(--font-headings);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn--primary {
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: var(--color-light);
  padding: 18px 48px;
  font-size: 18px;
  box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
}

.btn--large {
  padding: 20px 56px;
  font-size: 19px;
}

.btn--xlarge {
  padding: 24px 60px;
  font-size: 20px;
}

/* Section Titles */
.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.section-title--dark {
  color: var(--color-primary);
}

.section-title--light {
  color: var(--color-light);
}

.section-subtitle {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 40px;
}

.section-subtitle--light {
  color: var(--color-accent);
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 18px;
}

.section-intro--dark {
  color: #444;
}

.section-intro--light {
  color: var(--color-text-muted);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: var(--radius-badge);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge--success {
  background: var(--color-success);
  color: var(--color-light);
}

/* ================================
   6. SEÇÕES ESPECÍFICAS
   ================================ */

/* ---------- HEADER / NAVBAR ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(18, 44, 79, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  transition: var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 22px;
  color: var(--color-light);
}

.header__logo-icon {
  font-size: 26px;
}

.header__nav {
  display: flex;
  gap: 32px;
}

.header__nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--color-text-muted);
  position: relative;
  transition: var(--transition);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.header__nav-link:hover {
  color: var(--color-light);
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__cta {
  padding: 10px 24px;
  font-size: 14px;
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.header__toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-light);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- HERO SECTION ---------- */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero__bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: radial-gradient(circle, var(--color-light) 1px, transparent 1px);
  background-size: 30px 30px;
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero__title {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-light);
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 19px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.hero__subtitle strong {
  color: var(--color-light);
}

.hero__cta {
  margin-bottom: 12px;
}

.hero__microcopy {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 60px;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.hero__metric {
  text-align: center;
  padding: 24px 16px;
}

.hero__metric-number {
  display: block;
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 56px;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.hero__metric-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-light);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero__accent-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--color-accent);
}

/* ---------- PROBLEM SECTION ---------- */
.problem {
  background: var(--color-light);
}

.problem__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.problem__card {
  background: var(--color-gray);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.problem__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.problem__card-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.problem__card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1.4;
}

.problem__card-text {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.problem__warning {
  background: var(--color-primary-dark);
  border-radius: var(--radius-card);
  padding: 40px 48px;
  text-align: center;
}

.problem__warning-text {
  color: var(--color-light);
  font-size: 19px;
  line-height: 1.7;
}

/* ---------- SOLUTION SECTION ---------- */
.solution {
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.solution__bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.03;
  background: repeating-linear-gradient(
    45deg,
    var(--color-light),
    var(--color-light) 1px,
    transparent 1px,
    transparent 20px
  );
}

.solution__intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  font-size: 19px;
  color: var(--color-text-muted);
  position: relative;
  z-index: 2;
}

.solution__intro strong {
  color: var(--color-light);
}

.solution__mechanism {
  max-width: 800px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 2;
}

.solution__mechanism-text {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: center;
}

.solution__mechanism-text strong {
  color: var(--color-light);
}

.solution__pillars {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  position: relative;
  z-index: 2;
}

.solution__pillar {
  text-align: center;
  padding: 0 24px;
}

.solution__pillar-icon {
  font-size: 60px;
  margin-bottom: 24px;
}

.solution__pillar-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-light);
  margin-bottom: 16px;
}

.solution__pillar-text {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.solution__pillar-text strong {
  color: var(--color-light);
}

.solution__pillar-divider {
  width: 1px;
  height: 200px;
  background: rgba(254, 254, 254, 0.2);
  align-self: center;
}

/* ---------- HOW IT WORKS SECTION ---------- */
.how-it-works {
  background: var(--color-gray);
}

.how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.step__number {
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 72px;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 20px;
}

.step__connector {
  position: absolute;
  top: 36px;
  right: -20px;
  width: 40px;
  height: 2px;
  background-image: linear-gradient(to right, var(--color-primary) 50%, transparent 50%);
  background-size: 10px 2px;
  background-repeat: repeat-x;
}

.step:last-child .step__connector {
  display: none;
}

.step__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.step__text {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.step__text strong {
  color: var(--color-primary);
}

.how-it-works__closing {
  text-align: center;
  font-size: 19px;
  color: var(--color-primary);
  margin-bottom: 40px;
}

.how-it-works__cta {
  text-align: center;
}

/* ---------- SOCIAL PROOF SECTION ---------- */
.social-proof {
  background: var(--color-light);
}

.social-proof__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.social-proof__metric {
  text-align: center;
  padding: 32px 16px;
  background: var(--color-gray);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.social-proof__metric:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.social-proof__metric-number {
  display: block;
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 56px;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 12px;
}

.social-proof__metric-label {
  display: block;
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 500;
  line-height: 1.5;
}

.social-proof__context {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.social-proof__context p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
}

.social-proof__context strong {
  color: var(--color-primary);
}

.social-proof__badge {
  text-align: center;
  margin-bottom: 60px;
}

.social-proof__testimonials {
  max-width: 900px;
  margin: 0 auto;
}

.social-proof__placeholder {
  text-align: center;
  font-style: italic;
  color: #999;
  margin-bottom: 32px;
  font-size: 15px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.testimonial {
  background: var(--color-gray);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-card);
  padding: 32px;
}

.testimonial__text {
  font-size: 17px;
  color: #555;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial__author {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
}

/* ---------- COMPARISON TABLE SECTION ---------- */
.comparison {
  background: var(--color-primary);
}

.comparison__table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-card);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
}

.comparison__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-primary-dark);
}

.comparison__table-header {
  padding: 20px 16px;
  text-align: center;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-light);
  background: var(--color-primary);
  border-bottom: 3px solid var(--color-accent);
}

.comparison__table-header--highlight {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

.comparison__cell {
  padding: 16px;
  text-align: center;
  font-size: 15px;
  color: var(--color-text-muted);
  border-bottom: 1px solid rgba(254, 254, 254, 0.1);
}

.comparison__cell--label {
  text-align: left;
  font-weight: 600;
  color: var(--color-light);
  padding-left: 24px;
}

.comparison__cell--highlight {
  background: rgba(249, 155, 57, 0.15);
  color: var(--color-accent);
  font-weight: 600;
  border-left: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
}

.comparison__cell--highlight strong {
  color: var(--color-light);
}

.comparison__table tbody tr:last-child td {
  border-bottom: none;
}

.comparison__table tbody tr:last-child .comparison__cell--highlight {
  border-bottom: 2px solid var(--color-accent);
  border-radius: 0 0 8px 8px;
}

.comparison__closing {
  text-align: center;
  font-size: 19px;
  color: var(--color-light);
}

/* ---------- FAQ SECTION ---------- */
.faq {
  background: var(--color-gray);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  background: var(--color-light);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition);
}

.faq__item:hover {
  box-shadow: var(--shadow-card-hover);
}

.faq__item[open] {
  box-shadow: var(--shadow-card-hover);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  cursor: pointer;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 20px;
  color: var(--color-primary);
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__icon {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq__item[open] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 32px 24px;
}

.faq__answer p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

.faq__answer strong {
  color: var(--color-primary);
}

/* ---------- CTA FINAL + CONTATO SECTION ---------- */
.cta-final {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  text-align: center;
}

.cta-final__inner {
  max-width: 700px;
}

.cta-final__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-light);
  line-height: 1.3;
  margin-bottom: 20px;
}

.cta-final__subtitle {
  font-size: 19px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

.cta-final__subtitle strong {
  color: var(--color-light);
}

.cta-final__btn {
  margin-bottom: 20px;
}

.cta-final__guarantee {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 60px;
}

.cta-final__guarantee strong {
  color: var(--color-light);
}

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact__icon {
  font-size: 32px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.contact__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.contact__value {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-light);
  transition: var(--transition);
}

.contact__value:hover {
  color: var(--color-accent);
}

.contact__divider {
  width: 1px;
  height: 50px;
  background: rgba(254, 254, 254, 0.2);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--color-primary-dark);
  padding: 40px 0;
  text-align: center;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.footer__logo-icon {
  font-size: 24px;
}

.footer__logo-text {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 22px;
  color: var(--color-light);
}

.footer__copyright {
  font-size: 14px;
  color: var(--color-text-muted);
}

.footer__tagline {
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.footer__link {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--color-accent);
}

.footer__separator {
  color: var(--color-text-muted);
  font-size: 14px;
}

/* ================================
   7. ANIMAÇÕES
   ================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(249, 155, 57, 0.3);
  }
  50% {
    box-shadow: 0 0 20px 4px rgba(249, 155, 57, 0.15);
  }
}

/* Aplicar animação de entrada nas seções */
section {
  animation: fadeInUp 0.6s ease-out;
}

/* Pulse na coluna Voto Sindical da tabela */
.comparison__cell--highlight {
  animation: pulseGlow 3s ease-in-out infinite;
}

/* ================================
   8. RESPONSIVIDADE (MEDIA QUERIES)
   ================================ */

/* ---------- TABLET (768px - 1023px) ---------- */
@media (max-width: 1023px) {
  :root {
    --section-gap: 70px;
    --container-padding: 32px;
  }

  h2,
  .section-title {
    font-size: 30px;
  }

  .hero__title {
    font-size: 38px;
  }

  .hero__subtitle {
    font-size: 17px;
  }

  .hero__metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .hero__metric-number,
  .social-proof__metric-number {
    font-size: 44px;
  }

  .problem__cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 60px;
  }

  .solution__pillars {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .solution__pillar-divider {
    display: none;
  }

  .how-it-works__steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 60px;
  }

  .step__connector {
    display: none;
  }

  .social-proof__metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .header__nav {
    display: none;
  }

  .header__toggle {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .comparison__table {
    min-width: 600px;
  }
}

/* ---------- MOBILE (< 768px) ---------- */
@media (max-width: 767px) {
  :root {
    --section-gap: 50px;
    --container-padding: 20px;
  }

  body {
    font-size: 16px;
  }

  h2,
  .section-title,
  .cta-final__title {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
  }

  .section-intro {
    font-size: 16px;
    margin-bottom: 40px;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero__title {
    font-size: 32px;
    line-height: 1.25;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hero__metric {
    padding: 16px 8px;
  }

  .hero__metric-number {
    font-size: 36px;
  }

  .hero__metric-label {
    font-size: 12px;
  }

  /* Buttons */
  .btn--primary,
  .btn--large,
  .btn--xlarge {
    padding: 16px 32px;
    font-size: 16px;
    width: 100%;
  }

  /* Problem */
  .problem__card {
    padding: 28px 20px;
  }

  .problem__card-icon {
    font-size: 40px;
  }

  .problem__card-title {
    font-size: 19px;
  }

  .problem__card-text {
    font-size: 15px;
  }

  .problem__warning {
    padding: 28px 24px;
  }

  .problem__warning-text {
    font-size: 17px;
  }

  /* Solution */
  .solution__intro {
    font-size: 16px;
  }

  .solution__mechanism-text {
    font-size: 16px;
  }

  .solution__pillar {
    padding: 0 8px;
  }

  .solution__pillar-icon {
    font-size: 48px;
  }

  .solution__pillar-title {
    font-size: 20px;
  }

  .solution__pillar-text {
    font-size: 15px;
  }

  /* How it works */
  .step__number {
    font-size: 56px;
  }

  .step__title {
    font-size: 19px;
  }

  .step__text {
    font-size: 15px;
  }

  /* Social proof */
  .social-proof__metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .social-proof__metric {
    padding: 24px 16px;
  }

  .social-proof__metric-number {
    font-size: 40px;
  }

  .social-proof__metric-label {
    font-size: 13px;
  }

  /* Comparison table */
  .comparison__table {
    min-width: 500px;
  }

  .comparison__table-header {
    font-size: 14px;
    padding: 16px 8px;
  }

  .comparison__cell {
    font-size: 13px;
    padding: 12px 8px;
  }

  .comparison__cell--label {
    padding-left: 12px;
    font-size: 13px;
  }

  /* FAQ */
  .faq__question {
    padding: 20px;
    font-size: 17px;
  }

  .faq__answer {
    padding: 0 20px 20px;
  }

  .faq__answer p {
    font-size: 15px;
  }

  /* CTA final */
  .cta-final__title {
    font-size: 24px;
  }

  .cta-final__subtitle {
    font-size: 16px;
  }

  .cta-final__guarantee {
    font-size: 14px;
  }

  /* Contact */
  .contact {
    flex-direction: column;
    gap: 24px;
  }

  .contact__divider {
    display: none;
  }

  .contact__value {
    font-size: 17px;
  }

  /* Footer */
  .footer__copyright,
  .footer__tagline {
    font-size: 12px;
  }

  .footer__contact {
    flex-direction: column;
    gap: 8px;
  }

  .footer__separator {
    display: none;
  }

  /* Header mobile */
  .header__logo-text {
    font-size: 18px;
  }
}

/* ---------- EXTRA SMALL MOBILE (< 380px) ---------- */
@media (max-width: 379px) {
  .hero__metrics {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 28px;
  }
}