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

:root {
  --bg: #f4f1ec;
  --fg: #0f2e1a;
  --accent: #d4923a;
  --accent-dark: #b07828;
  --surface: #ffffff;
  --muted: #6b7c72;
  --border: #d4cfc5;
  --success: #2e7d32;
  --danger: #c0392b;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

/* === NAV === */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(244, 241, 236, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* === HERO === */
.hero {
  padding: 140px 2rem 80px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg-accent {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(212, 146, 58, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(15, 46, 26, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.6rem;
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.15rem;
  letter-spacing: 0.02em;
}

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

/* Visual card */
.hero-visual { display: flex; justify-content: center; }

.visual-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 20px 60px rgba(15, 46, 26, 0.08), 0 4px 16px rgba(15, 46, 26, 0.04);
  overflow: hidden;
}

.vc-header {
  background: var(--fg);
  padding: 12px 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.vc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.vc-dot.green { background: #4caf50; }
.vc-dot.amber { background: var(--accent); }

.vc-body {
  padding: 16px 20px;
}
.vc-body.muted { opacity: 0.5; }

.vc-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.vc-job {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 4px;
}

.vc-detail {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.vc-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--fg);
  margin-bottom: 10px;
}

.vc-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vc-badge {
  background: rgba(46, 125, 50, 0.12);
  color: var(--success);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.vc-time {
  font-size: 0.7rem;
  color: var(--muted);
}

.vc-divider {
  height: 1px;
  background: var(--border);
}

.vc-compare {
  font-size: 0.7rem;
  color: var(--danger);
  font-style: italic;
  margin-top: 8px;
}

/* === PROOF SECTION === */
.proof-section {
  background: var(--fg);
  color: var(--bg);
  padding: 100px 2rem;
}

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

.proof-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.proof-headline h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--bg);
}

.proof-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.proof-col {
  padding: 28px 28px 32px;
}

.proof-col.negative { background: rgba(192, 57, 43, 0.08); }
.proof-col.positive { background: rgba(46, 125, 50, 0.08); }

.proof-col-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bg);
  margin-bottom: 1.4rem;
}

.proof-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.proof-list li {
  font-size: 0.88rem;
  color: rgba(244, 241, 236, 0.75);
  line-height: 1.5;
  padding-left: 1.2rem;
  position: relative;
}

.proof-col.positive .proof-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.proof-col.negative .proof-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(192, 57, 43, 0.5);
}

/* === HOW SECTION === */
.how-section {
  padding: 100px 2rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 64px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.how-step {
  padding: 32px 28px;
  background: var(--bg);
  border-radius: 2px;
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: rgba(15, 46, 26, 0.08);
  line-height: 1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
}

.step-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* === NICHES SECTION === */
.niches-section {
  padding: 100px 2rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.niches-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 0;
}

.niche-card {
  background: var(--surface);
  padding: 32px 28px 36px;
  border-radius: 2px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.niche-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(15, 46, 26, 0.06);
}

.niche-icon {
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.niche-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.niche-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.niche-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(212, 146, 58, 0.1);
  color: var(--accent-dark);
  text-transform: uppercase;
}

/* === MODEL SECTION === */
.model-section {
  padding: 100px 2rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.model-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.model-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}

.model-card {
  background: var(--bg);
  padding: 36px 32px 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  position: relative;
}

.model-card.featured {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.model-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(212, 146, 58, 0.15);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 1.4rem;
}

.model-card.featured .model-badge {
  background: rgba(212, 146, 58, 0.2);
  color: var(--accent);
}

.model-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: inherit;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.model-rate {
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(15, 46, 26, 0.1);
}

.model-card.featured .model-rate {
  border-bottom-color: rgba(244, 241, 236, 0.15);
}

.rate-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--fg);
  letter-spacing: -0.03em;
}

.model-card.featured .rate-amount {
  color: var(--bg);
}

.rate-period {
  font-size: 0.85rem;
  color: var(--muted);
  margin-left: 4px;
}

.model-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.model-features li {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 1.2rem;
  position: relative;
}

.model-card.featured .model-features li {
  color: rgba(244, 241, 236, 0.7);
}

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

.model-note {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
}

.model-card.featured .model-note {
  color: rgba(244, 241, 236, 0.5);
}

/* === CLOSING SECTION === */
.closing-section {
  padding: 100px 2rem 120px;
  background: var(--fg);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}

.closing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 60% 50%, rgba(212, 146, 58, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}

.closing-content .section-label { color: var(--accent); }

.closing-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--bg);
  margin-bottom: 1.8rem;
  margin-top: 1rem;
}

.closing-body {
  font-size: 0.95rem;
  color: rgba(244, 241, 236, 0.7);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.closing-vision {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 48px;
}

.vision-block {
  border-left: 2px solid var(--accent);
  padding-left: 24px;
}

.vision-icon {
  margin-bottom: 0.8rem;
}

.vision-block h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--bg);
  margin-bottom: 0.6rem;
}

.vision-block p {
  font-size: 0.85rem;
  color: rgba(244, 241, 236, 0.65);
  line-height: 1.65;
}

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

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}

.footer-meta p {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: right;
  line-height: 1.5;
}

.footer-copy {
  color: var(--accent);
  font-weight: 500;
  margin-top: 4px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { display: none; }
  .proof-inner { grid-template-columns: 1fr; gap: 48px; }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .niches-grid { grid-template-columns: repeat(2, 1fr); }
  .model-cards { grid-template-columns: 1fr; }
  .closing-inner { grid-template-columns: 1fr; gap: 48px; }
  .closing-vision { padding-top: 0; }
}

@media (max-width: 640px) {
  .hero { padding: 120px 1.25rem 60px; }
  .how-steps { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta p { text-align: left; }
  .hero-stats { flex-wrap: wrap; gap: 1.2rem; }
}