:root {
  --bg: #ffffff;
  --band: #f5f8fb;
  --surface: #ffffff;
  --surface-soft: #f9fbfd;
  --text: #101318;
  --muted: #5f6875;
  --line: #dfe6ee;
  --line-strong: #cbd5e1;
  --yellow: #ffc400;
  --yellow-soft: #fff3bf;
  --yellow-deep: #d69a00;
  --cyan: #43b8dc;
  --success: #12794a;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(36, 49, 66, 0.1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
}

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

img,
svg {
  display: block;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 70px;
  padding: 0 clamp(20px, 4vw, 54px);
  border-bottom: 1px solid rgba(223, 230, 238, 0.8);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand,
.main-nav,
.header-phone {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 20px;
  font-weight: 850;
}

.brand strong {
  color: var(--yellow-deep);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 196, 0, 0.46);
  border-radius: var(--radius);
  background: var(--yellow);
  color: #111318;
  font-size: 18px;
  font-weight: 900;
}

.main-nav {
  justify-content: center;
  gap: 34px;
  color: #26303b;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a,
.header-phone {
  transition: color 170ms ease;
}

.main-nav a:hover,
.header-phone:hover {
  color: var(--yellow-deep);
}

.header-phone {
  justify-content: flex-end;
  gap: 8px;
  font-size: 16px;
  font-weight: 850;
}

.header-phone svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 118px clamp(20px, 4vw, 54px) 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 66%, var(--band) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 70px 0 auto auto;
  width: min(58vw, 840px);
  height: 620px;
  background: linear-gradient(135deg, rgba(67, 184, 220, 0.16), rgba(255, 196, 0, 0.08) 48%, rgba(255, 255, 255, 0));
  clip-path: ellipse(72% 50% at 68% 43%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(360px, 470px);
  gap: clamp(34px, 5vw, 80px);
  align-items: start;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  isolation: isolate;
  padding-top: clamp(34px, 5vw, 72px);
}

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8px -52px -26px -54px;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 70%, rgba(255, 255, 255, 0.48) 90%, rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-copy h1 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(44px, 5.2vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 22px;
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease, color 170ms ease;
}

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

.button-primary,
.button-submit {
  color: #111318;
  background: var(--yellow);
  box-shadow: 0 14px 28px rgba(255, 196, 0, 0.24);
}

.button-primary:hover,
.button-submit:hover {
  background: #ffd64d;
}

.button-secondary {
  border-color: var(--line-strong);
  color: #171b20;
  background: rgba(255, 255, 255, 0.72);
}

.button-secondary:hover {
  border-color: #9fb0c2;
  background: #fff;
}

.lead-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.lead-panel h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: 0;
}

.lead-panel > p {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.lead-panel label {
  display: grid;
  gap: 6px;
  margin-bottom: 11px;
  color: #27313c;
  font-size: 13px;
  font-weight: 800;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.lead-panel input,
.lead-panel select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--text);
  background: #fff;
  font: inherit;
  font-size: 14px;
  outline: none;
}

.lead-panel input:focus,
.lead-panel select:focus {
  border-color: var(--yellow-deep);
  box-shadow: 0 0 0 3px rgba(255, 196, 0, 0.22);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.consent-notice {
  display: block;
  margin: 2px 0 12px;
  cursor: default;
}

.consent input {
  min-height: 18px;
  margin-top: 1px;
}

.consent a {
  color: #247f9f;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-optional {
  margin-top: -2px;
}

.button-submit {
  width: 100%;
  min-height: 50px;
  margin-top: 2px;
}

.form-status {
  display: block;
  min-height: 20px;
  margin-top: 12px;
  color: var(--success);
  font-size: 13px;
  font-weight: 850;
}

.hero-media {
  position: absolute;
  inset: 112px 0 auto 18%;
  z-index: 1;
  width: min(760px, 64vw);
  margin: 0;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: auto;
  margin-left: 0;
  border-radius: 0;
  filter: drop-shadow(0 28px 42px rgba(29, 43, 57, 0.12));
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 88%, transparent 100%);
}

.proof-row {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1200px, 100%);
  margin: 42px auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(36, 49, 66, 0.08);
  backdrop-filter: blur(14px);
}

.proof-row div {
  display: flex;
  gap: 13px;
  align-items: center;
  min-height: 84px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.proof-row div:last-child {
  border-right: 0;
}

.proof-row svg {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  color: var(--text);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-row span {
  color: #26303b;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.35;
}

.section {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 74px);
  align-items: end;
  margin-bottom: 34px;
}

.section-intro-wide {
  max-width: 860px;
  display: block;
}

.section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: 0;
}

.section p,
.final-cta p {
  color: var(--muted);
  line-height: 1.65;
}

.section-intro p {
  margin: 0;
  font-size: 17px;
}

.benefits-section {
  padding-top: 106px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit-grid article,
.route-options article,
.steps li,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.benefit-grid article {
  min-height: 238px;
  padding: 26px;
}

.benefit-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: var(--radius);
  background: #111318;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 900;
}

.benefit-grid h3,
.route-options h3,
.steps h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
}

.benefit-grid p,
.route-options p,
.steps p {
  margin: 12px 0 0;
}

.routes-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding-top: 22px;
}

.route-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.route-options article {
  padding: 28px;
}

.route-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border-radius: var(--radius);
  color: #14181e;
  background: var(--yellow-soft);
}

.route-icon-alt {
  color: #0f6782;
  background: #e7f7fb;
}

.route-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-options a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--yellow-deep);
  font-size: 15px;
  font-weight: 900;
}

.steps-section {
  padding-top: 32px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 220px;
  padding: 28px;
  background: linear-gradient(180deg, #fff, var(--surface-soft));
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: #111318;
  background: #fff;
  font-weight: 900;
}

.faq-section {
  padding-top: 20px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq-list details {
  background: var(--surface-soft);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: #1b222b;
  font-weight: 850;
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto 76px;
  border: 1px solid #cfe3ef;
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 50px);
  background:
    linear-gradient(135deg, rgba(67, 184, 220, 0.14), rgba(255, 196, 0, 0.1) 52%, rgba(255, 255, 255, 0.64)),
    #f7fbfe;
}

.final-cta p {
  max-width: 600px;
  margin: 12px 0 0;
}

.final-actions {
  margin-top: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) auto auto auto auto;
  gap: 22px;
  align-items: center;
  padding: 30px clamp(20px, 4vw, 54px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
  font-size: 14px;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: var(--text);
}

.site-footer small {
  max-width: 760px;
  color: #7a8593;
  font-size: 12px;
  line-height: 1.45;
}

.legal-page {
  background: var(--band);
}

.legal-shell {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 80px;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--yellow-deep);
  font-weight: 850;
}

.legal-shell h1 {
  margin: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: clamp(30px, 9vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.legal-updated {
  margin: 14px 0 38px;
  color: var(--muted);
}

.legal-shell section {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.legal-shell h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.legal-shell p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 1060px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 18px;
  }

  .lead-panel {
    max-width: 680px;
  }

  .hero-media {
    margin-top: -20px;
  }

  .hero-media img {
    width: 100%;
  }

  .site-header,
  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .site-footer div,
  .site-footer .footer-main {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .proof-row,
  .section-intro,
  .benefit-grid,
  .routes-section,
  .route-options,
  .steps,
  .faq-list,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .proof-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-row div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: 0 16px;
  }

  .brand {
    font-size: 18px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-phone {
    font-size: 14px;
  }

  .hero {
    padding: 92px 14px 0;
  }

  .hero::before {
    width: 100vw;
    height: 420px;
    opacity: 0.75;
  }

  .hero-grid,
  .section,
  .final-cta {
    width: min(100%, 1200px);
  }

  .hero-copy h1 {
    font-size: 40px;
    line-height: 1.02;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-actions,
  .field-grid,
  .final-actions,
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .lead-panel,
  .benefit-grid article,
  .route-options article,
  .steps li {
    padding: 20px;
  }

  .hero-media {
    margin-top: 18px;
  }

  .hero-media img {
    width: 128%;
    max-width: none;
    margin-left: -10%;
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 92%, transparent 100%);
  }

  .proof-row {
    margin-top: 0;
  }

  .section-intro {
    margin-bottom: 24px;
  }
}
