:root {
  --bg: #F7F5F2;
  --surface: #FFFFFF;
  --fg: #1A1A1A;
  --fg-muted: #6B6B6B;
  --fg-subtle: #999999;
  --accent: #E8942A;
  --accent-light: rgba(232, 148, 42, 0.08);
  --border: #E8E4DE;
  --shadow: 0 4px 24px rgba(26, 26, 26, 0.08);
  --radius: 12px;
  --font-display: 'Fraunces', 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 {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ── HERO ── */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px 0;
  position: relative;
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  top: 40px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(ellipse at center, rgba(232,148,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 560px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 500;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-cta-row {
  margin-bottom: 12px;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cta-pricing {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.cta-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
}
.cta-period {
  font-size: 16px;
  color: var(--fg-muted);
}
.cta-divider {
  font-size: 20px;
  color: var(--fg-subtle);
  font-weight: 300;
}
.hero-fine {
  font-size: 13px;
  color: var(--fg-subtle);
}
.hero-visual {
  margin-top: 56px;
}
.hero-illustration {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(26,26,26,0.18);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 64px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── SHARED SECTION STYLES ── */
.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 600px;
}

/* ── PAINPOINTS ── */
.painpoints {
  padding: 100px 32px;
}
.painpoints-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.pain-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.pain-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pain-text h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.pain-text p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── SERVICES ── */
.services {
  padding: 100px 32px;
  background: var(--fg);
}
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.services .section-label {
  color: rgba(232, 148, 42, 0.8);
}
.services .section-headline {
  color: #F7F5F2;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.service-card {
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
}
.service-card:hover {
  background: rgba(255,255,255,0.07);
}
.service-card--accent {
  background: rgba(232, 148, 42, 0.08);
  border-color: rgba(232, 148, 42, 0.2);
}
.service-icon-wrap {
  margin-bottom: 4px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #F7F5F2;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 14px;
  color: rgba(247,245,242,0.6);
  line-height: 1.65;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.service-list li {
  font-size: 13px;
  color: rgba(247,245,242,0.5);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ── PRICING ── */
.pricing {
  padding: 100px 32px;
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.pricing-card {
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: relative;
}
.pricing-card--primary {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}
.pricing-dollar {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  color: var(--fg-muted);
}
.pricing-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-per {
  font-size: 18px;
  color: var(--fg-muted);
  margin-left: 4px;
}
.pricing-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}
.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
}
.pricing-note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--fg-subtle);
  text-align: center;
}

/* ── INDUSTRIES ── */
.industries {
  padding: 100px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.industries-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.industry-card {
  padding: 28px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s;
}
.industry-card:hover {
  border-color: var(--accent);
}
.industry-icon {
  width: 52px;
  height: 52px;
}
.industry-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.industry-card p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 32px;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-decoration {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 48px;
}
.closing-proof {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.proof-stat {
  flex: 1;
  padding: 24px 20px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.proof-stat:last-child {
  border-right: none;
}
.proof-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.proof-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 6px;
  line-height: 1.5;
}
.closing-cta-text {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-links {
  font-size: 12px;
  color: var(--fg-subtle);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .pain-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 60px; height: 1px; }
  .closing-proof { flex-direction: column; }
  .proof-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .proof-stat:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 20px 0; }
  .hero-headline { font-size: 32px; }
  .industry-grid { grid-template-columns: 1fr; }
  .nav-tagline { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
}
