/* =========================================
   RealReach — Landing Page Stylesheet
   ========================================= */

:root {
  --bg: #FAFAF8;
  --fg: #111111;
  --fg-muted: #6B6B6B;
  --accent: #E07B2A;
  --accent-dark: #B5611E;
  --surface: #FFFFFF;
  --border: #E4E4E0;
  --dark: #1A1A1A;
  --dark-surface: #242424;
}

* {
  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;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.2;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 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: baseline;
  gap: 16px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-cta {
  margin-left: auto;
  padding: 7px 18px;
  background: var(--accent);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-dark); }

/* HERO */
.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 100px 32px 80px;
  border-bottom: 1px solid var(--border);
}

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-headline {
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 700px;
}

.hero-sub {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 56px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-meta-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.hero-meta-label {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

.hero-meta-sep {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* SERVICES */
.services {
  max-width: 1120px;
  margin: 0 auto;
  padding: 96px 32px;
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.services-header {
  margin-bottom: 64px;
}

.services-title {
  font-size: clamp(28px, 4vw, 42px);
  max-width: 520px;
}

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(224, 123, 42, 0.08);
}

.service-icon {
  width: 40px;
  height: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-name {
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* PROCESS */
.process {
  background: var(--dark);
  color: var(--surface);
  padding: 96px 32px;
}

.process-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.process-label-group .section-label {
  color: var(--accent);
}

.process-title {
  font-size: 32px;
  color: #FFFFFF;
  margin: 16px 0 12px;
}

.process-sub {
  font-size: 16px;
  color: #9A9A9A;
  line-height: 1.6;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  padding-top: 3px;
  letter-spacing: 0.04em;
}

.step-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: #8A8A8A;
  line-height: 1.65;
}

/* PRICING */
.pricing {
  max-width: 1120px;
  margin: 0 auto;
  padding: 96px 32px;
  border-bottom: 1px solid var(--border);
}

.pricing-header {
  margin-bottom: 56px;
}

.pricing-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
}

.pricing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 480px;
}

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

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 32px;
  position: relative;
}

.pricing-card--featured {
  border-color: var(--accent);
  background: var(--surface);
}

.pricing-card--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 4px;
  border: 2px solid var(--accent);
  pointer-events: none;
}

.plan-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(224, 123, 42, 0.1);
  padding: 4px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 16px;
}

.plan-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.plan-price {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
}

.plan-period {
  font-size: 20px;
  font-weight: 400;
  color: var(--fg-muted);
}

.plan-tag {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

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

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

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

/* OUTRO */
.outro {
  background: var(--bg);
  padding: 96px 32px;
}

.outro-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.outro-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 400;
  font-style: italic;
  color: var(--fg-muted);
  max-width: 760px;
  margin: 0 auto 20px;
  line-height: 1.4;
}

.outro-attribution {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 64px;
}

.outro-divider {
  width: 48px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 64px;
}

.outro-headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 20px;
}

.outro-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* FOOTER */
.footer {
  background: var(--dark);
  padding: 40px 32px;
}

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

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  display: block;
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 13px;
  color: #6A6A6A;
}

.footer-meta {
  font-size: 12px;
  color: #4A4A4A;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    padding: 64px 24px 56px;
  }

  .hero-meta {
    gap: 24px;
  }

  .hero-meta-num {
    font-size: 28px;
  }

  .services, .pricing, .outro {
    padding: 64px 24px;
  }

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

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

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

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero-meta-sep {
    display: none;
  }

  .hero-meta-item {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }
}