:root {
  --navy: #0d2240;
  --blue: #1261a6;
  --cyan: #00a8c8;
  --yellow: #f5a623;
  --yellow-dark: #d4891a;
  --ink: #16263f;
  --muted: #5a6880;
  --line: #dde8f2;
  --bg: #f3f8fc;
  --white: #fff;
  --shadow: 0 20px 50px rgba(13,34,64,.14);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(13,34,64,.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  color: var(--navy);
}

.brand img {
  width: 124px;
  height: auto;
}

.brand span {
  border-left: 1px solid var(--line);
  padding-left: 14px;
  line-height: 1.2;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 650;
}

.nav a:hover { color: var(--navy); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(13,34,64,.14);
}

.btn-primary {
  background: var(--yellow);
  color: var(--navy);
}

.btn-primary:hover { background: var(--yellow-dark); }

.btn-outline {
  border: 1px solid rgba(13,34,64,.22);
  color: var(--navy);
  background: rgba(255,255,255,.72);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13,34,64,.86), rgba(13,34,64,.62) 46%, rgba(13,34,64,.18)),
    var(--hero-image) center/cover no-repeat;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--yellow);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 92px 0;
}

.eyebrow {
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.2vw, 4.25rem);
  line-height: .98;
  max-width: 780px;
  margin-bottom: 22px;
}

.hero p {
  max-width: 620px;
  color: rgba(255,255,255,.84);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-pills span {
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  font-size: .86rem;
  font-weight: 800;
  padding: 8px 12px;
}

section {
  padding: 86px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

h2 {
  color: var(--navy);
  font-size: clamp(1.65rem, 2.45vw, 2.45rem);
  line-height: 1.08;
  margin-bottom: 14px;
}

.section-head p,
.split-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 42%);
  gap: 54px;
  align-items: center;
}

.panel-image {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #fff, #eaf4fb);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-image.cover img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.panel-image.contain { padding: 38px; }
.panel-image.contain img { max-height: 360px; object-fit: contain; }

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.check-list li {
  list-style: none;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--yellow);
  margin-top: 2px;
  box-shadow: inset 0 0 0 6px rgba(255,255,255,.34);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(13,34,64,.06);
}

.card h3 {
  color: var(--navy);
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  font-size: .96rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.stats {
  background: var(--navy);
  color: var(--white);
}

.stats h2,
.stats .section-kicker { color: var(--white); }
.stats .section-head p { color: rgba(255,255,255,.7); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  overflow: hidden;
}

.stat {
  background: rgba(255,255,255,.06);
  padding: 26px;
}

.stat strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  margin-bottom: 8px;
}

.stat span {
  color: rgba(255,255,255,.78);
  font-size: .92rem;
}

.cta {
  background:
    linear-gradient(135deg, rgba(0,168,200,.16), rgba(245,166,35,.12)),
    #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.footer {
  background: #09182d;
  color: rgba(255,255,255,.7);
  padding: 42px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.footer a { color: rgba(255,255,255,.88); }
.footer a:hover { color: var(--yellow); }

@media (max-width: 900px) {
  .nav { display: none; }
  .hero { min-height: 620px; }
  .split,
  .contact-box { grid-template-columns: 1fr; }
  .card-grid,
  .steps,
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .container { width: min(100% - 32px, 1160px); }
  .brand img { width: 104px; }
  .brand span { font-size: .88rem; }
  .hero { min-height: auto; }
  .hero-content { padding: 72px 0; }
  .hero h1 { font-size: 2.2rem; }
  section { padding: 60px 0; }
  .card-grid,
  .steps,
  .stats-grid { grid-template-columns: 1fr; }
  .panel-image { min-height: 280px; }
  .panel-image.cover img { min-height: 280px; }
  .contact-box { padding: 24px; }
  .btn { width: 100%; text-align: center; }
}
