:root {
  --jade: #00c868;
  --jade-dark: #00a957;
  --vblue: #355fa8;
  --vblue-dark: #244a88;
  --sun: #ffb000;
  --ink: #0a1018;
  --muted: #5a6876;
  --line: rgba(10, 16, 24, 0.1);
  --paper: #f5f8f6;
  --white: #fff;
  --radius-lg: 34px;
  --radius-md: 22px;
  --shadow: 0 24px 70px rgba(10, 16, 24, 0.09);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::selection {
  color: #fff;
  background: var(--jade);
}

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

a {
  color: inherit;
}

button,
summary {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.narrow-shell {
  width: min(920px, calc(100% - 48px));
}

.section {
  position: relative;
  padding: 112px 0;
}

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

.section-dark {
  color: #fff;
  background: #101922;
}

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

.section-heading.centered {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.team-copy h2,
.calculator-section h2,
.final-card h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child,
.split-heading > p,
.team-copy > p,
.calculator-section h2 + p,
.final-card > p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.section-heading.centered > p:last-child {
  max-width: 720px;
  margin: 22px auto 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--vblue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.centered .eyebrow {
  justify-content: center;
}

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

.eyebrow-light {
  color: rgba(255, 255, 255, 0.76);
}

.marker {
  position: relative;
  z-index: 0;
  display: inline-block;
  color: var(--jade);
}

.marker::after {
  position: absolute;
  z-index: -1;
  right: -0.03em;
  bottom: 0.06em;
  left: -0.03em;
  height: 0.22em;
  background: currentColor;
  border-radius: 3px;
  opacity: 0.17;
  content: "";
  transform: skewX(-12deg);
}

.marker-blue {
  color: var(--vblue);
}

.primary-cta,
.tool-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 58px;
  padding: 16px 28px;
  color: #fff;
  background: var(--jade);
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(0, 200, 104, 0.23);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.primary-cta span,
.tool-cta span,
.text-link span {
  transition: transform 0.25s ease;
}

.primary-cta:hover,
.primary-cta:focus-visible {
  color: #fff;
  background: var(--vblue);
  box-shadow: 0 18px 40px rgba(53, 95, 168, 0.25);
  transform: translateY(-2px);
}

.primary-cta:hover span,
.primary-cta:focus-visible span,
.tool-cta:hover span,
.tool-cta:focus-visible span,
.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.section-action {
  margin-top: 46px;
  text-align: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  color: var(--vblue);
  font-weight: 800;
  text-decoration-color: rgba(53, 95, 168, 0.35);
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--jade-dark);
}

.text-link-light {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.text-link-light:hover,
.text-link-light:focus-visible {
  color: var(--jade);
}

.menu-symbol {
  color: inherit;
  font-size: 18px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
}

.menu-close {
  width: 44px;
  height: 44px;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.nav-menu-cta {
  width: 100%;
  padding: 17px 22px;
}

/* Hero */
.home-hero {
  position: relative;
  display: grid;
  min-height: 820px;
  height: 100svh;
  max-height: 1020px;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #081119;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 10, 16, 0.87) 0%, rgba(3, 10, 16, 0.59) 47%, rgba(3, 10, 16, 0.22) 100%),
    linear-gradient(180deg, rgba(3, 10, 16, 0.2) 0%, rgba(3, 10, 16, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 118px;
}

.hero-content .eyebrow {
  margin-bottom: 24px;
}

.hero-content .eyebrow::before {
  display: none;
}

.home-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(4.3rem, 9vw, 8.6rem);
  line-height: 0.86;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.home-hero h1 span {
  display: block;
  color: var(--jade);
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.hero-services li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.hero-services li::before {
  width: 7px;
  height: 7px;
  background: var(--jade);
  border-radius: 50%;
  content: "";
}

.scroll-link {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.scroll-link:hover,
.scroll-link:focus-visible {
  color: #fff;
}

/* Solutions */
.solution-carousel {
  display: flex;
  width: 100%;
  gap: 20px;
  margin-left: 0;
  padding: 4px 0 18px 2px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-padding-left: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
  transform: none;
}

.solution-carousel::after {
  flex: 0 0 2px;
  content: "";
}

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

.solution-carousel.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
  user-select: none;
}

.solution-carousel:focus-visible {
  outline: 3px solid rgba(0, 200, 104, 0.34);
  outline-offset: 7px;
  border-radius: var(--radius-md);
}

.solution-card {
  flex: 0 0 clamp(350px, 34vw, 480px);
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: none;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.solution-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.solution-card:hover img {
  transform: scale(1.025);
}

.solution-card-copy {
  position: relative;
  min-height: 168px;
  padding: 30px 32px 32px;
}

.solution-card-copy > span {
  position: absolute;
  top: 34px;
  right: 32px;
  color: var(--jade-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.solution-card h3 {
  margin: 0 52px 12px 0;
  font-size: 1.55rem;
  line-height: 1.15;
}

.solution-card p {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.solution-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 6px;
}

.solution-dots button {
  width: 10px;
  height: 10px;
  margin: 0;
  padding: 0;
  background: rgba(10, 16, 24, 0.2);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.solution-dots button:hover,
.solution-dots button:focus-visible {
  background: var(--vblue);
  outline: none;
  transform: scale(1.25);
}

.solution-dots button.is-active {
  background: var(--jade);
}

/* Process */
.process-section {
  overflow: hidden;
  background: var(--paper);
}

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

.process-grid::before {
  position: absolute;
  top: 25px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: var(--line);
  content: "";
}

.process-grid::after {
  position: absolute;
  z-index: 0;
  top: 24px;
  right: 12.5%;
  left: 12.5%;
  height: 3px;
  background: var(--jade);
  border-radius: 999px;
  content: "";
  pointer-events: none;
  transform: scaleX(var(--process-progress));
  transform-origin: left center;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.process-grid li {
  position: relative;
  padding-top: 78px;
  text-align: center;
}

.process-number {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #fff;
  background: var(--jade);
  border: 7px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 200, 104, 0.18);
  font-size: 0.72rem;
  font-weight: 800;
  transform: translateX(-50%);
}

.process-grid h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* Projects */
.section-dark::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(560px, 60vw);
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 200, 104, 0.16), transparent 65%);
  content: "";
  pointer-events: none;
}

.section-dark .shell {
  position: relative;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
}

.split-heading > p {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.6);
}

.project-gallery {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  grid-template-rows: repeat(2, 250px);
  gap: 18px;
}

.project-gallery figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #27323c;
  border-radius: var(--radius-md);
}

.project-gallery .project-main {
  grid-row: 1 / 3;
}

.project-gallery figure::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(3, 9, 14, 0.86));
  content: "";
}

.project-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-gallery .project-image-hamm {
  object-position: center 58%;
}

.project-gallery figure:hover img {
  transform: scale(1.025);
}

.project-gallery figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}

.project-gallery figcaption strong {
  font-size: 1.15rem;
}

.project-gallery figcaption span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
  text-align: right;
}

/* Prices */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.price-card {
  display: flex;
  width: 100%;
  height: 100%;
  min-width: 0;
  flex-direction: column;
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.price-card-featured {
  color: #fff;
  background: var(--vblue);
  border-color: var(--vblue);
  box-shadow: 0 22px 50px rgba(53, 95, 168, 0.2);
  transform: none;
}

.price-kicker {
  margin: 0 0 8px;
  color: var(--vblue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.price-card-featured .price-kicker {
  color: rgba(255, 255, 255, 0.66);
}

.price-card h3 {
  margin: 0;
  font-size: 1.4rem;
}

.price {
  margin: 26px 0;
  font-family: "Anton", sans-serif !important;
  font-size: clamp(3.4rem, 5vw, 4.8rem);
  line-height: 0.92;
}

.price small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: "DM Sans", sans-serif !important;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card-featured .price small {
  color: rgba(255, 255, 255, 0.58);
}

.price span {
  color: var(--jade);
  font-size: 0.55em;
}

.price-request {
  display: flex;
  min-height: 76px;
  align-items: end;
  font-family: "DM Sans", sans-serif !important;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.price-card ul,
.comparison-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card ul {
  margin-top: auto;
}

.price-card li,
.comparison-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.price-card li::before,
.comparison-card li::before {
  position: absolute;
  left: 0;
  color: var(--jade);
  font-weight: 800;
  content: "✓";
}

.price-card-featured li {
  color: rgba(255, 255, 255, 0.76);
}

.price-note {
  display: inline;
  margin-left: 20px;
  color: var(--muted);
  font-size: 0.78rem;
}

/* Comparison */
.comparison-section {
  background: var(--paper);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.comparison-card {
  padding: clamp(30px, 5vw, 52px);
  border-radius: var(--radius-lg);
}

.comparison-label {
  margin: 0 0 22px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.comparison-card h3 {
  margin: 0 0 34px;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.muted-card {
  background: #e9eeeb;
  border: 1px solid var(--line);
}

.muted-card .comparison-label {
  color: var(--muted);
}

.muted-card li::before {
  color: #9da7a2;
  content: "–";
}

.veridara-card {
  color: #fff;
  background: #101922;
  box-shadow: var(--shadow);
}

.veridara-card .comparison-label,
.veridara-card li::before {
  color: var(--jade);
}

.veridara-card li {
  color: rgba(255, 255, 255, 0.72);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(44px, 4vw, 60px);
  align-items: center;
}

.team-image-wrap {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 16px 36px rgba(10, 16, 24, 0.1);
}

.team-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team-copy > p {
  max-width: 620px;
  margin: 28px 0 0;
}

.team-copy h2 {
  max-width: 680px;
  font-size: clamp(2.7rem, 3.6vw, 3.65rem);
  line-height: 1.03;
}

.team-copy h2 .marker {
  display: block;
  width: max-content;
  max-width: 100%;
}

.team-benefits {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.team-benefits li {
  position: relative;
  padding-left: 42px;
  color: #27313c;
  font-size: 1rem;
  line-height: 1.45;
}

.team-benefits li::before {
  position: absolute;
  top: -0.08em;
  left: 2px;
  color: var(--jade);
  content: "✓";
  font-size: 1.45rem;
  font-weight: 800;
}

.team-copy .team-cta {
  margin-top: 34px;
  color: var(--jade-dark);
  text-decoration-color: rgba(0, 169, 87, 0.38);
}

.team-copy .team-cta:hover,
.team-copy .team-cta:focus-visible {
  color: var(--vblue);
}

@media (min-width: 781px) {
  .team-copy h2 {
    white-space: nowrap;
  }
}

/* Calculator */
.calculator-section {
  overflow: hidden;
  color: #fff;
  background: var(--vblue);
}

.calculator-section::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(0, 200, 104, 0.35), transparent 23%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.07), transparent 45%);
  content: "";
}

.calculator-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  gap: 80px;
  align-items: center;
}

.calculator-section h2 span {
  color: var(--jade);
}

.calculator-section h2 + p {
  max-width: 650px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.68);
}

.tool-cta {
  background: #fff;
  color: var(--vblue);
  box-shadow: 0 16px 38px rgba(13, 31, 63, 0.19);
}

.tool-cta:hover,
.tool-cta:focus-visible {
  color: #fff;
  background: var(--jade);
  box-shadow: 0 18px 42px rgba(0, 200, 104, 0.24);
  transform: translateY(-2px);
}

.calculator-visual {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 40px;
  overflow: hidden;
  background: #17367f;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 58px rgba(17, 36, 73, 0.24);
}

.calculator-visual::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 37, 102, 0.38), transparent 72%);
  content: "";
  pointer-events: none;
}

.calculator-visual-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.calculator-visual > p,
.calculator-visual > span,
.calculator-visual > small {
  position: relative;
  z-index: 2;
}

.calculator-visual > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.calculator-visual > .calculator-prefix {
  margin-top: 5px;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}

.calculator-visual strong {
  position: relative;
  z-index: 2;
  font-family: "Anton", sans-serif !important;
  margin-top: 2px;
  font-size: clamp(4.8rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
}

.calculator-visual > .calculator-unit {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.calculator-visual > small {
  width: max-content;
  max-width: 100%;
  margin-top: 26px;
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.7rem;
}

.sun-orbit {
  position: absolute;
  top: -74px;
  right: -52px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 50%;
}

.sun-orbit::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86px;
  height: 86px;
  background: var(--sun);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(255, 176, 0, 0.45);
  content: "";
  transform: translate(-50%, -50%);
}

.sun-orbit::after {
  position: absolute;
  bottom: 12px;
  left: 26px;
  width: 16px;
  height: 16px;
  background: var(--jade);
  border: 5px solid var(--vblue-dark);
  border-radius: 50%;
  content: "";
}

/* Region */
.region-section {
  background: var(--paper);
}

.service-map {
  width: 100%;
  height: 500px;
  background: #e7eeea;
}

.service-map-wrapper {
  box-shadow: var(--shadow);
}

/* FAQ */
.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 4px;
  cursor: pointer;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--jade);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

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

.faq-list details > p {
  max-width: 760px;
  margin: -3px 0 0;
  padding: 0 48px 28px 4px;
  color: var(--muted);
  font-size: 1.02rem;
}

.faq-inline-link {
  color: var(--vblue);
  font-weight: 800;
  text-decoration-color: rgba(53, 95, 168, 0.35);
  text-underline-offset: 4px;
}

.faq-inline-link:hover,
.faq-inline-link:focus-visible {
  color: var(--jade-dark);
}

/* Final CTA */
.final-section {
  padding-top: 54px;
  background: var(--paper);
}

.final-card {
  position: relative;
  padding: clamp(46px, 8vw, 88px);
  overflow: hidden;
  color: #fff;
  background: var(--jade);
  border-radius: clamp(28px, 5vw, 48px);
  box-shadow: 0 28px 70px rgba(0, 200, 104, 0.23);
  text-align: center;
}

.final-card::before,
.final-card::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.final-card::before {
  top: -170px;
  right: -120px;
  width: 420px;
  height: 420px;
}

.final-card::after {
  bottom: -230px;
  left: -130px;
  width: 500px;
  height: 500px;
}

.final-card > * {
  position: relative;
  z-index: 1;
}

.final-card .eyebrow {
  justify-content: center;
}

.final-card h2 {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

.final-card > p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px auto 34px;
  color: rgba(255, 255, 255, 0.83);
}

.primary-cta-inverted {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 16px 38px rgba(0, 69, 36, 0.16);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 13px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-links a {
  text-underline-offset: 4px;
}

/* Footer */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 42px max(24px, calc((100% - 1180px) / 2));
  color: var(--muted);
  background: #edf2ef;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}

.footer-logo img {
  width: 140px;
  height: auto;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--vblue);
}

@media (max-width: 1000px) {
  .section {
    padding: 88px 0;
  }

  .solution-card {
    flex-basis: clamp(350px, 58vw, 430px);
  }

  .project-gallery {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .calculator-grid {
    gap: 46px;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 82px;
  }

  .shell,
  .narrow-shell {
    width: min(100% - 32px, 680px);
  }

  .header-cta {
    display: inline-flex;
  }

  .section {
    padding: 76px 0;
  }

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

  .section-heading h2,
  .team-copy h2,
  .calculator-section h2,
  .final-card h2 {
    font-size: clamp(2.1rem, 10vw, 3.25rem);
  }

  .home-hero {
    min-height: 760px;
    height: var(--mobile-hero-height, 100svh);
    max-height: 920px;
  }

  .hero-media img {
    object-position: 57% center;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(3, 10, 16, 0.48) 0%, rgba(3, 10, 16, 0.85) 100%);
  }

  .hero-content {
    align-self: stretch;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 104px;
    padding-bottom: 36px;
    box-sizing: border-box;
  }

  .hero-content .eyebrow {
    margin-bottom: 0;
  }

  .home-hero h1 {
    font-size: clamp(3.55rem, 17vw, 5.3rem);
  }

  .home-hero h1 span {
    width: max-content;
    max-width: 100%;
    font-size: 0.78em;
    overflow-wrap: normal;
    word-break: normal;
    -webkit-hyphens: none;
    hyphens: none;
    white-space: nowrap;
  }

  .hero-copy {
    margin: 0;
    font-size: 1.05rem;
  }

  .hero-services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    width: min(100%, 330px);
    margin: 0;
  }

  .hero-services li {
    gap: 7px;
    min-width: 0;
    padding: 6px 10px;
    font-size: 0.72rem;
    line-height: 1.25;
    backdrop-filter: none;
  }

  .hero-services li::before {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
  }

  .hero-content .scroll-link {
    margin-top: 0;
  }

  .primary-cta,
  .tool-cta {
    width: 100%;
    padding-right: 22px;
    padding-left: 22px;
  }

  .solution-carousel {
    width: 100%;
    gap: 14px;
    padding: 4px 0 16px;
    scroll-padding-left: 0;
  }

  .solution-carousel::after {
    flex-basis: 1px;
  }

  .solution-card {
    flex-basis: min(82vw, 420px);
  }

  .solution-card img {
    height: 220px;
  }

  .solution-card-copy {
    min-height: 160px;
    padding: 28px 26px 30px;
  }

  .solution-card-copy > span {
    top: 31px;
    right: 26px;
  }

  .solution-card h3 {
    font-size: 1.4rem;
  }

  .solution-dots {
    margin-top: 20px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-grid::before {
    top: 20px;
    right: auto;
    bottom: 32px;
    left: 22px;
    width: 1px;
    height: auto;
  }

  .process-grid::after {
    top: 20px;
    right: auto;
    bottom: 32px;
    left: 21px;
    width: 3px;
    height: auto;
    transform: scaleY(var(--process-progress));
    transform-origin: center top;
  }

  .process-grid li {
    min-height: 154px;
    padding: 0 0 42px 74px;
    text-align: left;
  }

  .process-number {
    top: 0;
    left: 22px;
    width: 46px;
    height: 46px;
    border-width: 6px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .project-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 360px 270px 270px;
  }

  .project-gallery .project-main {
    grid-row: auto;
  }

  .project-gallery figcaption {
    flex-direction: column;
    gap: 3px;
    align-items: start;
  }

  .project-gallery figcaption span {
    text-align: left;
  }

  .price-grid,
  .comparison-grid,
  .team-grid,
  .calculator-grid {
    grid-template-columns: 1fr;
  }

  .price-card-featured {
    transform: none;
  }

  .price-note {
    display: block;
    margin: 18px 0 0;
  }

  .team-grid,
  .calculator-grid {
    gap: 44px;
  }

  .calculator-visual {
    min-height: 330px;
    padding: 30px;
  }

  .service-map {
    height: 440px;
  }

  .final-section {
    padding-top: 26px;
  }

  .final-card {
    padding: 48px 22px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 24px;
  }
}

@media (max-width: 480px) {
  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .header-cta {
    display: inline-flex !important;
    padding: 9px 12px !important;
    font-size: 11px !important;
  }

  .header-actions {
    gap: 6px !important;
  }

  .menu-toggle {
    padding: 8px !important;
  }

  .home-hero h1 {
    font-size: clamp(3.15rem, 16.5vw, 4.35rem);
  }

  .home-hero h1 span {
    font-size: 0.78em;
  }

  .price-card,
  .comparison-card {
    padding: 28px 24px;
  }

  .project-gallery {
    grid-template-rows: 310px 240px 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
