:root {
  --navy-950: #071426;
  --navy-900: #0b1d34;
  --navy-800: #12304f;
  --teal-500: #18b6a4;
  --teal-400: #3dd5c2;
  --blue-100: #eaf4ff;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(11, 29, 52, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--slate-100);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--teal-500);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

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

h1,
h2,
h3 {
  line-height: 1.16;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  margin-bottom: 24px;
}

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

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

.lead {
  max-width: 720px;
  color: var(--slate-600);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.text-center {
  text-align: center;
}

.text-center .lead {
  margin-inline: auto;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition: 180ms ease;
}

.btn-primary {
  color: var(--navy-950);
  background: var(--teal-400);
}

.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.btn-dark {
  color: var(--white);
  background: var(--navy-950);
}

.btn-dark:hover {
  background: var(--navy-800);
  transform: translateY(-2px);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 20, 38, 0.94);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--teal-400), #9cf5e9);
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 999px;
  padding: 9px 14px;
  color: #d8e4f1;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 116px 0 96px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 22%, rgba(24, 182, 164, 0.28), transparent 30%),
    radial-gradient(circle at 14% 80%, rgba(46, 123, 255, 0.2), transparent 28%),
    linear-gradient(135deg, var(--navy-950), #0e2947 58%, #0a3a44);
}

.hero::after {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  pointer-events: none;
}

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

.hero h1 span {
  color: var(--teal-400);
}

.hero .lead {
  color: #cbd9e7;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.data-card {
  display: grid;
  gap: 18px;
}

.data-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  border-radius: 14px;
  padding: 15px;
  background: rgba(6, 17, 31, 0.55);
}

.data-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: var(--navy-950);
  background: var(--teal-400);
  font-weight: 900;
}

.data-row strong,
.data-row small {
  display: block;
}

.data-row small {
  color: #9fb2c6;
}

.status {
  color: var(--teal-400);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-strip {
  border-bottom: 1px solid var(--slate-200);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 28px 24px;
  text-align: center;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--slate-200);
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-900);
  font-size: 1.05rem;
}

.trust-item span {
  color: var(--slate-500);
  font-size: 0.9rem;
}

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

.card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 30px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(11, 29, 52, 0.06);
}

.card:hover {
  border-color: rgba(24, 182, 164, 0.55);
  transform: translateY(-4px);
  transition: 180ms ease;
}

.card-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 14px;
  color: var(--navy-950);
  background: #dffaf6;
  font-size: 1.35rem;
  font-weight: 900;
}

.card p,
.list-check,
.split-copy p {
  color: var(--slate-600);
}

.link-arrow {
  display: inline-flex;
  margin-top: 12px;
  color: var(--teal-500);
  font-weight: 800;
}

.split {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.visual-panel {
  min-height: 430px;
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(24, 182, 164, 0.25), transparent 40%),
    var(--navy-900);
  box-shadow: var(--shadow);
}

.pipeline {
  display: grid;
  height: 100%;
  align-content: center;
  gap: 16px;
}

.pipeline-step {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  padding: 18px;
  background: rgba(255,255,255,.06);
}

.pipeline-step span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--teal-400);
  font-weight: 900;
}

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

.list-check li {
  position: relative;
  padding-left: 30px;
}

.list-check li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-950);
  background: #dffaf6;
  content: "✓";
  font-size: 0.75rem;
  font-weight: 900;
}

.cta-band {
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 56px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(61, 213, 194, 0.25), transparent 24%),
    var(--navy-950);
}

.page-hero {
  padding: 92px 0 76px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 25%, rgba(24, 182, 164, 0.23), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.page-hero .lead {
  color: #c7d7e7;
}

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

.value-card {
  border-top: 3px solid var(--teal-500);
  padding: 26px 0 0;
}

.service-block {
  display: grid;
  align-items: start;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  padding: 54px 0;
  border-bottom: 1px solid var(--slate-200);
}

.service-block:last-child {
  border-bottom: 0;
}

.service-number {
  color: var(--teal-500);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

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

.service-point {
  border-radius: 12px;
  padding: 18px;
  background: var(--slate-100);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-item .icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 12px;
  background: #dffaf6;
}

.contact-form {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.92rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--slate-300);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--navy-950);
  background: var(--white);
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(24, 182, 164, 0.12);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  margin: 14px 0 0;
  color: var(--slate-500);
  font-size: 0.84rem;
}

.site-footer {
  padding: 64px 0 28px;
  color: #cbd8e5;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  max-width: 460px;
  color: #95a9bc;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: #aebfd0;
}

.footer-links a:hover {
  color: var(--teal-400);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  color: #8498ac;
  font-size: 0.86rem;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-950);
}

.skip-link:focus {
  transform: translateY(0);
}

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

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

  .hero {
    padding-top: 84px;
  }

  .hero-panel {
    max-width: 640px;
  }

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

  .trust-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--slate-200);
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid var(--slate-200);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .section {
    padding: 72px 0;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 14px;
    left: 14px;
    display: none;
    align-items: stretch;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 12px;
    background: var(--navy-900);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

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

  .grid-3,
  .values-grid,
  .form-grid,
  .service-columns,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .field-full,
  .footer-brand {
    grid-column: auto;
  }

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

  .trust-item + .trust-item,
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-top: 1px solid var(--slate-200);
    border-left: 0;
  }

  .cta-band {
    padding: 38px 24px;
  }

  .contact-form {
    padding: 24px;
  }

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