:root {
  --navy: #0d1f3c;
  --navy-light: #1a3a5c;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --bg: #f7f6f2;
  --bg-alt: #eceae3;
  --text: #0d1f3c;
  --text-mid: #3a5278;
  --text-light: #6b82a0;
  --white: #ffffff;
  --border: #d8d5ce;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.navbar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.navbar-tagline {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-left: 16px;
  border-left: 1px solid var(--border);
}
.nav-cta {
  margin-left: auto;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--navy-light); }

/* Hero */
.hero {
  padding: 80px 48px 72px;
  background: var(--navy);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.hero-headline-block {}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
}
.hero-stat-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.hero-stat {}
.stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 48px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.hero-aside {}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 28px;
}
.hero-card-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1.4;
  margin-bottom: 12px;
}
.hero-card-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* Gaps */
.gaps {
  padding: 96px 48px;
  background: var(--white);
}
.gaps-inner {
  max-width: 900px;
  margin: 0 auto;
}
.gaps-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.gaps-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}
.gaps-body {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 40px;
}
.gaps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-bottom: 40px;
}
.gap-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.gap-icon {
  color: var(--amber);
  font-size: 10px;
}
.gaps-closing {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--navy);
  line-height: 1.15;
}

/* Capabilities */
.capabilities {
  padding: 96px 48px;
  background: var(--bg);
}
.capabilities-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--navy);
  line-height: 1.2;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}
.cap-card {
  background: var(--white);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cap-icon {
  color: var(--amber);
  font-size: 16px;
}
.cap-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
}
.cap-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Pricing */
.pricing {
  padding: 96px 48px;
  background: var(--navy);
}
.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}
.pricing .section-label { color: var(--amber); }
.pricing .section-headline { color: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 40px;
}
.price-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px;
}
.price-card-featured {
  background: rgba(245,158,11,0.12);
  border-color: rgba(245,158,11,0.4);
}
.price-tier {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 4px;
}
.price-tier-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.price-amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 40px;
  color: var(--amber);
  margin-bottom: 16px;
}
.price-period {
  font-size: 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
}
.price-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.pricing-footer {
  text-align: center;
}
.pricing-setup {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}

/* Closing */
.closing {
  padding: 96px 48px;
  background: var(--bg-alt);
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-statement {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: clamp(28px, 4.5vw, 52px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* Footer */
.footer {
  padding: 40px 48px;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--white);
}
.footer-location {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.footer-support, .footer-auto {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-align: right;
}
.footer-auto {
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 56px 24px 48px; }
  .hero-stat-block { grid-template-columns: 1fr 1fr; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .gaps, .capabilities, .pricing, .closing { padding: 64px 24px; }
  .navbar { padding: 16px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-support, .footer-auto { text-align: left; }
}
@media (max-width: 600px) {
  .cap-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 34px; }
  .stat-number { font-size: 36px; }
}