/* ============================================
   RENTICE — DESIGN SYSTEM
   ============================================ */

:root {
  --green-900: #0D3D2C;
  --green-800: #145238;
  --gold-400:  #EAC84A;
  --gold-300:  #F0D778;
  --cream-50:  #F5F2EA;
  --cream-100: #EDE2CE;
  --cream-200: #E2D4BC;
  --cream-700: #5C4A36;
  --sage-500:  #7A9B7A;
  --sage-100:  #E7F0E7;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;
  --font-mono:    'Geist Mono', monospace;

  --radius-sm: 7px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --shadow-card: 0 8px 24px -6px rgba(13,61,44,0.12);
  --transition: 200ms ease-out;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream-50);
  color: var(--cream-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

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

ul { list-style: none; }

.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;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn--large {
  height: 52px;
  padding: 0 32px;
  font-size: 16px;
}

.btn--primary {
  background: var(--green-900);
  color: var(--gold-400);
}
.btn--primary:hover {
  background: var(--green-800);
}

.btn--gold {
  background: var(--gold-400);
  color: var(--green-900);
}
.btn--gold:hover {
  background: #dab93e;
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--green-900);
  color: var(--green-900);
}
.btn--outline:hover {
  background: var(--cream-100);
}

.btn--on-dark {
  background: rgba(234,200,74,0.15);
  color: var(--gold-400);
  border: 1px solid rgba(234,200,74,0.3);
}
.btn--on-dark:hover {
  background: rgba(234,200,74,0.25);
}

/* ============================================
   PILLS
   ============================================ */

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.pill--dark {
  background: var(--green-900);
  color: var(--gold-400);
}

.pill--gold-outline {
  background: rgba(234,200,74,0.15);
  color: var(--gold-400);
  border: 1px solid rgba(234,200,74,0.3);
}

/* ============================================
   SECTION HEADERS
   ============================================ */

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-title--light {
  color: var(--cream-50);
}

.section-subtitle {
  font-size: 18px;
  color: var(--sage-500);
  font-weight: 400;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,242,234,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-200);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px -4px rgba(13,61,44,0.10);
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.navbar__logo {
  flex-shrink: 0;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.navbar__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream-700);
  transition: color var(--transition);
}
.navbar__link:hover {
  color: var(--green-900);
}

.navbar__cta {
  flex-shrink: 0;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-900);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--cream-200);
}

.navbar__mobile.open {
  display: flex;
}

.navbar__mobile-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--cream-700);
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-200);
  transition: color var(--transition);
}
.navbar__mobile-link:hover {
  color: var(--green-900);
}

.navbar__mobile-cta {
  margin-top: 12px;
  width: 100%;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  background: var(--cream-50);
  padding: 80px 0 96px;
  overflow: hidden;
}

.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.1;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--cream-700);
  line-height: 1.65;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.hero__stat {
  font-size: 13px;
  font-weight: 500;
  color: var(--sage-500);
}

.hero__sep {
  color: var(--cream-200);
  font-size: 16px;
}

/* ---- Mock UI Card ---- */

.hero__mock {
  display: flex;
  justify-content: center;
}

.mock-card {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  width: 100%;
  box-shadow: 0 20px 60px -12px rgba(13,61,44,0.15), 0 4px 16px -4px rgba(13,61,44,0.08);
}

.mock-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.mock-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mock-card__dot--green { background: #4CAF50; }

.mock-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--green-900);
  flex: 1;
}

.mock-card__badge {
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-mono);
  color: #4CAF50;
  background: rgba(76,175,80,0.1);
  padding: 4px 12px;
  border-radius: 999px;
}

.mock-card__profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.mock-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--gold-400);
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mock-card__name {
  font-size: 18px;
  font-weight: 600;
  color: var(--green-900);
}

.mock-card__school {
  font-size: 14px;
  color: var(--sage-500);
  margin-top: 3px;
}

.mock-card__progress-wrap {
  margin-bottom: 28px;
}

.mock-card__progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--sage-500);
  margin-bottom: 10px;
}

.mock-card__progress-pct {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--green-900);
}

.mock-card__progress-bar {
  height: 8px;
  background: var(--sage-100);
  border-radius: 999px;
  overflow: hidden;
}

.mock-card__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-900), #1a6b48);
  border-radius: 999px;
  transition: width 1s ease-out;
}

.mock-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.mock-stat {
  text-align: center;
  padding: 20px 10px;
  background: var(--cream-50);
  border-radius: 10px;
}

.mock-stat__value {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  color: var(--green-900);
  line-height: 1;
}

.mock-stat__value--gold { color: var(--gold-400); }
.mock-stat__value--green { color: #2e7d4f; }

.mock-stat__label {
  font-size: 12px;
  color: var(--sage-500);
  margin-top: 6px;
  line-height: 1.3;
}

.mock-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--cream-200);
  font-size: 13px;
  color: var(--sage-500);
}

/* ============================================
   CRÉDIBILITÉ STRIP
   ============================================ */

.cred {
  background: var(--green-900);
  padding: 64px 0;
}

.cred__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cred__founder {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cred__founder-text {
  font-size: 15px;
  color: rgba(245,242,234,0.85);
  line-height: 1.7;
  max-width: 360px;
}

.cred__stats {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.cred__stat {
  flex: 1;
  padding: 0 28px;
  text-align: center;
}
.cred__stat:first-child { padding-left: 0; }
.cred__stat:last-child  { padding-right: 0; }

.cred__stat-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 8px;
}

.cred__stat-label {
  font-size: 13px;
  color: rgba(245,242,234,0.7);
  line-height: 1.4;
  margin-bottom: 6px;
}

.cred__stat-source {
  font-size: 11px;
  color: rgba(245,242,234,0.4);
  font-style: italic;
}

.cred__divider {
  width: 1px;
  background: rgba(245,242,234,0.12);
  flex-shrink: 0;
  align-self: stretch;
  min-height: 80px;
}

/* ============================================
   FONCTIONNEMENT
   ============================================ */

.how {
  background: var(--cream-50);
  padding: 96px 0;
}

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

.feature-card {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.feature-card--dark {
  background: var(--green-900);
  border-color: transparent;
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card__icon--sage { background: var(--sage-100); }
.feature-card__icon--gold { background: #FBF4D5; }
.feature-card__icon--dark { background: rgba(234,200,74,0.15); }

.feature-card__step {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-500);
  margin-bottom: 8px;
}

.feature-card__step--light {
  color: rgba(234,200,74,0.6);
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 10px;
  line-height: 1.25;
}

.feature-card__title--light { color: var(--cream-50); }

.feature-card__desc {
  font-size: 14px;
  color: var(--cream-700);
  line-height: 1.6;
}

.feature-card__desc--light { color: rgba(245,242,234,0.7); }

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid var(--cream-200);
  border-bottom: 1px solid var(--cream-200);
}

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

.stat-card {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.stat-card__value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 10px;
}

.stat-card__label {
  font-size: 13px;
  color: var(--sage-500);
  line-height: 1.5;
}

/* ============================================
   PRICING
   ============================================ */

.pricing {
  background: var(--green-900);
  padding: 96px 0;
}

.pricing__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.pricing__card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(234,200,74,0.2);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
}

.pricing__price {
  margin-bottom: 24px;
}

.pricing__amount {
  display: block;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing__period {
  font-size: 14px;
  color: rgba(245,242,234,0.6);
}

.pricing__list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.pricing__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(245,242,234,0.85);
  line-height: 1.5;
}

.pricing__item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Garantie */
.pricing__guarantee {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  background: rgba(234,200,74,0.08);
  border: 1px solid rgba(234,200,74,0.25);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 28px;
}

.pricing__guarantee-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(234,200,74,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing__guarantee-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 4px;
}

.pricing__guarantee-desc {
  font-size: 12px;
  color: rgba(245,242,234,0.65);
  line-height: 1.5;
}

.pricing__cta {
  width: 100%;
  margin-bottom: 16px;
}

.pricing__note {
  font-size: 12px;
  color: rgba(245,242,234,0.45);
  font-style: italic;
}

/* Timeline garantie */
.pricing__timeline {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,242,234,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.timeline__header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 28px;
}

.timeline__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  padding-bottom: 20px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 14px;
  bottom: 0;
  width: 1px;
  background: rgba(245,242,234,0.1);
}

.timeline__item--guarantee:not(:last-child)::before {
  background: rgba(234,200,74,0.2);
}

.timeline__marker {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid rgba(245,242,234,0.2);
  background: transparent;
  flex-shrink: 0;
  margin-top: 3px;
}

.timeline__marker--active {
  border-color: var(--gold-400);
  background: var(--gold-400);
}

.timeline__marker--gold {
  border-color: var(--gold-400);
  background: rgba(234,200,74,0.25);
}

.timeline__marker--cream {
  border-color: rgba(245,242,234,0.4);
  background: rgba(245,242,234,0.1);
}

.timeline__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.timeline__day {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold-400);
}

.timeline__label {
  font-size: 13px;
  color: rgba(245,242,234,0.75);
  line-height: 1.45;
}

.timeline__item--guarantee .timeline__label {
  color: rgba(245,242,234,0.9);
  font-weight: 500;
}

.timeline__item--total .timeline__label {
  color: rgba(245,242,234,0.55);
  font-style: italic;
  font-size: 12px;
}

/* ============================================
   WAITLIST
   ============================================ */

.waitlist {
  background: var(--cream-50);
  padding: 96px 0;
}

.waitlist__inner {
  max-width: 600px;
}

.waitlist__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.waitlist__input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  align-items: center;
}

.waitlist__input {
  width: 100%;
  max-width: 480px;
  height: 48px;
  padding: 0 16px;
  background: #fff;
  border: 1.5px solid var(--cream-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--green-900);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.waitlist__input::placeholder { color: var(--cream-200); }

.waitlist__input:focus {
  border-color: var(--green-900);
  box-shadow: 0 0 0 3px rgba(13,61,44,0.08);
}

.waitlist__select {
  width: 100%;
  max-width: 480px;
  height: 48px;
  padding: 0 40px 0 16px;
  background: #fff;
  border: 1.5px solid var(--cream-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--cream-700);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A9B7A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.waitlist__select:focus {
  border-color: var(--green-900);
  box-shadow: 0 0 0 3px rgba(13,61,44,0.08);
}

.waitlist__submit {
  width: 100%;
  max-width: 480px;
}

.waitlist__confirm {
  font-size: 15px;
  font-weight: 600;
  color: #2e7d4f;
  padding: 12px 20px;
  background: rgba(46,125,79,0.08);
  border-radius: var(--radius-sm);
  width: 100%;
  text-align: center;
}

.waitlist__disclaimer {
  font-size: 12px;
  color: var(--sage-500);
  text-align: center;
}

/* ============================================
   MID CTA
   ============================================ */

.mid-cta {
  text-align: center;
  padding: 48px 5vw;
  background: var(--cream-50);
  border-top: 1px solid var(--cream-200);
}

.mid-cta-note {
  font-size: 12px;
  color: var(--sage-500);
  margin-top: 10px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--green-900);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__brand {
  margin-right: auto;
}

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

.footer__link {
  font-size: 13px;
  color: rgba(245,242,234,0.55);
  transition: color var(--transition);
}
.footer__link:hover {
  color: rgba(245,242,234,0.9);
}

.footer__copy {
  width: 100%;
  font-size: 12px;
  color: rgba(245,242,234,0.35);
  margin-top: 16px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.animate-hero {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease-out forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.observe-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition-delay: var(--stagger, 0s);
}

.observe-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {

  /* Navbar */
  .navbar__nav,
  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 56px 0 72px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__title {
    font-size: 38px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__mock {
    order: -1;
  }

  .mock-card {
    max-width: 100%;
  }

  /* Cred */
  .cred__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cred__stats {
    flex-direction: column;
    gap: 24px;
  }

  .cred__stat {
    padding: 0;
    text-align: left;
  }

  .cred__divider {
    width: 100%;
    height: 1px;
    min-height: unset;
  }

  /* How */
  .how {
    padding: 64px 0;
  }

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

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing {
    padding: 64px 0;
  }

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

  .pricing__card {
    padding: 36px 24px;
  }

  .pricing__amount {
    font-size: 56px;
  }

  .pricing__timeline {
    padding: 28px 20px;
  }

  /* Waitlist */
  .waitlist {
    padding: 64px 0;
  }

  .waitlist__input-group {
    flex-direction: column;
  }

  .waitlist__submit {
    width: 100%;
  }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer__brand {
    margin-right: 0;
  }

  /* Section headers */
  .section-header {
    margin-bottom: 40px;
  }
}
