:root {
  --ink: #10223d;
  --muted: #5c6b7f;
  --paper: #f6f8fb;
  --white: #ffffff;
  --line: #dce4ed;
  --blue: #246bfe;
  --blue-dark: #1553d1;
  --aqua: #49c7bd;
  --navy: #0b1c33;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(18, 44, 79, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header,
.hero,
.trust-strip,
.content-section,
.form-section,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  text-decoration: none;
}

.brand span {
  color: var(--blue);
}

.header-link,
.text-link {
  font-weight: 700;
  text-decoration: none;
}

.header-link:hover,
.text-link:hover {
  color: var(--blue);
}

.hero {
  min-height: 680px;
  padding: 88px 72px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 85% 15%, rgba(73, 199, 189, 0.24), transparent 26%),
    linear-gradient(135deg, #0b1c33 0%, #112d53 62%, #183f6d 100%);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 76px;
  align-items: center;
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #7de0d8;
}

h1,
h2,
h3 {
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.12;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  letter-spacing: -0.055em;
}

h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 3.75rem);
  letter-spacing: -0.045em;
}

h3 {
  letter-spacing: -0.025em;
}

.lead {
  max-width: 690px;
  margin: 30px 0 0;
  color: #d9e5f3;
  font-size: 1.24rem;
}

.actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.button {
  min-height: 52px;
  padding: 14px 23px;
  border: 0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(36, 107, 254, 0.26);
}

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

.button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(36, 107, 254, 0.35);
  outline-offset: 3px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.capacity {
  max-width: 650px;
  margin: 24px 0 0;
  color: #aebfd2;
  font-size: 0.93rem;
}

.review-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.card-label {
  margin-top: 0;
  font-weight: 800;
}

.review-card ol {
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.review-card li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  gap: 15px;
}

.review-card li span {
  color: #7de0d8;
  font-weight: 800;
}

.review-card > p:last-child {
  margin-bottom: 0;
  color: #d9e5f3;
}

.trust-strip {
  margin-top: 20px;
  padding: 22px 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.content-section {
  padding: 120px 0;
}

.split,
.scope {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 90px;
  align-items: start;
}

.check-list > p {
  margin-top: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.check-list ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 16px 0 16px 42px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 15px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(73, 199, 189, 0.16);
  color: #168a82;
  display: grid;
  place-items: center;
}

.process {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background: var(--white);
}

.process h2 {
  max-width: 760px;
}

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

.process article {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.process article > span {
  color: var(--blue);
  font-weight: 800;
}

.process h3 {
  margin: 56px 0 12px;
  font-size: 1.2rem;
}

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

.scope-card {
  padding: 40px;
  border-left: 5px solid var(--aqua);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--white);
  box-shadow: var(--shadow);
}

.scope-card h3 {
  margin-top: 0;
  font-size: 1.35rem;
}

.scope-card p {
  color: var(--muted);
}

.form-section {
  margin-bottom: 80px;
  padding: 76px;
  border-radius: 30px;
  background: var(--navy);
  color: var(--white);
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 72px;
}

.form-section .eyebrow {
  color: #7de0d8;
}

.form-intro p:not(.eyebrow) {
  color: #c4d1df;
}

.contact-note a {
  color: var(--white);
}

.review-form {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

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

label {
  margin-bottom: 18px;
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fbfcfe;
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(36, 107, 254, 0.13);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.privacy {
  color: var(--muted);
  font-size: 0.82rem;
}

.form-status {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 700;
}

.form-success {
  border: 1px solid #8bd5b3;
  background: #edf9f3;
  color: #135c3d;
}

.form-error {
  border: 1px solid #efaca7;
  background: #fff1f0;
  color: #8b2521;
}

.hidden {
  display: none;
}

footer {
  padding: 30px 0 60px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.88rem;
}

footer p:last-child {
  text-align: right;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .scope,
  .form-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 68px 36px;
  }

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

  .form-section {
    padding: 52px 36px;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .trust-strip,
  .content-section,
  .form-section,
  footer {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    min-height: 70px;
  }

  .hero {
    min-height: auto;
    padding: 52px 23px;
    border-radius: 22px;
  }

  h1 {
    font-size: 3rem;
  }

  .lead {
    font-size: 1.08rem;
  }

  .trust-strip,
  .process-grid,
  .form-row,
  footer {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    text-align: left;
  }

  .content-section {
    padding: 84px 0;
  }

  .process {
    padding-inline: 12px;
  }

  .form-section {
    padding: 40px 20px;
  }

  .review-form {
    padding: 26px 20px;
  }

  footer p:last-child {
    text-align: left;
  }
}
