/* === VARIABLES === */
:root {
  --bg: #faf8f5;
  --bg-alt: #f2ede6;
  --fg: #1a1a1a;
  --fg-muted: #6b6560;
  --accent: #e8621a;
  --accent-dark: #c44f10;
  --border: #e2dbd3;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(26, 26, 26, 0.08);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* === LAYOUT === */
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--fg);
  color: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  border-radius: 6px;
}

.logo-text {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-dark); }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-bg-texture {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(232, 98, 26, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-headline {
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--fg);
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-value-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--fg-muted);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-block;
  padding: 6px 14px;
  background: var(--fg);
  color: var(--bg);
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 100px;
  letter-spacing: 0.01em;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

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

.proof-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
}

.proof-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: 120px 0;
  background: var(--bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
}

.step-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
}

.step-body {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === WHAT YOU GET === */
.what-you-get {
  padding: 120px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.wyg-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.wyg-body {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 440px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.feature-item:first-child {
  border-top: 1px solid var(--border);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-item strong {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--fg);
}

.feature-item span {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* === PRICING === */
.pricing {
  padding: 120px 0;
  background: var(--bg);
}

.pricing-note {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.65;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
}

.pricing-card {
  position: relative;
  padding: 40px 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.pricing-card.featured {
  border-color: var(--accent);
  border-width: 2px;
  background: var(--fg);
  color: var(--bg);
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--accent);
  color: white;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.card-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.featured .card-label {
  color: rgba(250, 248, 245, 0.7);
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.featured .price-amount {
  color: var(--bg);
}

.price-period {
  font-size: 1rem;
  color: var(--fg-muted);
}

.featured .price-period {
  color: rgba(250, 248, 245, 0.5);
}

.card-desc {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
  line-height: 1.55;
}

.featured .card-desc {
  color: rgba(250, 248, 245, 0.6);
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-features li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}

.card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.featured .card-features li {
  color: rgba(250, 248, 245, 0.8);
}

.featured .card-features li::before {
  background: rgba(250, 248, 245, 0.5);
}

.pricing-footer {
  margin-top: 32px;
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* === TESTIMONIALS === */
.testimonials {
  padding: 120px 0;
  background: var(--fg);
  color: var(--bg);
}

.testimonials .section-label {
  color: rgba(250, 248, 245, 0.5);
}

.testimonials .section-headline {
  color: var(--bg);
}

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

.testimonial-card {
  padding: 32px;
  background: rgba(250, 248, 245, 0.06);
  border: 1px solid rgba(250, 248, 245, 0.12);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-quote {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(250, 248, 245, 0.85);
  font-style: italic;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(250, 248, 245, 0.1);
}

.testimonial-role {
  font-size: 0.8125rem;
  color: rgba(250, 248, 245, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* === CLOSING === */
.closing {
  padding: 140px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  text-align: center;
}

.closing-headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  max-width: 760px;
  margin: 0 auto 24px;
}

.closing-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
}

/* === FOOTER === */
.footer {
  padding: 56px 0;
  background: var(--fg);
  color: var(--bg);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.footer-name {
  font-weight: 600;
  font-size: 1rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(250, 248, 245, 0.5);
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(250, 248, 245, 0.3);
  margin-top: 8px;
  line-height: 1.5;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .steps-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    padding: 14px 24px;
  }

  .nav-links {
    gap: 20px;
  }

  .section-inner {
    padding: 0 24px;
  }

  .hero-proof {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .nav-links a {
    font-size: 0.8125rem;
  }

  .footer-inner {
    padding: 0 24px;
  }
}