/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* ── VARIÁVEIS ── */
:root {
  --primary:    #4D7CFE;
  --primary-lt: #6EA8FF;
  --accent:     #B7C9FF;
  --bg-soft:    #E8EDFF;
  --dark:       #1E293B;
  --gray:       #64748B;
  --bg-page:    #F7F8FA;
  --white:      #FFFFFF;

  --font: 'Poppins', sans-serif;
  --radius: 16px;
  --shadow: 0 2px 16px rgba(77,124,254,.10);
  --transition: .25s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-page);
  color: var(--dark);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  z-index: 2;
}

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { font-size: clamp(.9rem, 1.5vw, 1rem); color: var(--gray); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover { background: var(--primary-lt); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--bg-soft); }
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { opacity: .85; }

/* ── SECTION PADDING ── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header p { margin-top: 12px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── BADGE ── */
.badge {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ── DOT PATTERN (decorativo) ── */
.dot-pattern {
  position: absolute;
  width: 220px;
  height: 220px;
  background-image: radial-gradient(circle, var(--accent) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: .5;
  z-index: 0;
}

/* @media (max-width: 768px) {
  .dot-pattern { width: 120px; height: 120px; }
} */

/* ══════════════════════════════
   NAV
══════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  border-color: var(--bg-soft);
  box-shadow: 0 2px 16px rgba(77,124,254,.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__logo {
  display: flex;
  /* align-items: center; */
  /* gap: 10px; */
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}
.nav__logo svg { flex-shrink: 0; margin-right: 10px;}
.nav__logo span { color: var(--primary); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
  transition: color var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--primary); }
.nav__cta { margin-left: 24px; }

/* Mobile menu */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--bg-soft);
  gap: 4px;
}
.nav__mobile a {
  padding: 10px 0;
  font-size: .95rem;
  font-weight: 500;
  border-bottom: 1px solid var(--bg-soft);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile .btn { margin-top: 12px; text-align: center; justify-content: center; }
.nav__mobile.open { display: flex; }

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.footer__pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='5' y='7' width='14' height='14' rx='2' stroke='%23ffffff' stroke-width='1' stroke-opacity='0.05'/%3E%3Cpath d='M5 13h14M10 7v3M14 7v3' stroke='%23ffffff' stroke-width='1' stroke-opacity='0.05'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.7;
}
.footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
  position: relative;
  justify-items: center;
}
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.footer__tagline {
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-lt);
  margin-bottom: 16px;
}
.footer__desc {
  font-size: .85rem;
  color: #94a3b8;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight: 600;
}
.footer__feat-icon {
  width: 32px;
  height: 32px;
  background: rgba(77,124,254,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.footer__mascote {
  width: 140px;
  margin-bottom: 16px;
}
.footer__quote {
  font-size: .9rem;
  color: #94a3b8;
  line-height: 1.6;
}
.footer__quote strong { color: var(--primary-lt); }
.footer__links h4 {
  font-size: .75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-lt);
  margin-bottom: 16px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: .85rem;
  color: #94a3b8;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__links + .footer__links { margin-top: 32px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  text-align: center;
  font-size: .8rem;
  color: #64748b;
  position: relative;
}

@media (max-width: 900px) {
  .footer__main { grid-template-columns: 1fr 1fr; align-items: center; text-align: center;}
  .footer__brand { display: flex; flex-direction: column; align-items: center;}
  .footer__center { grid-column: span 2; order: -1; }
}
@media (max-width: 600px) {
  .footer__main { grid-template-columns: 1fr; gap: 32px; }
  .footer__center { grid-column: span 1; }
}

/* ══════════════════════════════
   HOME — HERO
══════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-page) 60%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  min-height: 480px;
}
.hero__text { padding-bottom: 80px; z-index: 2;}
.hero__title { margin-bottom: 20px; }
.hero__desc { margin-bottom: 32px; max-width: 420px; }
.hero__btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero__img img {
  width: 100%;
  max-width: 420px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.dot-tl { top: 40px; left: 0; }
.dot-br { bottom: 40px; right: 0; }

@media (max-width: 768px) {
  .hero { padding-top: 40px; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 0;}
  .hero__desc { margin: 0 auto 32px; }
  .hero__btns { justify-content: center; }
  .hero__img img { max-width: 260px; }
}

/* ══════════════════════════════
   HOME — DIFERENCIAIS CARDS
══════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1.5px solid var(--bg-soft);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(77,124,254,.14); }
.card__icon {
  width: 52px;
  height: 52px;
  background: var(--bg-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card__title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 12px;
}
.card p { font-size: .9rem; }

@media (max-width: 768px) { .cards-grid { grid-template-columns: 1fr; } }
@media (min-width: 500px) and (max-width: 768px) { .cards-grid { grid-template-columns: 1fr 1fr; } }

/* ══════════════════════════════
   HOME — IA EM AÇÃO
══════════════════════════════ */
.ia-section { background: var(--white); }
.ia-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ia-section__text h2 { margin-bottom: 16px; }
.ia-section__text p { margin-bottom: 32px; }
.device-mockup {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: center;
}
.device-phone {
  width: 120px;
  height: 220px;
  background: var(--dark);
  border-radius: 24px;
  padding: 8px;
  box-shadow: 0 16px 48px rgba(30,41,59,.3);
}
.device-desktop {
  width: 240px;
  height: 160px;
  background: var(--dark);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 16px 48px rgba(30,41,59,.3);
}
.device-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-page);
  border-radius: 16px;
  overflow: hidden;
  padding: 8px;
}
.device-screen .ds-bar {
  height: 6px;
  background: var(--primary);
  border-radius: 3px;
  margin-bottom: 6px;
  width: 60%;
}
.device-screen .ds-line {
  height: 4px;
  background: var(--bg-soft);
  border-radius: 2px;
  margin-bottom: 5px;
}
.device-screen .ds-line.short { width: 70%; }

@media (max-width: 768px) {
  .ia-section__inner { grid-template-columns: 1fr; text-align: center; }
  .ia-section__text p { margin-left: auto; margin-right: auto; }
  .device-mockup { justify-content: center; }
}

/* ══════════════════════════════
   PAGE HERO (páginas internas)
══════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-page) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ══════════════════════════════
   DIFERENCIAIS PAGE
══════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.stat { text-align: center; }
.stat__num {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
}
.stat__label { font-size: .85rem; }

.dif-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.dif-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  border: 1.5px solid var(--bg-soft);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.dif-item:hover { transform: translateY(-3px); }
.dif-item__icon {
  width: 48px;
  height: 48px;
  background: var(--bg-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}
.dif-item__text h3 { margin-bottom: 8px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--bg-soft);
  position: relative;
}
.step__num {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step h3 { margin-bottom: 10px; }

.cta-band {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 56px 40px;
  text-align: center;
}
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { margin-bottom: 32px; }
.cta-band__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .dif-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); padding: 24px; }
}

/* ══════════════════════════════
   PLANOS PAGE
══════════════════════════════ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 2px solid var(--bg-soft);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 36px rgba(0,0,0,.13);
}
.plan-card--popular {
  border-color: var(--primary);
  position: relative;
}
.plan-card--dark {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.plan-card--enterprise {
  border-color: var(--dark);
  border-style: dashed;
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 50px;
}
.plan-card__sticker {
  position: absolute;
  top: -33px;
  right: -25px;
  width: 80px;
  transform: rotate(12deg);
  pointer-events: none;
}
.plan-name {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.plan-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-card--dark .plan-price { color: var(--accent); }
.plan-price sup { font-size: 1rem; vertical-align: super; }
.plan-price span { font-size: 1rem; color: var(--gray); font-weight: 400; }
.plan-card--dark .plan-price span { color: #94a3b8; }
.plan-enterprise-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 8px;
}
.plan-period { font-size: .85rem; margin-bottom: 24px; }
.plan-divider { border: none; border-top: 1px solid var(--bg-soft); margin: 20px 0; }
.plan-card--dark .plan-divider { border-color: rgba(255,255,255,.12); }
.plan-features { flex: 1; margin-bottom: 28px; }
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  margin-bottom: 12px;
  color: var(--dark);
}
.plan-card--dark .plan-feature { color: #cbd5e1; }
.plan-feature::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--primary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 12l2 2 4-4' stroke='white' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='12' r='10' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-card--dark .plan-feature::before { background: var(--accent); }
.plan-btn { margin-top: auto; text-align: center; }
.plan-btn .btn { width: 100%; justify-content: center; }
.plan-card--dark .plan-period { color: #94a3b8; }
.plan-card--dark .plan-btn .btn {
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.2);
  color: #fff;
}

/* FAQ Accordion */
.faq { max-width: 700px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--bg-soft);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
}
.faq-icon {
  font-size: 1.3rem;
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: .93rem;
  color: var(--gray);
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }

@media (max-width: 1000px) { .plans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .plans-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════
   CONTATO PAGE
══════════════════════════════ */
.contact-intro {
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
}
.contact-intro h2 { margin-bottom: 12px; }
.contact-form {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--bg-soft);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--bg-soft);
  border-radius: 10px;
  font-family: var(--font);
  font-size: .95rem;
  color: var(--dark);
  background: var(--bg-page);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); background: var(--white); }
.form-group textarea { height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-btn { width: 100%; margin-top: 8px; justify-content: center; font-size: 1rem; padding: 14px; }
.form-feedback {
  display: none;
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
}
.form-feedback.success { background: #d1fae5; color: #065f46; display: block; }
.form-feedback.error   { background: #fee2e2; color: #991b1b; display: block; }

.contact-direct {
  margin-top: 64px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  border: 1.5px solid var(--bg-soft);
  box-shadow: var(--shadow);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.contact-direct h3 { margin-bottom: 32px; text-align: center; }
.contact-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.contact-item { text-align: center; }
.contact-item__icon {
  width: 52px;
  height: 52px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.3rem;
}
.contact-item h4 { font-size: .85rem; margin-bottom: 4px; }
.contact-item p { font-size: .85rem; }
.contact-socials { text-align: center; }
.contact-socials p { margin-bottom: 16px; font-size: .9rem; font-weight: 600; color: var(--dark); }
.social-links { display: flex; gap: 12px; justify-content: center; }
.social-link {
  width: 44px;
  height: 44px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: .8rem;
  transition: background var(--transition), color var(--transition);
}
.social-link:hover { background: var(--primary); color: var(--white); }

@media (max-width: 600px) {
  .contact-form, .contact-direct { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-items { grid-template-columns: 1fr; }
}

/* ══════════════════════════════
   PÁGINAS SECUNDÁRIAS
══════════════════════════════ */
.doc-page { max-width: 760px; margin: 0 auto; }
.doc-page h2 { margin-bottom: 12px; margin-top: 40px; }
.doc-page h2:first-of-type { margin-top: 0; }
.doc-page p { margin-bottom: 16px; }
.doc-page ul { padding-left: 20px; margin-bottom: 16px; }
.doc-page ul li { list-style: disc; margin-bottom: 8px; font-size: .95rem; color: var(--gray); }

.alert-box {
  background: var(--bg-soft);
  border-left: 4px solid var(--primary);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 32px 0;
}
.alert-box h3 { margin-bottom: 8px; color: var(--primary); }
.alert-box p { margin-bottom: 0; }

.help-steps { counter-reset: step; }
.help-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  counter-increment: step;
}
.help-step::before {
  content: counter(step);
  min-width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
