:root {
  --navy: #0b1f3a;
  --blue: #1e56e0;
  --blue-light: #4d7cf0;
  --gold: #f2a900;
  --gray-bg: #f6f8fb;
  --text-dark: #14213d;
  --text-muted: #5c6b82;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Header */
header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eaedf2;
  z-index: 100;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.logo span { color: var(--blue); }
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}
.nav-links a:hover { color: var(--blue); }
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--blue);
  color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

/* Breadcrumb */
.breadcrumb {
  padding: 18px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #142c52 60%, var(--blue) 130%);
  color: #fff;
  padding: 100px 0 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(242,169,0,0.15) 0%, transparent 70%);
  top: -150px;
  right: -100px;
}
.hero.hero-sm { padding: 64px 0 76px; }
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 48px;
  font-weight: 800;
  max-width: 780px;
  margin: 0 auto 20px;
  line-height: 1.2;
}
.hero.hero-sm h1 { font-size: 38px; }
.hero h1 .highlight { color: var(--gold); }
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 16px 40px;
  font-size: 16px;
}
.btn-gold:hover {
  background: #ffbe2e;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(242,169,0,0.35);
}
.btn-hero-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 16px 40px;
  font-size: 16px;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* Stats */
.stats {
  background: #fff;
  border-bottom: 1px solid #eaedf2;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 48px 0;
  text-align: center;
}
.stats-grid div h3 {
  font-size: 32px;
  color: var(--blue);
  font-weight: 800;
}
.stats-grid div p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Sections */
.section {
  padding: 90px 0;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.section-header h2 {
  font-size: 34px;
  font-weight: 800;
  margin-top: 10px;
  color: var(--navy);
}
.section-header p {
  color: var(--text-muted);
  margin-top: 14px;
  font-size: 16px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  display: block;
  background: var(--gray-bg);
  border-radius: 12px;
  padding: 36px 28px;
  border: 1px solid #edf1f7;
  transition: all 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(11,31,58,0.08);
  border-color: var(--blue-light);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--navy);
}
.card p {
  color: var(--text-muted);
  font-size: 15px;
}
.card .card-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
}

/* Keyword tag chips */
.tag-block { margin-bottom: 44px; }
.tag-block h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 16px;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag-chip {
  display: inline-block;
  background: var(--gray-bg);
  border: 1px solid #e1e7f0;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 20px;
  transition: all 0.2s ease;
}
.tag-chip:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-1px);
}

/* Why us */
.why {
  background: var(--gray-bg);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 22px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item .check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.why-item h4 { font-size: 17px; color: var(--navy); margin-bottom: 4px; }
.why-item p { color: var(--text-muted); font-size: 15px; }
.why-panel {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 16px;
  padding: 48px;
  color: #fff;
  text-align: center;
}
.why-panel h3 { font-size: 26px; margin-bottom: 14px; }
.why-panel p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 15px; }

/* Related categories (cross-linking) */
.related-cats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.related-cats a {
  padding: 10px 20px;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
}
.related-cats a:hover { background: var(--blue); color: #fff; }

/* CTA */
.cta {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}
.cta h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; }
.cta p { color: rgba(255,255,255,0.8); margin-bottom: 34px; font-size: 16px; }

/* Footer */
footer {
  background: #08152a;
  color: rgba(255,255,255,0.65);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-grid ul a:hover { color: #fff; }
.footer-logo { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-logo span { color: var(--blue-light); }
.footer-bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 34px; }
  .hero.hero-sm h1 { font-size: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .grid-3 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
