:root {
  --ink: #111827;
  --panel: #ffffff;
  --muted: #5f6f7f;
  --line: #d8e2ea;
  --cold: #0077b6;
  --cold-2: #00a6c8;
  --alert: #d72638;
  --sun: #f2b705;
  --green: #16825d;
  --bg: #f3f7fa;
  --shadow: 0 18px 45px rgba(13, 42, 64, 0.14);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.top-strip {
  background: var(--ink);
  color: #ffffff;
  font-size: 0.9rem;
}

.top-strip__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.top-strip a {
  color: #ffffff;
  font-weight: 700;
}

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

.system-strip {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: #eef8fb;
  color: #203447;
}

.system-strip__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
  white-space: nowrap;
  scrollbar-width: thin;
}

.system-strip strong {
  color: var(--ink);
  font-size: 0.82rem;
}

.system-strip a {
  border: 1px solid rgba(0, 119, 182, 0.22);
  border-radius: 999px;
  background: #ffffff;
  padding: 5px 9px;
  color: var(--cold);
  font-size: 0.82rem;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cold), var(--alert));
  color: #ffffff;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #2d3d4d;
  font-weight: 700;
}

.nav__links a:hover {
  color: var(--cold);
}

.nav__call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
}

.nav__call,
.button--primary {
  color: #ffffff;
  background: var(--alert);
  box-shadow: 0 12px 25px rgba(215, 38, 56, 0.22);
}

.nav__call:hover,
.button--primary:hover {
  background: #b91d2c;
}

.button--dark {
  color: #ffffff;
  background: var(--ink);
}

.button--light {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #102032;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 20, 33, 0.94) 0%, rgba(9, 20, 33, 0.74) 45%, rgba(9, 20, 33, 0.22) 100%),
    url("/assets/images/hero-daikin-zestia-reefer-container.jpg") center right / cover no-repeat;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 52px;
  align-items: end;
  padding: 76px 0 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(0, 166, 200, 0.18);
  color: #b8f3ff;
  border: 1px solid rgba(184, 243, 255, 0.34);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 820px;
  margin: 18px 0 0;
  font-size: 4rem;
  line-height: 1.02;
}

.hero p,
.page-hero p {
  max-width: 700px;
  margin: 20px 0 0;
  color: #d9e9f3;
  font-size: 1.2rem;
}

.hero__actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 720px;
  margin-top: 36px;
}

.stat {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.08);
}

.stat strong {
  display: block;
  font-size: 1.7rem;
}

.stat span {
  display: block;
  color: #d2e3ee;
  font-size: 0.9rem;
}

.hero__panel,
.lead-box {
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  padding: 22px;
  box-shadow: var(--shadow);
}

.hero__panel h2,
.lead-box h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.15;
}

.hero__panel p,
.lead-box p {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 0.98rem;
}

.section,
.split-section,
.media-band,
.page-hero {
  padding: 66px 0;
}

.section--white {
  background: #ffffff;
}

.section-kicker {
  color: var(--cold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title {
  max-width: 820px;
  margin: 10px 0 14px;
  font-size: 2.55rem;
  line-height: 1.08;
}

.section-copy {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.card-grid--services {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.info-card,
.brand-card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(13, 42, 64, 0.08);
}

.service-card {
  display: block;
}

.service-card:hover,
.brand-card:hover {
  border-color: var(--cold-2);
  transform: translateY(-2px);
  transition: transform 160ms ease, border-color 160ms ease;
}

.service-card span,
.info-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card strong,
.info-card strong,
.brand-card strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.2;
}

.service-card p,
.info-card p,
.brand-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.split-section {
  background: #ffffff;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
}

.split img,
.media-grid img,
.wide-img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split img {
  aspect-ratio: 4 / 3;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  border-left: 4px solid var(--cold-2);
  border-radius: 8px;
  background: #eef8fb;
  padding: 12px 14px;
  font-weight: 800;
}

.media-band {
  background: #112132;
  color: #ffffff;
}

.media-band .section-kicker {
  color: #7ee4f7;
}

.media-band .section-copy {
  color: #d4e5ee;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-top: 30px;
}

.media-grid img {
  height: 320px;
}

.media-grid img:first-child {
  height: 420px;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  padding: 7px 13px;
  color: #243546;
  font-weight: 800;
}

.pill:hover {
  border-color: var(--cold);
  color: var(--cold);
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.state-grid a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 14px 16px;
  font-weight: 800;
}

.state-grid span {
  color: var(--cold);
}

.city-links {
  columns: 3;
  margin-top: 18px;
}

.city-links a {
  display: block;
  break-inside: avoid;
  margin: 0 0 8px;
  color: var(--cold);
  font-weight: 800;
}

.page-hero {
  background: #122335;
  color: #ffffff;
}

.page-hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
}

.page-hero__image {
  min-height: 280px;
  border-radius: 8px;
  background: url("/assets/images/carrier-primeline-container-repair.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

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

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

.lead-form label {
  display: grid;
  gap: 6px;
  color: #243546;
  font-size: 0.88rem;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #cbd8e2;
  border-radius: 8px;
  background: #ffffff;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(0, 166, 200, 0.2);
  border-color: var(--cold);
}

.hp-field {
  position: absolute;
  left: -10000px;
}

.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

.checkbox-row label {
  display: inline-flex;
  grid-template-columns: auto;
  align-items: center;
  gap: 8px;
}

.checkbox-row input {
  width: auto;
}

.notice {
  border: 1px solid rgba(22, 130, 93, 0.28);
  border-radius: 8px;
  background: #eaf8f1;
  padding: 12px 14px;
  color: #0f6044;
  font-weight: 800;
}

.notice--error {
  border-color: rgba(215, 38, 56, 0.28);
  background: #fff0f2;
  color: #9b1825;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.detail-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
}

.detail-list dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 4px 0 0;
  font-size: 1.15rem;
  font-weight: 900;
}

.site-footer {
  background: #0e1c2a;
  color: #d9e5ee;
  padding: 44px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
}

.brand--footer .brand__mark {
  box-shadow: none;
}

.brand--footer strong {
  color: #ffffff;
}

.brand--footer small,
.site-footer p {
  color: #aebfca;
}

.site-footer h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin: 0 0 8px;
  color: #d9e5ee;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  color: #9fb1bd;
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .nav {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav__links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero__inner,
  .page-hero .wrap,
  .split,
  .two-column,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    max-width: 620px;
  }

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

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

  .media-grid img,
  .media-grid img:first-child {
    height: auto;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 22px, 1180px);
  }

  .top-strip__inner,
  .footer-bottom {
    flex-direction: column;
  }

  .nav__call {
    width: 100%;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.7rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero__inner {
    padding: 54px 0 40px;
  }

  .hero__stats,
  .form-grid,
  .check-list,
  .card-grid,
  .card-grid--services,
  .state-grid {
    grid-template-columns: 1fr;
  }

  .city-links {
    columns: 1;
  }
}
