:root {
  --bg: #FAFAF8;
  --bg-alt: #F0EDE8;
  --fg: #1A1A1A;
  --fg-muted: #6B6860;
  --accent: #1B4D3E;
  --accent-warm: #F5A623;
  --border: #E2DDD6;
  --card-bg: #FFFFFF;
  --radius: 12px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: sticky;
  top: 0;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 90vh;
  border-bottom: 1px solid var(--border);
}
.hero-content {
  padding: 80px 64px 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  display: inline-block;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.65;
}
.hero-stat-block { display: flex; flex-direction: column; gap: 8px; }
.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.stat-stars { display: flex; gap: 2px; }
.stat-caption { font-size: 12px; color: var(--fg-muted); }

.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── SECTION SHARED ── */
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--fg);
}

/* ── PROCESS ── */
.process {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}
.process-header {
  max-width: 560px;
  margin-bottom: 72px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 72px;
}
.process-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-warm);
  letter-spacing: 0.05em;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
}
.step-content p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.process-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.process-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.process-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.process-img-wrap--offset { margin-top: 48px; }

/* ── FEATURES ── */
.features {
  padding: 100px 48px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.features-header { max-width: 560px; margin-bottom: 64px; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card {
  background: var(--card-bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-card--large {
  grid-column: span 2;
  padding: 40px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: #F0EDE8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
}
.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.feature-image {
  margin-top: auto;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.feature-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── PRICING ── */
.pricing {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}
.pricing-header { max-width: 560px; margin-bottom: 64px; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
}
.pricing-card--featured {
  background: var(--accent);
  border-color: var(--accent);
}
.pricing-card--featured .pricing-tier,
.pricing-card--featured .pricing-price,
.pricing-card--featured .pricing-note,
.pricing-card--featured .pricing-list,
.pricing-card--featured .pricing-list li { color: #FFFFFF; }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-warm);
  color: var(--fg);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.pricing-note {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
  margin-bottom: 32px;
}
.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-list li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-warm);
}
.pricing-footer { font-size: 14px; color: var(--fg-muted); }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 100px 48px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.testimonials-header { max-width: 560px; margin-bottom: 64px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-stars { display: flex; gap: 2px; }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--fg);
  line-height: 1.55;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  margin-top: auto;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 48px;
  background: var(--accent);
}
.closing-inner { max-width: 640px; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-detail p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ── FOOTER ── */
.footer {
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--accent);
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
}
.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { height: 60vw; }
  .hero-content { padding: 60px 32px; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card--large { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-image-row { grid-template-columns: 1fr; }
  .process-img-wrap--offset { margin-top: 0; }
}

@media (max-width: 640px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero-content { padding: 48px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: span 1; }
  .process, .features, .pricing, .testimonials, .closing { padding: 60px 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
  .pricing-grid { gap: 16px; }
}