/* =========================================================
   Reduza + Consultoria — Design tokens & base styles
   Tema claro: branco predominante, azul-marinho para texto/
   institucional, azuis de destaque para CTAs e interações.
   ========================================================= */

:root {
  /* Brand palette (fixed by brief) */
  --c-primary: #070032;        /* azul-marinho institucional — texto, títulos, nav */
  --c-secondary: #013EB1;      /* azul escuro — destaque secundário */
  --c-accent: #007BFF;         /* azul vibrante — CTAs, ícones, interação */
  --c-white: #FFFFFF;
  --c-neutral: #E6E6E6;        /* cinza claro — separação pontual de seções/cards */
  --c-neutral-2: #EFEFF1;      /* variação mais suave do cinza, para hovers e fundos sutis */

  /* Texto sobre fundo claro (uso predominante agora) */
  --c-text: var(--c-primary);
  --c-text-muted: rgba(7, 0, 50, 0.66);
  --c-text-faint: rgba(7, 0, 50, 0.46);
  --c-border: rgba(7, 0, 50, 0.12);
  --c-border-soft: rgba(7, 0, 50, 0.08);

  /* Texto sobre fundo escuro (reservado à faixa de destaque e rodapé) */
  --c-text-onDark: #FFFFFF;
  --c-text-onDark-muted: rgba(255, 255, 255, 0.72);
  --c-text-onDark-faint: rgba(255, 255, 255, 0.5);
  --c-border-onDark: rgba(255, 255, 255, 0.14);

  --grad-accent: linear-gradient(135deg, var(--c-accent), var(--c-secondary));

  /* Type */
  --font-display: 'Space Grotesk', 'Manrope', Arial, sans-serif;
  --font-body: 'Manrope', Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* Layout */
  --container-w: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --header-h: 78px;

  --shadow-soft: 0 20px 50px -24px rgba(7, 0, 50, 0.18);
  --shadow-card: 0 2px 18px -6px rgba(7, 0, 50, 0.10);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  background: var(--c-white);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; margin: 0 0 0.5em; line-height: 1.15; color: var(--c-primary); }
p { margin: 0 0 1em; }
button { font: inherit; cursor: pointer; }
svg { display: block; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--c-accent); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  max-width: 100%;
}
.btn--accent {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(0, 123, 255, 0.45);
}
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(0, 123, 255, 0.55); }
.btn--outline {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-border);
}
.btn--outline:hover { border-color: var(--c-accent); color: var(--c-accent); background: rgba(0, 123, 255, 0.06); }
.btn--sm { padding: 10px 18px; font-size: 0.85rem; }
.btn--lg { padding: 18px 32px; font-size: 1rem; }

/* Botão usado sobre a faixa navy de destaque (whatsapp band) */
.btn--onDark.btn--outline { color: #fff; border-color: var(--c-border-onDark); }
.btn--onDark.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }

.icon-wa { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* ---------- Eyebrow / section titles ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 12px;
}
.eyebrow--center { text-align: center; }
.eyebrow--onDark { color: #8fc2ff; }

.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 48px;
  color: var(--c-primary);
}
.section-title--left { text-align: left; margin-left: 0; margin-right: 0; margin-bottom: 28px; }
.section-title--onDark { color: #fff; }

.section-lead {
  max-width: 620px;
  margin: -28px auto 44px;
  text-align: center;
  color: var(--c-text-muted);
  font-size: 1.02rem;
}

/* ---------- Sections ---------- */
.section { padding: 108px 0; position: relative; background: var(--c-white); }
.section--tint { background: var(--c-neutral); }
.section--dark { background: var(--c-primary); }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-border-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { border-radius: 9px; flex-shrink: 0; }
.brand-word { display: flex; flex-direction: column; line-height: 1.05; }
.brand-word__main { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: 0.01em; color: var(--c-primary); }
.brand-word__plus { color: var(--c-accent); }
.brand-word__sub { font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--c-text-faint); margin-top: 2px; }

.main-nav ul { display: flex; gap: 32px; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--c-text-muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--c-primary); }
.main-nav a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--c-accent); transition: right 0.25s ease;
}
.main-nav a:hover::after { right: 0; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--c-border);
  border-radius: 8px;
}
.menu-toggle span { width: 18px; height: 2px; background: var(--c-primary); margin: 0 auto; transition: transform 0.25s ease, opacity 0.25s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: 88px 0 96px;
  background:
    radial-gradient(1000px 480px at 86% -12%, rgba(0, 123, 255, 0.08), transparent 60%),
    radial-gradient(640px 360px at -8% 112%, rgba(1, 62, 177, 0.07), transparent 60%),
    var(--c-white);
  overflow: hidden;
  border-bottom: 1px solid var(--c-border-soft);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  min-width: 0;
}
.hero-copy, .hero-visual { min-width: 0; }
.hero-copy h1 { font-size: clamp(2.1rem, 4.1vw, 3.35rem); letter-spacing: -0.01em; color: var(--c-primary); }
.hero-lead { font-size: 1.1rem; color: var(--c-text-muted); max-width: 46ch; margin-bottom: 32px; }
.hero-actions { margin-bottom: 36px; }

.hero-stats { display: flex; gap: 36px; margin: 0; }
.hero-stats > div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats dt { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; color: var(--c-text-faint); text-transform: uppercase; }
.hero-stats dd { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--c-primary); }

.hero-visual {
  position: relative;
  padding: 12px 4px 0;
}
.hero-graph { width: 100%; height: auto; }
.hero-graph__label { font-family: var(--font-mono); font-size: 13px; fill: var(--c-text-faint); letter-spacing: 0.08em; }

.bar--after { transform-origin: bottom; animation: growBar 1.1s cubic-bezier(.2,.9,.25,1) both; }
.bar--after:nth-of-type(1) { animation-delay: 0.05s; }
.bar--after:nth-of-type(2) { animation-delay: 0.15s; }
.bar--after:nth-of-type(3) { animation-delay: 0.25s; }
.bar--after:nth-of-type(4) { animation-delay: 0.35s; }
.bar--after:nth-of-type(5) { animation-delay: 0.45s; }
.bar--after:nth-of-type(6) { animation-delay: 0.55s; }
@keyframes growBar { from { transform: scaleY(0); opacity: 0; } to { transform: scaleY(1); opacity: 1; } }

.ribbon-path { stroke-dasharray: 900; stroke-dashoffset: 900; animation: drawRibbon 1.4s ease-out 0.5s both; }
@keyframes drawRibbon { to { stroke-dashoffset: 0; } }

/* =========================================================
   Benefit cards
   ========================================================= */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  border-left: 3px solid var(--c-accent);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px -14px rgba(7,0,50,0.18); }
.benefit-card__icon {
  width: 60px; height: 60px;
  flex-shrink: 0;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 123, 255, 0.1);
  color: var(--c-accent);
}
.benefit-card__icon svg { width: 32px; height: 32px; }
.benefit-card__text { margin: 0; font-weight: 600; font-size: 1.15rem; line-height: 1.35; color: var(--c-primary); }

/* =========================================================
   Sobre
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 56px;
  align-items: start;
}
.about-copy p { color: var(--c-text-muted); font-size: 1.14rem; line-height: 1.7; text-align: justify; text-justify: inter-word; }
.about-copy strong { color: var(--c-primary); }

.about-stats { display: flex; flex-direction: column; gap: 18px; position: sticky; top: calc(var(--header-h) + 24px); }
.about-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--c-border-soft);
}
.about-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 22% 32%;
}
.stat-panel {
  background: var(--c-neutral);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-panel--accent { background: var(--grad-accent); border-color: transparent; }
.stat-panel__number { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--c-primary); }
.stat-panel__label { color: var(--c-text-muted); font-size: 0.92rem; }
.stat-panel--accent .stat-panel__number { color: #fff; }
.stat-panel--accent .stat-panel__label { color: rgba(255,255,255,0.88); }

/* =========================================================
   Depoimentos
   ========================================================= */
.testimonial-featured {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin: 0 0 28px;
  box-shadow: var(--shadow-card);
}
.testimonial-featured__avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--c-neutral);
  border: 3px solid var(--c-white);
  box-shadow: 0 0 0 1px var(--c-border-soft);
}
.testimonial-featured__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-featured__quote-icon { color: var(--c-accent); width: 30px; height: 24px; margin-bottom: 10px; opacity: 0.85; }
.testimonial-featured__text {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--c-primary);
  line-height: 1.5;
  margin: 0 0 14px;
}
.testimonial-featured__meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.testimonial-featured__name { font-weight: 700; color: var(--c-primary); font-size: 0.98rem; }
.testimonial-featured__stars { color: #F5B301; letter-spacing: 2px; font-size: 0.9rem; }
.testimonial-featured__tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-accent);
  background: rgba(0,123,255,0.08);
  padding: 4px 10px;
  border-radius: 999px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.testimonial-card {
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px -14px rgba(7,0,50,0.18); }
.testimonial-card__icon { color: var(--c-accent); width: 22px; height: 18px; opacity: 0.8; }
.testimonial-card__text {
  margin: 0;
  color: var(--c-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  flex-grow: 1;
}
.testimonial-card__person { display: flex; align-items: center; gap: 12px; padding-top: 4px; border-top: 1px solid var(--c-border-soft); margin-top: 2px; }
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--c-neutral);
}
.testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card__name { font-weight: 700; font-size: 0.9rem; color: var(--c-primary); margin: 0; }
.testimonial-card__stars { color: #F5B301; font-size: 0.78rem; letter-spacing: 1.5px; }

.section-cta { text-align: center; margin-top: 44px; }

/* =========================================================
   Steps / Como funciona
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-lg);
  padding: 26px 26px;
  position: relative;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 22px;
}
.step__number {
  display: block;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--c-accent);
  letter-spacing: 0.01em;
}
.step__text { margin: 0; font-size: 1.18rem; line-height: 1.4; font-weight: 600; color: var(--c-primary); }

.details-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.steps--stacked { grid-template-columns: 1fr; }
.details-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--c-border-soft);
}
.details-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center 20%;
}

.whatsapp-band { margin-top: 72px; background: var(--c-primary); padding: 56px 0; position: relative; overflow: hidden; }
.whatsapp-band__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 45%;
  opacity: 0.55;
}
.whatsapp-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7,0,50,0.97) 0%, rgba(7,0,50,0.93) 32%, rgba(7,0,50,0.55) 68%, rgba(7,0,50,0.8) 100%);
}
.whatsapp-band__inner { position: relative; z-index: 1; }
.whatsapp-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.whatsapp-band__copy { max-width: 460px; }
.whatsapp-band__copy h3 { font-size: 1.5rem; margin-bottom: 8px; color: #fff; }
.whatsapp-band__copy p { color: var(--c-text-onDark-muted); margin: 0; }
.whatsapp-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* =========================================================
   FAQ / Accordion
   ========================================================= */
.accordion { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.accordion-item {
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.accordion-item h3 { margin: 0; }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  color: var(--c-primary);
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
}
.accordion-icon { width: 20px; height: 20px; color: var(--c-accent); transition: transform 0.25s ease; flex-shrink: 0; }
.accordion-trigger[aria-expanded="true"] .accordion-icon { transform: rotate(180deg); }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 32px;
}

.accordion-panel p,
.accordion-panel ul {
  color: var(--c-text-muted);
}

.accordion-panel ul {
  margin: 0 0 12px;
  padding-left: 20px;
  list-style: disc;
}

.accordion-panel li {
  margin-bottom: 4px;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--c-neutral); border-top: 1px solid var(--c-border-soft); padding-top: 72px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-tagline { color: var(--c-text-muted); margin: 18px 0 22px; max-width: 34ch; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  background: var(--c-white);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover { color: var(--c-accent); border-color: var(--c-accent); }
.footer-social svg { width: 17px; height: 17px; fill: currentColor; }

.footer-nav h4, .footer-contact h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-faint);
  margin-bottom: 18px;
}
.footer-nav li, .footer-contact li { margin-bottom: 12px; color: var(--c-text-muted); font-size: 0.95rem; line-height: 1.5; }
.footer-nav a, .footer-contact a { transition: color 0.2s ease; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--c-accent); }

.footer-bottom { border-top: 1px solid var(--c-border); padding: 22px 0; }
.footer-bottom p { margin: 0; font-size: 0.85rem; color: var(--c-text-faint); text-align: center; }

/* =========================================================
   Back to top
   ========================================================= */
.back-to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-accent);
  color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(0,123,255,0.55);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 90;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; }


/* =========================================================
   Política de Cancelamento, Troca e Reembolso
   ========================================================= */
.footer-bottom__separator {
  margin: 0 8px;
  opacity: 0.65;
}

.footer-bottom a {
  color: var(--c-text-muted);
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--c-accent);
}

.policy-page {
  padding: 88px 0 108px;
  background: var(--c-white);
}

.policy-header {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}

.policy-header .eyebrow {
  margin-bottom: 14px;
}

.policy-header h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.policy-header p {
  margin: 0;
  color: var(--c-text-muted);
  font-size: 1.05rem;
}

.policy-content {
  max-width: 820px;
  margin: 0 auto;
}

.policy-section {
  padding: 0 0 42px;
  margin: 0 0 42px;
  border-bottom: 1px solid var(--c-border-soft);
}

.policy-section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-section h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  margin-bottom: 18px;
}

.policy-section h3 {
  font-size: 1.05rem;
  margin: 24px 0 8px;
  color: var(--c-primary);
}

.policy-section p,
.policy-section li {
  color: var(--c-text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.policy-section p {
  margin-bottom: 16px;
}

.policy-section ul {
  list-style: disc;
  padding-left: 24px;
  margin: 12px 0 18px;
}

.policy-section li {
  margin-bottom: 8px;
}

.policy-contact {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding: 24px 26px;
  background: var(--c-neutral);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-md);
}

.policy-contact a {
  color: var(--c-secondary);
  font-weight: 700;
}

.policy-contact a:hover {
  color: var(--c-accent);
}

.policy-back {
  margin-top: 48px;
  text-align: center;
}

.policy-back .btn {
  display: inline-flex;
}

@media (max-width: 640px) {
  .policy-page {
    padding: 64px 0 80px;
  }

  .policy-section {
    padding-bottom: 32px;
    margin-bottom: 32px;
  }

  .policy-contact {
    padding: 20px;
  }

  .footer-bottom__separator {
    display: none;
  }

  .footer-bottom p {
    line-height: 1.8;
  }

  .footer-bottom a {
    display: block;
    margin-top: 5px;
  }
}
