:root {
  --navy: #061b3f;
  --navy-2: #0a2f69;
  --blue: #1267ff;
  --cyan: #02c5d8;
  --text: #10213d;
  --muted: #64748b;
  --bg: #f7fbff;
  --white: #ffffff;
  --border: rgba(15, 42, 80, 0.12);
  --shadow: 0 24px 70px rgba(6, 27, 63, 0.16);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
body {
  margin: 0;
  padding-top: 106px;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 106px;
  z-index: 9999;
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(6, 27, 63, 0.08);
}

.nav {
  width: min(1240px, calc(100% - 36px));
  height: 106px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.brand img {
  width: 294px;
  height: auto;
  max-height: 98px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.nav-links a:not(.nav-cta) { opacity: .82; }
.nav-links a:hover { opacity: 1; color: var(--blue); }

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 10px 30px rgba(18, 103, 255, .25);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  margin: 5px auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 98px 0 74px;
  background:
    radial-gradient(circle at 74% 20%, rgba(2,197,216,.16), transparent 36%),
    radial-gradient(circle at 20% 10%, rgba(18,103,255,.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.hero-glow {
  position: absolute;
  inset: auto -200px -350px auto;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(18,103,255,.16), transparent 64%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

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

h1 {
  max-width: 780px;
  margin: 20px 0 22px;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 76px);
  line-height: .94;
  letter-spacing: -0.065em;
}

.hero-content p {
  max-width: 650px;
  font-size: 19px;
  line-height: 1.75;
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--navy-2), var(--blue) 58%, var(--cyan));
  box-shadow: 0 16px 40px rgba(18,103,255,.28);
}
.btn-secondary {
  color: var(--navy);
  background: white;
  border: 1px solid var(--border);
}

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-stats div {
  min-width: 120px;
  padding-left: 16px;
  border-left: 2px solid rgba(18,103,255,.2);
}
.hero-stats strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
}
.hero-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-card {
  position: relative;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(2,197,216,.22), transparent 65%);
}
.card-header {
  display: flex;
  gap: 8px;
  padding: 10px 10px 18px;
}
.card-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(6,27,63,.18);
}
.card-logo {
  position: relative;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f5fbff);
  border: 1px solid var(--border);
}
.card-logo img { width: 100%; }
.card-lines { padding: 24px 10px 8px; }
.card-lines span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(18,103,255,.18), rgba(2,197,216,.06));
  margin-bottom: 12px;
}
.card-lines span:nth-child(2) { width: 76%; }
.card-lines span:nth-child(3) { width: 54%; }
.card-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px;
}
.card-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  background: #edf8ff;
  color: var(--navy-2);
  font-size: 12px;
  font-weight: 800;
}

.trust-bar {
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--navy);
  color: white;
}
.trust-content p {
  margin: 0;
  text-align: center;
  font-weight: 800;
  letter-spacing: -.01em;
}

.section { padding: 102px 0; }
.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}
.section-heading h2,
.process-grid h2,
.panel h2,
.cta-box h2,
.contact-grid h2 {
  margin: 16px 0 16px;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.section-heading p,
.process-grid p,
.panel p,
.cta-box p,
.contact-grid p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: white;
  box-shadow: 0 12px 40px rgba(6,27,63,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(6,27,63,.12);
}
.service-card.featured {
  background: linear-gradient(180deg, #ffffff, #f2fbff);
  border-color: rgba(18,103,255,.24);
}
.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 24px;
}
.service-card h3 {
  color: var(--navy);
  font-size: 21px;
  letter-spacing: -.03em;
}
.service-card p, .service-card li {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14.5px;
}
ul { padding-left: 18px; margin-bottom: 0; }
li { margin-bottom: 8px; }

.dark-section {
  background: radial-gradient(circle at 20% 20%, rgba(18,103,255,.2), transparent 28%), linear-gradient(135deg, #061b3f, #07152e 72%);
  color: white;
}
.dark-section h2,
.dark-section h3 { color: white; }
.dark-section p { color: rgba(255,255,255,.72); }
.process-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.steps { display: grid; gap: 16px; }
.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.06);
}
.step span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 900;
}
.step h3 { margin-bottom: 6px; }
.step p { margin-bottom: 0; }

.split {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 52px;
  align-items: center;
}
.panel {
  padding: 42px;
  border-radius: 32px;
  background: linear-gradient(180deg, #fff, #f4fbff);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.benefits div {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: white;
}
.benefits strong {
  display: block;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 18px;
}
.benefits p { margin: 0; color: var(--muted); line-height: 1.6; }

.cta-section { padding: 36px 0 96px; }
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 46px;
  border-radius: 34px;
  background: linear-gradient(135deg, #061b3f, #0a3474 62%, #078fa8);
  box-shadow: var(--shadow);
  color: white;
}
.cta-box h2 { color: white; max-width: 780px; }
.cta-box p { color: rgba(255,255,255,.78); margin-bottom: 0; }
.cta-box .btn-primary { background: white; color: var(--navy); box-shadow: none; white-space: nowrap; }

.contact-section { background: #f7fbff; }
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
}
.contact-info {
  margin-top: 30px;
  padding: 24px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--border);
}
.contact-info p { margin: 0 0 12px; }
.contact-info p:last-child { margin-bottom: 0; }
.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: white;
  box-shadow: 0 16px 50px rgba(6,27,63,.08);
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(15, 42, 80, .16);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  color: var(--navy);
  background: #fbfdff;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(18,103,255,.1);
}
textarea { resize: vertical; }
.btn:disabled {
  cursor: not-allowed;
  opacity: .7;
}
.btn:disabled:hover { transform: none; }
.form-status {
  display: none;
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}
.form-status.is-visible { display: block; }
.form-status.success {
  color: #0b5f3a;
  background: #e8f8ef;
  border: 1px solid rgba(11, 95, 58, .16);
}
.form-status.error {
  color: #9f1239;
  background: #fff1f2;
  border: 1px solid rgba(159, 18, 57, .18);
}

.footer {
  padding: 28px 0;
  background: var(--navy);
  color: rgba(255,255,255,.76);
}
.footer-content {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  font-size: 14px;
  text-align: center;
}
.footer p { margin: 0; }
.footer a { color: white; font-weight: 800; }

@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    top: 106px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: white;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px; }
  .menu-toggle { display: block; }
  .hero-grid,
  .process-grid,
  .split,
  .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 72px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-box { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 108px; }
  body { padding-top: 94px; }
  .site-header { height: 94px; }
  .container { width: min(100% - 28px, 1180px); }
  .nav { width: calc(100% - 28px); height: 94px; }
  .nav-links { top: 94px; }
  .brand img {
    width: min(246px, calc(100vw - 104px));
    max-height: 82px;
  }
  .hero { padding: 58px 0 56px; }
  h1 { font-size: 43px; }
  .hero-content p { font-size: 16px; }
  .cards-grid,
  .benefits { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .hero-card { border-radius: 22px; }
  .card-logo { padding: 20px; }
  .panel,
  .cta-box,
  .contact-form { padding: 26px; border-radius: 24px; }
  .footer-content { flex-direction: column; align-items: center; }
}
