:root {
  --bg: #FAFAF8;
  --fg: #1A1A2E;
  --accent: #F5A623;
  --accent-dark: #D4881A;
  --navy: #1A1A2E;
  --white: #FFFFFF;
  --muted: #6B6B7B;
  --border: #E8E8E0;
  --section-pad: 100px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 140px 40px 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.label-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.hero-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
}
.hero-visual {
  position: relative;
}
.hero-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 40px 80px rgba(26, 26, 46, 0.12), 0 8px 24px rgba(26, 26, 46, 0.08);
  object-fit: cover;
  aspect-ratio: 16/9;
}

/* Section base */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--navy);
  margin-bottom: 72px;
}

/* How it works */
.howitworks {
  padding: var(--section-pad) 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.step {
  padding: 48px 40px 48px 0;
  border-right: 1px solid var(--border);
  padding-right: 40px;
}
.step:last-child {
  border-right: none;
  padding-left: 40px;
  padding-right: 0;
}
.step:not(:first-child):not(:last-child) {
  padding-left: 40px;
}
.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--border);
  letter-spacing: -2px;
  margin-bottom: 24px;
  line-height: 1;
}
.step h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* Features */
.features {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-card {
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--border);
}
.feature-icon {
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
  height: 160px;
}
.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-icon--alt {
  background: #F0F4F0;
}
.feature-icon--dark {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}
.feature-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Pricing */
.pricing {
  padding: var(--section-pad) 0;
  background: var(--navy);
}
.pricing .section-eyebrow {
  color: var(--accent);
}
.pricing .section-title {
  color: var(--white);
}
.pricing-table {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}
.pricing-row:last-child {
  border-bottom: none;
}
.pricing-header-row {
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.05);
}
.pricing-footer-row {
  color: var(--accent);
  font-weight: 600;
}
.pricing-row span:last-child {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}
.pricing-note {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  text-align: center;
}

/* Closing */
.closing {
  padding: var(--section-pad) 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.closing-content {
  max-width: 720px;
}
.closing h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 28px;
}
.closing p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Footer */
.footer {
  padding: 60px 0 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 60px;
}
.footer-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--navy);
  display: block;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 80px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col strong {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.footer-col span {
  font-size: 14px;
  color: var(--fg);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .hero { padding: 120px 20px 60px; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-headline { font-size: 42px; }
  .section-inner { padding: 0 20px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 0; }
  .step:last-child { padding-left: 0; }
  .step:not(:first-child):not(:last-child) { padding-left: 0; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-links { gap: 40px; }
}