/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0F1F3D;
  --amber:  #E8A838;
  --white:  #FFFFFF;
  --light:  #F7F9FC;
  --mid:    #E2E8F0;
  --text:   #1A2744;
  --muted:  #6B7FA3;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navbar ── */
.navbar {
  background: var(--navy);
  padding: 18px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--amber);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

/* ── Hero ── */
.hero { background: var(--navy); padding: 80px 48px 100px; }
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 28px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}
.proof-badge {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 10px;
  border-radius: 20px;
}
.proof-sep { color: rgba(255,255,255,0.3); font-size: 12px; }

/* ── Mockup ── */
.mockup-frame {
  background: #1E3357;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.mockup-topbar {
  background: #162D50;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red    { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green  { background: #28C840; }
.mockup-title { font-size: 12px; color: rgba(255,255,255,0.5); margin-left: 8px; font-family: var(--font-body); }
.mockup-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.mock-client { background: rgba(255,255,255,0.05); border-radius: 8px; padding: 14px; }
.mock-name { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.mock-score { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.mock-score strong { color: var(--amber); }
.mock-bar { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; margin-bottom: 8px; }
.mock-fill { height: 100%; background: linear-gradient(90deg, var(--amber) 0%, #F5C56B 100%); border-radius: 2px; }
.mock-status { font-size: 11px; font-weight: 600; }
.status-active  { color: #4ADE80; }
.status-done    { color: var(--amber); }
.status-pending { color: #60A5FA; }

/* ── Stats Bar ── */
.statsbar { background: var(--amber); padding: 0; }
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}
.stat-item { flex: 1; padding: 32px 40px; text-align: center; }
.stat-value {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
}
.stat-label { font-size: 13px; color: var(--navy); opacity: 0.7; margin-top: 4px; font-weight: 600; }
.stat-divider { width: 1px; background: rgba(15,31,61,0.15); }

/* ── Process ── */
.process { background: var(--white); padding: 96px 48px; }
.process-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--amber); margin-bottom: 12px; }
.section-title { font-family: var(--font-head); font-size: 32px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; margin-bottom: 56px; }
.process-steps { display: flex; align-items: center; gap: 0; }
.step { flex: 1; }
.step-num { font-family: var(--font-head); font-size: 48px; font-weight: 800; color: var(--amber); opacity: 0.3; margin-bottom: 16px; letter-spacing: -2px; }
.step-title { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.step-desc { font-size: 15px; color: var(--muted); line-height: 1.7; }
.step-arrow { padding: 0 24px; color: var(--amber); opacity: 0.6; }

/* ── Partners ── */
.partners { background: var(--navy); padding: 96px 48px; }
.partners-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.partners .section-label { color: rgba(232,168,56,0.8); }
.partners .section-title { color: var(--white); }
.partners-desc { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-top: 20px; }
.partners-visual { display: flex; flex-direction: column; gap: 16px; }
.partner-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px 24px;
}
.partner-icon { flex-shrink: 0; }
.partner-type { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.partner-action { font-size: 13px; color: rgba(255,255,255,0.55); }

/* ── Outcomes ── */
.outcomes { background: var(--light); padding: 96px 48px; }
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcomes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.outcome { padding: 32px; background: var(--white); border-radius: 12px; border: 1px solid var(--mid); }
.outcome-icon { margin-bottom: 16px; }
.outcome-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.outcome-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── Testimonials ── */
.testimonials { background: var(--white); padding: 96px 48px; }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.testimonial { background: var(--light); border-radius: 12px; padding: 32px; border: 1px solid var(--mid); }
.testimonial-quote { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--amber);
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testimonial-detail { font-size: 12px; color: var(--muted); }

/* ── Closing ── */
.closing { background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%); padding: 100px 48px; text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-title { font-family: var(--font-head); font-size: 38px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; margin-bottom: 20px; line-height: 1.2; }
.closing-sub { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ── Footer ── */
.footer { background: #091529; padding: 28px 48px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-brand { font-family: var(--font-head); font-weight: 800; font-size: 16px; color: var(--amber); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 30px; }
  .partners-inner { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 16px; }
  .step-arrow { transform: rotate(90deg); padding: 0; }
  .stats-inner { flex-direction: column; }
  .stat-divider { display: none; }
  .stat-item { border-bottom: 1px solid rgba(15,31,61,0.15); }
  .stat-item:last-child { border-bottom: none; }
  .hero, .process, .partners, .outcomes, .testimonials, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .navbar { padding: 16px 24px; }
}