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

:root {
  --bg: #FFFDF7;
  --ink: #1A1A2E;
  --ink-light: #4A4A5C;
  --accent: #D4622A;
  --accent-hover: #B8521E;
  --surface: #F5F0E8;
  --border: #E8E0D0;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

/* === NAVIGATION === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}

.nav-tagline {
  font-size: 14px;
  color: var(--ink-light);
  font-weight: 400;
}

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

.section-headline {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--ink);
  margin-bottom: 56px;
}

/* === HERO === */
.hero {
  padding: 80px 48px 64px;
  border-bottom: 1px solid var(--border);
}

.hero-inner { max-width: 1100px; margin: 0 auto; }

.hero-content { max-width: 680px; }

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(38px, 6vw, 72px);
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 700;
  font-style: italic;
}

.hero-sub {
  font-size: 19px;
  color: var(--ink-light);
  max-width: 560px;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  max-width: 580px;
}

.stat {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}

.stat-label {
  font-size: 12px;
  color: var(--ink-light);
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  background: var(--border);
}

/* === PROOF === */
.proof {
  padding: 48px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.proof-inner { max-width: 1100px; margin: 0 auto; }

.proof-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-light);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
}

.proof-icon { font-size: 18px; }

.proof-type {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

/* === PROCESS === */
.process { padding: 80px 48px; }

.process-inner { max-width: 1100px; margin: 0 auto; }

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

.step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.step-body {
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.7;
}

/* === PRICING === */
.pricing {
  padding: 80px 48px;
  background: var(--surface);
}

.pricing-inner { max-width: 1100px; margin: 0 auto; }

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

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

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

.pricing-card--subscription {
  background: var(--accent);
  border: 2px solid var(--accent);
  box-shadow: 0 8px 32px rgba(212, 98, 42, 0.25);
}

.pricing-card--subscription .card-name,
.pricing-card--subscription .card-tagline,
.pricing-card--subscription .price-amount,
.pricing-card--subscription .card-features li {
  color: var(--white);
}

.pricing-card--subscription .card-tagline {
  opacity: 0.9;
}

.pricing-card--subscription .price-note {
  color: rgba(255,255,255,0.75);
}

.card-badge--sub {
  background: var(--white);
  color: var(--accent);
}

.card-features--sub li::before {
  content: '✓';
  color: rgba(255,255,255,0.9);
  font-weight: 700;
}

.sub-incentive {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-align: center;
  background: rgba(0,0,0,0.15);
  border-radius: 6px;
  padding: 8px 16px;
}

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

.card-name {
  font-size: 24px;
  margin-bottom: 4px;
  color: var(--ink);
}

.card-tagline {
  font-size: 14px;
  color: var(--ink-light);
  margin-bottom: 24px;
}

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

.price-amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--ink);
}

.price-note {
  font-size: 14px;
  color: var(--ink-light);
}

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

.card-features li {
  font-size: 15px;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
}

.card-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.pricing-footnote {
  font-size: 14px;
  color: var(--ink-light);
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

/* === PORTFOLIO === */
.portfolio { padding: 80px 48px; }

.portfolio-inner { max-width: 1100px; margin: 0 auto; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
}

.portfolio-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.portfolio-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.portfolio-body {
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.7;
}

/* === CLOSING === */
.closing {
  padding: 96px 48px;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--ink);
}

.closing-inner { max-width: 700px; margin: 0 auto; }

.closing-headline {
  font-size: clamp(28px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 20px;
  font-style: italic;
}

.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  font-weight: 300;
}

/* === FOOTER === */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}

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

.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 14px;
  color: var(--ink-light);
  max-width: 300px;
  line-height: 1.6;
}

.footer-meta { text-align: right; }

.footer-copy {
  font-size: 13px;
  color: var(--ink-light);
}

.footer-contact {
  font-size: 14px;
  color: var(--accent);
  margin-top: 4px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 48px 24px 40px; }
  .hero-headline { font-size: 38px; }
  .hero-stats { flex-direction: column; }
  .stat-divider { width: 100%; height: 1px; }
  .process-steps { grid-template-columns: 1fr; gap: 48px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-meta { text-align: left; }
  .proof-logos { gap: 8px; }
  .proof-item { padding: 8px 14px; }
  .closing { padding: 64px 24px; }
  .section-headline { margin-bottom: 36px; }
}