:root {
  --blue: #012056;
  --orange: #eb6909;
  --ink: #172033;
  --muted: #5d6878;
  --line: #dfe5ee;
  --soft: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(1, 32, 86, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

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

.narrow {
  width: min(780px, calc(100% - 40px));
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 10;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--blue);
  text-decoration: none;
}

.brand-logo-wrap {
  position: relative;
  width: 126px;
  height: 70px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  background: var(--white);
  overflow: hidden;
}

.brand-logo {
  max-width: 120px;
  max-height: 66px;
}

.brand-logo-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0;
}

.brand-logo:not(.is-hidden) + .brand-logo-fallback {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--blue);
  font-weight: 700;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--orange);
}

.hero {
  padding: 74px 0 66px;
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.84fr);
  gap: 56px;
  align-items: center;
}

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

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

h1 {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: clamp(2.45rem, 6vw, 4.45rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 1.08rem;
  line-height: 1.3;
}

.hero-lead {
  max-width: 680px;
  color: #384353;
  font-size: 1.18rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--orange);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #c95607;
}

.button-secondary {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--white);
  background: var(--blue);
}

.button-secondary.dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

.button-secondary.dark:hover,
.button-secondary.dark:focus-visible {
  color: var(--blue);
  background: var(--white);
}

.button-light {
  color: var(--blue);
  background: var(--white);
}

.contact-band .button-light {
  color: var(--blue);
}

.hero-media {
  position: relative;
  min-height: 420px;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.image-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  color: var(--blue);
  font-weight: 800;
  text-align: center;
  background:
    linear-gradient(rgba(1, 32, 86, 0.08), rgba(1, 32, 86, 0.08)),
    repeating-linear-gradient(135deg, #ffffff, #ffffff 14px, #eef3f9 14px, #eef3f9 28px);
}

.optional-image.is-hidden {
  display: none;
}

.section {
  padding: 76px 0;
}

.intro-section p {
  color: #384353;
  font-size: 1.06rem;
}

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

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

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

.reason-card {
  min-height: 166px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.reason-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
}

.notice {
  margin-top: 22px;
  margin-bottom: 0;
  padding: 18px 20px;
  color: var(--blue);
  font-weight: 700;
  border-left: 4px solid var(--orange);
  background: #fff7f1;
}

.local-section {
  border-top: 1px solid var(--line);
}

.local-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.local-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  color: var(--blue);
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

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

.steps li {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.step-number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 800;
  border-radius: 50%;
  background: var(--blue);
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.form-section {
  background: var(--blue);
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.form-intro,
.form-intro h2 {
  color: var(--white);
}

.form-intro p {
  color: rgba(255, 255, 255, 0.84);
}

.check-list,
.feature-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.feature-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
}

.check-list li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}

.request-form {
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.field-group {
  display: grid;
  gap: 16px;
}

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

.field {
  margin-bottom: 18px;
}

label,
legend {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
  border: 1px solid #cdd6e4;
  border-radius: 6px;
  background: var(--white);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(235, 105, 9, 0.22);
  border-color: var(--orange);
}

.radio-group {
  padding: 0;
  border: 0;
}

.radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 4px 18px 4px 0;
  color: var(--ink);
  font-weight: 400;
}

.radio-group input {
  width: auto;
  min-height: auto;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 6px;
  background: #fff7f1;
  color: var(--blue);
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-list {
  margin-top: 0;
  font-size: 1.05rem;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  position: relative;
  padding: 18px 54px 18px 20px;
  color: var(--blue);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-band {
  padding: 58px 0;
  color: var(--white);
  background: var(--blue);
}

.contact-band h2,
.contact-band a {
  color: var(--white);
}

.contact-band p {
  margin-bottom: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
}

.contact-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 700px;
}

.contact-logo-wrap {
  width: 138px;
  min-height: 84px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
}

.contact-logo {
  max-width: 112px;
  max-height: 64px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer {
  padding: 30px 0;
  color: #dce6f5;
  background: #061734;
}

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

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

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-inner a {
  color: #ffffff;
}

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

  .hero-media {
    min-height: 340px;
  }

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

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

  .steps li {
    min-height: auto;
  }

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

  .contact-brand {
    align-items: flex-start;
  }

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

@media (max-width: 700px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.95rem;
  }

  .hero {
    padding: 48px 0 44px;
  }

  .section {
    padding: 54px 0;
  }

  .button-row,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    min-height: 270px;
  }

  .card-grid,
  .steps,
  .two-columns {
    grid-template-columns: 1fr;
  }

  .request-form {
    padding: 22px;
  }

  .contact-brand {
    flex-direction: column;
  }

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

  .footer-inner nav {
    justify-content: flex-start;
  }
}
