:root {
  --ink: #101827;
  --soft-ink: #334155;
  --muted: #697586;
  --line: #dde5ee;
  --paper: #f6f8fb;
  --white: #ffffff;
  --accent: #093a96;
  --accent-soft: #86a9ff;
  --footer: #061020;
  --footer-muted: #8799bb;
  --shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.has-shadow {
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.09);
}

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

.brand-logo-img {
  display: block;
  width: clamp(150px, 16vw, 210px);
  height: auto;
}

.footer-logo .brand-logo-img {
  width: 190px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: var(--accent);
  border-radius: var(--radius);
}

.brand-mark svg {
  width: 23px;
  height: 23px;
}

.brand-mark path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

.brand strong {
  font-size: 0.95rem;
  line-height: 1.12;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  width: 100%;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 10px;
  color: var(--soft-ink);
  font-size: 0.86rem;
  font-weight: 700;
  border-radius: var(--radius);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--accent);
  background: #edf3ff;
  outline: none;
}

.primary-nav a[aria-current="page"] {
  color: var(--accent);
  background: #edf3ff;
}

.primary-nav .nav-cta {
  margin-left: 6px;
  color: var(--white);
  background: var(--accent);
}

.primary-nav .nav-cta:hover,
.primary-nav .nav-cta:focus-visible {
  color: var(--white);
  background: #062b72;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(620px, 86svh, 860px);
  overflow: hidden;
  color: var(--white);
  background: #0b1728;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-grid,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-grid {
  z-index: 1;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(7, 19, 38, 0.18), rgba(7, 19, 38, 0.88)),
    linear-gradient(90deg, rgba(7, 19, 38, 0.78), rgba(7, 19, 38, 0.36) 52%, rgba(7, 19, 38, 0.12));
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  width: min(var(--max), calc(100% - 56px));
  min-height: inherit;
  margin: 0 auto;
  padding: 74px 0 48px;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .section-label {
  color: #d8e5ff;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.15rem, 4.45vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--accent-soft);
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.88rem;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

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

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

.button-light,
.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.button-light:hover,
.button-light:focus-visible,
.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.button-text {
  color: var(--white);
  background: var(--accent);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 28px;
  max-width: 820px;
  margin-top: clamp(54px, 8vw, 96px);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
}

.hero-stats span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.section,
.final-cta {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding-top: clamp(68px, 8vw, 104px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading.with-action {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.section-heading h2,
.who-copy h2,
.final-cta h2,
.process-heading h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.75vw, 2.65rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.section-heading p:not(.section-label) {
  max-width: 600px;
  margin: 14px 0 0;
  color: var(--muted);
}

.who-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.who-layout > img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.who-copy p:not(.section-label) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

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

.solution-grid article {
  min-height: 210px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.solution-grid svg {
  width: 58px;
  height: 58px;
  margin-bottom: 34px;
  color: var(--accent);
}

.solution-grid svg path,
.solution-grid svg circle,
.why-list svg path,
.why-list svg circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.solution-grid h3,
.why-list h3,
.package-card h3,
.project-grid h3,
.process-map h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.24;
}

.solution-grid p,
.why-list p,
.process-map p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--accent);
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.icon-button:hover,
.icon-button:focus-visible {
  color: var(--white);
  background: var(--accent);
  outline: none;
}

.icon-button svg {
  width: 22px;
  height: 22px;
}

.icon-button path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.package-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.package-carousel::-webkit-scrollbar {
  display: none;
}

.package-card {
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.package-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.package-card div {
  padding: 20px;
}

.package-card p {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 850;
}

.package-card a,
.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  gap: 16px;
  align-items: stretch;
}

.why-layout > img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
  border-radius: var(--radius);
}

.why-list {
  display: grid;
  gap: 12px;
}

.why-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.why-list svg {
  width: 48px;
  height: 48px;
  color: var(--accent);
}

.process-section {
  width: 100%;
  max-width: none;
  padding: clamp(76px, 8vw, 112px) max(20px, calc((100% - var(--max)) / 2));
  margin-top: clamp(72px, 8vw, 104px);
  background:
    linear-gradient(180deg, #f7faff 0%, #edf4ff 100%);
}

.process-heading {
  max-width: 880px;
  margin: 0 auto 52px;
  text-align: center;
}

.process-heading .section-label {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 22px;
  color: var(--accent);
  background: rgba(9, 58, 150, 0.07);
  border: 1px solid rgba(9, 58, 150, 0.18);
  border-radius: 999px;
}

.process-heading h2 {
  color: var(--ink);
  font-size: clamp(1.85rem, 3.45vw, 3.3rem);
}

.process-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px 38px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-map::before,
.process-map::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(9, 58, 150, 0.18));
}

.process-map::before {
  top: 43px;
}

.process-map::after {
  top: calc(50% + 43px);
  right: 31%;
}

.process-map li {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-map span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 24px;
  color: #dbe8ff;
  font-size: 1.35rem;
  font-weight: 900;
  background: var(--accent);
  border: 3px solid #8fb0ff;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(9, 58, 150, 0.2);
}

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

.project-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.project-grid img {
  width: 100%;
  aspect-ratio: 1.48 / 1;
  object-fit: cover;
}

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

.project-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 850;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  margin-top: clamp(76px, 9vw, 112px);
  padding: clamp(26px, 4vw, 38px);
  color: var(--white);
  background: #071a3f;
  border-radius: var(--radius);
}

.final-cta > img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
}

.final-cta p:not(.section-label) {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(170px, 0.9fr) minmax(180px, 0.9fr) minmax(170px, 0.8fr) minmax(220px, 1fr);
  gap: clamp(28px, 4.8vw, 72px);
  margin-top: clamp(72px, 8vw, 108px);
  padding: clamp(54px, 7vw, 90px) max(28px, calc((100% - var(--max)) / 2)) 28px;
  color: var(--footer-muted);
  background: var(--footer);
}

.footer-logo .brand-mark {
  background: var(--accent);
}

.footer-logo strong,
.footer-nav strong,
.footer-contact strong {
  color: var(--white);
}

.footer-logo small {
  color: var(--footer-muted);
}

.footer-brand p {
  max-width: 320px;
  margin: 24px 0 0;
  font-size: 0.98rem;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-nav strong,
.footer-contact strong {
  margin-bottom: 14px;
  color: #7182a6;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a,
.footer-contact span {
  color: #bdd0ec;
  font-style: normal;
  font-size: 0.96rem;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: 58px;
  padding-top: 26px;
  color: #7182a6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1180px) {
  .site-footer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .menu-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 28px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    min-height: 48px;
    padding: 0;
    border-radius: 0;
  }

  .primary-nav .nav-cta {
    justify-content: center;
    margin: 14px 0 0;
    border-radius: var(--radius);
  }

  .who-layout,
  .why-layout,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .package-carousel {
    grid-auto-columns: calc((100% - 16px) / 2);
  }

  .why-layout > img {
    min-height: 380px;
  }

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

  .process-map::before,
  .process-map::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .primary-nav {
    inset-block-start: 68px;
  }

  .hero {
    min-height: 650px;
  }

  .hero-inner,
  .section,
  .final-cta {
    width: min(100% - 32px, var(--max));
  }

  .hero-inner {
    padding-top: 68px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9.5vw, 2.7rem);
  }

  .hero-actions,
  .final-actions {
    display: grid;
  }

  .hero-stats,
  .solution-grid,
  .project-grid,
  .process-map,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 16px;
    margin-top: 42px;
  }

  .section-heading.with-action {
    display: grid;
    align-items: start;
  }

  .package-carousel {
    grid-auto-columns: 86%;
  }

  .who-layout > img,
  .why-layout > img,
  .final-cta > img {
    min-height: 0;
    height: 270px;
  }

  .why-list article {
    grid-template-columns: 44px 1fr;
    padding: 18px;
  }

  .why-list svg {
    width: 40px;
    height: 40px;
  }

  .process-heading h2 {
    font-size: clamp(1.85rem, 10vw, 2.75rem);
  }

  .footer-bottom {
    display: grid;
    margin-top: 32px;
  }
}

.solutions-hero {
  position: relative;
  min-height: clamp(500px, 68svh, 720px);
  overflow: hidden;
  color: var(--white);
  background: #0b1728;
}

.solutions-hero > img,
.solutions-hero-shade {
  position: absolute;
  inset: 0;
}

.solutions-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solutions-hero-shade {
  background:
    linear-gradient(180deg, rgba(7, 19, 38, 0.12), rgba(7, 19, 38, 0.82)),
    linear-gradient(90deg, rgba(7, 19, 38, 0.82), rgba(7, 19, 38, 0.34) 58%, rgba(7, 19, 38, 0.08));
}

.solutions-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(var(--max), calc(100% - 56px));
  min-height: inherit;
  margin: 0 auto;
  padding: 74px 0 50px;
}

.solutions-hero .eyebrow,
.solution-review-cta .section-label {
  color: #d8e5ff;
}

.solutions-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.solutions-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
}

.solution-index {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(var(--max), calc(100% - 40px));
  margin: -46px auto 0;
  position: relative;
  z-index: 2;
}

.solution-index a {
  min-height: 138px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.1);
}

.solution-index span,
.package-strip span,
.regional-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 850;
}

.solution-index strong {
  display: block;
  font-size: 1rem;
  line-height: 1.25;
}

.solution-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.solution-detail-media img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.solution-detail-copy h2,
.solution-review-cta h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.75vw, 2.65rem);
  line-height: 1.1;
}

.solution-detail-copy p:not(.section-label),
.solution-review-cta p:not(.section-label) {
  margin: 18px 0 0;
  color: var(--muted);
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.solution-tags span {
  padding: 9px 12px;
  color: var(--accent);
  font-size: 0.83rem;
  font-weight: 800;
  background: #edf3ff;
  border-radius: var(--radius);
}

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

.configuration-grid article,
.regional-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.configuration-grid h3,
.regional-grid h3,
.package-strip strong,
.solution-type-grid h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.24;
}

.configuration-grid p,
.regional-grid p,
.package-strip small {
  display: block;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.solution-type-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.solution-type-grid img {
  width: 100%;
  aspect-ratio: 1.85 / 1;
  object-fit: cover;
}

.solution-type-grid div {
  padding: 24px;
}

.solution-type-grid p {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 850;
}

.solution-type-grid ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.solution-type-grid li {
  position: relative;
  padding-left: 18px;
}

.solution-type-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
}

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

.package-strip a {
  min-height: 190px;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9, 58, 150, 0.96), rgba(6, 16, 32, 0.96));
  border-radius: var(--radius);
}

.package-strip span,
.package-strip small {
  color: rgba(255, 255, 255, 0.72);
}

.package-strip strong {
  color: var(--white);
}

.regional-grid article {
  min-height: 230px;
}

.solution-review-cta {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  margin: clamp(76px, 9vw, 112px) auto 0;
  padding: clamp(26px, 4vw, 38px);
  color: var(--white);
  background: #071a3f;
  border-radius: var(--radius);
}

.solution-review-cta img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
}

.solution-review-cta p:not(.section-label) {
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 1040px) {
  .solution-index,
  .configuration-grid,
  .regional-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-detail,
  .solution-review-cta {
    grid-template-columns: 1fr;
  }

  .solution-detail-media img {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .solutions-hero-inner,
  .solution-index,
  .solution-review-cta {
    width: min(100% - 32px, var(--max));
  }

  .solution-index,
  .configuration-grid,
  .solution-type-grid,
  .package-strip,
  .regional-grid {
    grid-template-columns: 1fr;
  }

  .solution-index {
    margin-top: 16px;
  }

  .solutions-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .solution-detail-media img,
  .solution-review-cta img {
    min-height: 0;
    height: 270px;
  }
}

.package-hero {
  position: relative;
  min-height: clamp(500px, 68svh, 720px);
  overflow: hidden;
  color: var(--white);
  background: #0b1728;
}

.package-hero > img,
.package-hero-shade {
  position: absolute;
  inset: 0;
}

.package-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-hero-shade {
  background:
    linear-gradient(180deg, rgba(7, 19, 38, 0.12), rgba(7, 19, 38, 0.84)),
    linear-gradient(90deg, rgba(7, 19, 38, 0.84), rgba(7, 19, 38, 0.36) 58%, rgba(7, 19, 38, 0.1));
}

.package-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(var(--max), calc(100% - 56px));
  min-height: inherit;
  margin: 0 auto;
  padding: 74px 0 50px;
}

.package-hero .eyebrow {
  color: #d8e5ff;
}

.package-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.package-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
}

.package-index {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  width: min(var(--max), calc(100% - 40px));
  margin: -46px auto 0;
  position: relative;
  z-index: 2;
}

.package-index a {
  min-height: 132px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.1);
}

.package-index span,
.included-grid span,
.compact-system-grid span,
.complete-package-grid span {
  display: block;
  margin-bottom: 26px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 850;
}

.package-index strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.25;
}

.package-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.package-detail.alternate {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 0.95fr);
}

.package-detail-media img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.package-detail-copy h2,
.complete-package-copy h2,
.quality-delivery h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.75vw, 2.65rem);
  line-height: 1.1;
}

.package-detail-copy p:not(.section-label),
.complete-package-copy p {
  margin: 18px 0 0;
  color: var(--muted);
}

.package-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

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

.included-grid article,
.system-row article,
.compact-system-grid article,
.control-list div,
.complete-package-grid article,
.quality-grid article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.included-grid article {
  min-height: 210px;
}

.included-grid h3,
.system-row h3,
.compact-system-grid h3,
.control-list strong,
.complete-package-grid h3,
.quality-grid h3 {
  display: block;
  margin: 0;
  font-size: 1rem;
  line-height: 1.24;
}

.included-grid p,
.system-row p,
.quality-grid p,
.control-list span {
  display: block;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

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

.compact-system-grid article {
  min-height: 150px;
}

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

.complete-package {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding: clamp(42px, 5vw, 62px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9, 58, 150, 0.96), rgba(6, 16, 32, 0.98));
  border-radius: var(--radius);
}

.complete-package .section-label,
.complete-package-copy p {
  color: rgba(255, 255, 255, 0.74);
}

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

.complete-package-grid article {
  min-height: 126px;
  color: var(--ink);
  background: var(--white);
}

.complete-package-link {
  margin-top: 24px;
}

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

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

@media (max-width: 1120px) {
  .package-index,
  .included-grid,
  .system-row,
  .compact-system-grid,
  .control-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .package-detail,
  .package-detail.alternate,
  .complete-package,
  .quality-delivery {
    grid-template-columns: 1fr;
  }

  .package-detail.alternate .package-detail-copy {
    order: 2;
  }

  .package-detail.alternate .package-detail-media {
    order: 1;
  }

  .package-detail-media img {
    min-height: 340px;
  }

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

@media (max-width: 760px) {
  .package-hero-inner,
  .package-index {
    width: min(100% - 32px, var(--max));
  }

  .package-index,
  .included-grid,
  .system-row,
  .compact-system-grid,
  .control-list,
  .complete-package-grid {
    grid-template-columns: 1fr;
  }

  .package-index {
    margin-top: 16px;
  }

  .package-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .package-detail-media img {
    min-height: 0;
    height: 270px;
  }

  .complete-package {
    padding: 28px;
  }
}

.complete-detail-hero > img {
  object-position: center;
}

.complete-detail-index {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.package-summary,
.coordination-section,
.contractor-fit-section,
.request-info-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.package-summary-copy h2,
.coordination-copy h2,
.contractor-fit-section h2,
.request-info-copy h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.75vw, 2.65rem);
  line-height: 1.1;
}

.package-summary-copy p,
.coordination-copy p,
.contractor-fit-section p {
  margin: 18px 0 0;
  color: var(--muted);
}

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

.summary-proof-grid article,
.scope-matrix article,
.coordination-flow article,
.deliverable-grid article,
.fit-grid article,
.request-info-list div {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.summary-proof-grid article {
  min-height: 180px;
}

.summary-proof-grid span,
.scope-matrix span,
.coordination-flow span {
  display: block;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 850;
}

.summary-proof-grid strong,
.scope-matrix h3,
.coordination-flow h3,
.deliverable-grid h3,
.fit-grid h3,
.request-info-list strong {
  display: block;
  margin: 0;
  font-size: 1rem;
  line-height: 1.24;
}

.summary-proof-grid p,
.scope-matrix p,
.coordination-flow p,
.deliverable-grid p,
.fit-grid p,
.request-info-list span {
  display: block;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.scope-matrix article {
  min-height: 214px;
}

.coordination-section {
  padding: clamp(42px, 5vw, 62px);
  color: var(--white);
  background: linear-gradient(135deg, rgba(9, 58, 150, 0.96), rgba(6, 16, 32, 0.98));
  border-radius: var(--radius);
}

.coordination-section .section-label,
.coordination-copy p {
  color: rgba(255, 255, 255, 0.74);
}

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

.coordination-flow article {
  min-height: 148px;
  color: var(--ink);
}

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

.delivery-control-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.delivery-control-section img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.delivery-control-section h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.75vw, 2.65rem);
  line-height: 1.1;
}

.delivery-control-section p:not(.section-label) {
  margin: 18px 0 0;
  color: var(--muted);
}

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

.request-info-list div:first-child:last-child,
.request-info-list div:nth-child(5) {
  grid-column: span 2;
}

@media (max-width: 1120px) {
  .complete-detail-index,
  .scope-matrix,
  .deliverable-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .package-summary,
  .coordination-section,
  .delivery-control-section,
  .contractor-fit-section,
  .request-info-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .complete-detail-index,
  .summary-proof-grid,
  .scope-matrix,
  .coordination-flow,
  .deliverable-grid,
  .fit-grid,
  .request-info-list {
    grid-template-columns: 1fr;
  }

  .request-info-list div:nth-child(5) {
    grid-column: auto;
  }

  .coordination-section {
    padding: 28px;
  }

  .delivery-control-section img {
    min-height: 0;
    height: 270px;
  }
}

.structure-hero > img {
  object-position: center;
}

.structure-index {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.shell-scope-section,
.profile-spec-section,
.quality-shell-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.shell-scope-copy h2,
.profile-spec-copy h2,
.quality-shell-section h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.75vw, 2.65rem);
  line-height: 1.1;
}

.shell-scope-copy p,
.profile-spec-copy p,
.quality-shell-section p {
  margin: 18px 0 0;
  color: var(--muted);
}

.shell-scope-grid,
.technical-card-grid,
.profile-spec-list,
.quality-shell-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.shell-scope-grid article,
.technical-card-grid article,
.profile-spec-list div,
.interface-map article,
.quality-shell-grid article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.shell-scope-grid article {
  min-height: 178px;
}

.shell-scope-grid span,
.interface-map span {
  display: block;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 850;
}

.shell-scope-grid h3,
.technical-card-grid h3,
.profile-spec-list strong,
.interface-map h3,
.quality-shell-grid h3 {
  display: block;
  margin: 0;
  font-size: 1rem;
  line-height: 1.24;
}

.shell-scope-grid p,
.technical-card-grid p,
.profile-spec-list span,
.interface-map p,
.quality-shell-grid p {
  display: block;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.detail-photo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.detail-photo-section.reverse {
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 0.9fr);
}

.detail-photo-section img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.detail-photo-section h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.75vw, 2.65rem);
  line-height: 1.1;
}

.detail-photo-section p:not(.section-label) {
  margin: 18px 0 0;
  color: var(--muted);
}

.workflow-feature-link {
  margin-top: 24px;
}

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

.interface-map article {
  min-height: 190px;
}

.glazing-check-section {
  padding: clamp(42px, 5vw, 62px);
  color: var(--white);
  background: linear-gradient(135deg, rgba(9, 58, 150, 0.96), rgba(6, 16, 32, 0.98));
  border-radius: var(--radius);
}

.glazing-check-section .section-label,
.glazing-check-section .section-heading h2 {
  color: var(--white);
}

.glazing-check-section .interface-map article {
  color: var(--ink);
}

@media (max-width: 1120px) {
  .structure-index,
  .interface-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .shell-scope-section,
  .detail-photo-section,
  .detail-photo-section.reverse,
  .profile-spec-section,
  .quality-shell-section {
    grid-template-columns: 1fr;
  }

  .detail-photo-section.reverse div {
    order: 2;
  }

  .detail-photo-section.reverse img {
    order: 1;
  }
}

@media (max-width: 760px) {
  .structure-index,
  .shell-scope-grid,
  .technical-card-grid,
  .profile-spec-list,
  .interface-map,
  .quality-shell-grid {
    grid-template-columns: 1fr;
  }

  .glazing-check-section {
    padding: 28px;
  }

  .detail-photo-section img {
    min-height: 0;
    height: 270px;
  }
}

.drawing-hero > img {
  object-position: center;
}

.drawing-index {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.review-scope-section,
.bom-table-section,
.review-output-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.review-scope-copy h2,
.bom-table-copy h2,
.review-output-copy h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.75vw, 2.65rem);
  line-height: 1.1;
}

.review-scope-copy p,
.bom-table-copy p,
.review-output-copy p {
  margin: 18px 0 0;
  color: var(--muted);
}

.review-scope-grid,
.bom-system-list,
.review-output-grid,
.upload-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.review-scope-grid article,
.bom-system-list div,
.risk-review-grid article,
.review-output-grid article,
.upload-list div {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.review-scope-grid span,
.risk-review-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 850;
}

.review-scope-grid h3,
.bom-system-list strong,
.risk-review-grid h3,
.review-output-grid h3,
.upload-list strong {
  display: block;
  margin: 0;
  font-size: 1rem;
  line-height: 1.24;
}

.review-scope-grid p,
.bom-system-list span,
.risk-review-grid p,
.review-output-grid p,
.upload-list span {
  display: block;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.risk-review-section {
  padding: clamp(42px, 5vw, 62px);
  color: var(--white);
  background: linear-gradient(135deg, rgba(9, 58, 150, 0.96), rgba(6, 16, 32, 0.98));
  border-radius: var(--radius);
}

.risk-review-section .section-label,
.risk-review-section .section-heading h2 {
  color: var(--white);
}

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

.risk-review-grid article {
  min-height: 196px;
  color: var(--ink);
}

.upload-info-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.upload-info-section img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.upload-info-section h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.75vw, 2.65rem);
  line-height: 1.1;
}

.upload-info-section p:not(.section-label) {
  margin: 18px 0 0;
  color: var(--muted);
}

.upload-list {
  margin-top: 22px;
}

.upload-list div:nth-child(3) {
  grid-column: span 2;
}

.coordination-flow a {
  color: var(--accent);
  font-weight: 850;
}

@media (max-width: 1120px) {
  .drawing-index,
  .risk-review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .review-scope-section,
  .bom-table-section,
  .review-output-section,
  .upload-info-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .drawing-index,
  .review-scope-grid,
  .bom-system-list,
  .risk-review-grid,
  .review-output-grid,
  .upload-list {
    grid-template-columns: 1fr;
  }

  .risk-review-section {
    padding: 28px;
  }

  .upload-list div:nth-child(3) {
    grid-column: auto;
  }

  .upload-info-section img {
    min-height: 0;
    height: 270px;
  }
}

.quality-control-hero > img {
  object-position: center;
}

.quality-control-index {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.qc-scope-section,
.document-grid-section,
.handover-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.qc-scope-copy h2,
.document-grid-copy h2,
.handover-copy h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.75vw, 2.65rem);
  line-height: 1.1;
}

.qc-scope-copy p,
.document-grid-copy p,
.handover-copy p {
  margin: 18px 0 0;
  color: var(--muted);
}

.qc-scope-grid,
.document-control-list,
.handover-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.qc-scope-grid article,
.document-control-list div,
.packing-control-grid article,
.handover-grid article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.qc-scope-grid span,
.packing-control-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 850;
}

.qc-scope-grid h3,
.document-control-list strong,
.packing-control-grid h3,
.handover-grid h3 {
  display: block;
  margin: 0;
  font-size: 1rem;
  line-height: 1.24;
}

.qc-scope-grid p,
.document-control-list span,
.packing-control-grid p,
.handover-grid p {
  display: block;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.packing-control-section {
  padding: clamp(42px, 5vw, 62px);
  color: var(--white);
  background: linear-gradient(135deg, rgba(9, 58, 150, 0.96), rgba(6, 16, 32, 0.98));
  border-radius: var(--radius);
}

.packing-control-section .section-label,
.packing-control-section .section-heading h2 {
  color: var(--white);
}

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

.packing-control-grid article {
  min-height: 196px;
  color: var(--ink);
}

.coordination-flow a,
.packing-control-grid a {
  color: var(--accent);
  font-weight: 850;
}

@media (max-width: 1120px) {
  .quality-control-index,
  .packing-control-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .qc-scope-section,
  .document-grid-section,
  .handover-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .quality-control-index,
  .qc-scope-grid,
  .document-control-list,
  .packing-control-grid,
  .handover-grid {
    grid-template-columns: 1fr;
  }

  .packing-control-section {
    padding: 28px;
  }
}

.work-hero {
  position: relative;
  min-height: clamp(500px, 68svh, 720px);
  overflow: hidden;
  color: var(--white);
  background: #0b1728;
}

.work-hero > img,
.work-hero-shade {
  position: absolute;
  inset: 0;
}

.work-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-hero-shade {
  background:
    linear-gradient(180deg, rgba(7, 19, 38, 0.12), rgba(7, 19, 38, 0.84)),
    linear-gradient(90deg, rgba(7, 19, 38, 0.84), rgba(7, 19, 38, 0.36) 58%, rgba(7, 19, 38, 0.1));
}

.work-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(var(--max), calc(100% - 56px));
  min-height: inherit;
  margin: 0 auto;
  padding: 74px 0 50px;
}

.work-hero .eyebrow {
  color: #d8e5ff;
}

.work-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.work-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
}

.workflow-index {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  width: min(var(--max), calc(100% - 40px));
  margin: -46px auto 0;
  position: relative;
  z-index: 2;
}

.workflow-index a {
  min-height: 128px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.1);
}

.workflow-index span,
.workflow-card-grid span,
.packing-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 850;
}

.workflow-index strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.22;
}

.workflow-map-large {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.workflow-map-large::before {
  content: "";
  position: absolute;
  top: 37px;
  left: 7%;
  right: 7%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(9, 58, 150, 0.16));
}

.workflow-map-large article {
  position: relative;
  z-index: 1;
  text-align: center;
}

.workflow-map-large span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 20px;
  color: #dbe8ff;
  font-size: 1.25rem;
  font-weight: 900;
  background: var(--accent);
  border: 3px solid #8fb0ff;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(9, 58, 150, 0.2);
}

.workflow-step,
.packing-section,
.support-delivery {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.workflow-step.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
}

.workflow-step-copy h2,
.workflow-feature h2,
.packing-copy h2,
.support-delivery-copy h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.75vw, 2.65rem);
  line-height: 1.1;
}

.workflow-step-copy p:not(.section-label),
.workflow-feature p:not(.section-label),
.packing-copy p,
.support-delivery-copy p {
  margin: 18px 0 0;
  color: var(--muted);
}

.workflow-card-grid,
.integration-grid,
.packing-grid,
.support-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.workflow-card-grid article,
.integration-grid article,
.packing-grid article,
.support-points article {
  min-height: 150px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.workflow-card-grid article:first-child:last-child,
.workflow-card-grid article:nth-child(5) {
  grid-column: span 2;
}

.workflow-card-grid h3,
.integration-grid h3,
.packing-grid h3,
.support-points h3,
.workflow-map-large h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.24;
}

.workflow-card-grid p,
.integration-grid p,
.support-points p,
.workflow-map-large p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.workflow-feature,
.support-delivery {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.workflow-feature.alternate {
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 0.9fr);
}

.workflow-feature img,
.support-delivery > img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mini-list span {
  padding: 9px 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  background: #edf3ff;
  border-radius: var(--radius);
}

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

.packing-grid article {
  min-height: 132px;
}

@media (max-width: 1120px) {
  .workflow-index,
  .workflow-map-large,
  .integration-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .workflow-map-large::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .workflow-step,
  .workflow-step.reverse,
  .workflow-feature,
  .workflow-feature.alternate,
  .packing-section,
  .support-delivery {
    grid-template-columns: 1fr;
  }

  .workflow-feature.alternate div {
    order: 2;
  }

  .workflow-feature.alternate img {
    order: 1;
  }

  .workflow-feature img,
  .support-delivery > img {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .work-hero-inner,
  .workflow-index {
    width: min(100% - 32px, var(--max));
  }

  .workflow-index {
    margin-top: 16px;
  }

  .workflow-index,
  .workflow-map-large,
  .workflow-card-grid,
  .integration-grid,
  .packing-grid,
  .support-points {
    grid-template-columns: 1fr;
  }

  .workflow-card-grid article:nth-child(5) {
    grid-column: auto;
  }

  .work-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .workflow-feature img,
  .support-delivery > img {
    min-height: 0;
    height: 270px;
  }
}

.projects-hero {
  position: relative;
  min-height: clamp(500px, 68svh, 720px);
  overflow: hidden;
  color: var(--white);
  background: #0b1728;
}

.projects-hero > img,
.projects-hero-shade {
  position: absolute;
  inset: 0;
}

.projects-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-hero-shade {
  background:
    linear-gradient(180deg, rgba(7, 19, 38, 0.12), rgba(7, 19, 38, 0.84)),
    linear-gradient(90deg, rgba(7, 19, 38, 0.84), rgba(7, 19, 38, 0.36) 58%, rgba(7, 19, 38, 0.1));
}

.projects-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(var(--max), calc(100% - 56px));
  min-height: inherit;
  margin: 0 auto;
  padding: 74px 0 50px;
}

.projects-hero .eyebrow {
  color: #d8e5ff;
}

.projects-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.projects-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
}

.project-filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: 18px;
  width: min(var(--max), calc(100% - 40px));
  margin: -46px auto 0;
  position: relative;
  z-index: 2;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.1);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 36px;
  padding: 0 12px;
  color: var(--soft-ink);
  cursor: pointer;
  background: #f3f6fb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 800;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
  outline: none;
}

.project-count {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  color: var(--accent);
  background: #edf3ff;
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 850;
}

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

.project-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.project-item.is-hidden {
  display: none;
}

.project-item img {
  width: 100%;
  aspect-ratio: 1.52 / 1;
  object-fit: cover;
}

.project-item dl {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
}

.project-item div {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 14px;
  padding: 15px 18px;
  border-top: 1px solid var(--line);
}

.project-item dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.project-item dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.project-empty {
  display: none;
  margin: 26px 0 0;
  padding: 24px;
  color: var(--muted);
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.project-empty.is-visible {
  display: block;
}

@media (max-width: 1040px) {
  .project-filter-panel,
  .project-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .projects-hero-inner,
  .project-filter-panel {
    width: min(100% - 32px, var(--max));
  }

  .project-filter-panel {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .projects-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .project-list {
    grid-template-columns: 1fr;
  }

  .project-count {
    justify-self: start;
  }

  .project-item div {
    grid-template-columns: 96px 1fr;
  }
}

.partner-hero {
  position: relative;
  min-height: clamp(500px, 68svh, 720px);
  overflow: hidden;
  color: var(--white);
  background: #0b1728;
}

.partner-hero > img,
.partner-hero-shade {
  position: absolute;
  inset: 0;
}

.partner-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-hero-shade {
  background:
    linear-gradient(180deg, rgba(7, 19, 38, 0.12), rgba(7, 19, 38, 0.84)),
    linear-gradient(90deg, rgba(7, 19, 38, 0.84), rgba(7, 19, 38, 0.36) 58%, rgba(7, 19, 38, 0.1));
}

.partner-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(var(--max), calc(100% - 56px));
  min-height: inherit;
  margin: 0 auto;
  padding: 74px 0 50px;
}

.partner-hero .eyebrow {
  color: #d8e5ff;
}

.partner-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.partner-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
}

.partner-index {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  width: min(var(--max), calc(100% - 40px));
  margin: -46px auto 0;
  position: relative;
  z-index: 2;
}

.partner-index a {
  min-height: 130px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.1);
}

.partner-index span,
.supply-chain-map span {
  display: block;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 850;
}

.partner-index strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.22;
}

.partner-feature,
.competitor-section,
.cost-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.partner-feature.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
}

.partner-feature-copy h2,
.competitor-copy h2,
.cost-copy h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.75vw, 2.65rem);
  line-height: 1.1;
}

.partner-feature-copy p:not(.section-label),
.competitor-copy p:not(.section-label),
.cost-copy p:not(.section-label) {
  margin: 18px 0 0;
  color: var(--muted);
}

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

.partner-proof-grid article,
.ownership-list div,
.supply-chain-map article,
.long-term-grid article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.partner-proof-grid article {
  min-height: 160px;
}

.partner-proof-grid h3,
.ownership-list strong,
.supply-chain-map h3,
.long-term-grid h3 {
  display: block;
  margin: 0;
  font-size: 1rem;
  line-height: 1.24;
}

.partner-proof-grid p,
.ownership-list span,
.long-term-grid p {
  display: block;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.competitor-section img,
.cost-image img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.ownership-list div:last-child {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.ownership-list div:last-child span {
  color: rgba(255, 255, 255, 0.78);
}

.supply-chain-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.supply-chain-map::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 7%;
  right: 7%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(9, 58, 150, 0.16));
}

.supply-chain-map article {
  position: relative;
  z-index: 1;
  min-height: 150px;
}

.cost-section {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
}

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

.long-term-grid article {
  min-height: 260px;
}

.long-term-grid svg {
  width: 54px;
  height: 54px;
  margin-bottom: 34px;
  color: var(--accent);
}

.long-term-grid svg path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

@media (max-width: 1120px) {
  .partner-index,
  .supply-chain-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .supply-chain-map::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .partner-feature,
  .partner-feature.reverse,
  .competitor-section,
  .cost-section {
    grid-template-columns: 1fr;
  }

  .partner-feature.reverse .partner-proof-grid {
    order: 2;
  }

  .partner-feature.reverse .partner-feature-copy {
    order: 1;
  }

  .competitor-section img,
  .cost-image img {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .partner-hero-inner,
  .partner-index {
    width: min(100% - 32px, var(--max));
  }

  .partner-index {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .partner-proof-grid,
  .ownership-list,
  .supply-chain-map,
  .long-term-grid {
    grid-template-columns: 1fr;
  }

  .partner-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .competitor-section img,
  .cost-image img {
    min-height: 0;
    height: 270px;
  }
}

.contractor-hero {
  position: relative;
  min-height: clamp(520px, 70svh, 740px);
  overflow: hidden;
  color: var(--white);
  background: #0b1728;
}

.contractor-hero > img,
.contractor-hero-shade {
  position: absolute;
  inset: 0;
}

.contractor-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contractor-hero-shade {
  background:
    linear-gradient(180deg, rgba(7, 19, 38, 0.08), rgba(7, 19, 38, 0.84)),
    linear-gradient(90deg, rgba(7, 19, 38, 0.86), rgba(7, 19, 38, 0.42) 58%, rgba(7, 19, 38, 0.12));
}

.contractor-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(var(--max), calc(100% - 56px));
  min-height: inherit;
  margin: 0 auto;
  padding: 74px 0 50px;
}

.contractor-hero .eyebrow {
  color: #d8e5ff;
}

.contractor-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.contractor-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
}

.contractor-index {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  width: min(var(--max), calc(100% - 40px));
  margin: -46px auto 0;
}

.contractor-index a {
  min-height: 128px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.1);
}

.contractor-index span,
.pain-grid span,
.contractor-supply-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 850;
}

.contractor-index strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.22;
}

.contractor-boundary-section,
.contractor-photo-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.contractor-photo-section.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.74fr);
}

.contractor-photo-section.reverse img {
  order: 2;
}

.contractor-photo-section.reverse div {
  order: 1;
}

.contractor-boundary-copy h2,
.contractor-photo-section h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.75vw, 2.65rem);
  line-height: 1.1;
}

.contractor-boundary-copy p:not(.section-label),
.contractor-photo-section p:not(.section-label) {
  margin: 18px 0 0;
  color: var(--muted);
}

.role-board,
.pain-grid,
.contractor-supply-grid,
.model-grid {
  display: grid;
  gap: 16px;
}

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

.role-board article,
.pain-grid article,
.contractor-supply-grid article,
.model-grid article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.role-board article {
  min-height: 260px;
}

.role-board article:first-child {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.role-board span {
  display: block;
  margin-bottom: 54px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.role-board article:first-child span,
.role-board article:first-child p {
  color: rgba(255, 255, 255, 0.78);
}

.role-board h3,
.pain-grid h3,
.contractor-supply-grid h3,
.model-grid h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.24;
}

.role-board p,
.pain-grid p,
.contractor-supply-grid p,
.model-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.pain-grid article,
.contractor-supply-grid article {
  min-height: 230px;
}

.contractor-photo-section img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

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

.model-grid article {
  min-height: 180px;
}

@media (max-width: 1120px) {
  .contractor-index {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .contractor-boundary-section,
  .contractor-photo-section,
  .contractor-photo-section.reverse {
    grid-template-columns: 1fr;
  }

  .contractor-photo-section.reverse img,
  .contractor-photo-section.reverse div {
    order: initial;
  }

  .contractor-photo-section img {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .contractor-hero-inner,
  .contractor-index {
    width: min(100% - 32px, var(--max));
  }

  .contractor-index {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .role-board,
  .pain-grid,
  .contractor-supply-grid,
  .model-grid {
    grid-template-columns: 1fr;
  }

  .contractor-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .contractor-photo-section img {
    min-height: 0;
    height: 270px;
  }
}

.faq-hero > img {
  object-position: center;
}

.faq-index {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.faq-trust-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.faq-trust-section h2,
.faq-section-heading h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.75vw, 2.55rem);
  line-height: 1.1;
}

.faq-trust-section p:not(.section-label),
.faq-section-heading p:not(.section-label) {
  margin: 18px 0 0;
  color: var(--muted);
}

.faq-trust-grid,
.faq-card-grid {
  display: grid;
  gap: 16px;
}

.faq-trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-trust-grid article,
.faq-card-grid article,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.faq-trust-grid article {
  min-height: 220px;
  padding: 22px;
}

.faq-trust-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 850;
}

.faq-trust-grid strong {
  display: block;
  font-size: 1rem;
  line-height: 1.24;
}

.faq-trust-grid p,
.faq-card-grid p,
.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-section {
  display: grid;
  gap: 24px;
}

.faq-section.split {
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.faq-section.split.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.74fr);
}

.faq-section.split.reverse .faq-support-image {
  order: 2;
}

.faq-section.split.reverse > div:last-child {
  order: 1;
}

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

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

.faq-list details {
  padding: 0;
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 18px 52px 18px 20px;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--accent);
  background: #edf3ff;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
}

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

.faq-list details[open] summary {
  color: var(--accent);
}

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

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

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

.faq-card-grid h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.24;
}

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

@media (max-width: 1120px) {
  .faq-index,
  .faq-trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .faq-trust-section,
  .faq-section.split,
  .faq-section.split.reverse {
    grid-template-columns: 1fr;
  }

  .faq-section.split.reverse .faq-support-image,
  .faq-section.split.reverse > div:last-child {
    order: initial;
  }

  .faq-support-image img {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .faq-index,
  .faq-trust-grid,
  .faq-card-grid,
  .faq-list.two-column {
    grid-template-columns: 1fr;
  }

  .faq-support-image img {
    min-height: 0;
    height: 270px;
  }
}

.climate-detail-hero > img {
  object-position: center;
}

.climate-detail-index {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.climate-overview-section,
.climate-system-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.climate-overview-section {
  align-items: start;
}

.climate-system-section.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
}

.climate-system-section.reverse img {
  order: 2;
}

.climate-system-section.reverse .climate-system-copy {
  order: 1;
}

.climate-overview-copy h2,
.climate-system-copy h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.75vw, 2.65rem);
  line-height: 1.1;
}

.climate-overview-copy p:not(.section-label),
.climate-system-copy p:not(.section-label) {
  margin: 18px 0 0;
  color: var(--muted);
}

.climate-proof-grid,
.climate-scope-grid {
  display: grid;
  gap: 16px;
}

.climate-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.climate-proof-grid article,
.climate-scope-grid article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.climate-proof-grid article {
  min-height: 230px;
}

.climate-proof-grid span,
.climate-scope-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 850;
}

.climate-proof-grid strong,
.climate-scope-grid h3 {
  display: block;
  margin: 0;
  font-size: 1rem;
  line-height: 1.24;
}

.climate-proof-grid p,
.climate-scope-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.climate-system-section > img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.climate-scope-grid article {
  min-height: 230px;
}

@media (max-width: 1120px) {
  .climate-detail-index,
  .climate-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .climate-overview-section,
  .climate-system-section,
  .climate-system-section.reverse {
    grid-template-columns: 1fr;
  }

  .climate-system-section.reverse img,
  .climate-system-section.reverse .climate-system-copy {
    order: initial;
  }

  .climate-system-section > img {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .climate-detail-index,
  .climate-proof-grid,
  .climate-scope-grid {
    grid-template-columns: 1fr;
  }

  .climate-system-section > img {
    min-height: 0;
    height: 270px;
  }
}

.project-start-hero {
  position: relative;
  min-height: clamp(500px, 68svh, 720px);
  overflow: hidden;
  color: var(--white);
  background: #0b1728;
}

.project-start-hero > img,
.project-start-hero-shade {
  position: absolute;
  inset: 0;
}

.project-start-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-start-hero-shade {
  background:
    linear-gradient(180deg, rgba(7, 19, 38, 0.14), rgba(7, 19, 38, 0.88)),
    linear-gradient(90deg, rgba(7, 19, 38, 0.84), rgba(7, 19, 38, 0.38) 58%, rgba(7, 19, 38, 0.1));
}

.project-start-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(var(--max), calc(100% - 56px));
  min-height: inherit;
  margin: 0 auto;
  padding: 74px 0 50px;
}

.project-start-hero .eyebrow {
  color: #d8e5ff;
}

.project-start-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.75rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.project-start-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
}

.project-start-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.project-form-panel,
.project-contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.project-form-panel {
  padding: clamp(22px, 4vw, 38px);
}

.project-contact-panel {
  position: sticky;
  top: 96px;
  padding: 26px;
}

.project-form-panel h2,
.project-contact-panel h2 {
  margin: 0 0 22px;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1.12;
}

.project-inquiry-form {
  display: grid;
  gap: 18px;
}

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

.project-inquiry-form label,
.project-inquiry-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
}

.project-inquiry-form span,
.project-inquiry-form legend,
.contact-card-list span {
  color: var(--soft-ink);
  font-size: 0.78rem;
  font-weight: 850;
}

.project-inquiry-form input,
.project-inquiry-form select,
.project-inquiry-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.project-inquiry-form textarea {
  resize: vertical;
}

.project-inquiry-form input:focus,
.project-inquiry-form select:focus,
.project-inquiry-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(9, 58, 150, 0.1);
}

.project-inquiry-form fieldset {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.checkbox-grid input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--accent);
}

.full-field {
  grid-column: 1 / -1;
}

.contact-card-list {
  display: grid;
  gap: 10px;
}

.contact-card-list a,
.contact-card-list div,
.project-contact-note {
  display: grid;
  gap: 6px;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card-list strong {
  font-size: 0.98rem;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.contact-card-list a:hover,
.contact-card-list a:focus-visible {
  color: var(--accent);
  border-color: rgba(9, 58, 150, 0.28);
  outline: none;
}

.project-contact-note {
  margin-top: 18px;
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.project-contact-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.start-step-grid article {
  min-height: 220px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.start-step-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 850;
}

.start-step-grid h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.24;
}

.start-step-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .project-start-section {
    grid-template-columns: 1fr;
  }

  .project-contact-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .project-start-hero-inner {
    width: min(100% - 32px, var(--max));
  }

  .project-start-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .form-grid,
  .checkbox-grid,
  .start-step-grid {
    grid-template-columns: 1fr;
  }
}
