:root {
  --ink: #142033;
  --muted: #657185;
  --line: #d9e0e8;
  --paper: #f4f6f1;
  --white: #ffffff;
  --teal: #08766f;
  --teal-dark: #075d58;
  --gold: #c8902f;
  --navy: #111c2e;
  --shadow: 0 24px 70px rgba(17, 28, 46, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

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

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

.desktop-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 260px minmax(520px, 1fr) 160px;
  gap: 28px;
  align-items: center;
  padding: 18px clamp(24px, 4vw, 72px);
  color: var(--white);
  background: rgba(17, 28, 46, 0.98);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.brand-logo-main {
  width: 224px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.desktop-header nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.desktop-header nav a {
  color: rgba(255, 255, 255, 0.78);
}

.desktop-header nav a:hover,
.phone-link:hover {
  color: var(--white);
}

.phone-link {
  justify-self: end;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 132px clamp(24px, 6vw, 96px) 72px;
  overflow: hidden;
  color: var(--white);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: min(850px, 62vw);
  min-height: 560px;
  padding: 0;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(17, 28, 46, 0.94) 0%, rgba(17, 28, 46, 0.78) 48%, rgba(17, 28, 46, 0.22) 100%),
    linear-gradient(0deg, rgba(17, 28, 46, 0.76), rgba(17, 28, 46, 0.08) 56%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(54px, 5vw, 78px);
  line-height: 1.02;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.08;
}

.hero-copy p:not(.eyebrow) {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

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

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
}

.signal-row {
  display: grid;
  grid-template-columns: 0.75fr 0.45fr 1.1fr;
  gap: 1px;
  padding: 0 clamp(24px, 4vw, 72px) 34px;
}

.signal-row div {
  min-height: 116px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 44px rgba(17, 28, 46, 0.08);
}

.signal-row strong,
.signal-row span {
  display: block;
}

.signal-row strong {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 13px;
  text-transform: uppercase;
}

.signal-row span {
  color: var(--muted);
  font-weight: 800;
}

.content-band,
.contact-band {
  scroll-margin-top: 108px;
  margin: 0 clamp(24px, 4vw, 72px) 34px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 44px rgba(17, 28, 46, 0.08);
}

.solutions-band {
  background: #eef3ef;
}

.section-title {
  max-width: 900px;
}

.section-title p:not(.eyebrow),
.value-grid p,
.solution-grid p,
.contact-band p {
  color: var(--muted);
  line-height: 1.55;
}

.value-grid,
.solution-grid,
.brand-grid {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

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

.solution-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.brand-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.value-grid article,
.solution-grid article,
.brand-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.value-grid article,
.solution-grid article {
  min-height: 260px;
  padding: 24px;
}

.solution-grid article {
  min-height: 320px;
}

.service-icon,
.reason-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.reason-icon {
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  box-shadow: inset 0 0 0 1px rgba(200, 144, 47, 0.25);
}

.service-icon svg,
.reason-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--white);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-grid span,
.solution-grid span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 30px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: rgba(8, 118, 111, 0.1);
  font-size: 13px;
  font-weight: 800;
}

.value-grid strong,
.solution-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
}

.brand-grid article {
  display: grid;
  min-height: 132px;
  align-items: center;
  justify-items: center;
  gap: 12px;
  padding: 18px;
  text-align: center;
}

.brand-grid img {
  max-width: 150px;
  max-height: 52px;
  object-fit: contain;
}

.brand-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(360px, 0.55fr) minmax(620px, 1fr);
  gap: 32px;
  align-items: start;
}

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

.contact-form.is-hidden {
  display: none;
}

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

.form-progress {
  display: grid;
  gap: 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.form-progress span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-progress strong {
  font-size: 21px;
}

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

.form-step.is-active {
  display: grid;
}

.form-actions {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 12px;
}

.button.dark-text {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

label span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9d3de;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

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

.hidden-field {
  display: none;
}

.success-message {
  display: none;
  grid-column: 1 / -1;
  padding: 34px;
  border: 1px solid rgba(8, 118, 111, 0.24);
  border-radius: 8px;
  color: var(--teal-dark);
  background: rgba(8, 118, 111, 0.08);
  font-size: 22px;
}

.success-message.is-visible {
  display: block;
}

.contact-card {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 190px 1fr minmax(300px, 0.8fr);
  gap: 12px;
  padding: 24px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal-dark);
  font-weight: 800;
}

.contact-card address {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
}

.desktop-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(24px, 4vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #0d1727;
}

.desktop-footer strong,
.desktop-footer span,
.desktop-footer a {
  display: block;
}

.desktop-footer strong {
  color: var(--white);
}

.desktop-footer div:last-child {
  display: grid;
  gap: 6px;
  text-align: right;
  font-weight: 800;
}

@media (max-width: 980px) {
  .desktop-header,
  .signal-row,
  .contact-band,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 100%;
  }

  .desktop-header nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .phone-link {
    justify-self: start;
  }

  .value-grid,
  .contact-form,
  .form-step {
    grid-template-columns: 1fr;
  }

  .wide {
    grid-column: auto;
  }

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

  .desktop-footer div:last-child {
    text-align: left;
  }
}
