* {
  box-sizing: border-box;
}

:root {
  --bg: #0b1220;
  --surface: #111a2b;
  --surface-2: #f5f7fb;
  --text: #111827;
  --muted: #5f6b7a;
  --white: #ffffff;
  --line: #dce3ec;
  --accent: #5b7cfa;
  --accent-dark: #3f5ed6;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
}

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);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 227, 236, 0.8);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}


.brand-logo {
  display: block;
  width: 132px;
  height: 44px;
  object-fit: contain;
}

.footer-logo {
  width: 145px;
  height: auto;
  background: black;
  border-radius: 10px;
  padding: 5px 8px;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  color: white;
  background: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a {
  color: #374151;
}

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

.nav-links .nav-cta {
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--bg);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

.hero {
  background:
    radial-gradient(circle at 78% 24%, rgba(91, 124, 250, 0.22), transparent 28%),
    linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
  padding: 92px 0 82px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 24px;
  max-width: 780px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

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

.hero-text {
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 38px;
}

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

.button.primary {
  color: white;
  background: var(--accent);
}

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

.button.secondary {
  color: var(--text);
  background: white;
  border-color: var(--line);
}

.button.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 36px;
}

.trust-row div {
  display: grid;
  gap: 2px;
}

.trust-row strong {
  font-size: 1rem;
}

.trust-row span {
  font-size: 0.86rem;
  color: var(--muted);
}

.hero-card {
  background: var(--bg);
  color: var(--white);
  padding: 34px;
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(11, 18, 32, 0.18);
}

.hero-card-badge {
  display: inline-block;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(91, 124, 250, 0.2);
  color: #cbd5ff;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-card h2 {
  font-size: 1.8rem;
}

.hero-card ul,
.service-card ul {
  margin: 22px 0 0;
  padding-left: 19px;
}

.hero-card li {
  margin: 10px 0;
  color: #dbe4f3;
}

.section {
  padding: 88px 0;
}

.section.alt {
  background: var(--surface-2);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.cards.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.service-card .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #eef2ff;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 22px;
}

.service-card p,
.service-card li {
  color: var(--muted);
}

.service-card li {
  margin: 8px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}

.body-copy {
  max-width: 700px;
}

.body-copy p:first-child {
  margin-top: 0;
}

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

.process-step {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg);
  color: white;
  font-weight: 800;
  margin-bottom: 18px;
}

.process-step p {
  color: var(--muted);
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.contact-details {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.contact-details div {
  display: grid;
  gap: 2px;
}

.contact-details strong {
  font-size: 0.85rem;
}

.contact-details span {
  color: var(--muted);
}

.contact-form {
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.9rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid #ccd5e0;
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: white;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91, 124, 250, 0.12);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.legal-section {
  padding: 54px 0 70px;
  background: white;
}

.legal-grid {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 18px;
}

summary {
  cursor: pointer;
  padding: 17px 0;
  font-weight: 700;
}

details p {
  margin-top: 0;
  padding-bottom: 16px;
  color: var(--muted);
}

footer {
  background: var(--bg);
  color: white;
  padding: 38px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-end;
}

.footer-brand {
  margin-bottom: 10px;
}

footer p,
.footer-right {
  color: #aeb8c8;
  font-size: 0.9rem;
}

.footer-right {
  display: grid;
  gap: 6px;
  text-align: right;
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .hero {
    padding-top: 70px;
  }
}

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

  .brand-logo {
    width: 120px;
    height: 40px;
  }

  .menu-toggle {
    display: block;
  }

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

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

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

  .nav-links .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero {
    padding: 54px 0 58px;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .cards.two-col,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .service-card,
  .hero-card,
  .contact-form {
    padding: 24px;
  }

  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-right {
    text-align: left;
  }
}


.legal-links-row {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}
.legal-links-row p { margin: 4px 0 0; color: var(--muted); }
.legal-links { display: flex; gap: 18px; flex-wrap: wrap; font-weight: 700; }
.legal-links a { color: var(--accent); }
.legal-page { padding: 76px 0 90px; }
.legal-page .legal-content { max-width: 860px; }
.legal-page h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 14px; }
.legal-page h2 { font-size: 1.45rem; margin-top: 34px; margin-bottom: 10px; }
.legal-page p, .legal-page li { color: var(--muted); }
.legal-page ul { padding-left: 22px; }
.legal-meta { margin-bottom: 34px; color: var(--muted); }
@media (max-width: 680px) {
  .legal-links-row { align-items: flex-start; flex-direction: column; }
}
