:root {
  --ink: #171b23;
  --muted: #5a6373;
  --navy: #17375e;
  --navy-deep: #0f2744;
  --teal: #0e8d8a;
  --teal-dark: #086f70;
  --coral: #e15b43;
  --paper: #ffffff;
  --mist: #f3f7f8;
  --line: #d8e1e6;
  --shadow: 0 18px 50px rgba(15, 39, 68, 0.14);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

body,
button,
input,
select {
  letter-spacing: 0;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px max(20px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid rgba(216, 225, 230, 0.92);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--paper);
  font-size: 13px;
  line-height: 1;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 15px;
}

.header-nav a {
  border-bottom: 2px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.header-nav a:hover {
  color: var(--navy);
  border-color: var(--teal);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover {
  background: var(--navy);
  color: var(--paper);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(590px, 82svh, 780px);
  overflow: hidden;
  color: var(--paper);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-consultation.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 28, 49, 0.92) 0%, rgba(11, 28, 49, 0.73) 45%, rgba(11, 28, 49, 0.18) 100%),
    linear-gradient(0deg, rgba(11, 28, 49, 0.14), rgba(11, 28, 49, 0.14));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 76px 0 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #34629b;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9ad7d5;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.14;
}

h1 {
  max-width: 780px;
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 900;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
}

h3 {
  font-size: 23px;
  font-weight: 900;
}

.hero-lead {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
  line-height: 1.22;
}

.hero-copy {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  max-width: 100%;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--coral);
  color: var(--paper);
  box-shadow: 0 14px 30px rgba(225, 91, 67, 0.28);
}

.button-primary:hover {
  background: #c94b36;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
}

.button-secondary:hover {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.17);
}

.section {
  padding: 96px 0;
}

.split,
.final-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 64px;
  align-items: start;
}

.split-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.section-intro {
  position: sticky;
  top: 104px;
}

.section-intro h2,
.section-heading h2,
.final-copy h2 {
  color: var(--ink);
}

.section-intro p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.final-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
}

.problem-list {
  display: grid;
  gap: 12px;
}

.problem-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.problem-item p {
  margin: 0;
  font-weight: 700;
}

.item-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: #e9f5f4;
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 900;
}

.callout-row {
  margin-top: 46px;
}

.wide-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 28px;
  align-items: center;
  padding: 30px;
  border-left: 6px solid var(--teal);
  border-radius: var(--radius);
  background: var(--navy-deep);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.wide-callout h3 {
  grid-column: 1 / -1;
}

.wide-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.light-section {
  background: var(--mist);
}

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

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

.benefit-card,
.check-panel,
.request-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(15, 39, 68, 0.08);
}

.benefit-card {
  min-height: 240px;
  padding: 24px;
}

.benefit-card-wide {
  grid-column: span 2;
}

.benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: #fff0ed;
  color: var(--coral);
  font-size: 22px;
  font-weight: 900;
}

.benefit-card:nth-child(even) .benefit-icon {
  background: #e9f5f4;
  color: var(--teal-dark);
}

.benefit-card h3 {
  font-size: 21px;
}

.benefit-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.check-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.98)),
    linear-gradient(90deg, rgba(14, 141, 138, 0.08), rgba(225, 91, 67, 0.06));
}

.check-panel {
  padding: 30px;
}

.check-panel h3 {
  margin-bottom: 20px;
}

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

.check-list li {
  position: relative;
  min-height: 36px;
  padding-left: 42px;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -3px;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--paper);
  font-size: 16px;
  font-weight: 900;
}

.final-section {
  background: var(--navy-deep);
  color: var(--paper);
}

.final-section .eyebrow {
  color: #9ad7d5;
}

.final-copy h2,
.final-copy p:not(.eyebrow) {
  color: var(--paper);
}

.final-copy p {
  max-width: 650px;
}

.final-copy .final-lead {
  color: var(--paper);
  font-size: 28px;
  font-weight: 900;
}

.note {
  padding-left: 18px;
  border-left: 4px solid var(--coral);
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 15px;
}

.request-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  color: var(--ink);
}

.request-form h3 {
  margin-bottom: 4px;
}

.request-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.request-form input,
.request-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: #fbfdfe;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

.request-form input:focus,
.request-form select:focus {
  outline: 3px solid rgba(14, 141, 138, 0.18);
  border-color: var(--teal);
}

.consent {
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 10px !important;
  margin-top: 2px;
  font-weight: 600 !important;
  line-height: 1.35;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 1px;
  accent-color: var(--teal);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 800;
}

.form-status.is-error {
  color: var(--coral);
}

.site-footer {
  padding: 24px 0;
  border-top: 1px solid rgba(216, 225, 230, 0.4);
  background: #0b1d33;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--paper);
  font-weight: 800;
}

@media (max-width: 980px) {
  .header-nav {
    display: none;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 28, 49, 0.94) 0%, rgba(11, 28, 49, 0.74) 68%, rgba(11, 28, 49, 0.35) 100%),
      linear-gradient(0deg, rgba(11, 28, 49, 0.14), rgba(11, 28, 49, 0.14));
  }

  .split,
  .split-reverse,
  .final-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-intro {
    position: static;
  }

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

  .benefit-card-wide {
    grid-column: span 2;
  }

  .wide-callout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

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

  .site-header {
    min-height: 64px;
    gap: 12px;
    padding: 10px 14px;
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 14px;
  }

  .hero {
    min-height: 80svh;
  }

  .hero-media {
    background-position: 60% center;
  }

  .hero-content {
    padding: 54px 0 52px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 21px;
  }

  .hero-lead {
    font-size: 24px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .problem-item {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 66px;
    padding: 12px;
  }

  .item-icon {
    width: 36px;
    height: 36px;
  }

  .wide-callout,
  .check-panel,
  .request-form {
    padding: 22px;
  }

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

  .benefit-card,
  .benefit-card-wide {
    grid-column: auto;
    min-height: auto;
  }

  .final-copy .final-lead {
    font-size: 24px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
