:root {
  --bg: #FAF8F5;
  --fg: #1A1A1A;
  --muted: #6B6B6B;
  --accent: #FF5C3A;
  --accent-warm: #F5A623;
  --surface: #FFFFFF;
  --border: #E8E4DF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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 {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.5) 50%,
    rgba(10,10,10,0.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 48px;
  max-width: 680px;
}
.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 28px;
  font-weight: 300;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.hero-meta-item { color: rgba(255,255,255,0.7); }
.hero-meta-divider { color: rgba(255,255,255,0.3); }

/* ── PROOF STATS ── */
.proof {
  background: var(--fg);
  padding: 80px 48px;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.proof-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-bottom: 40px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.proof-stat {
  padding: 0 40px 0 0;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.proof-stat:first-child { padding-left: 0; }
.proof-stat:last-child { border-right: none; }
.proof-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}
.proof-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  font-weight: 300;
}

/* ── PLATFORMS ── */
.platforms {
  padding: 100px 48px 80px;
  background: var(--bg);
}
.platforms-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 16px;
}
.section-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}
.platforms-img {
  width: 100%;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.platform-list {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.platform-item {
  background: var(--surface);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.platform-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}
.platform-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── INDUSTRIES ── */
.industries {
  padding: 100px 48px;
  background: #F0EDE8;
}
.industries-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.industries-eyebrow {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.industries-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 52px;
  max-width: 520px;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.industry-card {
  background: var(--surface);
  padding: 32px 28px;
}
.industry-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.industry-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.industry-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── PRICING ── */
.pricing {
  padding: 100px 48px;
  background: var(--bg);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 12px;
}
.pricing-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 52px;
  max-width: 520px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
}
.pricing-card.featured {
  background: var(--fg);
  border-color: var(--fg);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}
.pricing-tier {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.5); }
.pricing-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-card.featured .pricing-price { color: #fff; }
.pricing-period {
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
}
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.5); }
.pricing-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.5;
}
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.65); }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.85); }
.pricing-card.featured .pricing-features li::before { background: var(--accent-warm); }
.pricing-cta {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* ── PROCESS ── */
.process {
  padding: 100px 48px;
  background: var(--fg);
}
.process-inner {
  max-width: 900px;
  margin: 0 auto;
}
.process-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 56px;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}
.process-step:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,255,255,0.1);
  letter-spacing: -0.04em;
  line-height: 1;
}
.step-headline {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  font-weight: 300;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 48px;
  background: var(--accent);
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 40px;
  font-weight: 300;
}
.closing-stat {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.01em;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline {
  font-size: 14px;
  color: var(--muted);
}
.footer-links {
  font-size: 13px;
  color: var(--muted);
  margin-left: auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .proof-grid { grid-template-columns: 1fr; gap: 24px; }
  .proof-stat { border-right: none; padding: 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 24px; }
  .proof-stat:last-child { border-bottom: none; }
  .platforms-inner { grid-template-columns: 1fr; }
  .platform-list { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 56px 1fr; gap: 20px; }
}

@media (max-width: 600px) {
  .hero-content { padding: 40px 24px; }
  .proof, .platforms, .industries, .pricing, .process, .closing { padding: 70px 24px; }
  .industries-grid { grid-template-columns: 1fr; }
  .platform-list { grid-template-columns: 1fr; }
  .hero-headline { font-size: 40px; }
  .proof-number { font-size: 40px; }
  .pricing-price { font-size: 40px; }
  .closing-headline { font-size: 36px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-links { margin-left: 0; }
  .nav { padding: 16px 24px; }
  .process-step { grid-template-columns: 48px 1fr; }
  .step-num { font-size: 36px; }
}