/* =============================================
   NECTIO GLOBAL DESIGN SYSTEM v2
   Rollback point: commit aabe8d5 (pre-restyle-backup)
   ============================================= */

:root {
  /* Color Palette — Nectio Brand */
  --color-primary: #1B6B5A;     /* warm teal — headings, CTAs, key UI */
  --color-secondary: #D4882A;   /* soft amber — accents, hover states, highlights */
  --color-bg: #F7F4F0;          /* off-white — page background (NEVER pure white) */
  --color-neutral: #6B6B6B;     /* warm grey — body text, secondary labels */
  --color-accent: #C2513A;      /* terracotta — emotional highlights only, max 5% */
  --color-dark: #1A1A1A;        /* near-black — headlines on light backgrounds */

  /* Aliases for existing CSS compatibility */
  --bg: var(--color-bg);
  --bg-alt: #EDE9E3;
  --fg: var(--color-dark);
  --fg-muted: var(--color-neutral);
  --accent: var(--color-primary);
  --accent-light: #2D8A6F;
  --accent-glow: rgba(27, 107, 90, 0.12);
  --warm: var(--color-secondary);
  --warm-light: #F5E6CE;
  --radius: 12px;

  /* Typography — Google Fonts */
  --font-display: 'DM Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ---- BASE ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Typography scale */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

/* ---- BUTTONS — new palette ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--accent-light);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(27, 107, 90, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.btn-outline:hover { background: var(--accent-glow); }

.btn-foundation {
  background: var(--color-secondary);
  color: white;
}
.btn-foundation:hover {
  background: #bf7a24;
  color: white;
  box-shadow: 0 4px 16px rgba(212, 136, 42, 0.35);
}

/* Label / eyebrow typography */
.label-caps {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

/* ---- HERO ---- */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 8% 80px;
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(27, 107, 90, 0.12) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-inner {
  max-width: 680px;
  text-align: center;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(27, 107, 90, 0.1);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: var(--color-neutral);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-glow {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(27, 107, 90, 0.1) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

.hero-soon-tag {
  font-size: 11px;
  font-weight: 600;
  background: var(--warm-light);
  color: var(--warm);
  padding: 2px 7px;
  border-radius: 100px;
  margin-left: 6px;
}

.hero-foundation-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  padding: 12px 4px;
  border-bottom: 1.5px solid var(--color-primary);
  transition: color 0.2s, border-color 0.2s;
}
.hero-foundation-link:hover { color: var(--accent-light); border-color: var(--accent-light); }

/* ---- PROBLEM (new) ---- */
.problem {
  padding: 100px 8%;
  background: var(--color-bg);
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  position: sticky;
  top: 40px;
}

.pain-points {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pain-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pain-icon {
  margin-bottom: 4px;
}

.pain-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
}

.pain-card p {
  font-size: 16px;
  color: var(--color-neutral);
  line-height: 1.7;
  max-width: 520px;
}


/* ---- HOW ---- */
.how {
  padding: 100px 8%;
  max-width: 1100px;
  margin: 0 auto;
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.how-card {
  background: white;
  border: 1px solid #e8e4dc;
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.3s ease;
}

.how-card:hover {
  border-color: var(--accent-light);
}

.how-number {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  opacity: 0.6;
}

.how-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.how-card p {
  color: var(--color-neutral);
  font-size: 15px;
  line-height: 1.7;
}

/* ---- NUMBERS ---- */
.numbers {
  padding: 80px 8%;
  background: var(--warm-light);
}

.numbers-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.number-big {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.number-desc {
  font-size: 15px;
  color: var(--color-neutral);
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 8%;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.closing-sub {
  font-size: 18px;
  color: var(--color-neutral);
  font-style: italic;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 40px 8%;
  border-top: 1px solid #e8e4dc;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
}

.footer-meta {
  font-size: 13px;
  color: var(--color-neutral);
}

/* ---- LANDING NAV ---- */
.landing-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 248, 244, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e8e4dc;
}

.landing-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 8%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-nav-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.landing-nav-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

.landing-nav-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ---- HOW ---- */
.how-header {
  text-align: center;
  margin-bottom: 60px;
}

.how-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-dark);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.how-card {
  background: white;
  border: 1px solid #e8e4dc;
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.how-card:hover {
  border-color: var(--accent-light);
  box-shadow: 0 4px 24px rgba(45, 106, 79, 0.08);
}

/* ---- FOR FOUNDATIONS ---- */
.for-foundations {
  padding: 100px 8%;
  background: var(--fg);
  color: var(--bg);
}

.for-foundations-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.foundations-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 16px;
}

.for-foundations h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--bg);
  margin-bottom: 20px;
}

.foundations-body {
  font-size: 16px;
  color: #c9c5bd;
  line-height: 1.75;
  margin-bottom: 28px;
}

.foundations-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.foundations-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #c9c5bd;
  line-height: 1.6;
}

.foundations-list-icon {
  color: var(--warm);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 3px;
}

.foundations-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.foundations-waitlist {
  font-size: 13px;
  color: #8a8780;
  font-style: italic;
}

.foundations-waitlist a {
  color: var(--warm);
  text-decoration: underline;
}

/* Foundations card stack (visual) */
.foundations-right {
  display: flex;
  justify-content: center;
}

.foundations-card-stack {
  position: relative;
  width: 240px;
  height: 280px;
}

.foundations-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  backdrop-filter: blur(4px);
  transition: transform 0.4s ease;
}

.foundations-card:hover {
  transform: translateY(-4px);
}

.foundations-card-1 {
  top: 0;
  left: 0;
  width: 220px;
  animation: floatCard 4s ease-in-out infinite;
}

.foundations-card-2 {
  top: 70px;
  right: 0;
  width: 200px;
  animation: floatCard 4s ease-in-out infinite 1.3s;
}

.foundations-card-3 {
  bottom: 0;
  left: 20px;
  width: 210px;
  animation: floatCard 4s ease-in-out infinite 0.7s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.fc-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--warm);
}

.fc-amount {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

.fc-desc {
  font-size: 13px;
  color: #8a8780;
}

/* ---- FOOTER (updated) ---- */
.site-footer {
  padding: 60px 8% 30px;
  border-top: 1px solid #e8e4dc;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
}

.footer-tagline {
  font-size: 14px;
  color: var(--color-neutral);
  max-width: 280px;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 14px;
  color: var(--color-neutral);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--color-primary);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid #e8e4dc;
  padding-top: 24px;
  font-size: 13px;
  color: var(--color-neutral);
}

/* ---- WHY NECTIO ---- */
.why-section {
  padding: 100px 8%;
  background: var(--color-bg);
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.why-header {
  text-align: center;
  margin-bottom: 56px;
}

.why-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
}

.why-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: white;
  border: 1px solid #e8e4dc;
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.why-card:hover {
  border-color: var(--accent-light);
  box-shadow: 0 4px 24px rgba(27, 107, 90, 0.07);
}

.why-card-icon {
  margin-bottom: 16px;
}

.why-card-headline {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.why-card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-neutral);
  line-height: 1.65;
}

/* ---- HOW IT WORKS (new tabbed) ---- */
.hiw-section {
  padding: 100px 8%;
  background: var(--bg-alt);
}

.hiw-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hiw-header {
  text-align: center;
  margin-bottom: 40px;
}

.hiw-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
}

.hiw-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

/* Tab toggle */
.hiw-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.hiw-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1.5px solid #e8e4dc;
  border-radius: 100px;
  background: white;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-neutral);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s;
}

.hiw-tab:hover {
  border-color: var(--accent-light);
  color: var(--color-primary);
}

.hiw-tab--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.hiw-tab--active:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: white;
}

/* Steps layout */
.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto 40px;
}

.hiw-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid #e8e4dc;
}

.hiw-step:first-child {
  padding-top: 0;
}

.hiw-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hiw-step-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.hiw-step-body {
  flex: 1;
}

.hiw-step-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.5;
  margin-bottom: 4px;
}

.hiw-step-headline {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.hiw-step-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-neutral);
  line-height: 1.65;
}

/* CTA row */
.hiw-cta-row {
  display: flex;
  justify-content: center;
}

/* ---- SOCIAL PROOF ---- */
.social-proof {
  padding: 80px 8%;
  background: #EDF4F2; /* subtle light teal tint */
  border-top: 1px solid #dde8e5;
  border-bottom: 1px solid #dde8e5;
}

.social-proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.proof-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-neutral);
  margin-bottom: 32px;
}

.proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 48px;
}

.proof-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.proof-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-neutral);
}

.proof-divider {
  width: 1px;
  height: 56px;
  background: #dde8e5;
  flex-shrink: 0;
}

/* Trust / logos placeholder */
.proof-trust {
  border-top: 1px solid #dde8e5;
  padding-top: 40px;
}

.proof-trust-headline {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-neutral);
  margin-bottom: 24px;
  font-weight: 400;
}

.proof-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.proof-logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}

.proof-logo-placeholder span {
  font-size: 12px;
  color: var(--color-neutral);
  font-family: var(--font-body);
}

/* ---- FOOTER (dark teal) ---- */
.footer-dark {
  background: var(--color-dark);
  color: white;
  padding: 60px 8% 30px;
}

.footer-dark .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand-col .footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: white;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.footer-brand-col .footer-tagline {
  font-size: 14px;
  color: #9a9690;
  font-style: italic;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-link {
  font-size: 14px;
  color: #c9c5bd;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: white;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link-small {
  font-size: 13px;
}

.footer-dot {
  color: #9a9690;
  font-size: 13px;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid #2a2a2a;
  padding-top: 24px;
  font-size: 13px;
  color: #9a9690;
}

/* Update the base site-footer class for dark mode */
.site-footer {
  background: #1A1A1A;
  color: white;
}

.site-footer .footer-inner {
  flex-wrap: wrap;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .for-foundations-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .foundations-right {
    display: none;
  }
}

@media (max-width: 768px) {
  .landing-nav-inner {
    padding: 0 6%;
  }

  .hero {
    padding: 80px 6% 60px;
    min-height: auto;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .problem-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .problem-headline {
    position: static;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .hiw-tabs {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .hiw-tab {
    justify-content: center;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .numbers-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
  }

  .footer-nav {
    gap: 16px;
  }

  /* Social proof mobile */
  .proof-stats {
    flex-direction: column;
    gap: 32px;
  }

  .proof-divider {
    width: 60px;
    height: 1px;
  }

  .proof-stat {
    padding: 0 16px;
  }

  /* Footer mobile */
  .site-footer .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-nav {
    gap: 16px;
  }

  .footer-legal {
    display: none;
  }
}

/* ---- NAME ORIGIN ---- */
.name-origin {
  padding: 56px 8% 48px;
  background: #FAF9F7;
  border-top: 1px solid #e8e4dc;
}

.name-origin-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.name-origin-rule {
  margin: 0 auto 24px;
}

.name-origin-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-neutral);
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

.name-origin-text em {
  font-style: italic;
  color: var(--color-dark);
  font-weight: 500;
}

.name-origin-desc {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: #6b6b68;
  line-height: 1.65;
}

@media (max-width: 600px) {
  .name-origin {
    padding: 40px 5% 36px;
  }

  .name-origin-desc {
    font-size: 14px;
  }
}