:root {
  --navy: #0b1f3a;
  --blue: #133f73;
  --gold: #c99a2e;
  --gold-soft: #fff5d8;
  --ink: #172033;
  --muted: #5f6b7a;
  --line: #e7edf5;
  --bg: #ffffff;
  --soft: #f6f9fd;
  --shadow: 0 24px 70px rgba(11, 31, 58, .12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }
.section-pad { padding: 92px 0; }
.section-pad-sm { padding: 62px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231,237,245,.8);
}
.navbar {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; color: var(--navy); }
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 12px 28px rgba(19, 63, 115, .22);
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 50%;
  right: -8px;
  top: -8px;
}
.brand-text { letter-spacing: -.02em; }
.nav-links { display: flex; align-items: center; gap: 10px; }
.nav-links a {
  padding: 10px 14px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  transition: .2s ease;
}
.nav-links a:hover { background: var(--soft); color: var(--navy); }
.menu-toggle { display: none; background: transparent; border: 0; cursor: pointer; }
.menu-toggle span { display: block; width: 28px; height: 3px; background: var(--navy); margin: 5px 0; border-radius: 99px; }

.hero { position: relative; overflow: hidden; padding-top: 108px; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(201,154,46,.12), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(19,63,115,.09), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  z-index: -2;
}
.hero-bg-shape { position: absolute; border-radius: 50%; z-index: -1; filter: blur(.2px); opacity: .9; }
.shape-one { width: 360px; height: 360px; right: -120px; top: 120px; background: rgba(201,154,46,.12); }
.shape-two { width: 250px; height: 250px; left: -90px; bottom: 40px; background: rgba(19,63,115,.08); }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: 12px;
}
.eyebrow::before { content: ''; width: 34px; height: 2px; background: var(--gold); border-radius: 99px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(44px, 6vw, 76px); line-height: .96; letter-spacing: -.065em; color: var(--navy); margin-bottom: 24px; }
h2 { color: var(--navy); font-size: clamp(28px, 3vw, 44px); line-height: 1.08; letter-spacing: -.045em; margin-bottom: 16px; }
h3 { color: var(--navy); font-size: 23px; margin-bottom: 12px; }
.hero-text { font-size: 20px; color: var(--muted); max-width: 620px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--navy); color: #fff; box-shadow: 0 18px 38px rgba(11,31,58,.2); }
.btn.secondary { background: #fff; color: var(--navy); border: 1px solid var(--line); }

.hero-card {
  position: relative;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-topline { position: absolute; inset: 0 0 auto; height: 8px; background: linear-gradient(90deg, var(--navy), var(--gold)); }
.hero-card-icon {
  width: 84px; height: 84px;
  display: grid; place-items: center;
  border-radius: 26px;
  font-size: 42px;
  color: var(--gold);
  background: var(--gold-soft);
  margin-bottom: 22px;
}
.service-list-mini { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.service-list-mini li {
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  font-weight: 800;
  color: var(--navy);
}

.intro-box {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  align-items: start;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.intro-box h2 { color: #fff; }
.intro-box p { color: rgba(255,255,255,.78); margin-bottom: 0; font-size: 18px; }
.intro-number { font-size: 50px; font-weight: 900; color: var(--gold); line-height: 1; }

.section-title { text-align: center; max-width: 760px; margin: 0 auto 42px; }
.section-title .eyebrow { justify-content: center; }
.section-title p { color: var(--muted); font-size: 18px; }
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 40px rgba(11,31,58,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(201,154,46,.42); }
.service-icon {
  width: 58px; height: 58px;
  border-radius: 18px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  font-weight: 900;
  margin-bottom: 20px;
}
.service-card p { color: var(--muted); flex: 1; }
.service-card a { color: var(--gold); font-weight: 900; }

.feature { background: linear-gradient(180deg, #fff 0%, var(--soft) 100%); }
.feature-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: center; }
.feature-panel {
  min-height: 430px;
  border-radius: var(--radius);
  padding: 34px;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.feature-panel h2 { color: #fff; }
.feature-panel p { color: rgba(255,255,255,.78); margin-bottom: 0; }
.rings { position: absolute; inset: 30px; }
.rings span {
  position: absolute;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  animation: float 7s ease-in-out infinite;
}
.rings span:nth-child(1) { width: 260px; height: 260px; right: 20px; top: 10px; }
.rings span:nth-child(2) { width: 190px; height: 190px; right: 55px; top: 45px; animation-delay: .5s; }
.rings span:nth-child(3) { width: 110px; height: 110px; right: 95px; top: 85px; background: rgba(201,154,46,.2); animation-delay: 1s; }
.feature-content p { color: var(--muted); font-size: 18px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.pill-row span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 800;
  color: var(--navy);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(11,31,58,.07);
}
.timeline-item { padding: 28px; border-right: 1px solid var(--line); }
.timeline-item:last-child { border-right: 0; }
.timeline-item span { color: var(--gold); font-weight: 900; font-size: 13px; letter-spacing: .08em; }
.timeline-item p { color: var(--navy); font-weight: 900; font-size: 20px; margin: 10px 0 0; }

.cta-box {
  text-align: center;
  border-radius: 34px;
  padding: 62px 30px;
  background:
    radial-gradient(circle at top left, rgba(201,154,46,.18), transparent 30%),
    linear-gradient(135deg, var(--navy), #143d70);
  color: #fff;
  box-shadow: var(--shadow);
}
.cta-box h2 { color: #fff; max-width: 760px; margin-left: auto; margin-right: auto; }
.cta-box p { color: rgba(255,255,255,.78); max-width: 650px; margin: 0 auto 26px; }
.cta-box .eyebrow { justify-content: center; color: #f7d88e; }
.cta-box .eyebrow::before { background: #f7d88e; }
.cta-box .btn.primary { background: #fff; color: var(--navy); }

.footer { padding: 34px 0; background: #07172a; color: #fff; }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.footer p { margin: 6px 0 0; color: rgba(255,255,255,.68); }
.footer a { color: #f7d88e; font-weight: 800; }

.reveal { opacity: 0; transform: translateY(20px); transition: .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .28s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.02); }
}

@media (max-width: 920px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }
  .nav-links.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-links a { padding: 14px 16px; }
  .hero-grid, .feature-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline-item:nth-child(2) { border-right: 0; }
  .timeline-item:nth-child(1), .timeline-item:nth-child(2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 620px) {
  .section-pad { padding: 68px 0; }
  .section-pad-sm { padding: 46px 0; }
  .brand-text { font-size: 14px; }
  .hero { padding-top: 72px; }
  h1 { font-size: 43px; }
  .hero-text { font-size: 18px; }
  .hero-actions, .btn { width: 100%; }
  .intro-box { grid-template-columns: 1fr; padding: 30px; }
  .cards-grid, .timeline { grid-template-columns: 1fr; }
  .timeline-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .timeline-item:last-child { border-bottom: 0; }
  .feature-panel { min-height: 360px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}
