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

:root {
  --stripe: #635BFF;
  --stripe-dark: #4b43db;
  --stripe-light: #EEF2FF;
  --gray-50: #F6F9FC;
  --gray-100: #EEF2F7;
  --gray-200: #E3E8EF;
  --gray-300: #C9D2DF;
  --gray-400: #8898AA;
  --gray-600: #525F7F;
  --gray-800: #32325D;
  --gray-900: #1a1a2e;
  --white: #ffffff;
  --border: 1px solid #E3E8EF;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--white);
  color: var(--gray-800);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);

  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--gray-900);
  text-decoration: none;
}

.nav-logo-mark {
  width: 30px;
  height: 30px;
  background: var(--stripe);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--gray-900);
}

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

.btn-ghost {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
}

.btn-ghost:hover {
  background: var(--gray-100);
  color: var(--gray-900);
}

.btn-primary {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--stripe);
  border: none;
  cursor: pointer;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: background .2s, transform .15s;
}

.btn-primary:hover {
  background: var(--stripe-dark);
  transform: translateY(-1px);
}

/* ── TOP BANNER ── */
.top-banner {
  background: var(--gray-50);
  border-bottom: var(--border);
  text-align: center;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.top-banner .dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .5
  }
}

.top-banner a {
  color: var(--stripe);
  text-decoration: none;
  font-weight: 600;
}

/* ── HERO ── */
.hero {
  text-align: center;
  padding: 96px 40px 72px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--stripe-light);
  color: var(--stripe);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1px solid #d4d0ff;
}

h1.hero-title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--gray-600);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

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

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--stripe);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  transition: background .2s, transform .15s;
  text-decoration: none;
}

.hero-cta-primary:hover {
  background: var(--stripe-dark);
  transform: translateY(-2px);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--gray-800);
  font-size: 15px;
  font-weight: 500;
  border: var(--border);
  cursor: pointer;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  transition: border-color .2s, transform .15s;
  text-decoration: none;
}

.hero-cta-secondary:hover {
  border-color: var(--gray-400);
  transform: translateY(-2px);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
}

.avatars {
  display: flex;
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}

.avatars .avatar:first-child {
  margin-left: 0;
}

/* ── TABS FEATURE SECTION ── */
.tabs-section {
  padding: 0 40px 80px;
  max-width: 1120px;
  margin: 0 auto;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 5px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  max-width: 540px;
  margin: 0 auto 40px;
}

.tab-btn {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border: none;
  border-radius: 9px;
  background: transparent;
  color: var(--gray-400);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.tab-btn.active {
  background: var(--white);
  color: var(--gray-900);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .04);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn .35s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

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

.feature-bento {
  display: grid;
  gap: 16px;
}

.bento-row-2 {
  grid-template-columns: 1fr 1fr;
}

.bento-row-3 {
  grid-template-columns: 2fr 1fr 1fr;
}

.bento-row-2-1 {
  grid-template-columns: 1fr 1fr;
}

.bento-card {
  background: var(--gray-50);
  border: var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  overflow: hidden;
  position: relative;
  transition: border-color .2s;
}

.bento-card:hover {
  border-color: var(--gray-300);
}

.bento-card.white {
  background: var(--white);
}

.bento-card.accent-bg {
  background: linear-gradient(135deg, #f0f0ff 0%, #e8eaff 100%);
  border-color: #d4d0ff;
}

.bento-card.span-2 {
  grid-column: span 2;
}

.bento-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 20px;
  background: var(--white);
  border: var(--border);
}

.bento-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--stripe);
  margin-bottom: 10px;
}

.bento-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  line-height: 1.35;
}

.bento-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* Fake UI elements inside cards */
.fake-chat {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-msg {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  max-width: 88%;
}

.chat-msg.in {
  background: var(--white);
  border: var(--border);
  color: var(--gray-700);
  align-self: flex-start;
}

.chat-msg.out {
  background: var(--stripe);
  color: #fff;
  align-self: flex-end;
}

.chat-msg svg {
  flex-shrink: 0;
}

.fake-stat {
  margin-top: 20px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.stat-num {
  font-size: 38px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -2px;
}

.stat-label {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
}

.fake-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: var(--border);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
  margin-top: 16px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

.progress-row {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.progress-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray-600);
  font-weight: 500;
}

.progress-track {
  height: 6px;
  background: var(--gray-200);
  border-radius: 99px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 99px;
  background: var(--stripe);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--white);
  border: var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-700);
}

/* ── MARQUEE ── */
.marquee-section {
  padding: 48px 0;
  border-top: var(--border);
  border-bottom: var(--border);
  background: var(--white);
}

.marquee-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-400);
  margin-bottom: 28px;
}

.marquee-track-wrap {
  overflow: hidden;
  position: relative;
}

.marquee-track-wrap::before,
.marquee-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.marquee-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.marquee-track:hover {
  animation-play-state: paused;
}

.partner {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-400);
  white-space: nowrap;
  transition: color .2s;
  cursor: default;
}

.partner:hover {
  color: var(--gray-700);
}

.partner-dot {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
}

/* ── PLATFORMS ── */
.platforms-section {
  padding: 96px 40px;
  max-width: 1120px;
  margin: 0 auto;
}

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

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--stripe);
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 520px;
  margin: 0 auto;
}

.platforms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.platform-card {
  border: var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  background: var(--white);
}

.platform-card:hover {
  border-color: var(--gray-300);
  transform: translateY(-3px);
}

.platform-header {
  padding: 32px 32px 24px;
}

.platform-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.platform-tag.purple {
  background: var(--stripe-light);
  color: var(--stripe);
}

.platform-tag.teal {
  background: #e0fdf4;
  color: #0d9488;
}

.platform-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.platform-header p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

.platform-img {
  background: var(--gray-50);
  border-top: var(--border);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* fake platform UI in cards */
.platform-ui {
  width: 100%;
}

.ui-titlebar {
  background: var(--white);
  border: var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
}

.ui-dots {
  display: flex;
  gap: 5px;
}

.ui-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.ui-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ui-mini-card {
  background: var(--white);
  border: var(--border);
  border-radius: 9px;
  padding: 12px;
}

.ui-mini-label {
  font-size: 10px;
  color: var(--gray-400);
  font-weight: 500;
  margin-bottom: 4px;
}

.ui-mini-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
}

.ui-msg-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ui-msg {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: var(--border);
  border-radius: 9px;
  padding: 10px 12px;
}

.ui-msg-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.ui-msg-body {
  flex: 1;
}

.ui-msg-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-800);
}

.ui-msg-text {
  font-size: 11px;
  color: var(--gray-400);
}

.ui-msg-time {
  font-size: 10px;
  color: var(--gray-300);
}

/* ── LOAN BANNER ── */
.loan-banner {
  margin: 0 40px 80px;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  background: var(--gray-50);
  border: var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.loan-content {
  flex: 1;
}

.loan-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--stripe);
  background: var(--stripe-light);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid #d4d0ff;
}

.loan-content h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.loan-content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 480px;
}

.loan-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}

.loan-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg {
  color: #16a34a;
}

.loan-stat-box {
  flex-shrink: 0;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  text-align: center;
}

.loan-stat-box .num {
  font-size: 52px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -3px;
  line-height: 1;
}

.loan-stat-box .lbl {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 8px;
}

.loan-stat-box .sub {
  font-size: 11px;
  color: var(--gray-300);
  margin-top: 4px;
}

/* ── PRICING STRIP ── */
.pricing-strip {
  text-align: center;
  padding: 80px 40px;
  background: var(--gray-50);
  border-top: var(--border);
  border-bottom: var(--border);
}

.pricing-strip .badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #16a34a;
  background: #dcfce7;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.pricing-strip h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.pricing-strip p {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 28px;
}

.price-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}

.price-old {
  font-size: 22px;
  font-weight: 600;
  color: var(--gray-300);
  text-decoration: line-through;
}

.price-new {
  font-size: 54px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -3px;
}

.price-new span {
  font-size: 18px;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0;
}

.price-note {
  font-size: 12px;
  color: var(--gray-300);
  margin-top: 6px;
}

/* ── FAQ ── */
.faq-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 40px;
}

.faq-section .section-header {
  margin-bottom: 40px;
}

.faq-section .section-header h2 {
  font-size: 30px;
}

.faq-item {
  border-bottom: var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  text-align: left;
  gap: 16px;
}

.faq-q span {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
}

.faq-q svg {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform .3s;
}

.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}

.faq-a {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 20px;
}

/* ── TEAM ── */
.team-section {
  padding: 80px 40px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: var(--stripe);
}

.team-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
}

.team-card .role {
  font-size: 13px;
  color: var(--gray-400);
}

.team-card a {
  font-size: 13px;
  color: var(--stripe);
  text-decoration: none;
  font-weight: 500;
}

.team-card a:hover {
  text-decoration: underline;
}

/* ── FOOTER ── */
footer {
  border-top: var(--border);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--gray-800);
}

.footer-logo-mark {
  width: 22px;
  height: 22px;
  background: var(--stripe);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--gray-400);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--gray-700);
}

.footer-copy {
  font-size: 12px;
  color: var(--gray-300);
}

/* ── WAITLIST MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26, 26, 46, .45);
  backdrop-filter: blur(6px);
  align-items: flex-start;
  justify-content: center;
  padding: 48px 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 500px;
  padding: 36px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .15);
  position: relative;
  max-height: calc(100vh - 96px);
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gray-600);
  transition: background .2s;
}

.modal-close:hover {
  background: var(--gray-200);
}

.modal-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #16a34a;
  background: #dcfce7;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.modal h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.modal .modal-sub {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 28px;
}

.progress-bar-wrap {
  background: var(--gray-100);
  border-radius: 99px;
  height: 4px;
  margin-bottom: 6px;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 99px;
  background: var(--stripe);
  transition: width .4s ease;
}

.step-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  border: var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  color: var(--gray-800);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--stripe);
  box-shadow: 0 0 0 3px rgba(99, 91, 255, .12);
}

.radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 6px;
}

.radio-option input {
  display: none;
}

.radio-option label {
  display: block;
  padding: 10px 14px;
  text-align: center;
  border: var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: all .2s;
}

.radio-option input:checked+label {
  border-color: var(--stripe);
  background: var(--stripe-light);
  color: var(--stripe);
  font-weight: 600;
}

.checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color .2s;
}

.checkbox-item:has(input:checked) {
  border-color: var(--stripe);
  background: var(--stripe-light);
}

.checkbox-item input {
  accent-color: var(--stripe);
  width: 15px;
  height: 15px;
}

.checkbox-item span {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
}

.btn-submit {
  width: 100%;
  padding: 13px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--stripe);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .2s;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit:hover {
  background: var(--stripe-dark);
}

.btn-submit:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.btn-back {
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color .2s;
}

.btn-back:hover {
  border-color: var(--gray-400);
}

.form-row-btns {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.form-row-btns .btn-submit {
  flex: 1;
  margin-top: 0;
}

.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: var(--gray-50);
  border: var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.terms-check input {
  accent-color: var(--stripe);
  margin-top: 2px;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.terms-check span {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}

.terms-check a {
  color: var(--stripe);
  text-decoration: none;
  font-weight: 500;
}

.success-box {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.success-box h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.success-box p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
}

/* Responsive */
@media (max-width: 700px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 64px 20px 48px;
  }

  .tabs-section,
  .platforms-section,
  .loan-banner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .bento-row-2,
  .bento-row-3,
  .bento-row-2-1,
  .platforms-grid {
    grid-template-columns: 1fr;
  }

  .bento-card.span-2 {
    grid-column: span 1;
  }

  .loan-banner {
    flex-direction: column;
    padding: 32px 24px;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  .faq-section {
    padding: 60px 20px;
  }
}