:root {
  --pine-950: #082d29;
  --pine-900: #123e36;
  --pine-800: #1d5147;
  --pine-100: #dce9e4;
  --blue: #26a8c6;
  --blue-dark: #087f9d;
  --cream: #f7f1e5;
  --paper: #fffdf8;
  --ink: #17312d;
  --muted: #60726e;
  --line: #d5dfda;
  --error: #9a312b;
  --radius-lg: 28px;
  --radius-md: 16px;
  --shadow: 0 28px 70px rgba(8, 45, 41, 0.15);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

button,
a { -webkit-tap-highlight-color: transparent; }

a { color: inherit; }

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

.skip-link:focus { transform: none; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 40px));
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-weight: 760;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
}

.brand-mark svg { width: 25px; fill: white; }
.brand-mark path { fill: none; stroke: #5fd0e2; stroke-width: 3.5; stroke-linecap: round; }

.share-button {
  padding: 10px 16px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  cursor: pointer;
}

.share-button:hover { background: rgba(255, 255, 255, 0.16); }

.hero {
  min-height: 860px;
  padding: 150px max(24px, calc((100vw - 1180px) / 2)) 100px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 18% 36%, rgba(38, 168, 198, 0.14), transparent 32%),
    linear-gradient(132deg, var(--pine-950), var(--pine-900) 60%, #174b42);
  overflow: hidden;
}

.hero-copy { max-width: 520px; }

.eyebrow,
.step-label {
  margin: 0 0 16px;
  color: #64d0e3;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 600px;
  margin-bottom: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6.2vw, 6.1rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.hero-lede {
  max-width: 510px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-facts div { display: flex; flex-direction: column; gap: 2px; }
.hero-facts strong { font-size: 1.02rem; }
.hero-facts span { color: rgba(255, 255, 255, 0.57); font-size: 0.78rem; }

.form-card {
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.form-heading {
  padding: 34px 38px 26px;
  background: white;
  border-bottom: 1px solid var(--line);
}

.form-heading .step-label { margin-bottom: 7px; color: var(--blue-dark); }
.form-heading h2 { margin-bottom: 8px; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 500; letter-spacing: -0.035em; }
.form-heading p:last-child { margin-bottom: 0; color: var(--muted); font-size: 0.93rem; }

form { padding: 28px 38px 34px; }

label { display: block; margin-bottom: 17px; }

label > span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
  color: #294641;
  font-size: 0.82rem;
  font-weight: 720;
}

label em { color: #7c8d88; font-size: 0.65rem; font-style: normal; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; }

input,
select,
textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: white;
  border: 1px solid #cad8d2;
  border-radius: 10px;
  outline: 0;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

textarea { resize: vertical; }
input::placeholder,
textarea::placeholder { color: #95a39f; }
input:focus,
select:focus,
textarea:focus { border-color: var(--blue-dark); box-shadow: 0 0 0 3px rgba(38, 168, 198, 0.15); }
.invalid { border-color: var(--error); box-shadow: 0 0 0 3px rgba(154, 49, 43, 0.1); }

.field-grid { display: grid; gap: 14px; }
.field-grid.two-columns { grid-template-columns: 1fr 1fr; }
.field-grid.three-columns { grid-template-columns: 1.2fr 0.8fr 0.8fr; }
.field-grid label { min-width: 0; }

.request-preview {
  margin: 4px 0 20px;
  padding: 14px 16px;
  background: #edf6f3;
  border-left: 3px solid var(--blue);
  border-radius: 4px 10px 10px 4px;
}

.request-preview span { display: block; margin-bottom: 3px; color: var(--pine-800); font-size: 0.69rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.request-preview p { margin: 0; color: #49615c; font-size: 0.84rem; overflow-wrap: anywhere; }

.form-actions { display: flex; gap: 11px; }

.primary-button,
.secondary-button {
  min-height: 48px;
  padding: 12px 19px;
  border-radius: 10px;
  font-weight: 760;
  cursor: pointer;
}

.primary-button { flex: 1; color: white; background: var(--blue-dark); border: 1px solid var(--blue-dark); }
.primary-button:hover { background: #066f89; }
.secondary-button { color: var(--pine-900); background: transparent; border: 1px solid #b8cac3; }
.secondary-button:hover { background: #edf5f1; }

.privacy-note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 15px 0 0;
  color: #6a7c77;
  font-size: 0.75rem;
}

.privacy-note svg { width: 15px; flex: 0 0 15px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.status { min-height: 1.1em; margin: 7px 0 0; color: var(--blue-dark); font-size: 0.8rem; font-weight: 700; }

.why-section,
.anchor-section,
.contacts-section,
footer { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.why-section { padding: 118px 0; }

.section-intro { display: grid; grid-template-columns: 0.7fr 1fr; column-gap: 80px; align-items: start; }
.section-intro .eyebrow { grid-column: 1 / -1; color: var(--blue-dark); }
.section-intro h2,
.anchor-copy h2,
.contacts-section h2 { margin-bottom: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.4rem, 5vw, 4.25rem); font-weight: 500; line-height: 1.02; letter-spacing: -0.045em; }
.section-intro > p:last-child { margin: 5px 0 0; color: var(--muted); font-size: 1.05rem; line-height: 1.75; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 70px; }
.benefit-grid article { min-height: 250px; padding: 28px; background: rgba(255, 255, 255, 0.66); border: 1px solid rgba(213, 223, 218, 0.85); border-radius: var(--radius-md); }
.benefit-grid .number { color: var(--blue-dark); font-family: Georgia, serif; font-style: italic; }
.benefit-grid h3 { margin: 58px 0 10px; font-size: 1.18rem; }
.benefit-grid p { margin: 0; color: var(--muted); font-size: 0.93rem; line-height: 1.65; }

.anchor-section {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  color: white;
  background: var(--pine-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.route-art { min-height: 520px; display: grid; place-items: center; background: rgba(255, 255, 255, 0.025); }
.route-art svg { width: 92%; max-height: 450px; }
.route-art .contour { fill: none; stroke: rgba(255, 255, 255, 0.105); stroke-width: 1.5; }
.route-art .route { fill: none; stroke: #63d0e1; stroke-width: 5; stroke-linecap: round; stroke-dasharray: 3 12; }
.route-art .route-dot { fill: var(--cream); stroke: #63d0e1; stroke-width: 4; }

.anchor-copy { padding: 60px 68px 60px 30px; }
.anchor-copy .eyebrow { margin-bottom: 12px; }
.anchor-copy h2 { font-size: clamp(2.4rem, 4.5vw, 4rem); }
.anchor-copy > p:not(.eyebrow) { margin: 25px 0 28px; color: rgba(255, 255, 255, 0.72); line-height: 1.75; }
.anchor-copy a { color: #74d7e7; font-weight: 780; text-underline-offset: 5px; }

.contacts-section { padding: 120px 0; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: start; }
.contacts-section .eyebrow { color: var(--blue-dark); }
.contacts-section h2 { font-size: clamp(2.3rem, 4.5vw, 3.8rem); }
.contacts-section > div:first-child > p:last-child { margin-top: 22px; color: var(--muted); line-height: 1.7; }

.contact-list { border-top: 1px solid #bfcfc8; }
.contact-list article { display: grid; grid-template-columns: 48px 1fr auto; gap: 16px; align-items: center; padding: 22px 0; border-bottom: 1px solid #bfcfc8; }
.contact-list article > div { width: 44px; height: 44px; display: grid; place-items: center; color: white; background: var(--pine-900); border-radius: 50%; font-size: 0.75rem; font-weight: 800; }
.contact-list p { margin: 0; }
.contact-list strong,
.contact-list small { display: block; }
.contact-list small { margin-top: 2px; color: var(--muted); }
.contact-list a { color: var(--blue-dark); font-size: 0.88rem; font-weight: 700; overflow-wrap: anywhere; text-underline-offset: 4px; }

footer { padding: 30px 0 42px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid #c9d6d1; color: #5d716b; font-size: 0.8rem; }
footer p { margin: 0; }
footer strong,
footer span { display: block; }
footer strong { color: var(--pine-900); }
.disclaimer { text-align: right; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 138px; }
  .hero-copy { max-width: 660px; }
  .form-card { max-width: 720px; }
  .section-intro { grid-template-columns: 1fr; gap: 24px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid article { min-height: auto; }
  .benefit-grid h3 { margin-top: 30px; }
  .anchor-section { grid-template-columns: 0.9fr 1.1fr; }
  .contacts-section { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 720px) {
  .site-header { width: calc(100% - 32px); height: 76px; }
  .brand { font-size: 0.88rem; }
  .brand-mark { width: 32px; height: 32px; }
  .share-button { padding: 8px 12px; font-size: 0.78rem; }
  .hero { min-height: 0; padding: 116px 18px 70px; gap: 46px; }
  h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-lede { font-size: 1rem; }
  .hero-facts { grid-template-columns: 1fr; gap: 12px; }
  .hero-facts div { flex-direction: row; justify-content: space-between; }
  .form-heading,
  form { padding-left: 20px; padding-right: 20px; }
  .field-grid.two-columns,
  .field-grid.three-columns { grid-template-columns: 1fr; gap: 0; }
  .form-actions { flex-direction: column; }
  .why-section,
  .anchor-section,
  .contacts-section,
  footer { width: min(100% - 36px, 1180px); }
  .why-section { padding: 82px 0; }
  .benefit-grid { margin-top: 42px; }
  .anchor-section { grid-template-columns: 1fr; }
  .route-art { min-height: 300px; }
  .anchor-copy { padding: 10px 26px 44px; }
  .contacts-section { padding: 84px 0; }
  .contact-list article { grid-template-columns: 44px 1fr; }
  .contact-list a { grid-column: 2; }
  footer { flex-direction: column; }
  .disclaimer { text-align: left; }
}

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