:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #eef4ff;
  --text: #142033;
  --muted: #5b677a;
  --primary: #1457d9;
  --primary-dark: #0f3f9b;
  --accent: #00a7a7;
  --border: #dce4f2;
  --shadow: 0 24px 60px rgba(20, 32, 51, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 228, 242, 0.9);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  letter-spacing: -0.04em;
}

.brand-text {
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-weight: 600;
}

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

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  padding: 10px 16px;
  font: inherit;
  font-weight: 700;
}

.hero {
  overflow: hidden;
  padding: 96px 0 72px;
  background:
    radial-gradient(circle at top left, rgba(20, 87, 217, 0.16), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #eef4ff 100%);
}

.hero-grid,
.two-column,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.3;
}

.hero-lede,
.section-heading p,
.contact-section p,
.prose p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(20, 87, 217, 0.25);
}

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

.button-secondary {
  background: #ffffff;
  border-color: var(--border);
  color: var(--primary);
}

.hero-card,
.business-card,
.contact-form,
.service-card,
.faq-grid article,
.timeline article,
.feature-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 34px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(0, 167, 167, 0.14);
  color: var(--accent);
  content: "+";
  font-size: 0.8rem;
  font-weight: 900;
  text-align: center;
  line-height: 20px;
}

.section {
  padding: 86px 0;
}

.section-muted {
  background: var(--surface-soft);
}

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

.metric-grid div {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
}

.metric-grid strong,
.metric-grid span {
  display: block;
}

.metric-grid strong {
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.metric-grid span {
  color: var(--muted);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

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

.service-card,
.faq-grid article,
.timeline article {
  padding: 26px;
}

.service-card p,
.faq-grid p,
.timeline p,
.info-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  padding: 38px;
}

.info-list {
  display: grid;
  gap: 16px;
}

.info-list div {
  padding: 18px;
  border-radius: 18px;
  background: var(--surface-soft);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pill-grid span {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  padding: 12px 18px;
  color: var(--muted);
  font-weight: 700;
}

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

.timeline span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 900;
}

.business-card {
  padding: 30px;
}

dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

dl div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

dt {
  color: var(--muted);
  font-weight: 700;
}

dd {
  margin: 0;
  font-weight: 700;
}

.small-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-entity {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 1.02rem;
}

.company-address {
  margin: 18px 0 0;
  font-style: normal;
  color: var(--muted);
  line-height: 1.7;
}

.contact-details {
  margin-top: 28px;
}

.contact-details p,
.contact-details .company-address {
  margin-bottom: 12px;
  color: #c8d8ff;
}

.contact-details a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-details .legal-entity {
  color: #ffffff;
}

.footer-legal {
  margin-top: 10px;
  color: #aebce0;
  font-size: 0.92rem;
}

.footer-legal a {
  color: #dbe6ff;
}

.contact-section {
  background: #10203d;
  color: #ffffff;
}

.contact-section .eyebrow,
.contact-section p {
  color: #c8d8ff;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  color: var(--text);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--text);
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  background: #071122;
  color: #dbe6ff;
  padding: 52px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  gap: 36px;
}

.footer-grid p {
  max-width: 470px;
  color: #aebce0;
}

.footer-grid h2 {
  margin-bottom: 12px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid a:not(.brand) {
  display: block;
  margin-bottom: 8px;
  color: #aebce0;
}

.footer-brand .brand-text {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #aebce0;
  font-size: 0.92rem;
}

.policy-page {
  background: #ffffff;
}

.policy-hero {
  padding: 74px 0 36px;
  background: var(--surface-soft);
}

.policy-content {
  max-width: 860px;
  padding: 56px 0 86px;
}

.policy-content h2 {
  margin-top: 36px;
  font-size: 1.6rem;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero-grid,
  .two-column,
  .contact-grid,
  .feature-panel {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .timeline,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #ffffff;
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero {
    padding: 66px 0 52px;
  }

  .section {
    padding: 62px 0;
  }

  .card-grid,
  .timeline,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-panel,
  .hero-card,
  .business-card,
  .contact-form {
    padding: 24px;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
