/* ============================================================
   AGENTY — Design System
   Consultoria de IA para Pequenos Negócios em Curitiba
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --bg:         #080812;
  --bg-2:       #0d0d1c;
  --bg-3:       #12122a;
  --card:       rgba(255,255,255,0.03);
  --card-hover: rgba(255,255,255,0.055);
  --border:     rgba(255,255,255,0.07);
  --border-2:   rgba(124,92,252,0.25);

  --primary:       #7c5cfc;
  --primary-light: #a78bfa;
  --primary-dark:  #5b3fd4;
  --accent:        #10b981;
  --accent-light:  #34d399;
  --danger:        #f43f5e;
  --warn:          #f59e0b;

  --grad-primary: linear-gradient(135deg, #7c5cfc 0%, #06b6d4 100%);
  --grad-card:    linear-gradient(135deg, rgba(124,92,252,0.08), rgba(6,182,212,0.04));
  --grad-hero:    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(124,92,252,0.25) 0%, transparent 70%);
  --grad-cta:     linear-gradient(135deg, #7c5cfc, #5b3fd4);

  --text:        #f1f5f9;
  --text-2:      #94a3b8;
  --text-3:      #475569;

  --font:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --shadow:     0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 32px rgba(124,92,252,0.2);

  --nav-h: 72px;
  --max-w: 1160px;
  --gap:   clamp(24px, 4vw, 64px);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ── Typography ──────────────────────────────────────────── */
.display {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; }
.h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
.h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.3; }
.h4 { font-size: 1.1rem; font-weight: 600; }
.body-lg { font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.7; color: var(--text-2); }
.body    { font-size: 1rem; line-height: 1.65; color: var(--text-2); }
.small   { font-size: 0.875rem; }
.xs      { font-size: 0.75rem; }
.caption { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); }

.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.accent-text { color: var(--accent); }
.primary-text { color: var(--primary-light); }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}
.section { padding: clamp(64px, 10vw, 120px) 0; }
.section--sm { padding: clamp(40px, 6vw, 72px) 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 3vw, 32px); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.flex       { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col   { display: flex; flex-direction: column; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

.text-center { text-align: center; }
.mx-auto     { margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,92,252,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124,92,252,0.5);
}
.btn-outline {
  border: 1px solid var(--border-2);
  color: var(--primary-light);
  background: rgba(124,92,252,0.06);
}
.btn-outline:hover {
  background: rgba(124,92,252,0.12);
  border-color: var(--primary);
}
.btn-ghost {
  color: var(--text-2);
  padding: 14px 20px;
}
.btn-ghost:hover { color: var(--text); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,8,18,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}
.nav__logo svg { flex-shrink: 0; }
.nav__logo span { background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav__cta { margin-left: 8px; }

.nav__mobile-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.nav__mobile-btn:hover { background: rgba(255,255,255,0.05); }
.nav__mobile-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav__mobile-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__mobile-btn.open span:nth-child(2) { opacity: 0; }
.nav__mobile-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(8,8,18,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 16px;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
}
.nav__mobile-menu.open { display: flex; }
.nav__mobile-link {
  padding: 14px 16px;
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s, background 0.2s;
}
.nav__mobile-link:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav__mobile-cta { margin-top: 8px; display: block; text-align: center; }

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

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: clamp(80px, 10vw, 140px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.06) 0%, transparent 70%);
  bottom: -200px;
  right: -100px;
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--border-2);
  background: rgba(124,92,252,0.08);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 28px;
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero__headline { margin-bottom: 24px; }
.hero__sub {
  max-width: 560px;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-3);
}
.hero__trust-item svg { color: var(--accent); flex-shrink: 0; }

/* ── Section Headers ──────────────────────────────────────── */
.section-header {
  margin-bottom: clamp(40px, 6vw, 64px);
}
.section-header.center { text-align: center; }
.section-header .caption { margin-bottom: 12px; }
.section-header .h2 { margin-bottom: 16px; }

/* ── Problem Section ─────────────────────────────────────── */
.problems { background: var(--bg-2); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 24px);
  margin-bottom: 48px;
}
.problem-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card);
  transition: all 0.3s ease;
}
.problem-card:hover { background: var(--card-hover); border-color: rgba(244,63,94,0.2); transform: translateY(-2px); }
.problem-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(244,63,94,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.problem-card__title { font-weight: 600; margin-bottom: 8px; }
.problem-card__text { font-size: 0.9rem; color: var(--text-2); line-height: 1.6; }
.problems__cta { text-align: center; }
.problems__cta p { color: var(--text-2); margin-bottom: 8px; }
.problems__cta strong { color: var(--text); }

@media (max-width: 768px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* ── Services ────────────────────────────────────────────── */
.service-card {
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover { background: var(--card-hover); border-color: var(--border-2); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(124,92,252,0.15), rgba(6,182,212,0.1));
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
}
.service-card__title { margin-bottom: 10px; }
.service-card__text { font-size: 0.9rem; color: var(--text-2); line-height: 1.65; margin-bottom: 20px; }
.service-card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(124,92,252,0.1);
  border: 1px solid rgba(124,92,252,0.2);
  color: var(--primary-light);
}
.tag--accent {
  background: rgba(16,185,129,0.1);
  border-color: rgba(16,185,129,0.2);
  color: var(--accent-light);
}

/* ── How It Works ─────────────────────────────────────────── */
.how { background: var(--bg-2); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 4vw, 48px);
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-2), transparent);
}
.step {
  text-align: center;
  position: relative;
}
.step__num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 2px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--grad-primary);
  color: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 24px rgba(124,92,252,0.3);
}
.step__title { margin-bottom: 12px; }
.step__text { font-size: 0.9rem; color: var(--text-2); line-height: 1.65; }

@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { display: none; }
}

/* ── Why Agenty ──────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card);
  transition: all 0.3s ease;
}
.why-item:hover { background: var(--card-hover); border-color: var(--border-2); }
.why-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-item__title { font-weight: 600; margin-bottom: 4px; }
.why-item__text { font-size: 0.88rem; color: var(--text-2); }
.why__visual {
  padding: clamp(32px, 5vw, 48px);
  border-radius: var(--radius-xl);
  background: var(--grad-card);
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-glow);
}
.why__stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why__stat {
  text-align: center;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(8,8,18,0.5);
  border: 1px solid var(--border);
}
.why__stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.why__stat-label { font-size: 0.82rem; color: var(--text-2); line-height: 1.4; }

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .why__visual { order: -1; }
  .why__stat-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Segments ────────────────────────────────────────────── */
.segments { background: var(--bg-2); }
.segment-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card);
  transition: all 0.25s ease;
  cursor: default;
}
.segment-card:hover { background: var(--card-hover); border-color: var(--border-2); transform: translateY(-2px); }
.segment-card__icon { font-size: 2rem; margin-bottom: 12px; }
.segment-card__title { font-weight: 600; margin-bottom: 8px; }
.segment-card__text { font-size: 0.85rem; color: var(--text-2); }

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,252,0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-box {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 80px) clamp(24px, 6vw, 64px);
  border-radius: var(--radius-xl);
  background: var(--grad-card);
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-glow);
}
.cta-box .h2 { margin-bottom: 16px; }
.cta-box .body { margin-bottom: 32px; color: var(--text-2); max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-box .btn { margin-bottom: 20px; }
.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-guarantee-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-3);
}
.cta-guarantee-item svg { color: var(--accent); }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonial-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card);
}
.testimonial-card__stars { color: #f59e0b; font-size: 1rem; margin-bottom: 12px; }
.testimonial-card__text { font-size: 0.95rem; line-height: 1.7; color: var(--text-2); margin-bottom: 20px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 600; font-size: 0.9rem; }
.testimonial-card__role { font-size: 0.78rem; color: var(--text-3); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  overflow: hidden;
}
.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-weight: 600;
  color: var(--text);
  gap: 16px;
  transition: background 0.2s;
}
.faq-item__btn:hover { background: var(--card-hover); }
.faq-item__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-light);
  font-size: 1.1rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); }
.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-item__body { max-height: 400px; }
.faq-item__body p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: clamp(40px, 6vw, 64px) 0 clamp(24px, 4vw, 32px);
  background: var(--bg-2);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--gap);
  margin-bottom: 48px;
}
.footer__brand p { font-size: 0.88rem; color: var(--text-2); margin-top: 12px; max-width: 260px; line-height: 1.7; }
.footer__col h4 { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-3); margin-bottom: 16px; }
.footer__col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-2);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: 0.82rem; color: var(--text-3); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 0.82rem; color: var(--text-3); transition: color 0.2s; }
.footer__legal a:hover { color: var(--text-2); }

@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ── Page Header (inner pages) ───────────────────────────── */
.page-header {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 64px;
  text-align: center;
  position: relative;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(124,92,252,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-header__inner { position: relative; z-index: 1; }

/* ── Legal pages ─────────────────────────────────────────── */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}
.legal-content h2 { font-size: 1.35rem; font-weight: 700; margin: 40px 0 16px; color: var(--text); }
.legal-content h3 { font-size: 1.05rem; font-weight: 600; margin: 28px 0 10px; color: var(--text); }
.legal-content p { font-size: 0.95rem; color: var(--text-2); line-height: 1.75; margin-bottom: 16px; }
.legal-content ul { margin: 0 0 16px 20px; }
.legal-content ul li { font-size: 0.95rem; color: var(--text-2); line-height: 1.75; list-style: disc; margin-bottom: 8px; }
.legal-content a { color: var(--primary-light); text-decoration: underline; text-decoration-color: rgba(167,139,250,0.4); }
.legal-content a:hover { color: var(--primary); }

/* ── Divider ─────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: clamp(40px, 6vw, 64px) 0;
}

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-3);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--text-3); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--primary-light); }
.breadcrumb span { color: var(--primary-light); }

/* ── Scroll animations ───────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }

/* ── Utilities ───────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.highlight { background: rgba(124,92,252,0.15); border-radius: 4px; padding: 2px 8px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid;
}
.badge--green { color: var(--accent); border-color: rgba(16,185,129,0.3); background: rgba(16,185,129,0.08); }
.badge--purple { color: var(--primary-light); border-color: rgba(124,92,252,0.3); background: rgba(124,92,252,0.08); }
