:root {
      /* wpastra.com — marketing site */
      --purple-start: #492cdd;
      --purple-end: #ad38e2;
      --purple-link: #5c2ddd;
      --yellow: #ffc300;
      --yellow-text: #181723;
      --text: #2f3f50;
      --text-muted: #64748b;
      --white: #ffffff;
      --surface: #f8f9fb;
      --border: #e8ebf0;
      --gold: #e6a800;
      --gold-soft: #fff8e6;
      --container: 1200px;
      --font: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --hero-gradient: linear-gradient(135deg, var(--purple-start) 0%, var(--purple-end) 100%);
      --shadow: 0 4px 24px rgba(24, 23, 35, 0.12);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: var(--font);
      font-size: 17px;
      line-height: 1.65;
      color: var(--text);
      background: var(--white);
    }

    a {
      color: var(--purple-link);
      text-decoration: none;
      font-weight: 600;
      transition: color 0.2s linear;
    }

    a:hover { color: var(--purple-start); }
    a:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }

    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header */
    .header {
      background: var(--white);
      border-bottom: 1px solid var(--border);
    }

    .header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 72px;
    }

    .logo {
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--text);
      line-height: 1.25;
      letter-spacing: -0.02em;
    }

    .logo span {
      display: block;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .btn {
      display: inline-block;
      font-family: var(--font);
      font-weight: 600;
      font-size: 15px;
      line-height: 1;
      border: 2px solid transparent;
      cursor: pointer;
      transition: transform 0.2s linear, background 0.2s linear, color 0.2s linear;
      text-align: center;
    }

    .btn--ghost {
      padding: 12px 24px;
      color: var(--purple-link);
      background: transparent;
      border-color: var(--purple-link);
      border-radius: 50px;
    }

    .btn--ghost:hover {
      background: rgba(92, 45, 221, 0.06);
      color: var(--purple-start);
    }

    .btn--yellow {
      padding: 18px 36px;
      color: var(--yellow-text);
      background: var(--yellow);
      border-color: var(--yellow);
      border-radius: 50px;
      font-weight: 700;
    }

    .btn--yellow:hover {
      transform: translateY(-1px);
      color: var(--yellow-text);
      filter: brightness(1.03);
    }

    .btn--white-outline {
      padding: 18px 36px;
      color: var(--white);
      background: transparent;
      border-color: rgba(255, 255, 255, 0.55);
      border-radius: 50px;
      font-weight: 600;
    }

    .btn--white-outline:hover {
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
    }

    /* Hero — gradiente wpastra.com */
    .hero {
      background: var(--hero-gradient);
      padding: 72px 0 88px;
      color: var(--white);
    }

    .hero__grid {
      display: grid;
      gap: 48px;
      align-items: center;
    }

    @media (min-width: 960px) {
      .hero__grid { grid-template-columns: 1fr 1fr; gap: 56px; }
    }

    .hero__eyebrow {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 20px;
    }

    .hero h1 {
      font-size: clamp(2rem, 4.5vw, 3rem);
      font-weight: 700;
      line-height: 1.15;
      margin: 0 0 20px;
      color: var(--white);
      letter-spacing: -0.02em;
    }

    .hero__lead {
      font-size: 1.1rem;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.88);
      margin: 0 0 32px;
      max-width: 480px;
    }

    .hero__lead strong {
      color: var(--white);
      font-weight: 700;
    }

    .hero__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 28px;
    }

    .hero__tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .hero__tags li {
      font-size: 13px;
      font-weight: 600;
      padding: 8px 14px;
      border-radius: 50px;
      color: rgba(255, 255, 255, 0.9);
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .hero__tags li.is-gold {
      color: var(--yellow-text);
      background: var(--yellow);
      border-color: var(--yellow);
    }

    /* Widget branco — contraste no hero */
    .widget {
      background: var(--white);
      border-radius: 12px;
      box-shadow: var(--shadow);
      overflow: hidden;
      color: var(--text);
    }

    .widget__head {
      padding: 22px 24px 0;
    }

    .widget__meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 6px;
    }

    .widget__meta span:first-child {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--purple-link);
    }

    .widget__meta span:last-child {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-muted);
    }

    .widget__title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text);
      margin: 0 0 16px;
    }

    .widget__body { padding: 0 24px 20px; }

    .widget__rows {
      display: grid;
      gap: 8px;
      margin-bottom: 16px;
    }

    .widget__row {
      display: flex;
      justify-content: space-between;
      padding: 10px 14px;
      background: var(--surface);
      border-radius: 8px;
      font-size: 14px;
      color: var(--text-muted);
      font-weight: 500;
    }

    .widget__row strong {
      font-weight: 700;
      color: var(--text);
    }

    .widget__total {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 18px;
      background: var(--hero-gradient);
      border-radius: 8px;
      color: var(--white);
    }

    .widget__total span:first-child {
      font-weight: 600;
      font-size: 14px;
    }

    .widget__total span:last-child {
      font-size: 1.45rem;
      font-weight: 800;
    }

    .widget__foot {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      padding: 0 24px 24px;
    }

    .widget__stat {
      padding: 14px;
      background: var(--surface);
      border-radius: 8px;
      border: 1px solid var(--border);
    }

    .widget__stat-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 4px;
    }

    .widget__stat-value {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--text);
    }

    .widget__stat-value--gold { color: #8a6500; }

    .widget__progress {
      height: 6px;
      background: var(--border);
      border-radius: 3px;
      overflow: hidden;
      margin-top: 8px;
    }

    .widget__progress-bar {
      width: 42%;
      height: 100%;
      background: var(--purple-link);
      border-radius: 3px;
    }

    .widget__quest {
      grid-column: 1 / -1;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 14px;
      background: var(--gold-soft);
      border: 1px solid #f5dfa0;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      color: #7a5800;
    }

    .widget__coin {
      width: 26px;
      height: 26px;
      flex-shrink: 0;
      display: grid;
      place-items: center;
      font-size: 11px;
      font-weight: 800;
      color: #7a5800;
      background: var(--gold);
      border-radius: 50%;
    }

    /* Sections */
    .section { padding: 80px 0; }
    .section--alt { background: var(--surface); }

    .section__header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 48px;
    }

    .section__header h2 {
      font-size: clamp(1.75rem, 3vw, 2.25rem);
      font-weight: 700;
      color: var(--text);
      margin: 0 0 12px;
      letter-spacing: -0.02em;
    }

    .section__header p {
      margin: 0;
      font-size: 1.05rem;
      color: var(--text-muted);
    }

    /* Stepper */
    .stepper {
      display: grid;
      gap: 16px;
      grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    }

    .step {
      text-align: center;
      padding: 24px 16px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(47, 63, 80, 0.04);
    }

    .section--alt .step { background: var(--white); }

    .step__num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      font-size: 15px;
      font-weight: 700;
      color: var(--white);
      background: var(--hero-gradient);
      border-radius: 50%;
      margin-bottom: 12px;
    }

    .step__title {
      display: block;
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px;
    }

    .step__desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.45;
    }

    /* Features */
    .features {
      display: grid;
      gap: 24px;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .feature {
      padding: 32px 28px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      transition: box-shadow 0.2s linear, transform 0.2s linear;
    }

    .feature:hover {
      box-shadow: var(--shadow);
      transform: translateY(-2px);
    }

    .section--alt .feature { background: var(--white); }

    .feature__icon {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      font-size: 22px;
      background: rgba(92, 45, 221, 0.08);
      border-radius: 10px;
      margin-bottom: 20px;
    }

    .feature__icon--gold { background: var(--gold-soft); }

    .feature h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text);
      margin: 0 0 10px;
    }

    .feature p {
      margin: 0;
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* CTA band — mesmo gradiente do hero */
    .cta {
      background: var(--hero-gradient);
      padding: 64px 40px;
      border-radius: 12px;
      text-align: center;
      color: var(--white);
    }

    .cta h2 {
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 700;
      margin: 0 0 16px;
      color: var(--white);
    }

    .cta p {
      margin: 0 auto 24px;
      max-width: 560px;
      font-size: 1.05rem;
      line-height: 1.65;
      opacity: 0.9;
    }

    .cta__tags {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

    .cta__tags span {
      font-size: 13px;
      font-weight: 600;
      padding: 8px 16px;
      background: rgba(255, 255, 255, 0.14);
      border-radius: 50px;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Phases */
    .phases {
      display: grid;
      gap: 24px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    @media (min-width: 768px) {
      .phases { grid-template-columns: repeat(3, 1fr); }
    }

    .phase {
      text-align: center;
      padding: 36px 24px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
    }

    .phase__label {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--purple-link);
      background: rgba(92, 45, 221, 0.08);
      padding: 5px 12px;
      border-radius: 50px;
      margin-bottom: 16px;
    }

    .phase h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text);
      margin: 0 0 10px;
    }

    .phase p {
      margin: 0;
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* Contact */
    .contact-box {
      max-width: 560px;
      margin: 0 auto;
      text-align: center;
      padding: 48px 32px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(47, 63, 80, 0.04);
    }

    .contact-box h2 {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--text);
      margin: 0 0 12px;
    }

    .contact-box p {
      margin: 0 0 24px;
      color: var(--text-muted);
    }

    /* Footer */
    .footer {
      background: var(--surface);
      border-top: 1px solid var(--border);
      padding: 32px 0;
      text-align: center;
    }

    .footer p {
      margin: 0 0 10px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .footer strong {
      color: var(--text);
      font-weight: 700;
    }

    .footer__nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin: 12px 0;
      font-size: 14px;
    }

    .footer__nav span {
      color: var(--border);
      font-weight: 400;
    }

    .footer__disclosure {
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
      font-size: 13px;
    }

    .footer__copy {
      margin-top: 16px;
      margin-bottom: 0;
    }

    .logo--link {
      color: inherit;
      text-decoration: none;
    }

    .logo--link:hover {
      color: var(--text);
    }

    @media (max-width: 959px) {
      .hero { padding: 56px 0 72px; }
      .section { padding: 60px 0; }
    }

body.has-cookie-bar { padding-bottom: 120px; }
@media (max-width: 768px) { body.has-cookie-bar { padding-bottom: 200px; } }

.header { position: sticky; top: 0; z-index: 100; }

.disclosure {
  background: var(--gold-soft);
  border-bottom: 1px solid #f5dfa0;
  font-size: 0.875rem;
  color: #7a5800;
}
.disclosure__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 20px;
  text-align: left;
}
.disclosure__inner p { margin: 0; line-height: 1.45; }
.disclosure__badge {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.65);
  color: var(--purple-link);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(92, 45, 221, 0.2);
}
.disclosure a { color: var(--purple-link); font-weight: 700; }
@media (max-width: 560px) {
  .disclosure__inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 12px 20px;
  }
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus,
.skip-link:focus-visible {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 24px;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
  z-index: 9999;
  background: var(--yellow);
  color: var(--yellow-text);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
}
.nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}
.nav a:hover { color: var(--purple-link); }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font: inherit;
  cursor: pointer;
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 16px;
  }
  .nav.is-open { display: flex; }
  .header__inner { flex-wrap: wrap; gap: 16px; min-height: 68px; }
}

.btn--primary {
  padding: 14px 28px;
  color: var(--white);
  background: var(--hero-gradient);
  border-color: transparent;
  border-radius: 50px;
  font-weight: 700;
}
.btn--primary:hover {
  transform: translateY(-1px);
  color: var(--white);
  filter: brightness(1.05);
}
.btn--outline {
  padding: 14px 28px;
  color: var(--purple-link);
  background: transparent;
  border: 2px solid var(--purple-link);
  border-radius: 50px;
}
.btn--outline:hover { background: rgba(92, 45, 221, 0.06); }

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  text-align: center;
}
.trust-bar__item strong {
  display: block;
  font-size: 1.35rem;
  color: var(--purple-link);
  line-height: 1.2;
}
.trust-bar__item span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.guide-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.guide-card {
  display: block;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: box-shadow 0.2s linear, transform 0.2s linear;
  color: inherit;
}
.guide-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  color: inherit;
}
.guide-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--purple-link);
  margin-bottom: 8px;
}
.guide-card h3 {
  font-size: 1.1rem;
  margin: 0 0 10px;
  color: var(--text);
}
.guide-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.partner-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.partner-chip {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
}

.page-hero {
  padding: 48px 0 32px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.page-hero .meta {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}
.breadcrumb {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--purple-link); font-weight: 600; }

.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 56px;
}
.prose h2 {
  font-size: 1.35rem;
  margin: 32px 0 12px;
  color: var(--text);
}
.prose h3 {
  font-size: 1.1rem;
  margin: 24px 0 8px;
}
.prose p,
.prose li { color: var(--text-muted); }
.prose ul,
.prose ol { padding-left: 1.25rem; }
.prose li { margin-bottom: 8px; }

.author-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
  font-size: 0.95rem;
}
.author-box__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--purple-link);
  margin: 0 0 8px;
}
.author-box p {
  margin: 0 0 8px;
  color: var(--text-muted);
}
.author-box__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.article-disclosure {
  background: var(--gold-soft);
  border: 1px solid #f5dfa0;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: #7a5800;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 56px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 24px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--purple-link);
  font-weight: 800;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item__body {
  padding: 0 24px 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  text-align: left;
  margin-bottom: 32px;
}
.footer__brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.footer__grid h4 {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin: 0 0 12px;
}
.footer__grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__grid li { margin-bottom: 8px; }
.footer__grid a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}
.footer__grid a:hover { color: var(--purple-link); }
.footer__bottom {
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.footer__updated {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.08);
  padding: 20px 0;
}
.cookie-bar__panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 32px;
  align-items: center;
}
.cookie-bar__title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--purple-link);
  margin: 0 0 6px;
}
.cookie-bar__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 640px;
}
.cookie-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-bar__btn {
  padding: 10px 18px;
  font-size: 0.875rem;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .cookie-bar__panel { grid-template-columns: 1fr; }
  .cookie-bar__actions { flex-direction: column; width: 100%; }
  .cookie-bar__btn { width: 100%; text-align: center; }
}

.honest-copy { max-width: 640px; margin: 0 auto; text-align: center; }
.honest-copy p { color: var(--text-muted); margin: 0; }

.info-box {
  background: rgba(92, 45, 221, 0.06);
  border: 1px solid rgba(92, 45, 221, 0.15);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
}

.contact-page {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 20px 56px;
  text-align: center;
}
.contact-page__box {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 0 72px;
}
.legal h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.legal__updated {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 32px;
}
.legal h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 32px 0 12px;
}
.legal p { margin: 0 0 16px; color: var(--text); }
.legal ul { margin: 0 0 16px; padding-left: 1.25rem; }
.legal li { margin-bottom: 8px; }
