:root {
  --ink: #182033;
  --muted: #657083;
  --line: #dce5ee;
  --paper: #f7fafc;
  --white: #ffffff;
  --blue: #07388d;
  --cyan: #2f9aa0;
  --orange: #f1671e;
  --green: #2e765e;
  --shadow: 0 18px 42px rgba(18, 30, 48, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 56, 141, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 56, 141, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f3f7fa 48%, #eef6f5 100%);
  background-size: 84px 84px, 84px 84px, auto;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(220, 229, 238, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 176px;
  font-weight: 800;
  color: var(--blue);
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 7px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.94rem;
  color: var(--muted);
}

.nav a,
.lang-toggle,
.header-call {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 8px;
}

.nav a:hover,
.lang-toggle:hover {
  background: #edf4fa;
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 176px;
}

.lang-toggle {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue);
  font-weight: 800;
  cursor: pointer;
}

.header-call {
  background: var(--blue);
  color: #fff;
  font-weight: 800;
}

.hero,
.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: calc(92svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 36px 0 22px;
}

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

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

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

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.65rem, 6.6vw, 5.1rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.1vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.18;
}

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

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: 1.16rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(18, 30, 48, 0.13);
}

.primary {
  background: var(--orange);
  color: #fff;
}

.secondary {
  background: var(--blue);
  color: #fff;
}

.ghost {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 32px 0 0;
}

.facts div,
.service-grid article,
.route-panel,
.proof-grid div,
.contact-card,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 26px rgba(18, 30, 48, 0.06);
}

.facts div {
  min-height: 94px;
  padding: 16px;
}

dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

dd {
  margin: 8px 0 0;
  font-weight: 900;
}

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

.hero-media > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.media-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border-radius: 8px;
  color: #fff;
  background: rgba(7, 56, 141, 0.88);
}

.media-note span {
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding: 72px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.selector {
  display: grid;
  gap: 14px;
}

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

.selector-tabs button {
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.selector-tabs button.active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.route-panel {
  min-height: 246px;
  padding: 24px;
}

.route-kicker {
  margin-top: 0;
  color: var(--green);
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 26px;
}

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

.service-grid article {
  min-height: 230px;
  padding: 22px;
}

.service-grid span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
}

.visual-copy {
  padding: 34px 0;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.44em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cyan);
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: end;
  gap: 14px;
}

.image-stack img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-stack img:nth-child(2) {
  height: 330px;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.proof-grid {
  display: grid;
  gap: 12px;
}

.proof-grid div {
  padding: 20px;
}

.proof-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
}

.proof-grid p {
  margin: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding-bottom: 110px;
}

.contact-card,
.lead-form {
  padding: clamp(22px, 4vw, 34px);
}

address {
  margin: 22px 0;
  font-style: normal;
  line-height: 1.75;
}

address a {
  color: var(--blue);
  font-weight: 850;
}

.hours,
.form-note {
  font-size: 0.92rem;
}

.lead-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

input,
select {
  min-height: 48px;
  padding: 0 12px;
}

textarea {
  resize: vertical;
  min-height: 132px;
  padding: 12px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
  padding: 32px 18px 92px;
  color: #fff;
  background: var(--ink);
}

footer span {
  font-weight: 900;
}

footer a {
  color: rgba(255, 255, 255, 0.76);
}

.mobile-actions {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    display: none;
  }

  .nav {
    display: none;
  }

  .header-actions {
    min-width: 0;
  }

  .hero,
  .split,
  .visual-band,
  .proof,
  .contact,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-media,
  .hero-media > img {
    min-height: 300px;
  }

  .facts,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .visual-copy {
    padding: 0;
  }
}

@media (max-width: 620px) {
  .hero,
  .section {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-top: 22px;
    padding-bottom: 0;
  }

  .header-call {
    display: none;
  }

  h1 {
    font-size: 2.45rem;
    line-height: 1.02;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 1rem;
  }

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

  .hero-actions .button,
  .contact-actions .button {
    flex: 1 1 126px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .selector-tabs {
    grid-template-columns: 1fr;
  }

  .media-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
  }

  .facts {
    display: none;
  }

  .hero-media,
  .hero-media > img {
    min-height: 158px;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img,
  .image-stack img:nth-child(2) {
    height: 280px;
  }

  .mobile-actions {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 25;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: var(--blue);
    box-shadow: 0 12px 34px rgba(18, 30, 48, 0.26);
  }

  .mobile-actions a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }

  .mobile-actions a:last-child {
    border-right: 0;
    background: var(--orange);
  }
}
