:root {
  --navy: #0B1628;
  --navy-mid: #111d32;
  --navy-light: #1a2a4a;
  --amber: #F59E0B;
  --amber-light: #FBBF24;
  --white: #ffffff;
  --white-60: rgba(255,255,255,0.6);
  --white-40: rgba(255,255,255,0.4);
  --white-20: rgba(255,255,255,0.2);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(11, 22, 40, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--white-10);
}
.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.navbar-tag {
  font-size: 0.75rem;
  color: var(--white-60);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 32px 80px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--white-60);
  line-height: 1.65;
  max-width: 440px;
  font-weight: 300;
}
.hero-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-phone-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--amber);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.hero-phone-link:hover { color: var(--amber-light); }
.hero-phone-label {
  font-size: 0.85rem;
  color: var(--white-40);
}
.hero-cta-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  padding: 6px 16px;
  border: 1px solid var(--white-20);
  border-radius: 6px;
  transition: border-color 0.2s, color 0.2s;
  margin-left: 8px;
}
.hero-cta-link:hover { border-color: var(--amber); color: var(--amber); }
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.stat-block {
  padding: 28px 0;
}
.stat-block + .stat-block {
  border-top: 1px solid var(--white-20);
}
.stat-number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 0.85rem;
  color: var(--white-60);
  font-weight: 300;
  line-height: 1.4;
}
.stat-divider { display: none; }
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  background: var(--amber);
}
.shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  filter: blur(80px);
}
.shape-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  filter: blur(60px);
}

/* TRUSTBAR */
.trustbar {
  background: var(--navy-mid);
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  padding: 32px 0;
}
.trustbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trustbar-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white-40);
  font-weight: 500;
  white-space: nowrap;
}
.trustbar-items {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--white-60);
  font-weight: 400;
}
.trust-item svg { color: var(--amber); flex-shrink: 0; }

/* PROBLEM */
.problem {
  padding: 120px 32px;
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.problem h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
}
.problem p {
  font-size: 1rem;
  color: var(--white-60);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
}
.problem-visual {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 40px;
  background: var(--navy-mid);
  border-radius: 16px;
  border: 1px solid var(--white-10);
}
.call-fail, .call-lost {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.call-fail-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.call-fail-label {
  font-size: 0.85rem;
  color: var(--white-60);
}
.call-lost-label {
  font-size: 0.85rem;
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}
.call-lost-amount {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: #ef4444;
  font-weight: 700;
}
.call-arrow { flex-shrink: 0; }

/* SOLUTION */
.solution {
  padding: 120px 32px;
  background: var(--navy-mid);
}
.solution-inner { max-width: 1100px; margin: 0 auto; }
.solution-header {
  text-align: center;
  margin-bottom: 80px;
}
.solution-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}
.solution-header p {
  font-size: 1.1rem;
  color: var(--white-60);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}
.solution-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 60px;
}
.flow-step {
  flex: 1;
  padding: 40px 32px;
  background: var(--navy);
  border-radius: 16px;
  border: 1px solid var(--white-10);
  margin: 0 12px;
}
.flow-step:first-child { margin-left: 0; }
.flow-step:last-child { margin-right: 0; }
.flow-arrow {
  display: flex;
  align-items: center;
  padding-top: 40px;
  flex-shrink: 0;
}
.flow-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--amber);
}
.flow-step h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.flow-step p {
  font-size: 0.9rem;
  color: var(--white-60);
  line-height: 1.6;
  font-weight: 300;
}
.solution-cta {
  text-align: center;
  padding: 32px;
  background: rgba(245, 158, 11, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.solution-cta p {
  font-size: 1.05rem;
  color: var(--white-60);
  font-weight: 300;
}
.solution-cta strong { color: var(--amber); }

/* OUTCOMES */
.outcomes {
  padding: 120px 32px;
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.outcome-card {
  padding: 48px 36px;
  background: var(--navy-mid);
  border-radius: 20px;
  border: 1px solid var(--white-10);
  transition: border-color 0.3s;
}
.outcome-card:hover { border-color: var(--white-30); }
.outcome-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.outcome-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.outcome-card p {
  font-size: 0.9rem;
  color: var(--white-60);
  line-height: 1.7;
  font-weight: 300;
}

/* CLOSING */
.closing {
  padding: 120px 32px;
  background: var(--navy-mid);
  border-top: 1px solid var(--white-10);
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 28px;
}
.closing p {
  font-size: 1.05rem;
  color: var(--white-60);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
}
.closing-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 60px;
}
.closing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}
.closing-signature p {
  font-size: 0.85rem;
  color: var(--white-40);
  margin-bottom: 0;
  font-style: italic;
}

/* FOOTER */
.footer {
  padding: 48px 32px;
  border-top: 1px solid var(--white-10);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--white-40);
  font-weight: 300;
}
.footer-note {
  font-size: 0.8rem;
  color: var(--white-40);
  font-weight: 300;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { flex-direction: row; }
  .stat-block { flex: 1; padding: 16px 0; }
  .problem-inner { grid-template-columns: 1fr; }
  .solution-flow { flex-direction: column; align-items: stretch; }
  .flow-arrow { transform: rotate(90deg); padding: 0; justify-content: center; }
  .flow-step { margin: 0 0 0 0; }
  .outcomes-inner { grid-template-columns: 1fr; }
  .trustbar-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .navbar-inner { padding: 0 20px; }
  .hero { padding: 120px 20px 60px; }
  .problem-visual { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; }
  .solution-flow { gap: 0; }
  .flow-step { margin: 0; border-radius: 12px; margin-bottom: 8px; }
}