*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --bg: #fafafa;
  --surface: #ffffff;
  --text: #0f172a;
  --text-secondary: #475569;
  --muted: #64748b;
  --border: #e2e8f0;
  --sidebar-bg: #0f172a;
  --sidebar-muted: #94a3b8;
  --green-900: #064e3b;
  --green-800: #065f46;
  --green-700: #047857;
  --green-600: #059669;
  --green-50: #ecfdf5;
  --purple-50: #f5f3ff;
  --purple-600: #7c3aed;
  --amber-50: #fffbeb;
  --amber-600: #d97706;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --max-width: 1140px;
  --sidebar-width: 272px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max-width), 100% - 2.5rem);
  margin-inline: auto;
}

/* ── Shell ── */

.site-shell {
  display: flex;
  min-height: 100vh;
}

.site-main {
  flex: 1;
  margin-left: var(--sidebar-width);
  min-width: 0;
}

/* ── Sidebar ── */

.site-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 200;
  width: var(--sidebar-width);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem 1.25rem;
  background: var(--sidebar-bg);
  color: #e2e8f0;
  overflow-y: auto;
}

.sidebar-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.sidebar-close {
  display: none;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: #fff;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--green-700);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.brand-mark--sm {
  width: 28px;
  height: 28px;
  font-size: 0.65rem;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.brand-text {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.brand-tagline {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
  max-width: 160px;
}

.sidebar-label {
  display: block;
  margin-bottom: 0.625rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.sidebar-link {
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: #cbd5e1;
  border-left: 3px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.sidebar-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.sidebar-link-ativo {
  background: rgba(5, 150, 105, 0.16);
  color: #fff;
  border-left-color: var(--green-600);
}

/* ── Nav dropdown (Soluções) ── */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
}

.sidebar-nav .nav-dropdown-toggle {
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: #cbd5e1;
  background: transparent;
  border-left: 3px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.sidebar-nav .nav-dropdown-toggle:hover,
.sidebar-nav .nav-dropdown--open .nav-dropdown-toggle {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.nav-dropdown-chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.55;
  transition: transform 0.2s ease;
}

.nav-dropdown--open .nav-dropdown-chevron {
  transform: rotate(180deg);
  opacity: 0.85;
}

.nav-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-nav .nav-dropdown-menu {
  padding: 0.125rem 0 0.25rem 0.75rem;
}

.sidebar-nav .nav-dropdown-menu[hidden] {
  display: none;
}

.sidebar-nav .nav-dropdown-item {
  display: block;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.125rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  border-left: 3px solid transparent;
  transition: background 0.15s, color 0.15s;
}

.sidebar-nav .nav-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.sidebar-quick {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-quick-btn {
  display: block;
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.15s;
}

.sidebar-quick-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.sidebar-quick-btn--primary {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
}

.sidebar-quick-btn--primary:hover {
  background: var(--green-800);
}

.sidebar-quick-btn--purple {
  background: var(--purple-600);
  border-color: var(--purple-600);
  color: #fff;
}

.sidebar-quick-btn--purple:hover {
  background: #6d28d9;
}

.sidebar-lang {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 1024px) {
  .sidebar-lang {
    display: none;
  }
}

/* ── Locale switcher ── */

.locale-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.locale-switch__icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--muted);
}

.locale-switch__track {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid var(--border);
}

.locale-switch__option {
  min-width: 2.5rem;
  padding: 0.35rem 0.7rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.locale-switch__option:hover {
  color: var(--text-secondary);
}

.locale-switch__option--active {
  background: var(--white);
  color: var(--text);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.locale-switch--dark .locale-switch__icon {
  color: var(--sidebar-muted);
}

.locale-switch--dark .locale-switch__track {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.locale-switch--dark .locale-switch__option {
  color: rgba(255, 255, 255, 0.5);
}

.locale-switch--dark .locale-switch__option:hover {
  color: rgba(255, 255, 255, 0.75);
}

.locale-switch--dark .locale-switch__option--active {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.sidebar-apps {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-store-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 0.15s;
}

.store-badge:hover {
  background: rgba(0, 0, 0, 0.3);
}

.store-badge-icon svg {
  width: 20px;
  height: 20px;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-badge-text small {
  font-size: 0.6rem;
  opacity: 0.7;
}

.store-badge-text strong {
  font-size: 0.8rem;
}

.sidebar-footer {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-made-in {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.sidebar-copy {
  margin: 0;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Top nav (desktop) ── */

.mobile-topbar {
  display: none;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.top-nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.top-nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.15s;
}

.top-nav-links a:hover {
  color: var(--text);
}

.top-nav-links .nav-dropdown-toggle {
  padding: 0;
  background: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.15s;
}

.top-nav-links .nav-dropdown-toggle:hover,
.top-nav-links .nav-dropdown--open .nav-dropdown-toggle {
  color: var(--text);
}

.top-nav-links .nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.625rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 11.5rem;
  padding: 0.375rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}

.top-nav-links .nav-dropdown-menu[hidden] {
  display: none;
}

.top-nav-links .nav-dropdown-item {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: background 0.15s, color 0.15s;
}

.top-nav-links .nav-dropdown-item:hover {
  background: var(--bg);
  color: var(--text);
}

.top-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.125rem;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green-800);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-900);
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg);
}

.btn-white {
  background: #fff;
  color: var(--green-900);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
}

.btn-sm {
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
}

/* ── Hero ── */

.hero {
  padding: 3.5rem 0 4rem;
  background: var(--white);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
  }
}

.hero-copy h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 48ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  background: var(--green-50);
  color: var(--green-800);
  font-size: 0.8125rem;
  font-weight: 500;
}

.trust-pill-icon {
  font-size: 0.75rem;
}

.hero-visual img {
  width: 100%;
}

/* ── Sections ── */

.section {
  padding: 4.5rem 0;
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head--center {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  margin: 0 0 0.625rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.0625rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-700);
}

/* ── Solution cards ── */

.solutions-section {
  background: var(--bg);
}

.solution-cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .solution-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.solution-card {
  padding: 1.75rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.solution-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.solution-card--green {
  background: linear-gradient(160deg, #f0fdf4 0%, #fff 60%);
  border-color: #bbf7d0;
}

.solution-card--purple {
  background: linear-gradient(160deg, var(--purple-50) 0%, #fff 60%);
  border-color: #ddd6fe;
}

.solution-card--amber {
  background: linear-gradient(160deg, var(--amber-50) 0%, #fff 60%);
  border-color: #fde68a;
}

.solution-card-icon {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.solution-card h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.solution-card > p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.solution-card ul {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.solution-card li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.solution-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green-700);
}

.solution-card-link {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-800);
}

.solution-card-link--purple {
  color: var(--purple-600);
}

.solution-card--purple li::before {
  background: var(--purple-600);
}

.solution-card-muted {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-live {
  background: var(--green-50);
  color: var(--green-800);
}

.badge-live--purple {
  background: var(--purple-50);
  color: var(--purple-600);
}

.badge-soon,
.badge-future {
  background: #f1f5f9;
  color: var(--muted);
}

/* ── Benefits ── */

.benefits-section {
  background: var(--white);
}

.benefits-title {
  text-align: center;
  margin: 0 0 2.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin-inline: auto;
}

.benefits-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.benefit-card h3 {
  margin: 0 0 0.375rem;
  font-size: 1rem;
  font-weight: 600;
}

.benefit-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── How it works ── */

.how-section {
  background: var(--bg);
}

.steps-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  text-align: center;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--green-800);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
}

.step-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
}

.step-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ── About ── */

.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }
}

.about-grid h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-copy p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── CTA Banner ── */

.cta-banner {
  position: relative;
  padding: 5rem 0;
  background: var(--sidebar-bg);
  color: #fff;
  overflow: hidden;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.82) 100%),
    url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?w=1400&q=80&auto=format') center / cover no-repeat;
  opacity: 1;
}

.cta-banner-inner {
  position: relative;
  text-align: center;
  max-width: 640px;
}

.cta-banner h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cta-banner p {
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  opacity: 0.85;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ── Footer ── */

.site-footer {
  background: var(--white);
  color: var(--text-secondary);
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.footer-made-in {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

.footer-col h4 {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-col a {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  margin: 0 0 0.375rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

.footer-note {
  font-size: 0.75rem !important;
  max-width: 60ch;
}

/* ── Mobile ── */

.site-backdrop {
  display: none;
}

@media (max-width: 1023px) {
  .site-main {
    margin-left: 0;
  }

  .site-sidebar {
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    box-shadow: var(--shadow-lg);
  }

  .site-sidebar--open {
    transform: translateX(0);
  }

  .sidebar-close {
    display: grid;
    place-items: center;
  }

  .site-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 150;
    background: rgba(0, 0, 0, 0.5);
  }

  .site-backdrop[hidden] {
    display: none;
  }

  body.sidebar-open {
    overflow: hidden;
  }

  .top-nav {
    display: none;
  }

  .mobile-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
  }

  .mobile-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
  }

  .sidebar-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--bg);
    cursor: pointer;
  }

  .sidebar-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin-inline: auto;
    background: var(--text);
    border-radius: 1px;
  }

  .hero {
    padding: 2rem 0 3rem;
  }

  .section {
    padding: 3rem 0;
  }
}

/* ── Legal / Privacy page ── */

.legal-page {
  padding: 2.5rem 0 4rem;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(16, 185, 129, 0.08), transparent 55%),
    var(--bg);
  min-height: 70vh;
}

.legal-page__inner {
  max-width: 720px;
}

.legal-page__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
}

.legal-page h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.legal-page__updated {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-page__intro {
  margin: 0 0 2rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.legal-sections {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.legal-section h2 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.legal-section p {
  margin: 0 0 0.65rem;
  color: var(--text-secondary);
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.footer-note a {
  color: var(--green-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}
