:root {
  --navy: #0F1C2E;
  --navy-mid: #1A2D42;
  --ember: #E8622A;
  --ember-light: #FF7F4A;
  --cream: #F5EDE3;
  --cream-dark: #EDE5DA;
  --white: #FFFFFF;
  --text-dark: #0F1C2E;
  --text-mid: #4A5568;
  --text-light: #718096;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--navy);
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}

/* ===== SECTION COMMON ===== */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.875rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--text-mid);
  max-width: 560px;
  margin-bottom: 56px;
}

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  position: relative;
  padding: 96px 0 88px;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(232,98,42,0.08) 0%, transparent 70%),
    linear-gradient(to bottom, var(--navy) 0%, var(--navy-mid) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6.5vw, 5.25rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 700px;
}
.hero-accent { color: var(--ember); }
.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 56px;
}
.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
  max-width: 560px;
}
.hero-stat {
  flex: 1;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--ember);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}
.hero-stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.12);
  margin: 0 40px;
}

/* ===== WHO WE SERVE ===== */
.who-we-serve {
  padding: 100px 0;
  background: var(--cream);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15,28,46,0.1);
}
.industry-icon {
  font-size: 1.5rem;
  color: var(--ember);
  margin-bottom: 12px;
  display: block;
}
.industry-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.industry-desc {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 0;
  background: var(--navy);
}
.how-it-works .section-eyebrow { color: var(--ember); }
.how-it-works .section-headline { color: var(--white); }
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 64px;
}
.step-card {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 32px 28px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--ember);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.step-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.step-arrow {
  font-size: 1.5rem;
  color: var(--ember);
  padding-top: 48px;
  flex-shrink: 0;
}
.proof-bar {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
}
.proof-item {
  flex: 1;
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.proof-item:last-child { border-right: none; }
.proof-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--ember);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.proof-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

/* ===== WHY NAILDOWN ===== */
.why-naildown {
  padding: 100px 0;
  background: var(--cream);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-body {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.7;
}
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-list li {
  font-size: 0.9375rem;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.why-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--ember);
  border-radius: 50%;
}
.why-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.why-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 340px;
}
.why-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 28px 28px;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(15,28,46,0.12);
}
.why-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.why-card-val {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--ember);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.why-card-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 0;
  background: var(--cream-dark);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  padding: 40px 36px;
}
.pricing-card-main {
  border: 2px solid var(--ember);
  box-shadow: 0 4px 24px rgba(232,98,42,0.1);
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 900;
  color: var(--ember);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.pricing-sub {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--ember);
  border-radius: 50%;
}
.pricing-note {
  font-size: 0.8125rem;
  color: var(--text-light);
  font-style: italic;
}
.pricing-roi {
  text-align: center;
  padding: 40px;
  background: var(--navy);
  border-radius: 16px;
}
.roi-headline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.roi-calc {
  font-size: 1.5rem;
  color: var(--white);
}
.roi-calc strong { color: var(--ember); }

/* ===== CLOSING ===== */
.closing {
  background: var(--navy);
  padding: 100px 0;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.55);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.closing-cta {
  display: inline-block;
  text-align: center;
}
.cta-text {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ember);
  margin-bottom: 10px;
}
.cta-detail {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

/* ===== FOOTER ===== */
.footer {
  background: #090F17;
  padding: 56px 0 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.3);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.footer-bottom {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .navbar, .section-inner, .hero-inner, .footer-inner { padding-left: 24px; padding-right: 24px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { flex-direction: column; gap: 16px; }
  .step-arrow { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-stat-row { flex-direction: column; gap: 24px; }
  .hero-stat-divider { display: none; }
  .hero-stat { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }
  .hero-stat:first-child { border-top: none; padding-top: 0; }
}
@media (max-width: 600px) {
  .navbar { padding-left: 20px; padding-right: 20px; }
  .industries-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.5rem; }
  .proof-bar { flex-direction: column; gap: 24px; }
  .proof-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 24px; }
  .proof-item:last-child { border-bottom: none; padding-bottom: 0; }
}