:root {
  --bg: #ffffff;
  --surface: #f4f7fb;
  --surface-2: #edf3f8;
  --ink: #0c1d32;
  --muted: #5d6a79;
  --line: #d9e3ec;
  --brand: #163a63;
  --brand-2: #0f2948;
  --accent: #c8d900;
  --accent-dark: #9eaf00;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(12, 29, 50, .12);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin: 0 0 1rem; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--accent);
  color: var(--ink);
  padding: .75rem 1rem;
  border-radius: 999px;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(217, 227, 236, .8);
}
.topbar {
  background: var(--brand-2);
  color: rgba(255,255,255,.88);
  font-size: .86rem;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .48rem 0;
}
.topbar a { color: var(--white); font-weight: 600; }
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.brand { display: inline-flex; align-items: center; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--brand-2);
  font-weight: 650;
}
.nav__toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: .75rem 1rem;
  font: inherit;
  color: var(--brand-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.25rem;
  border-radius: 999px;
  background: var(--accent);
  color: #142238;
  font-weight: 800;
  border: 1px solid var(--accent);
  box-shadow: 0 12px 28px rgba(200, 217, 0, .24);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; background: #d7e800; }
.btn--ghost {
  background: transparent;
  color: var(--brand-2);
  box-shadow: none;
  border-color: rgba(22, 58, 99, .22);
}
.btn--ghost:hover { background: rgba(22,58,99,.06); }
.btn--small { min-height: 40px; padding: .62rem 1rem; }

.section { padding: 92px 0; }
.section--compact { padding: 34px 0; }
.section--muted { background: linear-gradient(180deg, var(--surface), var(--white)); }
.section--accent {
  background: radial-gradient(circle at top left, rgba(200,217,0,.22), transparent 32%), linear-gradient(135deg, var(--brand-2), var(--brand));
  color: var(--white);
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 60px;
  background:
    radial-gradient(circle at top left, rgba(200,217,0,.22), transparent 34%),
    linear-gradient(180deg, #f8fbfd, #fff);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -35% 48%;
  width: 640px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 80px solid rgba(22,58,99,.05);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  align-items: center;
  gap: 58px;
}
.eyebrow {
  margin-bottom: .75rem;
  color: var(--brand);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 850;
}
.section--accent .eyebrow, .footer .eyebrow { color: var(--accent); }
h1, h2, h3 { margin: 0; line-height: 1.05; color: inherit; }
h1 {
  max-width: 790px;
  font-size: clamp(2.55rem, 6vw, 5.3rem);
  letter-spacing: -.055em;
}
h2 {
  font-size: clamp(2rem, 4.5vw, 3.55rem);
  letter-spacing: -.045em;
}
h3 { font-size: 1.28rem; letter-spacing: -.018em; }
.lead {
  margin: 1.25rem 0 1.8rem;
  max-width: 670px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.4rem; }
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.trust-list li {
  padding: .55rem .85rem;
  background: rgba(22,58,99,.08);
  border: 1px solid rgba(22,58,99,.12);
  border-radius: 999px;
  color: var(--brand-2);
  font-weight: 700;
}
.hero__media {
  position: relative;
  border-radius: 32px;
  isolation: isolate;
}
.hero__media img {
  border-radius: 32px;
  box-shadow: var(--shadow);
  object-fit: cover;
}
.hero-card {
  position: absolute;
  left: -28px;
  bottom: 28px;
  max-width: 280px;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 22px 48px rgba(12,29,50,.16);
  backdrop-filter: blur(14px);
}
.hero-card strong, .hero-card span { display: block; }
.hero-card span { color: var(--muted); font-size: .95rem; }

.logo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.logo-strip > div {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  background: var(--white);
}
.logo-strip strong { display: block; color: var(--brand-2); }
.logo-strip span { color: var(--muted); font-size: .96rem; }

.section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; margin-top: 1rem; }
.section-heading--left { margin-inline: 0; text-align: left; }
.cards { display: grid; gap: 1rem; }
.cards--services { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.55rem;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(12,29,50,.045);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(12,29,50,.10);
  border-color: rgba(22,58,99,.22);
}
.card p { color: var(--muted); margin-top: .75rem; }
.icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.2rem;
  border-radius: 16px;
  background: rgba(200,217,0,.22);
  color: var(--brand-2);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: 48px;
  align-items: center;
}
.section--accent p { color: rgba(255,255,255,.78); }
.service-picker { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.picker {
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  padding: .82rem 1rem;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.picker.active, .picker:hover { background: var(--accent); color: var(--ink); }
.info-panel {
  min-height: 300px;
  border-radius: 32px;
  padding: 2rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 24px 70px rgba(0,0,0,.2);
}
.panel-label {
  display: inline-flex;
  margin-bottom: .8rem;
  padding: .38rem .7rem;
  border-radius: 999px;
  background: rgba(200,217,0,.18);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.info-panel h3 { font-size: clamp(1.7rem, 4vw, 2.45rem); }
.info-panel a { display: inline-flex; margin-top: .65rem; color: var(--accent); font-weight: 850; }

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .9rem;
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
}
.timeline li {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius);
  padding: 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
}
.timeline li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  margin-bottom: 1.1rem;
  color: var(--accent-dark);
  font-weight: 950;
  font-size: 1.55rem;
}
.timeline strong { display: block; font-size: 1.1rem; color: var(--brand-2); }
.timeline span { display: block; margin-top: .55rem; color: var(--muted); font-size: .95rem; }

.proof-grid {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.proof-copy {
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--brand-2);
  color: var(--white);
}
.proof-copy p:not(.eyebrow) { color: rgba(255,255,255,.76); margin-top: 1rem; }
.proof-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(12,29,50,.06);
}
.proof-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}
.proof-card h3, .proof-card p { padding-inline: 1.3rem; }
.proof-card h3 { padding-top: 1.25rem; }
.proof-card p { color: var(--muted); padding-bottom: 1.25rem; }

.faq-wrap {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 44px;
}
.faq-list { display: grid; gap: .8rem; }
details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  background: var(--white);
}
summary {
  cursor: pointer;
  font-weight: 850;
  color: var(--brand-2);
}
details p { color: var(--muted); margin: .9rem 0 0; }

.cta-section { padding-top: 0; }
.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(1.4rem, 4vw, 3rem);
  border-radius: 32px;
  background: linear-gradient(135deg, var(--surface), #fff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.cta-box p:not(.eyebrow) { color: var(--muted); margin-top: 1rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: flex-end; }

.footer {
  background: var(--brand-2);
  color: rgba(255,255,255,.78);
  padding: 56px 0 22px;
}
.footer a { color: var(--white); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr .85fr;
  gap: 2rem;
  padding-bottom: 36px;
}
.footer__grid ul { padding: 0; margin: 0; list-style: none; display: grid; gap: .5rem; }
.footer__title {
  margin-bottom: .9rem;
  font-size: 1rem;
  letter-spacing: .02em;
  color: var(--white);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
}

@media (max-width: 980px) {
  .hero__grid, .split, .faq-wrap, .cta-box { grid-template-columns: 1fr; }
  .hero__media { max-width: 620px; }
  .cards--services, .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-copy { grid-column: 1 / -1; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .cta-actions { justify-content: flex-start; }
}
@media (max-width: 760px) {
  .topbar__inner { flex-direction: column; gap: .2rem; }
  .nav { min-height: 68px; }
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: .3rem;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: .7rem .5rem; }
  .hero { padding-top: 54px; }
  .section { padding: 68px 0; }
  .logo-strip, .cards--services, .proof-grid, .timeline, .footer__grid { grid-template-columns: 1fr; }
  .hero-card { position: static; margin: -20px 18px 0; }
  .trust-list { gap: .5rem; }
  .trust-list li { font-size: .9rem; }
  h1 { font-size: clamp(2.35rem, 11vw, 4rem); }
  .container { width: min(100% - 28px, var(--max)); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
