:root {
  --navy: #061a3a;
  --deep: #020b18;
  --blue: #0b69ff;
  --cyan: #12d8ff;
  --text: #10213c;
  --muted: #63718a;
  --line: #dfe8f5;
  --soft: #f5f9ff;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(223,232,245,.75);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: Manrope, sans-serif; font-weight: 700; }
.brand img { width: 44px; height: 44px; object-fit: cover; border-radius: 12px; }
.brand strong { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 600; }
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--navy);
  color: white !important;
  padding: 11px 17px;
  border-radius: 10px;
}
.menu-toggle { display: none; border: 0; background: transparent; font-size: 27px; }

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 40%, rgba(18,216,255,.14), transparent 23%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 60px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.2px;
  color: var(--blue);
  margin-bottom: 18px;
}
.hero h1, h2 {
  font-family: Manrope, sans-serif;
  letter-spacing: -2px;
  margin: 0;
  color: var(--navy);
}
.hero h1 { font-size: clamp(50px, 6.4vw, 82px); line-height: .99; max-width: 760px; }
.hero h1 span {
  background: linear-gradient(100deg, var(--blue), #03aef4);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.hero-copy > p {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
}
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 700;
  transition: .2s ease;
}
.button:hover { transform: translateY(-2px); }
.primary { background: linear-gradient(135deg, #0964ff, #00b7f5); color: white; box-shadow: 0 16px 35px rgba(11,105,255,.22); }
.secondary { border: 1px solid var(--line); background: white; color: var(--navy); }
.hero-points { display: flex; gap: 22px; margin-top: 32px; color: var(--muted); font-size: 14px; flex-wrap: wrap; }

.logo-card {
  position: relative;
  width: min(510px, 100%);
  margin-left: auto;
  aspect-ratio: 1 / 1;
  border-radius: 42px;
  background: linear-gradient(145deg, #021329, #071f47);
  display: grid;
  place-items: center;
  box-shadow: 0 35px 80px rgba(1,22,51,.25);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}
.logo-card img {
  position: relative;
  z-index: 2;
  width: 88%;
  mix-blend-mode: screen;
  filter: saturate(1.05) contrast(1.04);
}
.logo-glow {
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: #0b69ff;
  filter: blur(100px);
  opacity: .45;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .6; }
.orb-one { width: 320px; height: 320px; right: -130px; top: 120px; border: 1px solid rgba(11,105,255,.12); }
.orb-two { width: 540px; height: 540px; left: -390px; bottom: -160px; border: 1px solid rgba(11,105,255,.1); }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-grid div { padding: 28px 24px; border-right: 1px solid var(--line); }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong { display: block; margin-bottom: 5px; color: var(--navy); }
.trust-grid span { color: var(--muted); font-size: 13px; }

.section { padding: 110px 0; }
.section-heading { max-width: 760px; margin-bottom: 50px; }
.section-heading h2, .split h2, .cta-card h2 { font-size: clamp(38px, 5vw, 58px); line-height: 1.05; }
.section-heading p, .about-copy p, .cta-card p { color: var(--muted); line-height: 1.8; font-size: 17px; }

.cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  transition: .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(30,75,140,.09); border-color: #bfd4f3; }
.icon {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 12px; background: #edf5ff; color: var(--blue); font-weight: 800; margin-bottom: 26px;
}
.card h3 { font-family: Manrope, sans-serif; color: var(--navy); margin: 0 0 12px; }
.card p { color: var(--muted); line-height: 1.7; margin: 0; font-size: 14px; }

.split-section { background: var(--navy); }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.split h2 { color: white; }
.about-copy p { color: #b7c7de; margin-top: 0; }

.process { background: var(--soft); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.step { background: white; border-radius: 20px; padding: 30px; border: 1px solid var(--line); }
.step span { color: var(--blue); font-size: 13px; font-weight: 800; }
.step h3 { font-family: Manrope, sans-serif; color: var(--navy); font-size: 24px; margin: 30px 0 10px; }
.step p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 14px; }

.cta-section { padding: 110px 0; background: white; }
.cta-card {
  background:
    radial-gradient(circle at 90% 15%, rgba(18,216,255,.23), transparent 24%),
    linear-gradient(135deg, #03142f, #082b5c);
  border-radius: 32px;
  padding: 65px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
}
.cta-card h2 { color: white; }
.cta-card p { color: #b8cae3; }
.contact-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.light { background: rgba(255,255,255,.08); color: white; border-color: rgba(255,255,255,.18); }

footer { padding: 38px 0; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 30px; }
.footer-brand img { width: 38px; height: 38px; }
footer p { color: var(--muted); font-size: 12px; margin: 0; }

@media (max-width: 920px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: white;
    padding: 24px 20px;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .hero { min-height: auto; padding: 90px 0; }
  .hero-grid, .split, .cta-card { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 20px; }
  .logo-card { margin: 0 auto; }
  .trust-grid, .cards, .process-grid { grid-template-columns: repeat(2,1fr); }
  .split { gap: 35px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero h1 { font-size: 48px; }
  .trust-grid, .cards, .process-grid { grid-template-columns: 1fr; }
  .trust-grid div { border-right: 0; border-bottom: 1px solid var(--line); padding-left: 0; padding-right: 0; }
  .section { padding: 80px 0; }
  .cta-card { padding: 38px 25px; border-radius: 24px; }
  .logo-card { border-radius: 28px; }
}
