:root {
  --bg: #f6f9fc;
  --panel: #ffffff;
  --text: #10233c;
  --muted: #5f7187;
  --line: #dce6f2;
  --brand: #1f5fbf;
  --brand-dark: #123f82;
  --shadow: 0 20px 50px rgba(16, 35, 60, 0.08);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.84);
  border-bottom: 1px solid rgba(220, 230, 242, 0.8);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 800;
}
.brand-logo, .footer-logo { width: 52px; height: auto; }
.brand-text { font-size: 1.1rem; letter-spacing: 0.02em; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.site-nav a { color: var(--muted); font-weight: 600; }
.site-nav a:hover { color: var(--brand); }
.nav-cta {
  padding: 0.75rem 1rem;
  background: var(--brand);
  color: white !important;
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  padding: 0.55rem 0.8rem;
  border-radius: 12px;
  font-size: 1.15rem;
}

.hero {
  padding: 5.6rem 0 4rem;
  background:
    radial-gradient(circle at top right, rgba(31,95,191,0.16), transparent 28%),
    radial-gradient(circle at left center, rgba(31,95,191,0.1), transparent 25%);
}
.hero-grid, .about-grid, .footer-grid {
  display: grid;
  gap: 2rem;
}
.hero-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
.eyebrow {
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1.02;
}
.lead {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 62ch;
}
.hero-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-secondary {
  border: 1px solid var(--line);
  background: #fff;
}
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  list-style: none;
  margin: 0;
}
.hero-points li {
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 600;
}
.glass-card {
  padding: 2rem;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(220, 230, 242, 1);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.card-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(31,95,191,0.1);
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 700;
}
.glass-card h2 { margin: 0 0 0.8rem; font-size: 1.7rem; }
.glass-card p { color: var(--muted); line-height: 1.8; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.stat-row div {
  padding: 1rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}
.stat-row strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}
.stat-row span { color: var(--muted); font-size: 0.94rem; line-height: 1.6; }

.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  color: var(--brand-dark);
  font-weight: 700;
}

.section { padding: 5rem 0; }
.section-alt { background: rgba(255,255,255,0.72); }
.section-heading { max-width: 740px; margin-bottom: 2rem; }
.section-heading h2, .about-grid h2, .cta-box h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  margin: 0 0 0.8rem;
}
.section-heading p, .about-grid p, .cta-box p { color: var(--muted); line-height: 1.8; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.service-card, .panel, .process-step, .cta-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.service-card {
  padding: 1.6rem;
}
.service-card h3 { margin-top: 0; margin-bottom: 0.7rem; font-size: 1.2rem; }
.service-card p { color: var(--muted); line-height: 1.75; margin-bottom: 0; }
.about-grid { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
.panel { padding: 1.8rem; }
.panel h3 { margin-top: 0; }
.check-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.check-list li {
  padding-left: 1.8rem;
  position: relative;
  margin-bottom: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 800;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.process-step { padding: 1.6rem; }
.process-step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(31,95,191,0.1);
  color: var(--brand);
  font-weight: 800;
}
.process-step h3 { margin-bottom: 0.7rem; }
.process-step p { margin-bottom: 0; color: var(--muted); line-height: 1.75; }
.cta-section { padding-top: 1rem; }
.cta-box {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.site-footer {
  padding: 3rem 0;
  background: #0f223b;
  color: #e8eff8;
}
.footer-grid { grid-template-columns: 1fr 1fr 1fr; }
.footer-brand { font-size: 1.3rem; font-weight: 800; margin: 1rem 0 0.3rem; }
.footer-copy, .site-footer p, .site-footer a { color: #bfd0e6; }
.site-footer h3 { color: #fff; margin-top: 0; }

@media (max-width: 980px) {
  .hero-grid, .about-grid, .footer-grid, .cards-grid, .process-grid, .strip-grid, .stat-row, .cta-box {
    grid-template-columns: 1fr;
  }
  .cta-box { align-items: start; }
  .site-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 1rem;
    right: 1rem;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .hero { padding-top: 4.5rem; }
  .brand-logo, .footer-logo { width: 46px; }
  .container { width: min(1120px, calc(100% - 1.2rem)); }
  .glass-card, .service-card, .panel, .process-step, .cta-box { padding: 1.25rem; }
  .hero h1 { font-size: 2.2rem; }
}
