﻿:root {
  --ink: #172033;
  --muted: #5b6678;
  --navy: #151a2f;
  --charcoal: #1f2937;
  --indigo: #24215f;
  --indigo-soft: #3b347c;
  --blue: #77bde8;
  --blue-strong: #347fa9;
  --slate: #667789;
  --steel: #667789;
  --line: #d9dee7;
  --line-strong: #c8d1dd;
  --soft: #f3f6f9;
  --paper: #fbfaf7;
  --white: #ffffff;
  --focus-ring: #77bde8;
  --shadow-sm: 0 8px 24px rgba(23, 32, 51, 0.08);
  --shadow: 0 18px 48px rgba(23, 32, 51, 0.13);
  --radius: 8px;
  --container: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

main:focus {
  outline: none;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 9999;
  transform: translateY(-140%);
  padding: 11px 16px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--indigo);
  font-weight: 900;
  box-shadow: var(--shadow);
  transition: transform 140ms ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.motion-toggle {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 8;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.motion-toggle:focus,
.motion-toggle:focus-visible {
  width: auto;
  height: auto;
  padding: 9px 13px;
  border: 1px solid rgba(119, 189, 232, 0.85);
  border-radius: 999px;
  overflow: visible;
  clip: auto;
  background: var(--white);
  color: var(--indigo);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}

:focus-visible {
  outline: 3px solid var(--focus-ring) !important;
  outline-offset: 3px;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.mobile-break {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-block: 10px;
  background-color: rgba(251, 250, 247, 0.96);
  border-bottom: 1px solid rgba(217, 222, 231, 0.92);
  backdrop-filter: blur(18px);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  will-change: background-color, box-shadow;
}

.site-header.is-scrolled {
  background-color: rgba(251, 250, 247, 0.985);
  border-bottom-color: rgba(200, 209, 221, 0.98);
  box-shadow: 0 10px 28px rgba(23, 32, 51, 0.09);
}

.nav-wrap {
  width: var(--container);
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: 132px;
  max-height: 58px;
  height: auto;
  object-fit: contain;
}

.footer-brand .brand-logo {
  width: 176px;
  max-height: none;
}

.brand-fallback {
  color: var(--indigo);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.footer-brand-fallback {
  color: var(--indigo);
}

.brand-mark {
  width: 48px;
  height: 48px;
  position: relative;
  flex: 0 0 auto;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 7px;
  background: var(--indigo);
  transform: rotate(45deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 13px;
  width: 12px;
  height: 12px;
  border: 5px solid #f7f8fb;
  border-radius: 50%;
  box-shadow: 0 20px 0 -2px #f7f8fb, 10px 30px 0 -4px #f7f8fb;
}

.brand-ruler {
  position: absolute;
  left: -2px;
  top: -1px;
  width: 44px;
  height: 12px;
  background: #e6e8ee;
  transform: rotate(-45deg);
  transform-origin: left center;
  z-index: 2;
}

.brand-ruler span {
  position: absolute;
  top: 0;
  width: 1px;
  height: 8px;
  background: #1f2430;
}

.brand-ruler span:nth-child(1) { left: 9px; }
.brand-ruler span:nth-child(2) { left: 18px; height: 10px; }
.brand-ruler span:nth-child(3) { left: 27px; }
.brand-ruler span:nth-child(4) { left: 36px; height: 10px; }

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-name {
  color: var(--indigo);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-line {
  margin-top: 4px;
  color: var(--steel);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  padding: 4px;
}

.nav-link,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 10px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: #273142;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  cursor: pointer;
  transition: min-height 220ms ease, padding 220ms ease, background 160ms ease, color 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.dropdown-toggle:hover,
.dropdown-toggle:focus-visible {
  color: var(--indigo);
  background: #eef3f8;
  outline: none;
}

.dropdown {
  position: relative;
}

.dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.dropdown-icon {
  width: 8px;
  height: 8px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  width: 272px;
  padding: 10px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 26px;
  width: 12px;
  height: 12px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
  transform: rotate(45deg);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.is-open .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 11px;
  border-radius: 6px;
  color: #2c3748;
  font-size: 0.94rem;
  font-weight: 700;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  color: var(--indigo);
  background: #f1f5f9;
  outline: none;
}

.nav-link[aria-current="page"],
.dropdown-toggle[aria-current="page"] {
  color: var(--indigo);
  background: #eef3f8;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--indigo);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: #1d1852;
  box-shadow: 0 10px 22px rgba(36, 33, 95, 0.18);
  outline: none;
}

.nav-cta {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--indigo);
  border-color: rgba(36, 33, 95, 0.2);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: min-height 220ms ease, padding 220ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--blue-strong);
  border-color: var(--blue-strong);
  box-shadow: 0 10px 22px rgba(52, 127, 169, 0.22);
}

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

.button.secondary:hover,
.button.secondary:focus-visible {
  background: #eef5fb;
  border-color: #eef5fb;
}

.button.outline {
  background: transparent;
  color: var(--indigo);
  border-color: #b9c6d8;
}

.button.outline:hover,
.button.outline:focus-visible {
  background: #eef5fb;
  border-color: #aebdd0;
  box-shadow: none;
}

.hero {
  min-height: 680px;
  height: 85svh;
  max-height: none;
  display: grid;
  align-items: start;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #111827;
}

.hero-reel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #111827;
}

.hero-video-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 1;
  background: #111827 url("/images/hero/aerial-development.jpg") center / cover no-repeat;
}

@media (prefers-reduced-motion: no-preference) {
  .has-home-scroll-effects .home-scroll-reveal {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
    transition:
      opacity 680ms ease,
      transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--home-reveal-delay, 0ms);
    will-change: opacity, transform;
  }

  .has-home-scroll-effects .home-scroll-reveal.is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .has-home-scroll-effects .foundation-visual.home-scroll-reveal,
  .has-home-scroll-effects .market-stage.home-scroll-reveal,
  .has-home-scroll-effects .organization-carousel.home-scroll-reveal {
    transform: translate3d(0, 34px, 0) scale(0.975);
  }

  .has-home-scroll-effects .foundation-visual.home-scroll-reveal.is-revealed,
  .has-home-scroll-effects .market-stage.home-scroll-reveal.is-revealed,
  .has-home-scroll-effects .organization-carousel.home-scroll-reveal.is-revealed {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.hero.is-video-ready .hero-reel-fallback {
  opacity: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  filter: brightness(1.2) saturate(1.14) contrast(1.08);
  transition: opacity 1000ms cubic-bezier(0.42, 0, 0.18, 1);
}

.hero-video.is-active {
  opacity: 1;
  animation: none;
}

.hero-video:nth-child(1) {
  object-position: center center;
  --hero-video-x: -1%;
  --hero-video-y: -0.7%;
}

.hero-video:nth-child(2) {
  object-position: center 56%;
  --hero-video-x: 1.1%;
  --hero-video-y: -0.8%;
}

.hero-video:nth-child(3) {
  object-position: center 58%;
  --hero-video-x: -0.8%;
  --hero-video-y: 0.8%;
}

.hero-video:nth-child(4) {
  object-position: center 54%;
  --hero-video-x: 1%;
  --hero-video-y: 0.7%;
}

.hero-video:nth-child(5) {
  object-position: center 52%;
  --hero-video-x: -0.9%;
  --hero-video-y: -0.6%;
}

.hero-reel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1100ms cubic-bezier(0.42, 0, 0.18, 1), visibility 1100ms cubic-bezier(0.42, 0, 0.18, 1);
}

.hero-reel-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-reel-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  filter: brightness(1.18) saturate(1.12) contrast(1.06);
}

.hero-reel-slide:nth-child(1) img {
  object-position: center center;
  --hero-x: -1.2%;
  --hero-y: -0.8%;
}

.hero-reel-slide:nth-child(2) img {
  object-position: center 55%;
  --hero-x: 1%;
  --hero-y: -0.7%;
}

.hero-reel-slide:nth-child(3) img {
  object-position: center 52%;
  --hero-x: -0.8%;
  --hero-y: 0.9%;
}

.hero-reel-slide:nth-child(4) img {
  object-position: center 58%;
  --hero-x: 1.1%;
  --hero-y: 0.7%;
}

.hero-reel-slide:nth-child(5) img {
  object-position: center 62%;
  --hero-x: -0.9%;
  --hero-y: -0.6%;
}

.hero-reel-slide.is-active img {
  animation: heroFrameMotion 3.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 12, 27, 0.94) 0%, rgba(8, 20, 42, 0.78) 42%, rgba(8, 14, 27, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 12, 27, 0.72) 0%, rgba(8, 14, 27, 0.12) 58%, rgba(8, 14, 27, 0.2) 100%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px);
  background-size: cover, cover, 64px 64px, 64px 64px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 34%;
  background: linear-gradient(0deg, rgba(8, 14, 27, 0.38), transparent);
  pointer-events: none;
}

.hero-inner {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: clamp(72px, 10vh, 132px) 0 132px;
}

.hero-content {
  max-width: 940px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
}

.hero .eyebrow,
.page-hero .eyebrow,
.dark .eyebrow,
.cta .eyebrow {
  color: var(--blue);
}

.hero h1,
.page-hero h1 {
  max-width: 1200px;
  margin: 18px 0 24px;
  font-size: clamp(4.75rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.065em;
}

.hero h1 {
  color: #f6f2ea;
}

.hero-headline-accent {
  color: var(--blue);
}

.hero h1 {
  text-shadow: 0 3px 20px rgba(5, 11, 24, 0.48);
}

.hero p {
  max-width: 800px;
  margin: 0;
  color: rgba(235, 240, 246, 0.78);
  font-size: 1.22rem;
  line-height: 1.78;
  text-shadow: 0 2px 16px rgba(5, 11, 24, 0.46);
}

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

.hero-actions {
  gap: 16px;
  margin-top: 36px;
}

.hero-actions .button {
  min-width: 212px;
  min-height: 56px;
  padding: 0 28px;
  font-size: 1rem;
}

.hero-service-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 12, 27, 0.38);
}

.hero-service-strip-inner {
  width: var(--container);
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(238, 242, 247, 0.76);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-service-strip-inner span + span::before {
  content: "•";
  margin-right: 18px;
  color: var(--blue);
}

@keyframes heroFrameMotion {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.16) translate3d(var(--hero-x, -1.2%), var(--hero-y, -0.8%), 0);
  }
}

@keyframes heroVideoMotion {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.11) translate3d(var(--hero-video-x, -1%), var(--hero-video-y, -0.7%), 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .nav-wrap,
  .brand-logo,
  .site-nav,
  .nav-link,
  .dropdown-toggle,
  .nav-cta {
    transition: none;
  }

  .hero-reel-slide,
  .hero-video,
  .hero-reel-slide.is-active img {
    transition: none;
    animation: none;
  }

  .hero-video-carousel {
    display: none;
  }

  .market-panel,
  .market-panel-card,
  .market-panel-image img,
  .market-tab,
  .market-tab::before {
    transition: none;
  }

  .organization-carousel-track {
    animation: none;
  }

  .testimonial-grid {
    transition: none;
  }
}

.section {
  padding: 92px 0;
}

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

.section.dark {
  background:
    linear-gradient(135deg, #111827 0%, #171b35 100%);
  color: var(--white);
}

.about-values-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(119, 189, 232, 0.2);
  border-bottom: 1px solid rgba(119, 189, 232, 0.16);
  background:
    radial-gradient(circle at 82% 48%, rgba(119, 189, 232, 0.16), transparent 34%),
    linear-gradient(120deg, #111b2d 0%, #171d35 58%, #172d43 100%);
}

.about-values-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(119, 189, 232, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 189, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 189, 232, 0.12), transparent 38%, rgba(255, 255, 255, 0.04));
  background-size: 56px 56px, 56px 56px, auto;
  pointer-events: none;
}

.about-values-section .container {
  position: relative;
  z-index: 1;
}

.about-values-compact {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: start;
}

.about-values-section .eyebrow {
  color: #8bd6ff;
}

.about-values-section .section-title {
  max-width: 520px;
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 0.98;
}

.about-values-intro {
  max-width: 500px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.65;
}

.about-values-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 540px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(184, 220, 242, 0.26);
}

.about-values-facts span {
  display: grid;
  gap: 5px;
}

.about-values-facts strong {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.02rem;
}

.about-values-facts small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.4;
}

.about-values-section .lead {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
}

.about-values-copy .section-actions {
  margin-top: 28px;
}

.right-values-panel {
  display: block;
  padding: 4px 0 0;
}

.history-section {
  background:
    linear-gradient(135deg, rgba(243, 246, 249, 0.96), rgba(251, 250, 247, 0.98));
}

.history-section .section-heading {
  max-width: 760px;
  margin-inline: auto;
}

.history-section .section-heading p {
  max-width: 700px;
  margin: 14px auto 0;
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.history-card {
  display: block;
  padding: 28px 26px 30px;
  border-left: 1px solid var(--line-strong);
}

.history-card:first-child {
  border-left: 0;
}

.history-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 20px;
  background: var(--blue);
}

.history-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.05rem;
}

.history-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.why-image-story {
  padding: clamp(60px, 8vw, 108px) 0;
  background: var(--white);
}

.why-image-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
}

.why-image-story-media {
  overflow: hidden;
  min-height: 360px;
  border-radius: 4px;
}

.why-image-story-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.why-image-story-copy {
  max-width: 560px;
}

.why-image-story-copy h2 {
  margin: 16px 0 20px;
  max-width: 520px;
  color: var(--ink);
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.08;
}

.why-image-story-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.right-values-grid {
  display: grid;
  gap: 0;
}

.right-value-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  min-height: 0;
  padding: 26px 0 28px;
  border-top: 1px solid rgba(184, 220, 242, 0.24);
}

.right-value-letter {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(139, 214, 255, 0.55);
  border-radius: 50%;
  background: rgba(139, 214, 255, 0.1);
  color: #8bd6ff;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.right-value-card h3 {
  margin: 12px 0 4px;
  color: var(--white);
  font-size: 1.42rem;
}

.right-value-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}

.about-values-section .button.secondary {
  border-color: rgba(255, 255, 255, 0.88);
  background: var(--white);
  color: var(--indigo);
  box-shadow: 0 14px 28px rgba(5, 11, 24, 0.22);
}

.about-values-section .button.secondary:hover,
.about-values-section .button.secondary:focus-visible {
  background: #eef7ff;
  border-color: #eef7ff;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}

.organization-carousel-section {
  padding: 58px 0 64px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.organization-carousel-header {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 28px;
  text-align: center;
}

.organization-carousel-header h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
}

.organization-carousel-header p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.organization-carousel {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 8px 0;
}

.organization-carousel::before,
.organization-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: min(16vw, 180px);
  height: 100%;
  pointer-events: none;
}

.organization-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #f8fafc, rgba(248, 250, 252, 0));
}

.organization-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #f8fafc, rgba(248, 250, 252, 0));
}

.organization-carousel-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 6px 22px;
  animation: organization-scroll 34s linear infinite;
}

.organization-carousel:hover .organization-carousel-track,
.organization-carousel:focus-within .organization-carousel-track {
  animation-play-state: paused;
}

.organization-logo-card {
  width: clamp(180px, 18vw, 260px);
  height: 118px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 24px;
  border: 1px solid #dce5ee;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(23, 32, 51, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.organization-logo-card:hover,
.organization-logo-card:focus-visible {
  transform: translateY(-3px);
  border-color: #b9cfdf;
  box-shadow: 0 18px 42px rgba(23, 32, 51, 0.12);
  outline: none;
}

.organization-logo-card img {
  max-width: 100%;
  max-height: 72px;
  display: block;
  object-fit: contain;
}

.organization-logo-card-creda {
  padding: 14px;
}

.organization-logo-card-creda img {
  max-height: 90px;
}

.organization-carousel-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.community-organization-grid {
  display: grid;
  gap: 22px;
}

.community-organization-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(23, 32, 51, 0.07);
}

.community-organization-logo {
  min-height: 170px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px solid #dfe7ef;
  border-radius: var(--radius);
  background: #fbfcfe;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.community-organization-logo:hover,
.community-organization-logo:focus-visible {
  transform: translateY(-2px);
  border-color: #b8ccdd;
  box-shadow: 0 14px 30px rgba(23, 32, 51, 0.1);
  outline: none;
}

.community-organization-logo img {
  max-width: 100%;
  max-height: 96px;
  display: block;
  object-fit: contain;
}

.community-organization-body {
  display: grid;
  align-content: center;
}

.community-organization-body h3 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: 1.35rem;
}

.community-organization-body p {
  margin: 0;
  color: #3f4a5b;
  font-size: 1rem;
  line-height: 1.75;
}

@keyframes organization-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(var(--organization-loop-offset, -50%));
  }
}

.section-heading {
  max-width: 800px;
  margin-bottom: 36px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.section-title {
  margin: 0;
  color: var(--ink);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.dark .section-heading h2,
.dark .section-title {
  color: var(--white);
}

.section-heading p,
.lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.dark .section-heading p,
.dark .lead {
  color: rgba(255, 255, 255, 0.78);
}

.blueprint-panel {
  min-height: 410px;
  border: 1px solid #d4dce7;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(36, 33, 95, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 33, 95, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #f7f9fb 58%, #eaf3f8 100%);
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: var(--shadow-sm);
  padding: 42px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
}

.blueprint-panel::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 2px solid rgba(52, 127, 169, 0.28);
  border-left-width: 8px;
}

.blueprint-panel::after {
  content: "";
  position: absolute;
  right: 42px;
  top: 54px;
  width: 190px;
  height: 94px;
  border-right: 3px solid rgba(36, 33, 95, 0.34);
  border-bottom: 3px solid rgba(36, 33, 95, 0.34);
  transform: skewX(-18deg);
}

.panel-note {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 0;
  color: #273142;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.45;
}

.foundation-visual {
  min-height: 410px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #dfe6ef;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

.foundation-visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-left: 5px solid rgba(119, 189, 232, 0.86);
  pointer-events: none;
}

.foundation-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.02) 28%, rgba(17, 24, 39, 0.66) 100%),
    linear-gradient(90deg, rgba(36, 33, 95, 0.1), transparent 58%);
  pointer-events: none;
}

.foundation-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.foundation-visual-card {
  width: min(430px, calc(100% - 48px));
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 2;
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-left: 5px solid var(--blue);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.18);
}

.foundation-visual-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.foundation-visual-card p {
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 850;
  line-height: 1.38;
}

.value-beyond-section {
  background:
    linear-gradient(90deg, rgba(52, 127, 169, 0.07) 0 1px, transparent 1px),
    linear-gradient(rgba(52, 127, 169, 0.055) 0 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

.value-beyond-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}

.value-beyond-copy {
  max-width: 620px;
}

.value-beyond-cards {
  display: grid;
  gap: 14px;
}

.value-beyond-card {
  position: relative;
  overflow: hidden;
  padding: 26px 28px 26px 32px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(23, 32, 51, 0.07);
}

.value-beyond-card::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(119, 189, 232, 0.1));
  pointer-events: none;
}

.value-beyond-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.value-beyond-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.24;
}

.value-beyond-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.why-value-section {
  background:
    linear-gradient(135deg, rgba(243, 246, 249, 0.94), rgba(251, 250, 247, 0.98));
}

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

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

.service-card,
.project-card,
.value-card,
.news-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 9px 26px rgba(23, 32, 51, 0.06);
  overflow: hidden;
}

.service-card,
.value-card,
.news-card,
.contact-card {
  padding: 28px;
}

.service-card,
.value-card,
.news-card {
  position: relative;
}

.service-card::before,
.value-card::before,
.news-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--blue));
}

.service-card {
  min-height: 245px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.service-capability-grid .service-card {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.service-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-left: 3px solid var(--blue-strong);
  background: #f3f7fb;
  color: var(--indigo);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card-planning .service-kicker,
.service-card-entitlements .service-kicker {
  border-left-color: var(--indigo-soft);
}

.service-card-drainage .service-kicker,
.service-card-staking .service-kicker {
  border-left-color: var(--blue);
}

.service-card:hover {
  border-color: #bfd0df;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(23, 32, 51, 0.1);
}

.service-card h3,
.project-card h3,
.value-card h3,
.news-card h3,
.contact-card h3,
.step h3,
.project-flow-item h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.service-card p,
.project-card p,
.value-card p,
.news-card p,
.contact-card p,
.step p,
.project-flow-item p {
  margin: 0;
  color: var(--muted);
}

.service-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border: 1px solid #d4e2ee;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(52, 127, 169, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 127, 169, 0.13) 1px, transparent 1px),
    #f6f9fc;
  background-size: 10px 10px;
  position: relative;
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  border-radius: 2px;
}

.service-icon::before {
  left: 11px;
  top: 12px;
  width: 21px;
  height: 14px;
  border-top: 3px solid var(--indigo);
  border-right: 3px solid var(--blue-strong);
}

.service-icon::after {
  left: 14px;
  bottom: 11px;
  width: 21px;
  height: 3px;
  background: var(--blue-strong);
}

.project-card {
  display: flex;
  flex-direction: column;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.project-card:hover {
  border-color: #bfd0df;
  box-shadow: 0 16px 38px rgba(23, 32, 51, 0.11);
}

.project-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dfe6ef;
  position: relative;
}

.project-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.28), transparent);
  pointer-events: none;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.project-meta,
.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 13px;
  color: var(--blue-strong);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-meta span,
.news-meta span {
  display: inline-flex;
  align-items: center;
}

.project-meta span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-right: 8px;
  border-radius: 50%;
  background: #9aa8b8;
}

.project-body .section-actions {
  margin-top: auto;
  padding-top: 24px;
}

.project-carousel-section {
  overflow: hidden;
  padding: 58px 0 74px;
  background: #232d35;
  color: var(--white);
}

.project-carousel-heading {
  margin-bottom: 42px;
  text-align: center;
}

.project-carousel-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.05rem, 3vw, 2.9rem);
  font-weight: 350;
  line-height: 1.1;
}

.project-carousel-heading strong {
  font-weight: 850;
}

.project-carousel {
  --project-slide-width: clamp(340px, 29vw, 520px);
  --project-slide-height: clamp(450px, 34vw, 570px);
  --project-carousel-peek: clamp(82px, 8vw, 150px);
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.project-carousel-viewport {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  scroll-behavior: smooth;
}

.project-carousel-track {
  display: flex;
  gap: 24px;
  padding: 0 0 6px;
}

.project-slide {
  flex: 0 0 var(--project-slide-width);
  min-height: var(--project-slide-height);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #111827;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  isolation: isolate;
}

.project-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.02) 18%, rgba(17, 24, 39, 0.76) 100%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.08), transparent 55%);
  pointer-events: none;
}

.project-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.project-slide:hover img {
  transform: scale(1.035);
}

.project-slide-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.project-slide-content h3 {
  order: 1;
  max-width: 430px;
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(1.55rem, 2vw, 1.95rem);
  font-weight: 850;
  line-height: 1.15;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.project-slide-category {
  order: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 13px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.1;
}

.project-slide-location {
  display: none;
}

.project-slide-content p {
  display: none;
}

.project-slide-content a {
  display: none;
}

.project-slide-content a::after {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease;
}

.project-slide-content a:hover,
.project-slide-content a:focus-visible {
  color: var(--blue);
  outline: none;
}

.project-slide-content a:hover::after,
.project-slide-content a:focus-visible::after {
  transform: translateX(4px);
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 54px;
  height: 68px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  border-radius: var(--radius);
  background: rgba(17, 24, 39, 0.34);
  color: var(--white);
  font-size: 3.8rem;
  font-weight: 250;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.carousel-control:hover,
.carousel-control:focus-visible {
  background: rgba(119, 189, 232, 0.92);
  color: var(--navy);
  outline: none;
}

.carousel-control-prev {
  left: 28px;
}

.carousel-control-next {
  right: 28px;
}

.project-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.project-carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.project-carousel-dot.is-active {
  width: 28px;
  background: var(--blue);
  border-color: var(--blue);
}

.project-carousel-dot:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.project-carousel-actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

.project-carousel-button {
  min-width: 190px;
  border-color: var(--blue);
  background: var(--blue);
  color: #122132;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.project-carousel-button:hover,
.project-carousel-button:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--indigo);
}

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

.project-listing-card {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.project-listing-card:hover {
  box-shadow: none;
}

.project-listing-card .project-image {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(23, 32, 51, 0.08);
}

.project-listing-card .project-image::after {
  display: none;
}

.project-listing-card .project-body {
  min-height: 218px;
  margin-top: 6px;
  padding: 28px;
  border: 1px solid #bfc7d2;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: none;
}

.project-listing-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.24;
}

.project-listing-card .project-meta {
  margin: 12px 0 0;
  color: var(--blue-strong);
}

.project-listing-card .project-learn-more {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--indigo);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-listing-card .project-learn-more:hover,
.project-listing-card .project-learn-more:focus-visible {
  color: var(--blue-strong);
  outline: none;
}

.project-arrow {
  width: 28px;
  height: 18px;
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
}

.project-arrow::before,
.project-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  background: currentColor;
}

.project-arrow::before {
  width: 28px;
  height: 2px;
  transform: translateY(-50%);
}

.project-arrow::after {
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  background: transparent;
  transform: translateY(-50%) rotate(45deg);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.step {
  background: var(--white);
  padding: 28px;
}

.project-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding-top: 14px;
}

.project-flow::before {
  content: "";
  position: absolute;
  top: 60px;
  right: 9%;
  left: 9%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(119, 189, 232, 0.9) 10%, rgba(67, 61, 151, 0.55) 50%, rgba(119, 189, 232, 0.9) 90%, transparent);
  opacity: 0.72;
}

.project-flow-heading {
  max-width: 700px;
  margin: 0 auto 42px;
}

.project-flow-item {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 258px;
  padding: 0 14px 22px;
  flex-direction: column;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 18px;
  text-align: center;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.project-flow-item:hover,
.project-flow-item:focus-within {
  z-index: 3;
  transform: translateY(-8px);
  border-color: rgba(43, 137, 190, 0.22);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 40px rgba(18, 37, 67, 0.14);
}

.project-flow-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 92px;
  height: 92px;
  margin-bottom: 2px;
  place-items: center;
  border: 8px solid var(--paper);
  border-radius: 24px;
  background: linear-gradient(145deg, #123052, #267faf);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(17, 49, 82, 0.2), 0 0 0 1px rgba(43, 137, 190, 0.42);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.project-flow-item:hover .project-flow-icon,
.project-flow-item:focus-within .project-flow-icon {
  transform: translateY(-3px) rotate(-2deg) scale(1.05);
  background: linear-gradient(145deg, #282264, #4d83c1);
  box-shadow: 0 14px 28px rgba(17, 49, 82, 0.28), 0 0 0 1px rgba(139, 214, 255, 0.82);
}

.project-flow-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.project-flow-item h3 {
  max-width: 170px;
  margin: 20px 0 9px;
  color: var(--ink);
  font-size: 1.06rem;
  line-height: 1.18;
}

.project-flow-item:nth-child(2) .project-flow-icon,
.project-flow-item:nth-child(4) .project-flow-icon {
  background: linear-gradient(145deg, #2c286b, #5265ad);
}

.project-flow-item:nth-child(2):hover .project-flow-icon,
.project-flow-item:nth-child(4):hover .project-flow-icon,
.project-flow-item:nth-child(2):focus-within .project-flow-icon,
.project-flow-item:nth-child(4):focus-within .project-flow-icon {
  background: linear-gradient(145deg, #182147, #3f9acc);
}

.project-flow-item p {
  max-width: 190px;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.48;
  transform: translateY(-8px);
  transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease;
}

.project-flow-item:hover p,
.project-flow-item:focus-within p {
  max-height: 180px;
  opacity: 1;
  transform: translateY(0);
}

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

.market-item {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 17px 18px;
  border: 1px solid #cfd8e5;
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: #273142;
  font-weight: 800;
  line-height: 1.3;
}

.market-showcase-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 108px;
  background:
    linear-gradient(90deg, rgba(119, 189, 232, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(251, 250, 247, 0.96)),
    var(--paper);
}

.market-showcase-section > .container {
  width: 100%;
  max-width: none;
}

.market-showcase-heading {
  width: var(--container);
  margin: 0 auto 58px;
  text-align: center;
}

.market-showcase-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 850;
  line-height: 1.08;
}

.market-showcase-heading span {
  font-weight: 350;
}

.market-showcase-layout {
  width: 100%;
  display: grid;
  grid-template-columns: clamp(230px, 18vw, 340px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 74px);
  align-items: center;
  padding-left: clamp(28px, 4vw, 76px);
}

.market-tabs {
  display: grid;
  gap: 16px;
  align-self: center;
}

.market-tab {
  width: 100%;
  min-height: 66px;
  position: relative;
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(23, 32, 51, 0.3);
  font-size: clamp(1.5rem, 2.15vw, 2.5rem);
  font-weight: 800;
  line-height: 1.18;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.market-tab::before {
  content: "";
  width: 0;
  height: 3px;
  margin-right: 0;
  background: var(--blue-strong);
  transition: width 160ms ease, margin-right 160ms ease;
}

.market-tab:hover,
.market-tab:focus-visible,
.market-tab.is-active {
  color: var(--ink);
  outline: none;
}

.market-tab:hover,
.market-tab:focus-visible {
  transform: translateX(3px);
}

.market-tab.is-active {
  transform: translateX(5px);
}

.market-tab.is-active::before {
  width: 38px;
  margin-right: 14px;
}

.market-stage {
  min-width: 0;
  position: relative;
  overflow: hidden;
  padding: 20px 0 52px;
  isolation: isolate;
}

.market-stage::before {
  content: "";
  position: absolute;
  inset: 0 0 34px 0;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0 30px,
      rgba(36, 33, 95, 0.05) 30px 38px,
      transparent 38px 68px
    );
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.market-track {
  height: clamp(500px, 33vw, 615px);
  position: relative;
  z-index: 1;
}

.market-panel {
  width: clamp(660px, 45vw, 870px);
  height: clamp(430px, 28vw, 560px);
  position: absolute;
  left: 50%;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(-50% + 104%)) scale(0.82);
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 360ms ease,
    filter 360ms ease;
  z-index: 0;
}

.market-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
  filter: none;
  z-index: 4;
}

.market-panel.is-next {
  opacity: 0.72;
  transform: translateX(calc(-50% + 74%)) scale(0.88);
  filter: saturate(0.9);
  z-index: 3;
}

.market-panel.is-previous {
  opacity: 0.36;
  transform: translateX(calc(-50% - 70%)) scale(0.84);
  filter: saturate(0.78);
  z-index: 2;
}

.market-panel.is-far {
  opacity: 0.22;
  transform: translateX(calc(-50% + 126%)) scale(0.8);
  filter: saturate(0.72);
  z-index: 1;
}

.market-panel-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #dfe6ef;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

.market-panel-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 32%, rgba(17, 24, 39, 0.26) 100%),
    linear-gradient(90deg, rgba(36, 33, 95, 0.1), transparent 58%);
  pointer-events: none;
}

.market-panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.market-panel.is-active .market-panel-image img {
  transform: scale(1.025);
}

.market-panel-card {
  width: min(560px, calc(100% - 88px));
  position: absolute;
  left: clamp(34px, 8%, 78px);
  bottom: -34px;
  padding: 30px 36px;
  border: 1px solid rgba(217, 222, 231, 0.82);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  background: rgba(251, 250, 247, 0.96);
  box-shadow: 0 18px 46px rgba(23, 32, 51, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition:
    opacity 200ms ease,
    transform 300ms ease,
    visibility 0s linear 200ms;
}

.market-panel.is-active .market-panel-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 120ms, 120ms, 0s;
}

.market-panel-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.85rem;
  font-weight: 850;
  line-height: 1.12;
}

.market-panel-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.market-panel-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--indigo);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.market-panel-card a::after {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
}

.market-panel-card a:hover,
.market-panel-card a:focus-visible {
  color: var(--blue-strong);
  outline: none;
}

.company-news-section {
  padding: 86px 0 92px;
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(243, 246, 249, 0.82) 100%);
}

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

.company-news-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(23, 32, 51, 0.08);
}

.company-news-visual {
  position: relative;
  min-height: 116px;
  overflow: hidden;
  background:
    linear-gradient(rgba(119, 189, 232, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 189, 232, 0.14) 1px, transparent 1px),
    linear-gradient(135deg, rgba(36, 33, 95, 0.98), rgba(52, 127, 169, 0.92));
  background-size: 18px 18px, 18px 18px, auto;
}

.company-news-visual::before {
  content: "";
  position: absolute;
  inset: 28px -34px auto 34px;
  height: 112px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-left-width: 8px;
  transform: skewX(-16deg);
}

.company-news-visual span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.company-news-body {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.company-news-body h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 850;
  line-height: 1.24;
}

.company-news-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.company-news-body .article-link {
  margin-top: auto;
  padding-top: 22px;
}

.company-news-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.testimonials-section {
  overflow: hidden;
  padding: 78px 0 92px;
  background:
    linear-gradient(180deg, rgba(31, 41, 51, 0.98), rgba(24, 32, 42, 0.98)),
    linear-gradient(90deg, rgba(119, 189, 232, 0.06), transparent 48%, rgba(36, 33, 95, 0.16));
  color: var(--white);
}

.testimonials-heading {
  margin-bottom: 64px;
  text-align: center;
}

.testimonials-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.05rem, 4vw, 3.15rem);
  font-weight: 850;
  line-height: 1.08;
}

.testimonials-heading span {
  font-weight: 350;
}

.testimonials-wrap {
  position: relative;
  padding: 0 76px;
}

.testimonial-viewport {
  overflow: hidden;
  margin-top: -48px;
  padding: 48px 2px 10px;
}

.testimonial-grid {
  display: flex;
  gap: 28px;
  align-items: stretch;
  will-change: transform;
  transition: transform 620ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.testimonial-card {
  min-height: 408px;
  flex: 0 0 calc((100% - 56px) / 3);
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: center;
  align-content: stretch;
  padding: 58px 34px 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #eef2f6;
  color: #3c4656;
  text-align: center;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.testimonial-card-featured {
  min-height: 408px;
  transform: none;
  background: #eef2f6;
  color: #3c4656;
}

.testimonial-quote-mark {
  position: absolute;
  left: 50%;
  top: -43px;
  transform: translateX(-50%);
  color: rgba(119, 189, 232, 0.58);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8.4rem;
  font-weight: 900;
  line-height: 1;
}

.testimonial-card-featured .testimonial-quote-mark {
  color: rgba(119, 189, 232, 0.58);
}

.testimonial-card p {
  max-width: 350px;
  margin: 0;
  font-size: 1.03rem;
  font-style: italic;
  line-height: 1.65;
  align-self: center;
}

.testimonial-person {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 28px;
}

.testimonial-avatar {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--indigo), var(--blue-strong));
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  box-shadow:
    -10px 10px 0 rgba(119, 189, 232, 0.22),
    0 12px 28px rgba(23, 32, 51, 0.22);
}

.testimonial-avatar-photo {
  overflow: hidden;
  background: #d8e4ef;
}

.testimonial-avatar-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.testimonial-avatar-photo img[src*="justin-anderson"] {
  object-position: 50% 20%;
}

.testimonial-person span {
  display: grid;
  gap: 3px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 780;
}

.testimonial-person strong {
  color: inherit;
  font-size: 0.98rem;
}

.testimonial-person small {
  color: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0.78;
}

.testimonial-card .testimonial-person span {
  color: #465164;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(119, 189, 232, 0.38);
  border-radius: 999px;
  background: rgba(12, 20, 30, 0.76);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  border-color: rgba(119, 189, 232, 0.7);
  background: rgba(119, 189, 232, 0.14);
  color: var(--blue);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
  outline: none;
}

.testimonials-wrap.is-moving .testimonial-arrow {
  pointer-events: none;
  opacity: 0.72;
}

.testimonial-arrow-prev {
  left: 12px;
}

.testimonial-arrow-next {
  right: 12px;
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.page-intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.12;
}

.page-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.project-page-intro {
  align-items: center;
}

.project-page-intro p {
  max-width: 650px;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.stat-item {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  background: var(--white);
}

.stat-item strong {
  color: var(--indigo);
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}

.stat-item span {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.35;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-row {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.feature-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.feature-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #c9d7e4;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue-strong);
  font-weight: 900;
}

.feature-row h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.25;
}

.feature-row p {
  margin: 0;
  color: var(--muted);
}

.service-summary {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-summary span,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid #d4e0eb;
  border-radius: 6px;
  background: #f7fafc;
  color: #344054;
  font-size: 0.82rem;
  font-weight: 780;
}

.media-panel {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.media-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.content-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 30px;
}

.content-panel h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 850;
  line-height: 1.22;
}

.content-panel p {
  margin: 0;
  color: var(--muted);
}

.content-panel .detail-list {
  margin-top: 18px;
}

.project-card .tag-row,
.news-card .tag-row,
.career-role .tag-row {
  margin-top: 18px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-card {
  display: flex;
  flex-direction: column;
}

.news-image {
  aspect-ratio: 16 / 9;
  margin: -28px -28px 24px;
  overflow: hidden;
  background: #dfe6ef;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card.featured {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  grid-column: 1 / -1;
  padding: 0;
}

.news-card.featured .news-image {
  margin: 0;
  aspect-ratio: auto;
  min-height: 330px;
}

.news-card.featured .news-body {
  padding: 34px;
  align-content: center;
  display: grid;
}

.news-card.featured h3 {
  font-size: 1.7rem;
}

.article-link {
  width: fit-content;
  margin-top: 22px;
  color: var(--indigo);
  font-weight: 850;
}

.article-link:hover,
.article-link:focus-visible {
  color: var(--blue-strong);
  outline: none;
}

.career-role {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.career-role h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 850;
}

.career-role p {
  margin: 0;
  color: var(--muted);
}

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

.principal-grid.principal-grid-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 1080px;
  margin-inline: auto;
}

.job-post-card,
.principal-card,
.timeline-item {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.job-post-card h3,
.principal-card h3,
.timeline-item h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 850;
}

.job-post-card p,
.principal-card p,
.timeline-item p {
  color: var(--muted);
}

.role-meta,
.placeholder-label,
.timeline-item span {
  margin: 0 0 12px;
  color: var(--blue-strong);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.principal-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.principal-card-featured {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 68px);
  align-items: center;
  padding: clamp(34px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(119, 189, 232, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff, #f8fbfd);
}

.principal-card-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--indigo), var(--blue-strong)) 1;
  pointer-events: none;
}

.principal-photo {
  aspect-ratio: 1;
  margin: 0;
  display: grid;
  place-items: center;
  border: 1px solid #cfd8e5;
  border-radius: 50%;
  background: linear-gradient(135deg, #eef5fb, #dce8f3);
  color: #4b5a70;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.principal-photo-portrait {
  width: min(100%, 280px);
  aspect-ratio: 2 / 3;
  min-height: 0;
  justify-self: center;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  background: linear-gradient(180deg, #f7f9fc, #e9eff6);
  box-shadow: 0 18px 38px rgba(23, 32, 51, 0.14);
}

.principal-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.principal-content {
  position: relative;
  display: grid;
  align-content: center;
  max-width: 720px;
}

.principal-card-featured h3 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 2.7vw, 2.45rem);
  line-height: 1.08;
}

.principal-card-featured h3 a {
  color: inherit;
  text-decoration: none;
}

.principal-card-featured h3 a:hover,
.principal-card-featured h3 a:focus-visible {
  color: var(--indigo);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.principal-bio {
  margin: 0 0 14px;
  color: #4d5b6d;
  font-size: 1.02rem;
  line-height: 1.7;
}

.principal-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.principal-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(119, 189, 232, 0.42);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 255, 255, 0.82);
  color: var(--indigo);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.timeline-list {
  display: grid;
  gap: 16px;
}

.proposal-section {
  background: linear-gradient(180deg, #ffffff, #f7fafc);
}

.proposal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

.proposal-intro {
  display: grid;
  gap: 18px;
}

.proposal-intro .section-title {
  margin-bottom: 0;
}

.proposal-form {
  position: relative;
}

.warning-panel {
  border-left: 4px solid var(--blue-strong);
}

.checkbox-field label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #344054;
  font-weight: 700;
  line-height: 1.45;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 2px;
}

.button:disabled,
.button[disabled] {
  opacity: 0.48;
  cursor: not-allowed;
  box-shadow: none;
}

.form-note.is-error {
  color: #b42318;
  font-weight: 750;
}

.form-note.is-ready {
  color: #0f766e;
  font-weight: 750;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 34px;
  align-items: start;
}

.contact-card.form-card {
  padding: 32px;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #9aa8b8;
}

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

.cta {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(36, 33, 95, 0.88)),
    url("/assets/images/project-infrastructure.jpg") center / cover no-repeat;
  color: var(--white);
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), rgba(119, 189, 232, 0.25));
}

.cta .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
}

.cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.cta p {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

.homepage-cta,
.final-homepage-cta {
  padding: 78px 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(36, 33, 95, 0.91)),
    linear-gradient(rgba(119, 189, 232, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 189, 232, 0.08) 1px, transparent 1px),
    url("/assets/images/project-infrastructure.jpg") center / cover no-repeat;
  background-size: auto, 32px 32px, 32px 32px, cover;
}

.homepage-cta .container,
.final-homepage-cta .container {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.58fr);
  gap: clamp(30px, 5vw, 72px);
}

.homepage-cta .eyebrow,
.final-homepage-cta .eyebrow {
  color: var(--blue);
}

.homepage-cta-copy h2 {
  max-width: 760px;
}

.homepage-cta-copy {
  max-width: 760px;
}

.homepage-cta-copy p {
  max-width: 720px;
}

.homepage-cta-actions {
  display: grid;
  gap: 14px;
}

.homepage-cta-card {
  display: grid;
  gap: 7px;
  padding: 22px 24px;
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.homepage-cta-card span {
  font-size: 1.03rem;
  font-weight: 900;
  line-height: 1.2;
}

.homepage-cta-card small {
  color: inherit;
  font-size: 0.9rem;
  line-height: 1.45;
  opacity: 0.82;
}

.homepage-cta-card-primary {
  border: 1px solid rgba(119, 189, 232, 0.72);
  background: linear-gradient(135deg, var(--blue), #9bd3f3);
  color: #091527;
  box-shadow: 0 18px 42px rgba(3, 13, 28, 0.26);
}

.homepage-cta-card-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.homepage-cta-card:hover,
.homepage-cta-card:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.homepage-cta-card-primary:hover,
.homepage-cta-card-primary:focus-visible {
  border-color: var(--white);
  box-shadow: 0 22px 52px rgba(3, 13, 28, 0.34);
}

.homepage-cta-card-secondary:hover,
.homepage-cta-card-secondary:focus-visible {
  border-color: rgba(119, 189, 232, 0.7);
  background: rgba(255, 255, 255, 0.13);
}

.inline-home-cta {
  padding: clamp(48px, 6vw, 72px) 0;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(238, 246, 252, 0.98)),
    linear-gradient(90deg, rgba(119, 189, 232, 0.12), transparent 46%);
  border-top: 1px solid rgba(119, 189, 232, 0.18);
  border-bottom: 1px solid rgba(119, 189, 232, 0.2);
}

.inline-home-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.inline-home-cta .eyebrow {
  margin-bottom: 10px;
  color: var(--blue-strong);
}

.inline-home-cta h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
}

.inline-home-cta-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.inline-home-cta-actions .button {
  min-height: 56px;
  padding-inline: 18px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(460px, 56vw, 590px);
  display: grid;
  align-items: center;
  padding: clamp(118px, 13vw, 174px) 0 clamp(94px, 10vw, 138px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(15, 23, 36, 0.95) 0%, rgba(23, 32, 51, 0.86) 54%, rgba(36, 33, 95, 0.78) 100%),
    var(--page-hero-image, url("/assets/images/hero-civil-engineering.jpg")) center / cover no-repeat;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 74%);
  pointer-events: none;
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 940px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 5.6vw, 5.35rem);
  line-height: 0.98;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
  line-height: 1.7;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid #cdd6e2;
  border-radius: var(--radius);
  background: var(--white);
  color: #273142;
  font-size: 0.94rem;
  font-weight: 800;
  cursor: pointer;
}

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

.detail-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.detail-list li {
  position: relative;
  padding-left: 20px;
  margin-top: 9px;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 2px;
  background: var(--blue-strong);
}

.split-list {
  display: grid;
  gap: 18px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 58px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.service-detail:first-child {
  padding-top: 0;
  border-top: 0;
}

.service-detail h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.service-detail p {
  margin: 0;
  color: var(--muted);
}

.legal-section {
  background: var(--paper);
}

.legal-content {
  max-width: 920px;
}

.legal-updated {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 760;
}

.legal-card {
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.legal-card h2 {
  margin: 30px 0 10px;
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 850;
  line-height: 1.18;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  margin: 22px 0 8px;
  color: #293447;
  font-size: 1.04rem;
  font-weight: 850;
}

.legal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.legal-card a,
.legal-note a {
  color: var(--indigo);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-card a:hover,
.legal-card a:focus-visible,
.legal-note a:hover,
.legal-note a:focus-visible {
  color: var(--blue-strong);
  outline: none;
}

.legal-note {
  margin: 22px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--blue-strong);
  background: #eef5fb;
  color: #3e4c61;
  font-weight: 760;
  line-height: 1.55;
}

.site-map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 30px;
}

.site-map-grid:last-child {
  margin-bottom: 0;
}

.site-map-grid a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7fafc;
  text-decoration: none;
}

.services-overview {
  padding: 72px 0;
  background: var(--paper);
}

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

.service-jump-card {
  min-height: 248px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 253, 0.96)),
    linear-gradient(rgba(52, 127, 169, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 127, 169, 0.1) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
  box-shadow: var(--shadow-sm);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.service-jump-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--indigo), var(--blue));
}

.service-jump-card::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 28px;
  width: 36px;
  height: 36px;
  border-top: 2px solid var(--blue-strong);
  border-right: 2px solid var(--blue-strong);
  opacity: 0.52;
}

.service-jump-card:hover,
.service-jump-card:focus-visible {
  transform: translateY(-2px);
  border-color: #bdd0df;
  box-shadow: 0 18px 42px rgba(23, 32, 51, 0.11);
  outline: none;
}

.service-jump-card-alt::before {
  background: linear-gradient(90deg, var(--blue-strong), var(--indigo-soft));
}

.service-jump-card h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 850;
  line-height: 1.1;
}

.service-jump-card p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.service-department {
  scroll-margin-top: 96px;
  padding: 96px 0;
}

.service-department-civil {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-department-survey {
  background:
    linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
}

.department-header {
  max-width: 1120px;
  margin-bottom: 42px;
}

.department-header h2 {
  max-width: 820px;
  margin: 8px 0 18px;
  color: var(--ink);
  font-size: 2.75rem;
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
}

.department-header p {
  max-width: 1120px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.78;
  text-align: justify;
  text-align-last: left;
}

.department-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 0;
}

.department-showcase-reverse {
  grid-template-columns: 1fr;
}

.department-showcase-reverse .department-visual {
  order: 0;
}

.department-visual {
  min-height: 460px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.department-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0.42));
}

.department-visual-civil {
  background:
    linear-gradient(rgba(17, 24, 39, 0.06), rgba(17, 24, 39, 0.06)),
    url("/assets/images/service-civil-engineering-work.jpg") center / cover no-repeat;
}

.department-visual-survey {
  background:
    linear-gradient(rgba(17, 24, 39, 0.06), rgba(17, 24, 39, 0.06)),
    url("/images/hero/roadway-infrastructure.jpg") center / cover no-repeat;
}

.visual-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 440px;
  padding: 17px 18px;
  border-left: 4px solid var(--blue);
  background: rgba(255, 255, 255, 0.93);
  color: #263244;
  font-weight: 850;
  line-height: 1.35;
}

.department-capabilities {
  scroll-margin-top: 132px;
  position: relative;
  overflow: visible;
  display: grid;
  align-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.department-capabilities::before {
  content: none;
}

.department-capabilities h3 {
  position: relative;
  margin: 0 0 22px;
  color: var(--indigo);
  font-size: 1.36rem;
  font-weight: 850;
  line-height: 1.15;
}

.capability-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-list li {
  min-height: 76px;
  scroll-margin-top: 132px;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 18px 54px 17px 62px;
  border: 1px solid #cfdeea;
  border-left: 3px solid transparent;
  border-radius: calc(var(--radius) - 2px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 253, 0.98));
  color: #2e3a4c;
  font-size: 0.96rem;
  font-weight: 760;
  line-height: 1.3;
  box-shadow: 0 10px 24px rgba(23, 32, 51, 0.055);
  outline: none;
  transition:
    border-color 180ms ease,
    border-left-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.capability-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(52, 127, 169, 0.28);
  border-radius: 4px;
  background:
    linear-gradient(135deg, var(--blue-strong) 0 48%, transparent 49%),
    rgba(119, 189, 232, 0.12);
  box-shadow: inset 0 0 0 3px #ffffff;
}

.capability-list li::after {
  content: "+";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(92, 125, 153, 0.22);
  border-radius: calc(var(--radius) - 3px);
  background: rgba(255, 255, 255, 0.82);
  color: #4f6f8d;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.capability-list-survey li::before {
  border-color: rgba(59, 52, 124, 0.28);
  background:
    linear-gradient(135deg, var(--indigo-soft) 0 48%, transparent 49%),
    rgba(59, 52, 124, 0.09);
}

.capability-title {
  display: block;
  color: #17243a;
  font-weight: 850;
}

.capability-description {
  display: block;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding-top: 0;
  border-top: 1px solid transparent;
  color: #526174;
  font-size: 0.91rem;
  font-weight: 560;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    max-height 240ms ease,
    margin-top 180ms ease,
    padding-top 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.capability-list li:hover,
.capability-list li:focus-visible,
.capability-list li:focus-within {
  transform: translateY(-3px);
  border-color: #9ec0d8;
  border-left-color: var(--blue-strong);
  background:
    linear-gradient(135deg, #ffffff, #f5faff);
  box-shadow: 0 18px 42px rgba(23, 32, 51, 0.12);
}

.capability-list li:hover::before,
.capability-list li:focus-visible::before,
.capability-list li:focus-within::before {
  border-color: rgba(52, 127, 169, 0.52);
  background:
    linear-gradient(135deg, var(--indigo), var(--blue-strong));
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.88);
}

.capability-list li:hover::after,
.capability-list li:focus-visible::after,
.capability-list li:focus-within::after {
  transform: rotate(45deg);
  border-color: rgba(52, 127, 169, 0.34);
  background: rgba(119, 189, 232, 0.14);
  color: var(--blue-strong);
}

.capability-list li:hover .capability-description,
.capability-list li:focus-visible .capability-description,
.capability-list li:focus-within .capability-description {
  max-height: 520px;
  margin-top: 12px;
  padding-top: 12px;
  border-top-color: rgba(119, 189, 232, 0.24);
  opacity: 1;
  transform: translateY(0);
}

.service-closing-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}

.service-market-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.service-market-heading {
  position: sticky;
  top: 112px;
}

.service-market-heading h2 {
  margin: 10px 0 16px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 850;
  line-height: 1.06;
  letter-spacing: 0;
}

.service-market-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

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

.service-market-card {
  min-height: 220px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  padding: 24px;
  border: 1px solid #d5e0ea;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(119, 189, 232, 0.13), transparent 38%),
    linear-gradient(180deg, #ffffff, #f8fbfd);
  box-shadow: 0 14px 34px rgba(23, 32, 51, 0.075);
}

.service-market-card::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 24px;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--indigo), var(--blue-strong));
}

.service-market-card span {
  margin-bottom: 10px;
  color: var(--blue-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-market-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 850;
  line-height: 1.18;
}

.service-market-card p {
  margin: 0;
  color: #4f5d70;
  line-height: 1.58;
}

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

.field {
  display: grid;
  gap: 7px;
}

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

.field label {
  color: #273142;
  font-size: 0.86rem;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfd8e5;
  border-radius: var(--radius);
  background: var(--white);
  padding: 11px 12px;
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-strong);
  box-shadow: 0 0 0 3px rgba(119, 189, 232, 0.22);
  outline: none;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.map-placeholder {
  min-height: 280px;
  display: grid;
  place-items: center;
  border: 1px solid #cfd8e5;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(36, 33, 95, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 33, 95, 0.08) 1px, transparent 1px),
    #f2f6fa;
  background-size: 26px 26px;
  color: #3b4656;
  font-weight: 850;
}

.why-civilone-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 116px) 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 36, 0.96) 0%, rgba(23, 32, 51, 0.88) 52%, rgba(36, 33, 95, 0.82) 100%),
    url("/assets/images/service-civil-engineering-work.jpg") center / cover no-repeat;
  color: var(--white);
}

.why-civilone-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent 76%);
  pointer-events: none;
}

.why-civilone-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.why-civilone-hero h1 {
  max-width: 760px;
  margin: 18px 0;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.98;
}

.why-civilone-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
  line-height: 1.75;
}

.why-civilone-hero-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: #172033;
  box-shadow: 0 28px 70px rgba(6, 12, 22, 0.34);
}

.why-civilone-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.74;
}

.why-civilone-hero-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 22px 24px;
  border-left: 4px solid var(--blue);
  background: rgba(255, 255, 255, 0.93);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(6, 12, 22, 0.18);
}

.why-civilone-hero-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--indigo);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.why-civilone-hero-card strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.35;
}

.why-intro-section {
  background:
    linear-gradient(90deg, rgba(52, 127, 169, 0.09) 0 1px, transparent 1px),
    linear-gradient(rgba(52, 127, 169, 0.07) 0 1px, transparent 1px),
    var(--white);
  background-size: 42px 42px;
}

.why-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: start;
}

.why-intro-grid h2 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.why-intro-copy {
  padding-top: 10px;
}

.why-intro-copy p {
  margin: 0;
  color: #3f4a5b;
  font-size: 1.12rem;
  line-height: 1.85;
}

.why-intro-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.why-intro-points span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid #d5e0eb;
  border-left: 4px solid var(--blue);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-weight: 850;
}

.why-mission-section {
  position: relative;
  overflow: hidden;
  background: #f3f6f9;
}

.why-mission-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0 58%, rgba(36, 33, 95, 0.08) 58% 62%, transparent 62%);
  pointer-events: none;
}

.purpose-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 48px);
}

.purpose-panel {
  position: relative;
  min-height: 0;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid #d4deea;
  border-left: 4px solid var(--blue-strong);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(23, 32, 51, 0.07);
}

.purpose-panel::before {
  content: none;
}

.vision-panel {
  margin-top: 0;
  border-left-color: var(--indigo-soft);
  background: #f7fafc;
  color: var(--ink);
}

.purpose-panel h2 {
  margin: 0 0 18px;
  color: inherit;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1.08;
}

.purpose-panel p {
  margin: 0;
  color: #4a5667;
  font-size: 1.05rem;
  line-height: 1.75;
}

.vision-panel p {
  color: #4a5667;
}

.purpose-panel p + p {
  margin-top: 18px;
}

.right-section {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 9vw, 126px) 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #101722;
  background-size: 56px 56px;
  color: var(--white);
}

.right-section::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  top: 68px;
  border: 1px solid rgba(119, 192, 231, 0.26);
  transform: rotate(45deg);
  pointer-events: none;
}

.right-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.right-word {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 10px;
}

.right-word span {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 4.3rem;
  font-weight: 900;
  line-height: 1;
}

.right-word span:nth-child(even) {
  margin-left: 60px;
  border-color: rgba(119, 192, 231, 0.4);
  color: var(--blue);
}

.right-content h2 {
  margin: 16px 0 18px;
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
}

.right-lead {
  max-width: 800px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.13rem;
  line-height: 1.8;
}

.right-values {
  display: grid;
  gap: 14px;
}

.right-value {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding: 38px 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 6px solid var(--blue);
  background: rgba(255, 255, 255, 0.07);
}

.right-letter {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 2px solid rgba(119, 192, 231, 0.66);
  border-radius: 50%;
  background: rgba(119, 192, 231, 0.14);
  color: var(--blue);
  font-size: 2.8rem;
  font-weight: 900;
}

.right-value h3 {
  margin: 18px 0 10px;
  color: var(--white);
  font-size: 2rem;
}

.right-value p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.12rem;
  line-height: 1.65;
}

.right-closing {
  margin: 28px 0 0;
  padding: 22px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  font-weight: 750;
  line-height: 1.6;
}

.why-civilone-cta {
  background:
    linear-gradient(135deg, rgba(36, 33, 95, 0.94), rgba(52, 127, 169, 0.82)),
    url("/assets/images/project-drainage.jpg") center / cover no-repeat;
}

.career-hero,
.ma-hero {
  background:
    linear-gradient(90deg, rgba(15, 23, 36, 0.94), rgba(23, 32, 51, 0.76)),
    var(--page-hero-image, url("/assets/images/hero-civil-engineering.jpg")) center / cover no-repeat;
}

.ma-hero {
  background:
    linear-gradient(90deg, rgba(15, 23, 36, 0.94), rgba(36, 33, 95, 0.72)),
    var(--page-hero-image, url("/assets/images/project-infrastructure.jpg")) center / cover no-repeat;
}

.feature-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow-sm);
}

.feature-ribbon-grid article {
  min-height: 180px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: 28px;
  background: var(--white);
}

.feature-ribbon-grid span,
.route-label {
  color: var(--blue-strong);
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-ribbon-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.3;
}

.about-support-list,
.career-standard-list {
  display: grid;
  gap: 18px;
}

.about-support-list article,
.career-standard-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.about-support-list article:first-child,
.career-standard-list article:first-child {
  border-top: 0;
  padding-top: 0;
}

.about-support-list h3,
.career-standard-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.28;
}

.about-support-list p,
.career-standard-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.career-work-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.career-work-notes {
  display: grid;
  gap: 18px;
}

.career-work-notes article {
  padding: 0 0 0 22px;
  border-left: 4px solid var(--blue-strong);
}

.career-work-notes article:nth-child(even) {
  border-left-color: var(--indigo-soft);
}

.career-work-notes h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.25;
}

.career-work-notes p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.proposal-note-list {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.proposal-note-list article {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.proposal-note-list h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.3;
}

.proposal-note-list p {
  margin: 0;
  color: var(--muted);
}

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

.faq-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 32, 51, 0.06);
}

.faq-grid h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.35;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
}

.media-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.video-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(119, 189, 232, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, #172033, #24215f);
  background-size: 28px 28px, 28px 28px, auto;
  color: var(--white);
  box-shadow: var(--shadow);
}

.video-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  text-transform: uppercase;
}

.job-filter-panel {
  display: grid;
  grid-template-columns: 0.7fr minmax(240px, 1fr) 0.7fr minmax(220px, 0.8fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.job-filter-panel label {
  color: var(--ink);
  font-weight: 850;
}

.job-filter-panel input,
.job-filter-panel select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
}

.job-listing-stack {
  display: grid;
  gap: 16px;
}

.job-listing-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 32, 51, 0.06);
}

.job-listing-card h2 {
  margin: 4px 0 8px;
  color: var(--ink);
  font-size: 1.35rem;
}

.job-listing-card p {
  margin: 0;
  color: var(--muted);
}

.route-card {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.route-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.45rem;
}

.article-hero {
  background:
    linear-gradient(90deg, rgba(15, 23, 36, 0.94), rgba(36, 33, 95, 0.72)),
    var(--page-hero-image, url("/assets/images/project-infrastructure.jpg")) center / cover no-repeat;
}

@media (prefers-reduced-motion: no-preference) {
  .has-page-scroll-effects .page-scroll-reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity 620ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
  }

  .has-page-scroll-effects .page-scroll-reveal.is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.article-kicker {
  max-width: none !important;
  margin: 12px 0 0 !important;
  color: var(--blue) !important;
  font-size: 0.88rem !important;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.article-content {
  max-width: 820px;
}

.article-content p {
  margin: 0 0 22px;
  color: #3f4a5b;
  font-size: 1.06rem;
  line-height: 1.82;
}

.article-content h2 {
  margin: 40px 0 14px;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1.2;
}

.article-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
}

.article-facts {
  display: grid;
  gap: 14px;
  margin: 0;
}

.article-facts div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.article-facts div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.article-facts dt {
  color: var(--blue-strong);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-facts dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.35;
}

.site-footer {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  color: #4e5b6d;
  padding: 0;
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 62px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(150px, 0.95fr) minmax(165px, 0.95fr) minmax(230px, 1.35fr) minmax(160px, 0.92fr) minmax(130px, 0.72fr) minmax(160px, 0.86fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: start;
}

.footer-brand .brand {
  width: fit-content;
  margin-bottom: 24px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-column h3 {
  margin: 0 0 18px;
  color: var(--indigo);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid #d3deea;
  border-radius: 50%;
  background: #f6f9fc;
  color: var(--indigo);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.footer-social svg {
  width: 30px;
  height: 30px;
  display: block;
  fill: currentColor;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: var(--blue);
  background: var(--blue);
  color: #101722;
  outline: none;
}

.footer-contact address {
  display: grid;
  gap: 7px;
  color: #526174;
  font-style: normal;
  line-height: 1.45;
}

.footer-contact strong {
  color: var(--ink);
  font-weight: 850;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: #445267;
  line-height: 1.28;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--indigo);
  text-decoration: underline;
  text-underline-offset: 4px;
  outline: none;
}

.footer-cta-column {
  display: flex;
  align-items: flex-start;
  min-width: 190px;
}

.footer-cta-stack {
  width: 100%;
  max-width: 220px;
  display: grid;
  gap: 10px;
}

.footer-cta-box {
  min-height: 48px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid #d5e0eb;
  border-radius: 10px;
  background: #ffffff;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.footer-cta-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.footer-cta-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.footer-cta-primary {
  border-color: rgba(119, 189, 232, 0.92);
  background: linear-gradient(135deg, var(--blue), #9bd5f2);
  color: #0f1724;
  box-shadow: 0 14px 30px rgba(119, 189, 232, 0.18);
}

.footer-cta-secondary {
  background: #f7fafc;
}

.footer-cta-phone {
  border-color: rgba(52, 127, 169, 0.28);
  background: #f7fbfe;
  color: var(--indigo);
}

.footer-cta-box:hover,
.footer-cta-box:focus-visible {
  transform: translateY(-1px);
  outline: 2px solid rgba(119, 189, 232, 0.72);
  outline-offset: 3px;
}

.footer-cta-primary:hover,
.footer-cta-primary:focus-visible {
  border-color: var(--indigo);
  background: var(--indigo);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(36, 33, 95, 0.18);
}

.footer-cta-secondary:hover,
.footer-cta-secondary:focus-visible {
  border-color: rgba(119, 189, 232, 0.72);
  background: #eef8fe;
  color: var(--indigo);
}

.footer-cta-phone:hover,
.footer-cta-phone:focus-visible {
  border-color: var(--blue);
  background: #eef8fe;
  color: var(--blue-strong);
}

.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
  color: #667386;
  font-size: 0.9rem;
}

.footer-legal a {
  color: #445267;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--indigo);
  text-decoration: underline;
  text-underline-offset: 4px;
  outline: none;
}

.footer-legal span {
  color: #b1becc;
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #667386;
  font-size: 0.9rem;
}

.footer-copyright {
  white-space: nowrap;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

  .about-values-compact {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-header {
    padding-block: 6px;
  }

  .nav-wrap {
    width: var(--container);
    height: 76px;
    gap: 12px;
  }

  .brand-logo {
    width: 132px;
    max-height: 58px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
    padding: 14px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav {
    display: grid;
    gap: 4px;
  }

  .nav-link,
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    margin: 4px 0 8px;
    border-top-width: 1px;
    box-shadow: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown::after {
    display: none;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.is-open .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    display: block;
  }

  .nav-actions .button {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 580px;
    height: auto;
    max-height: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 56px 0 44px;
  }

  .market-showcase-section > .container {
    width: var(--container);
    max-width: 1180px;
  }

  .market-showcase-heading {
    width: 100%;
  }

  .market-showcase-layout {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-left: 0;
  }

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

  .market-tab {
    font-size: 1.18rem;
  }

  .market-track {
    height: 510px;
  }

  .market-panel {
    width: min(720px, calc(100% - 96px));
    height: 450px;
  }

  .testimonials-wrap {
    max-width: 660px;
    margin: 0 auto;
    padding: 0 62px;
  }

  .testimonial-viewport {
    overflow: hidden;
    margin-top: -38px;
    padding: 38px 2px 10px;
  }

  .testimonial-grid {
    display: flex;
    gap: 0;
    max-width: none;
    margin: 0;
    transform: translateX(0);
    transition: transform 620ms cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .testimonial-card {
    min-height: 360px;
    flex: 0 0 100%;
  }

  .testimonial-card-featured {
    min-height: 360px;
    transform: none;
  }

  .testimonial-arrow {
    width: 46px;
    height: 46px;
    display: grid;
    font-size: 2.45rem;
  }

  .testimonial-arrow-prev {
    left: 0;
  }

  .testimonial-arrow-next {
    right: 0;
  }

  .project-slide {
    flex-basis: clamp(360px, 44vw, 470px);
    min-height: 470px;
  }

  .card-grid,
  .card-grid.two,
  .job-grid,
  .principal-grid,
  .project-listing-grid,
  .feature-ribbon-grid,
  .faq-grid,
  .steps,
  .project-flow,
  .market-list,
  .stat-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-grid,
  .value-beyond-grid,
  .service-detail,
  .service-market-layout,
  .department-showcase,
  .department-showcase-reverse,
  .career-work-grid,
  .page-intro,
  .article-layout,
  .media-feature,
  .proposal-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service-market-heading {
    position: static;
  }

  .why-civilone-hero-grid,
  .why-intro-grid,
  .why-image-story-grid,
  .right-shell {
    grid-template-columns: 1fr;
  }

  .why-civilone-hero-visual {
    min-height: 380px;
  }

  .right-word {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .right-word span,
  .right-word span:nth-child(even) {
    width: 72px;
    height: 72px;
    margin-left: 0;
    font-size: 2.8rem;
  }

  .right-values-panel {
    padding: 0;
  }

  .right-value-card {
    grid-template-columns: 84px minmax(0, 1fr);
    grid-column: auto;
    gap: 22px;
    padding: 26px 0 28px;
  }

  .right-value-letter {
    width: 72px;
    height: 72px;
    font-size: 2rem;
  }

  .right-value-card h3 {
    margin-top: 16px;
    font-size: 1.6rem;
  }

  .right-value-card p {
    font-size: 0.88rem;
  }

  .department-showcase-reverse .department-visual {
    order: 0;
  }

  .news-card.featured {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .job-filter-panel {
    grid-template-columns: 1fr 1fr;
  }

  .job-listing-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .project-flow::before {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(calc(100% - 32px), 1180px);
  }

  .site-header {
    padding-block: 0;
  }

  body {
    font-size: 15px;
  }

  .project-flow-item {
    min-height: 0;
  }

  .project-flow-item p {
    max-height: none;
    opacity: 1;
    transform: none;
  }

  .about-values-facts {
    grid-template-columns: 1fr;
  }

  .container,
  .hero-inner,
  .footer-inner {
    width: calc(100vw - 32px) !important;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content,
  .section-grid > *,
  .about-values-copy,
  .value-beyond-copy,
  .hero p,
  .lead,
  .section-title {
    max-width: 100%;
  }

  .mobile-break {
    display: block;
  }

  .brand-logo {
    width: 102px;
  }

  .brand-fallback {
    font-size: 1.45rem;
  }

  .nav-wrap {
    height: 68px;
    gap: 8px;
  }

  .nav-actions {
    gap: 8px;
  }

  .site-nav {
    max-height: calc(100vh - 68px);
  }

  .nav-cta {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.66rem;
  }

  .hero {
    min-height: auto;
    height: auto;
  }

  .hero-inner {
    padding: 58px 0 126px;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(3.35rem, 18vw, 6rem);
    line-height: 0.88;
    overflow-wrap: break-word;
  }

  .organization-carousel-section {
    padding: 44px 0 48px;
  }

  .organization-carousel-header {
    margin-bottom: 20px;
  }

  .organization-carousel-header h2 {
    font-size: 1.9rem;
  }

  .organization-logo-card {
    width: 172px;
    height: 96px;
    padding: 18px;
  }

  .organization-logo-card img {
    max-height: 58px;
  }

  .organization-logo-card-creda {
    padding: 12px;
  }

  .organization-logo-card-creda img {
    max-height: 72px;
  }

  .community-organization-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .community-organization-logo {
    min-height: 132px;
  }

  .community-organization-logo img {
    max-height: 82px;
  }

  .hero p,
  .page-hero p,
  .lead {
    font-size: 1rem;
  }

  .hero-actions,
  .section-actions {
    margin-top: 24px;
  }

  .hero-actions .button {
    width: min(100%, 300px);
    min-width: 0;
  }

  .hero-service-strip-inner {
    min-height: 0;
    padding: 18px 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 9px 14px;
    font-size: 0.62rem;
  }

  .hero-service-strip-inner span + span::before {
    margin-right: 14px;
  }

  .card-grid,
  .card-grid.two,
  .job-grid,
  .principal-grid,
  .project-listing-grid,
  .feature-ribbon-grid,
  .faq-grid,
  .steps,
  .project-flow,
  .market-list,
  .service-market-grid,
  .stat-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .why-civilone-hero {
    padding: 58px 0;
  }

  .why-civilone-hero h1 {
    font-size: 3rem;
  }

  .why-civilone-hero p,
  .why-intro-copy p,
  .right-lead {
    font-size: 1rem;
  }

  .why-civilone-hero-visual {
    min-height: 310px;
  }

  .why-civilone-hero-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px;
  }

  .why-intro-points,
  .purpose-grid {
    grid-template-columns: 1fr;
  }

  .about-support-list article,
  .career-standard-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .purpose-panel {
    min-height: 0;
  }

  .vision-panel {
    margin-top: 0;
  }

  .right-value {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 22px;
    padding: 28px 22px;
  }

  .right-letter {
    width: 72px;
    height: 72px;
    font-size: 2.15rem;
  }

  .right-value h3 {
    margin-top: 16px;
    font-size: 1.6rem;
  }

  .right-word span,
  .right-word span:nth-child(even) {
    width: 54px;
    height: 54px;
    font-size: 2.05rem;
  }

  .section {
    padding: 64px 0;
  }

  .history-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .history-card,
  .history-card:first-child {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .history-card:first-child {
    border-top: 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .section-title,
  .cta h2 {
    font-size: 2rem;
  }

  .blueprint-panel {
    min-height: 320px;
    padding: 28px;
  }

  .blueprint-panel::before {
    inset: 22px;
  }

  .blueprint-panel::after {
    right: 28px;
    top: 42px;
    width: 120px;
    height: 70px;
  }

  .cta {
    padding: 62px 0;
  }

  .cta .container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .homepage-cta .container,
  .final-homepage-cta .container {
    grid-template-columns: 1fr;
  }

  .homepage-cta-actions {
    max-width: 520px;
  }

  .inline-home-cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .inline-home-cta-actions {
    grid-template-columns: 1fr;
    width: min(100%, 360px);
  }

  .page-hero {
    padding: 72px 0 58px;
  }

  .market-showcase-section {
    padding: 58px 0 68px;
  }

  .market-showcase-heading {
    margin-bottom: 28px;
  }

  .company-news-section {
    padding: 62px 0 68px;
  }

  .company-news-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-section {
    padding: 58px 0 66px;
  }

  .testimonials-heading {
    margin-bottom: 46px;
  }

  .testimonial-grid {
    gap: 0;
  }

  .testimonial-card,
  .testimonial-card-featured {
    padding: 46px 22px 30px;
  }

  .testimonial-card p {
    font-size: 0.98rem;
  }

  .testimonial-avatar {
    width: 64px;
    height: 64px;
  }

  .testimonials-wrap {
    padding: 0 0 64px;
  }

  .testimonial-arrow {
    top: auto;
    bottom: 0;
    transform: none;
  }

  .testimonial-arrow-prev {
    left: calc(50% - 56px);
  }

  .testimonial-arrow-next {
    right: calc(50% - 56px);
  }

  .market-showcase-layout {
    gap: 24px;
  }

  .market-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .market-tab {
    width: 100%;
    min-height: 54px;
    padding: 10px 12px;
    border: 1px solid rgba(84, 148, 187, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    font-size: 0.98rem;
    box-shadow: 0 12px 24px rgba(16, 32, 52, 0.06);
  }

  .market-tab:hover,
  .market-tab:focus-visible,
  .market-tab.is-active {
    transform: none;
  }

  .market-tab.is-active::before {
    width: 18px;
    margin-right: 8px;
  }

  .market-stage {
    overflow: visible;
    padding: 0;
  }

  .market-stage::before {
    display: none;
  }

  .market-track {
    height: auto;
  }

  .market-panel,
  .market-panel.is-active,
  .market-panel.is-next,
  .market-panel.is-previous,
  .market-panel.is-far {
    display: none;
    width: 100%;
    height: auto;
    position: relative;
    left: auto;
    top: auto;
    opacity: 1;
    filter: none;
    pointer-events: none;
    transform: none;
    transition: none;
  }

  .market-panel.is-active {
    display: block;
    pointer-events: auto;
  }

  .market-panel-image {
    height: 320px;
  }

  .market-panel-card {
    width: calc(100% - 28px);
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -34px auto 0;
    padding: 22px;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .market-panel-card h3 {
    font-size: 1.45rem;
  }

  .project-carousel-section {
    padding: 48px 0 58px;
  }

  .project-carousel-heading {
    margin-bottom: 28px;
    padding-inline: 16px;
  }

  .project-carousel-track {
    gap: 16px;
    padding: 0 0 6px;
  }

  .project-slide {
    flex-basis: min(82vw, 360px);
    min-height: 430px;
  }

  .project-slide-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .project-slide-content h3 {
    font-size: 1.25rem;
  }

  .carousel-control {
    width: 38px;
    height: 50px;
    font-size: 3rem;
    background: rgba(17, 24, 39, 0.45);
  }

  .carousel-control-prev {
    left: 8px;
  }

  .carousel-control-next {
    right: 8px;
  }

  .project-carousel-actions {
    margin-top: 28px;
  }

  .services-overview,
  .service-department {
    padding: 58px 0;
  }

  .services-jump-grid,
  .capability-list {
    grid-template-columns: 1fr;
  }

  .service-jump-card,
  .department-capabilities,
  .value-beyond-card,
  .feature-ribbon-grid article,
  .project-flow-item,
  .job-listing-card {
    padding: 22px;
  }

  .service-jump-card {
    min-height: 220px;
  }

  .department-capabilities {
    padding: 0;
  }

  .department-header {
    margin-bottom: 30px;
  }

  .department-header h2 {
    font-size: 2rem;
  }

  .department-header p {
    font-size: 1rem;
    text-align: left;
  }

  .department-visual {
    min-height: 300px;
  }

  .capability-list li {
    padding: 16px 18px 16px 58px;
  }

  .capability-list li::after {
    display: none;
  }

  .capability-description {
    max-height: none;
    margin-top: 10px;
    padding-top: 10px;
    border-top-color: rgba(119, 189, 232, 0.24);
    opacity: 1;
    transform: none;
  }

  .capability-list li:hover .capability-description,
  .capability-list li:focus-visible .capability-description,
  .capability-list li:focus-within .capability-description {
    max-height: none;
  }

  .visual-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .service-card,
  .value-card,
  .news-card,
  .contact-card,
  .step,
  .project-body {
    padding: 22px;
  }

  .page-intro h2,
  .form-card .section-title {
    font-size: 1.75rem;
  }

  .feature-row,
  .career-role {
    grid-template-columns: 1fr;
  }

  .content-panel,
  .contact-card.form-card {
    padding: 22px;
  }

  .news-image {
    margin: -22px -22px 22px;
  }

  .company-news-card {
    grid-template-columns: 1fr;
  }

  .company-news-visual {
    min-height: 96px;
  }

  .company-news-visual::before {
    inset: 22px 28px auto auto;
    width: 160px;
    height: 54px;
  }

  .company-news-body {
    padding: 22px;
  }

  .news-card.featured .news-image {
    min-height: 220px;
  }

  .news-card.featured .news-body {
    padding: 22px;
  }

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

  .video-placeholder {
    min-height: 260px;
  }

  .principal-card-featured {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: clamp(24px, 7vw, 32px);
  }

  .principal-photo-portrait {
    width: min(100%, 250px);
    min-height: 0;
    justify-self: center;
  }

  .job-filter-panel {
    grid-template-columns: 1fr;
  }

  .service-detail {
    padding: 30px 0;
  }

  .service-detail h2 {
    font-size: 1.55rem;
  }

  .site-map-grid {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .footer-cta-column {
    min-width: 0;
  }

  .footer-cta-stack {
    max-width: none;
  }

  .footer-legal span {
    display: inline;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .footer-copyright {
    white-space: normal;
  }
}

body:has(.homepage-cta) #main-content {
  display: flex;
  flex-direction: column;
}

body:has(.homepage-cta) #main-content > .hero {
  order: 10;
}

body:has(.homepage-cta) #main-content > .section:has(.foundation-visual) {
  order: 20;
}

body:has(.homepage-cta) #main-content > .about-values-section {
  order: 60;
}

body:has(.homepage-cta) #main-content > .inline-home-cta {
  order: 65;
}

body:has(.homepage-cta) #main-content > .market-showcase-section {
  order: 30;
}

body:has(.homepage-cta) #main-content > .section:has(.service-capability-grid) {
  order: 40;
}

body:has(.homepage-cta) #main-content > .section:has(.project-flow) {
  order: 50;
}

body:has(.homepage-cta) #main-content > .company-news-section {
  order: 90;
}

body:has(.homepage-cta) #main-content > .organization-carousel-section {
  order: 100;
}

body:has(.homepage-cta) #main-content > .testimonials-section {
  order: 70;
}

body:has(.homepage-cta) #main-content > .homepage-cta {
  order: 80;
}

body:has(.homepage-cta) #main-content > .final-homepage-cta {
  order: 110;
}
