/* ═══════════════════════════════════════════════════
   MIGO — World-Class SaaS Theme
   Premium fintech aesthetic for accounting firms
   ═══════════════════════════════════════════════════ */

/* ===== TOKENS ===== */
:root {
  --bg:           #F8F6F0;
  --surface:      #F0ECE4;
  --surface-2:    #E8E2D8;
  --surface-3:    #DDD8CE;
  --border:       #DDD8CE;
  --border-light: #E8E2D8;
  --fg:           #171412;
  --fg-muted:     #6B6560;
  --fg-subtle:    #9E9890;
  --white:        #FFFFFF;
  --white-warm:   #FEFDFB;

  /* Brand */
  --migo-green:   #1B4D3E;
  --migo-green-light: #1F6850;
  --migo-green-dim: rgba(27,77,62,0.08);
  --migo-orange:  #C0541A;
  --migo-amber:   #B87220;
  --migo-green-pale: #EFF4F2;

  /* Status */
  --green-bright: #1A9E60;
  --green-dim:    rgba(26, 158, 96, 0.12);
  --amber-bright: #D97706;
  --amber-dim:    rgba(217, 119, 6, 0.12);
  --red-bright:   #DC2626;
  --red-dim:      rgba(220, 38, 38, 0.12);

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --max-w:        1200px;
  --section-pad:  112px;

  /* Motion */
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ===== SELECTION ===== */
::selection { background: var(--migo-green); color: white; }

/* ══════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--migo-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-mark svg { color: white; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--migo-green);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color 0.2s var(--ease-out);
}
.nav-links a:hover { color: var(--fg); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.15s;
}
.nav-hamburger:hover { background: var(--surface); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg-muted);
  border-radius: 2px;
  transition: all 0.25s var(--ease-out);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(250, 250, 247, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
  animation: slide-down 0.2s var(--ease-out);
}
@keyframes slide-down {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg-muted);
  padding: 12px 16px;
  border-radius: 10px;
  transition: all 0.15s;
}
.nav-mobile-menu a:hover { background: var(--surface); color: var(--fg); }
.nav-mobile-divider { height: 1px; background: var(--border); margin: 8px 0; }

/* Nav CTA Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.2s var(--ease-out);
  padding: 9px 20px;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--migo-green);
  color: white;
  box-shadow: 0 1px 2px rgba(27, 77, 62, 0.25), 0 0 0 1px rgba(27, 77, 62, 0.08);
}
.btn-primary:hover {
  background: var(--migo-green-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(27, 77, 62, 0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--surface); color: var(--fg); }
.btn-sm { padding: 7px 14px; font-size: 0.8rem; border-radius: 7px; }
.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: 10px; letter-spacing: -0.01em; }

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 40px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: calc(100vh - 64px);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--migo-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}
.hero-headline em {
  font-style: normal;
  color: var(--migo-green);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 36px;
}
.hero-cta-group { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-cta-sub {
  font-size: 0.78rem;
  color: var(--fg-subtle);
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-cta-sub svg { color: var(--green-bright); }

/* WhatsApp Mockup */
.whatsapp-mockup {
  background: #ECE5DD;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(27, 77, 62, 0.12),
    0 8px 24px rgba(27, 77, 62, 0.06),
    0 0 0 1px rgba(0,0,0,0.06);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  position: relative;
}
.wa-notch {
  background: #0B7A57;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-notch::before {
  content: '';
  width: 80px;
  height: 12px;
  background: rgba(0,0,0,0.25);
  border-radius: 0 0 8px 8px;
}
.wa-header {
  background: #0B7A57;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-dots { display: flex; gap: 4px; }
.wa-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
}
.wa-title { font-weight: 600; color: white; font-size: 0.9rem; flex: 1; letter-spacing: 0.01em; }
.wa-subtitle {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 2px 8px;
}
.wa-messages { padding: 18px 14px; display: flex; flex-direction: column; gap: 10px; }
.wa-msg p { font-size: 0.84rem; line-height: 1.45; }
.wa-msg-in { align-self: flex-start; }
.wa-msg-in p {
  background: white;
  color: #111;
  padding: 9px 14px;
  border-radius: 14px 14px 14px 3px;
  max-width: 220px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.wa-msg-out { align-self: flex-end; }
.wa-msg-out p {
  background: #DCF8C6;
  color: #111;
  padding: 9px 14px;
  border-radius: 14px 14px 3px 14px;
  max-width: 220px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.wa-input-bar {
  background: #F0EDE8;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.wa-input {
  flex: 1;
  background: white;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.8rem;
  color: #999;
  border: 1px solid rgba(0,0,0,0.08);
}
.wa-send {
  width: 32px; height: 32px;
  background: #0B7A57;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-send svg { width: 14px; height: 14px; }

/* Hero trust strip */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.trust-label { font-size: 0.75rem; color: var(--fg-muted); }
.trust-divider { width: 1px; height: 32px; background: var(--border); }

/* ══════════════════════════════════════════════════
   SECTION LABELS
   ══════════════════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--migo-orange);
  margin-bottom: 16px;
}
.section-label svg { width: 14px; height: 14px; }
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ══════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════ */
.how {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad) 40px;
}
.how-header { margin-bottom: 56px; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: all 0.25s var(--ease-out);
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27, 77, 62, 0.08);
  border-color: rgba(27, 77, 62, 0.15);
}
.step-icon {
  width: 52px;
  height: 52px;
  background: var(--green-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--migo-green);
}
.step-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--migo-green);
  opacity: 0.12;
  letter-spacing: -0.03em;
  line-height: 1;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.step-es {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--migo-orange);
  font-weight: 500;
  font-style: italic;
  background: rgba(212, 83, 30, 0.07);
  padding: 4px 10px;
  border-radius: 6px;
}
.step-arrow {
  display: none;
}

/* ══════════════════════════════════════════════════
   PORTAL / ACCOUNTANT SECTION
   ══════════════════════════════════════════════════ */
.portal { padding: var(--section-pad) 40px; }
.portal-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.portal-header { margin-bottom: 32px; }
.portal-desc {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}
.portal-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.portal-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.925rem;
  color: var(--fg);
  font-weight: 500;
}
.portal-features svg { flex-shrink: 0; margin-top: 2px; color: var(--migo-green); }
.portal-cta { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Dashboard screenshot */
.portal-visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(27, 77, 62, 0.18),
    0 0 0 1px rgba(0,0,0,0.08);
}
.portal-visual img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

/* ══════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════ */
.pricing {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-inner { max-width: var(--max-w); margin: 0 auto; padding: var(--section-pad) 40px; }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 860px; margin: 0 auto; }
.pricing-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  background: var(--bg);
  transition: all 0.25s var(--ease-out);
  position: relative;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.pricing-card.featured {
  border-color: var(--migo-green);
  border-width: 2px;
  background: linear-gradient(135deg, rgba(27, 77, 62, 0.03) 0%, var(--bg) 60%);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--migo-green);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.card-name {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.card-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px; }
.price-dollar { font-family: var(--font-display); font-size: 1.4rem; color: var(--fg); font-weight: 700; }
.price-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-per { font-size: 0.88rem; color: var(--fg-muted); margin-left: 6px; }
.card-tagline { font-size: 0.82rem; color: var(--fg-subtle); margin-bottom: 28px; }
.card-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.card-features li {
  font-size: 0.9rem;
  color: var(--fg);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.card-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--migo-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.card-check svg { width: 11px; height: 11px; color: white; }
.card-footer { margin-top: 28px; }
.pricing-note {
  font-size: 0.88rem;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.7;
  max-width: 580px;
  margin: 32px auto 0;
}

/* ══════════════════════════════════════════════════
   MANIFESTO / TRUST SECTION
   ══════════════════════════════════════════════════ */
.manifesto { background: var(--migo-green); color: white; }
.manifesto-inner { max-width: 800px; margin: 0 auto; padding: var(--section-pad) 40px; }
.manifesto-line { width: 48px; height: 3px; background: var(--migo-orange); margin-bottom: 32px; }
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.manifesto-body { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 48px; }
.manifesto-footer {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  line-height: 1.65;
  border-left: 3px solid var(--migo-orange);
  padding-left: 20px;
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.footer { border-top: 1px solid var(--border); background: var(--bg); }
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 40px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
}
.footer-brand { max-width: 340px; }
.footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-mark {
  width: 34px; height: 34px;
  background: var(--migo-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-mark svg { color: white; }
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--migo-green);
}
.footer-tagline { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.65; }
.footer-cols { display: flex; gap: 48px; }
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-subtle);
  margin-bottom: 14px;
}
.footer-col-links { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-col-links a { font-size: 0.875rem; color: var(--fg-muted); transition: color 0.15s; }
.footer-col-links a:hover { color: var(--fg); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 40px 36px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--fg-subtle);
}
.footer-bottom a { color: var(--fg-muted); }
.footer-bottom a:hover { color: var(--fg); }
.footer-legal-links { display: flex; gap: 24px; }

/* ══════════════════════════════════════════════════
   ENTRANCE ANIMATIONS
   ══════════════════════════════════════════════════ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
  animation: fade-up 0.6s var(--ease-out) both;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; min-height: auto; padding: 56px 32px; }
  .hero-visual { order: -1; }
  .portal-inner { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-menu { display: none; }
  .hero { padding: 40px 20px 36px; }
  .hero-trust { gap: 16px; }
  .trust-divider { display: none; }
  .trust-item { flex: 1; min-width: 80px; }
  .how-inner, .portal, .pricing, .manifesto-inner { padding: 56px 20px; }
  .how-steps { grid-template-columns: 1fr; gap: 16px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .footer-inner { padding: 48px 20px 24px; grid-template-columns: 1fr; }
  .footer-cols { gap: 32px; }
  .footer-bottom { padding: 20px 20px 28px; flex-direction: column; gap: 12px; text-align: center; }
  .portal-visual { border-radius: 12px; }
  .manifesto-inner { padding: 56px 20px; }
  .smbs-inner { padding: 56px 20px; }
}

/* ══════════════════════════════════════════════════
   TRUST LOGOS
   ══════════════════════════════════════════════════ */
.trust-logos {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  padding: 36px 0;
}
.trust-logos-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.trust-logos-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-subtle);
}
.trust-logos-row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-logo-item {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fg-subtle);
  letter-spacing: -0.01em;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.trust-logo-item:hover { opacity: 1; }
.trust-logo-divider { width: 1px; height: 18px; background: var(--border); }

/* ══════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════ */
.testimonials {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.testimonials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad) 40px;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 52px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.2s var(--ease-out);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.testimonial-quote {
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-quote::before { content: '"'; }
.testimonial-quote::after { content: '"'; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--migo-green);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-meta { display: flex; flex-direction: column; gap: 2px; }
.testimonial-name { font-size: 0.875rem; font-weight: 600; color: var(--fg); }
.testimonial-role { font-size: 0.78rem; color: var(--fg-muted); }
.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--amber-bright);
}

/* ══════════════════════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════════════════════ */
.faq { background: var(--white); }
.faq-inner { max-width: 760px; margin: 0 auto; padding: var(--section-pad) 40px; }
.faq-header { text-align: center; margin-bottom: 52px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  transition: color 0.15s;
}
.faq-question:hover { color: var(--migo-green); }
.faq-question svg { flex-shrink: 0; transition: transform 0.25s var(--ease-out); color: var(--fg-muted); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease-out), padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 22px; }
.faq-answer p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; }

/* ══════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════ */
.cta-banner {
  background: var(--migo-green);
  color: white;
  text-align: center;
}
.cta-banner-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--section-pad) 40px;
}
.cta-banner-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-banner-sub { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 36px; }
.cta-banner-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-white-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.btn-white-solid {
  background: white;
  color: var(--migo-green);
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: none;
}
.btn-white-solid:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }

/* ══════════════════════════════════════════════════
   UPDATED HERO
   ══════════════════════════════════════════════════ */
.hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 80px;
}
.hero-content { display: flex; flex-direction: column; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--migo-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  background: var(--migo-green-pale);
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
}
.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  animation: pulse-dot 2s infinite;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-headline em {
  font-style: normal;
  color: var(--migo-green);
  display: block;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 32px;
}
.hero-cta-group { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-cta-sub {
  font-size: 0.78rem;
  color: var(--fg-subtle);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
}
.hero-cta-sub svg { color: var(--green-bright); }

/* Dashboard Preview Card */
.hero-visual { position: relative; }
.dashboard-preview {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(27,77,62,0.15), 0 8px 32px rgba(27,77,62,0.08);
}
.dash-preview-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dash-preview-dots { display: flex; gap: 6px; }
.dash-preview-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.dash-preview-dots span:nth-child(1) { background: #FF5F57; }
.dash-preview-dots span:nth-child(2) { background: #FFBD2E; }
.dash-preview-dots span:nth-child(3) { background: #28CA41; }
.dash-preview-title { font-size: 0.78rem; font-weight: 500; color: var(--fg-muted); margin-left: 8px; }
.dash-preview-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.dash-preview-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.dash-preview-kpi {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}
.kpi-min-val { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--fg); letter-spacing: -0.03em; }
.kpi-min-lbl { font-size: 0.62rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; margin-top: 2px; }
.dash-preview-table { background: var(--white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.dash-preview-table-row {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  gap: 12px;
  border-bottom: 1px solid var(--border-light);
}
.dash-preview-table-row:last-child { border-bottom: none; }
.dash-preview-table-row:nth-child(even) { background: rgba(240,236,228,0.3); }
.dp-avatar { width: 30px; height: 30px; border-radius: 8px; background: var(--migo-green-dim); color: var(--migo-green); font-size: 0.65rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dp-name { font-size: 0.78rem; font-weight: 600; color: var(--fg); flex: 1; }
.dp-badge { font-size: 0.65rem; font-weight: 700; padding: 3px 8px; border-radius: 5px; }
.dp-badge.green { background: var(--green-dim); color: #15803D; }
.dp-badge.amber { background: var(--amber-dim); color: #92400E; }
.dp-badge.gray { background: var(--surface); color: var(--fg-muted); }

/* Trust strip */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.trust-label { font-size: 0.72rem; color: var(--fg-muted); font-weight: 500; }
.trust-divider { width: 1px; height: 28px; background: var(--border); }

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-menu { display: none; }
  .hero-inner { padding: 48px 20px 56px; }
  .hero-trust { gap: 16px; }
  .trust-divider { display: none; }
  .trust-item { flex: 1; min-width: 80px; }
  .how-inner, .portal, .pricing, .manifesto-inner, .testimonials-inner, .cta-banner-inner, .faq-inner { padding: 56px 20px; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .footer-inner { padding: 48px 20px 24px; grid-template-columns: 1fr; }
  .footer-cols { gap: 32px; }
  .footer-bottom { padding: 20px 20px 28px; flex-direction: column; gap: 12px; text-align: center; }
  .portal-visual { border-radius: 12px; }
  .smbs-inner { padding: 56px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .dash-preview-kpis { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-cta-group .btn-lg { width: 100%; justify-content: center; }
}