@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --page-bg: #77c5ee;
  --surface: #ffffff;
  --surface-soft: rgba(143, 205, 161, 0.14);
  --text: #000000;
  --text-soft: #000000;
  --line: rgba(119, 197, 238, 0.18);
  --link-underline: #77c5ee;
  --link-underline-gap: 4px;
  --link-underline-thickness: 1.5px;
  --card-outline: rgba(36, 48, 58, 0.12);
  --card-outline-strong: rgba(36, 48, 58, 0.18);
  --accent: #77c5ee;
  --dark: #77c5ee;
  --dark-soft: #8fcda1;
  --shadow: 0 24px 60px rgba(119, 197, 238, 0.18);
  --ui-radius: 28px;
  --surface-radius: var(--ui-radius);
  --surface-radius-inner: var(--ui-radius);
  --radius-xl: var(--ui-radius);
  --radius-lg: var(--ui-radius);
  --radius-md: var(--ui-radius);
  --radius-sm: var(--ui-radius);
  --control-radius: var(--ui-radius);
  --container: min(1480px, calc(100vw - 136px));
  --site-header-height: 108px;
  --green-button-bg-hover: #7dc593;
  --green-button-shadow: 0 14px 30px rgba(143, 205, 161, 0.22);
  --green-button-shadow-hover: 0 18px 34px rgba(143, 205, 161, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  min-width: 320px;
  overscroll-behavior-y: none;
  background:
    radial-gradient(circle at top left, rgba(119, 197, 238, 0.22), transparent 24%),
    linear-gradient(180deg, #77c5ee 0%, #77c5ee 640px, #ffffff 640px, #ffffff 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.45;
}

body.is-nav-open {
  overflow: hidden;
}

body.is-contact-modal-open,
body.is-tour-modal-open {
  overflow: hidden;
}

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

.hero-media img,
.hero-side__image img,
.stats-feature__image img,
.showcase-card > img,
.solutions-image img,
.project-card img,
.testimonial-portrait img {
  height: 100%;
}

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
  margin: 0;
}

:focus-visible {
  outline: 3px solid rgba(143, 205, 161, 0.95);
  outline-offset: 4px;
}

.site-frame {
  overflow: visible;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  width: 100%;
  padding: clamp(16px, 2vw, 22px) 0 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header::before {
  content: none;
}

.header-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: min(var(--container), calc(100vw - 36px));
  margin: 0 auto;
  gap: 18px;
  padding: 14px 26px;
  border: 1px solid rgba(119, 197, 238, 0.14);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(119, 197, 238, 0.14);
  transition:
    padding 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    border-radius 0.22s ease;
}

.header-row::before {
  content: none;
}

.site-header.is-scrolled .header-row {
  width: min(var(--container), calc(100vw - 36px));
  margin: 0 auto;
  padding: 14px 26px;
  border: 1px solid rgba(119, 197, 238, 0.14);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(119, 197, 238, 0.14);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark__icon {
  width: 20px;
  height: 20px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  position: relative;
}

.brand-mark__icon::before,
.brand-mark__icon::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-left: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: skewX(-28deg) rotate(-45deg);
  transform-origin: top left;
}

.brand-mark__icon::after {
  inset: auto 3px 3px auto;
  width: 7px;
  height: 7px;
  border-left: 0;
  border-top: 0;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: none;
}

.brand-mark__logo {
  width: clamp(86px, 7.2vw, 118px);
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-mark__text {
  font-size: 1.18rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex: 1;
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--text);
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: var(--link-underline-thickness);
  text-underline-offset: var(--link-underline-gap);
  text-decoration-skip-ink: none;
  transition: color 0.2s ease, opacity 0.2s ease, text-decoration-color 0.24s ease;
}

.text-link,
main a[href]:not(.button):not(.brand-mark):not(.brand-panel):not(.header-social-link):not(.floating-contact-button):not(.underline-link),
.site-footer a[href]:not(.button):not(.brand-mark):not(.brand-panel):not(.header-social-link):not(.floating-contact-button):not(.underline-link) {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: var(--link-underline-thickness);
  text-underline-offset: var(--link-underline-gap);
  text-decoration-skip-ink: none;
  transition:
    color 0.2s ease,
    opacity 0.2s ease,
    text-decoration-color 0.24s ease;
}

main a[href^="mailto:"]:not(.button):not(.brand-mark):not(.brand-panel):not(.header-social-link):not(.floating-contact-button):not(.underline-link),
main a[href^="tel:"]:not(.button):not(.brand-mark):not(.brand-panel):not(.header-social-link):not(.floating-contact-button):not(.underline-link),
.site-footer a[href^="mailto:"]:not(.button):not(.brand-mark):not(.brand-panel):not(.header-social-link):not(.floating-contact-button):not(.underline-link),
.site-footer a[href^="tel:"]:not(.button):not(.brand-mark):not(.brand-panel):not(.header-social-link):not(.floating-contact-button):not(.underline-link) {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
}

.site-nav a[aria-current="page"],
.site-nav a:hover,
.site-nav a.is-active,
.site-nav a:focus-visible {
  color: var(--text);
  opacity: 1;
  text-decoration-color: var(--link-underline);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(119, 197, 238, 0.22);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.58);
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.header-social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.header-social-link:hover {
  transform: translateY(-1px);
  color: var(--dark);
  border-color: rgba(143, 205, 161, 0.62);
  background: rgba(143, 205, 161, 0.16);
}

.header-social-link[aria-label="Instagram"]:hover,
.header-social-link[aria-label="Instagram"]:focus-visible {
  color: #ffffff;
  border-color: rgba(225, 48, 108, 0.78);
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 24%, #d62976 58%, #962fbf 82%, #4f5bd5 100%);
}

.header-social-link[aria-label="Facebook"]:hover,
.header-social-link[aria-label="Facebook"]:focus-visible {
  color: #ffffff;
  border-color: #1877f2;
  background: #1877f2;
}

.text-link {
  font-size: 0.84rem;
  font-weight: 600;
}

.text-link:hover,
.text-link:focus-visible,
main a[href]:not(.button):not(.brand-mark):not(.brand-panel):not(.header-social-link):not(.floating-contact-button):not(.underline-link):hover,
main a[href]:not(.button):not(.brand-mark):not(.brand-panel):not(.header-social-link):not(.floating-contact-button):not(.underline-link):focus-visible,
.site-footer a[href]:not(.button):not(.brand-mark):not(.brand-panel):not(.header-social-link):not(.floating-contact-button):not(.underline-link):hover,
.site-footer a[href]:not(.button):not(.brand-mark):not(.brand-panel):not(.header-social-link):not(.floating-contact-button):not(.underline-link):focus-visible {
  text-decoration-color: var(--link-underline);
}

.outline-pill,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

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

.outline-pill {
  border-color: rgba(119, 197, 238, 0.28);
  background: transparent;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button--dark,
.button--light,
.button--white {
  border-color: transparent;
  background: var(--dark-soft);
  color: #ffffff;
  box-shadow: var(--green-button-shadow);
}

.button--dark:hover,
.button--dark:focus-visible,
.button--light:hover,
.button--light:focus-visible,
.button--white:hover,
.button--white:focus-visible {
  transform: translateY(-1px);
  background: var(--green-button-bg-hover);
  border-color: transparent;
  box-shadow: var(--green-button-shadow-hover);
}

.button--compact {
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.9rem;
}

.floating-contact-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 140;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  width: 52px;
  min-width: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--dark-soft);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  opacity: 1;
  box-shadow: var(--green-button-shadow);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.floating-contact-button:hover,
.floating-contact-button:focus-visible {
  transform: translateY(-1px);
  background: var(--green-button-bg-hover);
  box-shadow: var(--green-button-shadow-hover);
  opacity: 1;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.floating-contact-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.floating-contact-button__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.floating-contact-button__icon--phone,
.floating-contact-button__text {
  display: none;
}

.floating-contact-button.is-mobile-call {
  width: 52px;
  min-width: 52px;
  gap: 0;
  padding: 0;
}

.floating-contact-button.is-mobile-call .floating-contact-button__icon--mail {
  display: none;
}

.floating-contact-button.is-mobile-call .floating-contact-button__icon--phone {
  display: inline-flex;
}

.floating-contact-button.is-mobile-call .floating-contact-button__text {
  display: none;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(119, 197, 238, 0.34);
}

.contact-modal__panel {
  position: relative;
  width: min(980px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  padding: 44px 30px 30px;
  border-radius: 28px;
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 30px 80px rgba(119, 197, 238, 0.2);
}

.contact-modal__close {
  position: absolute;
  top: 12px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-size: 34px;
  line-height: 0.8;
  z-index: 2;
}

.contact-modal__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.8fr);
  gap: 24px;
}

.contact-modal__title {
  grid-column: 1 / -1;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

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

.contact-modal__field,
.contact-modal__field input,
.contact-modal__field textarea {
  width: 100%;
}

.contact-modal__field input,
.contact-modal__field textarea {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-soft);
  color: var(--text);
  padding: 0 16px;
}

.contact-modal__field textarea {
  min-height: 168px;
  padding-top: 16px;
  resize: vertical;
}

.contact-modal__field input:focus,
.contact-modal__field input:focus-visible,
.contact-modal__field textarea:focus,
.contact-modal__field textarea:focus-visible {
  outline: none;
  border-color: rgba(119, 197, 238, 0.28);
  box-shadow: 0 0 0 1px rgba(119, 197, 238, 0.14);
}

.contact-modal__field input::placeholder,
.contact-modal__field textarea::placeholder {
  color: var(--text-soft);
}

.contact-modal__field--full,
.contact-modal__privacy,
.contact-modal__actions {
  grid-column: 1 / -1;
}

.contact-modal__privacy {
  display: flex;
  align-items: start;
  gap: 12px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.contact-modal__privacy input {
  margin-top: 4px;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(119, 197, 238, 0.28);
  border-radius: 4px;
  background: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 9px;
  cursor: pointer;
}

.contact-modal__privacy input:checked {
  border-color: rgba(143, 205, 161, 0.72);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 9'%3E%3Cpath d='M1 4.5 4.2 7.7 11 1' fill='none' stroke='%238fcda1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.contact-modal__privacy input:focus,
.contact-modal__privacy input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 1px rgba(143, 205, 161, 0.18);
}

.contact-modal__privacy a,
.contact-modal__info a {
  display: inline-flex;
  width: fit-content;
  color: inherit;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: var(--link-underline-thickness);
  text-underline-offset: var(--link-underline-gap);
  text-decoration-skip-ink: none;
  transition:
    color 0.2s ease,
    opacity 0.2s ease,
    text-decoration-color 0.24s ease;
}

.contact-modal__privacy a:hover,
.contact-modal__privacy a:focus-visible,
.contact-modal__info a:hover,
.contact-modal__info a:focus-visible {
  text-decoration-color: var(--link-underline);
}

.contact-modal__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--dark-soft);
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 700;
  box-shadow: var(--green-button-shadow);
}

.contact-modal__info {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px 22px;
  border-radius: 24px;
  background: var(--surface-soft);
}

.contact-modal__info-title {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.contact-modal__info-label {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-modal__info-block {
  display: grid;
  gap: 8px;
}

@media (max-width: 820px) {
  .contact-modal {
    padding: 16px;
  }

  .contact-modal__panel {
    width: min(100vw - 20px, 100%);
    max-height: calc(100vh - 20px);
    padding: 38px 18px 18px;
  }

  .contact-modal__layout,
  .contact-modal__form {
    grid-template-columns: 1fr;
  }

  .contact-modal__field--full,
  .contact-modal__privacy,
  .contact-modal__actions {
    grid-column: auto;
  }
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--text);
}

.hero-section {
  padding: 12px 0 112px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.22fr) minmax(0, 0.92fr) minmax(220px, 0.66fr);
  grid-template-areas:
    "copy main side"
    "small main side";
  gap: 24px;
  align-items: start;
}

.hero-lead {
  display: contents;
}

.hero-copy {
  grid-area: copy;
  padding-top: 18px;
}

.hero-title {
  display: grid;
  max-width: 620px;
  gap: 6px;
  font-size: clamp(3rem, 4vw, 3.75rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 600;
}

.hero-title span {
  display: block;
}

.hero-title > span:first-child {
  display: block;
  white-space: nowrap;
}

.hero-title > span:last-child {
  font-size: clamp(1.48rem, 6vw, 2.95rem);
  line-height: 1;
  white-space: nowrap;
}

.hero-copy__text {
  max-width: 372px;
  margin-top: 22px;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-copy .button-row {
  margin-top: 24px;
}

.hero-media,
.stat-card,
.detail-card,
.image-card,
.showcase-card,
.solutions-image,
.project-card,
.testimonial-panel,
.testimonial-portrait {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero-media {
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-media--small {
  grid-area: small;
  align-self: start;
  height: auto;
  aspect-ratio: 1.8 / 1;
}

.hero-media--small img {
  object-position: 24% 78%;
}

.hero-media--main {
  grid-area: main;
  margin-top: 102px;
  aspect-ratio: 1 / 1.14;
}

.hero-media--main img {
  object-position: 52% 18%;
}

.hero-side {
  grid-area: side;
  align-self: start;
  padding-top: 0;
}

.hero-side__image {
  aspect-ratio: 0.76 / 1.11;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-side__image img {
  object-position: 62% 26%;
}

.hero-side__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
}

.hero-side__text {
  margin-top: 0;
  color: var(--text-soft);
  font-size: 1.1rem;
  line-height: 1.65;
}

.underline-link {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-color: var(--link-underline);
  text-decoration-thickness: var(--link-underline-thickness);
  text-underline-offset: var(--link-underline-gap);
  text-decoration-skip-ink: none;
  transition: color 0.2s ease, opacity 0.2s ease, text-decoration-color 0.24s ease;
}

.underline-link--light {
  color: #ffffff;
}

.underline-link:hover,
.underline-link:focus-visible {
  color: inherit;
  opacity: 1;
  text-decoration-color: var(--link-underline);
}

.stats-section,
.showcase-section,
.solutions-section,
.projects-section,
.testimonials-section,
.cta-section {
  padding: 0 0 118px;
}

.split-heading,
.stack-heading,
.center-heading {
  margin-bottom: 34px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 40px;
  align-items: start;
}

.section-title {
  font-size: clamp(2.3rem, 4.1vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 600;
}

.section-title--center {
  max-width: 760px;
  margin: 0 auto;
}

.section-copy {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-copy--center {
  max-width: 720px;
  margin: 18px auto 0;
  text-align: center;
}

.center-heading {
  text-align: center;
}

.stats-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.92fr);
  gap: 44px;
  align-items: start;
  margin-bottom: 26px;
}

.stats-title {
  max-width: 640px;
  line-height: 1.02;
}

.stats-copy {
  max-width: 540px;
  padding-top: 10px;
  font-size: 1.02rem;
  line-height: 1.7;
}

.stats-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.08fr);
  gap: 16px;
  align-items: stretch;
}

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

.stat-card {
  min-height: 140px;
  padding: 28px 24px;
  border-radius: 12px;
  background: rgba(143, 205, 161, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-card strong {
  font-size: clamp(2.15rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.stat-card span {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.35;
}

.stat-card--dark {
  background: var(--dark-soft);
  color: #ffffff;
}

.stat-card--dark span {
  color: #ffffff;
}

.stats-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(16px, 1.8vw, 24px);
  min-height: 292px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  align-items: center;
}

.stats-feature__copy {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 1.8vw, 28px);
}

.stats-feature__copy p {
  max-width: 360px;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.58;
}

.stats-feature__button {
  align-self: flex-start;
  margin-top: auto;
  min-height: 36px;
  padding: 0 18px;
  font-size: 0.84rem;
  border-color: transparent;
  background: var(--dark-soft);
  color: #ffffff;
  box-shadow: var(--green-button-shadow);
}

.stats-feature__button:hover,
.stats-feature__button:focus-visible {
  background: var(--green-button-bg-hover);
  border-color: transparent;
  box-shadow: var(--green-button-shadow-hover);
}

.stats-feature__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 460px);
  max-width: 460px;
  height: auto;
  justify-self: end;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.stats-feature__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.showcase-heading {
  margin-bottom: 34px;
  text-align: center;
}

.showcase-title {
  max-width: 760px;
  line-height: 1.04;
}

.showcase-copy {
  max-width: 680px;
  margin-top: 14px;
  font-size: 0.98rem;
  line-height: 1.65;
}

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

.showcase-card {
  position: relative;
  height: 364px;
  min-height: 0;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
}

.showcase-card--house img {
  object-position: 92% 42%;
}

.showcase-card--building img {
  object-position: center center;
}

.showcase-card--feature img {
  object-position: center top;
}

.showcase-card--feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 24, 31, 0) 42%, rgba(10, 24, 31, 0.78) 100%);
}

.showcase-card__content {
  position: absolute;
  inset: auto 18px 16px;
  z-index: 1;
  color: #ffffff;
}

.showcase-card__content h3 {
  font-size: 1.05rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.showcase-card__content p {
  margin-top: 10px;
  max-width: 260px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.showcase-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #ffffff;
}

.solutions-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.solutions-copy .section-copy {
  max-width: 520px;
  margin-top: 24px;
}

.solutions-copy .button-row {
  margin-top: 28px;
}

.solutions-copy .button--light {
  border-color: rgba(119, 197, 238, 0.24);
  background: transparent;
  color: var(--text);
  box-shadow: none;
}

.solutions-copy .button--light:hover,
.solutions-copy .button--light:focus-visible {
  border-color: rgba(143, 205, 161, 0.62);
  background: rgba(143, 205, 161, 0.14);
  color: var(--text);
  box-shadow: none;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  margin-top: 42px;
}

.metric-row article {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.metric-row strong {
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.metric-row span {
  color: var(--text-soft);
  font-size: 0.98rem;
}

.solutions-image {
  height: 464px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.projects-grid {
  --project-gap: 20px;
  --project-top-height: 292px;
  --project-bottom-height: 260px;
  display: grid;
  grid-template-columns: 1.26fr 0.92fr 0.92fr;
  grid-auto-rows: minmax(238px, auto);
  gap: var(--project-gap);
}

.project-card {
  position: relative;
  height: var(--project-bottom-height);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.project-card__image--straight {
  object-position: center 52%;
  transform: rotate(5deg) scale(1.22);
  transform-origin: center;
}

.project-card--large {
  grid-row: span 2;
  height: calc(var(--project-top-height) + var(--project-gap) + var(--project-bottom-height));
}

.project-card--wide {
  grid-column: span 2;
  height: var(--project-top-height);
}

.projects-section > .site-container {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(14px, 2vh, 24px);
}

.projects-section .split-heading {
  margin-bottom: 0;
}

.projects-section .section-title {
  font-size: clamp(2.1rem, 3.2vw, 3rem);
}

.projects-section .section-copy {
  max-width: 480px;
  font-size: 0.98rem;
  line-height: 1.55;
}

.projects-section .projects-grid {
  --project-gap: clamp(10px, 1.6vh, 18px);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(0, 1fr);
  height: 100%;
  min-height: 0;
}

.projects-section .project-card,
.projects-section .project-card--large,
.projects-section .project-card--wide {
  height: auto;
  min-height: 0;
}

.control-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
}

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

.testimonials-title {
  font-size: clamp(2.1rem, 3.4vw, 2.9rem);
  line-height: 1.02;
  font-weight: 600;
}

.testimonials-copy {
  max-width: 760px;
  margin-top: 12px;
  font-size: 0.98rem;
  line-height: 1.5;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.82fr) minmax(244px, 0.62fr);
  gap: 18px;
  align-items: start;
}

.testimonial-layout.is-portrait-hidden {
  grid-template-columns: minmax(0, 1fr);
}

.testimonial-panel {
  display: flex;
  flex-direction: column;
  height: 300px;
  padding: 24px 26px 22px;
  border-radius: 18px;
  background: rgba(119, 197, 238, 0.12);
  box-shadow: none;
}

.testimonial-slide {
  flex: 1 1 auto;
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-content: stretch;
  row-gap: 0;
}

.testimonial-slide[hidden] {
  display: none !important;
}

.testimonial-slide h3 {
  max-width: 690px;
  margin-top: 0;
  font-size: clamp(1.48rem, 2.15vw, 2.08rem);
  line-height: 1.16;
  letter-spacing: -0.045em;
  font-weight: 500;
}

.testimonial-slide p {
  max-width: 690px;
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.52;
}

.testimonial-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
}

.testimonial-meta > div:first-child {
  max-width: 360px;
}

.testimonial-meta strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.2;
}

.testimonial-meta span {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.2;
}

.testimonial-meta a {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.2;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.control-button {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--dark-soft);
  color: #ffffff;
  font-size: 1.15rem;
  line-height: 1;
  box-shadow: var(--green-button-shadow);
}

.control-button--light {
  background: var(--dark-soft);
  color: #ffffff;
  border-radius: 999px;
  box-shadow: var(--green-button-shadow);
}

.control-button:hover,
.control-button--light:hover {
  transform: translateY(-1px);
  background: var(--green-button-bg-hover);
  box-shadow: var(--green-button-shadow-hover);
}

.testimonial-portrait {
  --portrait-fit: contain;
  --portrait-position: center top;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  height: 300px;
  padding: 0;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: none;
  overflow: hidden;
}

.testimonial-portrait[hidden] {
  display: none;
}

.testimonial-portrait img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  object-fit: var(--portrait-fit);
  object-position: var(--portrait-position);
}

.testimonials-section > .site-container {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(14px, 2vh, 22px);
  margin-block: 0;
}

.testimonials-section .testimonials-heading {
  margin-bottom: 0;
}

.testimonials-section .testimonial-layout {
  --testimonial-panel-height: 320px;
  height: 100%;
  min-height: 0;
  align-items: stretch;
}

.testimonials-section .testimonial-panel {
  height: auto;
  min-height: var(--testimonial-panel-height, 320px);
}

.testimonials-section .testimonial-portrait {
  height: auto;
  min-height: var(--testimonial-panel-height, 320px);
}

.testimonials-section .cta-banner {
  padding: 34px 40px;
}

.testimonials-section .cta-banner h2 {
  font-size: clamp(1.75rem, 2.25vw, 2.35rem);
  font-weight: 600;
}

.testimonials-section .cta-banner p {
  margin-top: 12px;
  line-height: 1.6;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 46px 52px;
  border-radius: var(--radius-lg);
  background: var(--dark-soft);
  color: #ffffff;
}

.cta-banner h2 {
  font-size: clamp(1.85rem, 2.45vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.cta-banner p {
  max-width: 760px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.8;
}

.cta-banner .button--white {
  border-color: transparent;
  background: #ffffff;
  color: var(--dark-soft);
  box-shadow: none;
}

.cta-banner .button--white:hover,
.cta-banner .button--white:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark-soft);
  border-color: transparent;
  box-shadow: none;
}

.site-footer {
  padding: 52px 0 0;
  background: var(--section-plain);
  color: var(--text-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) repeat(3, minmax(150px, 1fr));
  gap: 26px;
  padding-bottom: 28px;
}

.brand-mark--footer {
  color: var(--text);
  font-size: 1.14rem;
}

.brand-mark--footer .brand-mark__logo {
  width: clamp(110px, 8vw, 146px);
}

.footer-copy {
  max-width: 320px;
  margin-top: 26px;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.8;
}

.footer-hours {
  max-width: 320px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
}

.footer-column .footer-hours {
  max-width: 100%;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  gap: 12px;
}

.footer-hours__label {
  margin: 0;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-hours__group strong {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.4;
  font-weight: 600;
}

.footer-hours__group span {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.social-row {
  display: flex;
  gap: 16px;
  margin-top: 26px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--text);
  opacity: 0.96;
}

.social-row svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-row .icon-fill {
  fill: currentColor;
  stroke: none;
}

.footer-column h3 {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column a {
  display: inline-flex;
  align-self: flex-start;
  width: fit-content;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--text-soft);
  opacity: 1;
  text-decoration-color: var(--link-underline);
}

.social-row a:hover,
.social-row a:focus-visible {
  color: var(--text);
  opacity: 0.82;
  text-decoration: none;
}

.footer-bottom {
  padding: 18px 0 20px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-soft);
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-heading,
  .stats-heading,
  .stats-layout,
  .solutions-grid,
  .testimonial-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "main"
      "side"
      "small";
  }

  .hero-media--main,
  .hero-side__image {
    align-self: start;
  }

  .hero-copy__text {
    max-width: 580px;
  }

  .hero-media--small {
    height: auto;
    aspect-ratio: 1.72 / 0.82;
  }

  .hero-media--main {
    margin-top: 0;
    aspect-ratio: 1.22 / 1;
  }

  .stats-copy {
    padding-top: 0;
  }

  .stats-feature {
    grid-template-columns: minmax(0, 1fr) 220px;
  }

  .showcase-grid,
  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-card--large {
    grid-row: auto;
    height: 360px;
  }

  .project-card--wide {
    grid-column: span 2;
  }

  .projects-section > .site-container {
    gap: 16px;
  }

  .testimonials-section > .site-container {
    gap: 16px;
  }

  .cta-banner {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding-top: clamp(12px, 2vw, 18px);
  }

  .header-row {
    width: min(var(--container), calc(100vw - 28px));
    margin: 0 auto;
    padding: 14px 18px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 14px;
    border-radius: 28px;
    overflow: visible;
    border: 1px solid rgba(119, 197, 238, 0.14);
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(119, 197, 238, 0.14);
  }

  .site-header.is-scrolled .header-row {
    width: min(var(--container), calc(100vw - 28px));
    margin: 0 auto;
    padding: 14px 18px;
    border-radius: 28px;
    border: 1px solid rgba(119, 197, 238, 0.14);
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(119, 197, 238, 0.14);
  }

  .nav-toggle {
    display: inline-flex;
    order: 4;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    order: 5;
    width: 100%;
    max-width: none;
    display: none;
    flex-direction: column;
    align-items: start;
    gap: 12px;
    padding: 20px 22px;
    box-sizing: border-box;
    border: 1px solid rgba(39, 58, 66, 0.08);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(119, 197, 238, 0.14);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

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

  .site-nav a {
    min-height: 48px;
  }

  .header-actions {
    order: 3;
    margin-left: auto;
  }

  .floating-contact-button {
    right: 16px;
    bottom: 16px;
    min-height: 48px;
    padding: 0 18px;
  }

  .stats-feature {
    grid-template-columns: 1fr;
  }

  .stats-feature__image {
    width: min(100%, 420px);
    max-width: 420px;
    height: auto;
    justify-self: start;
  }

  .showcase-heading {
    text-align: left;
  }

  .showcase-section .section-title--center,
  .showcase-section .section-copy--center {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .showcase-grid,
  .projects-grid,
  .testimonial-layout {
    grid-template-columns: 1fr;
  }

  .project-card--wide {
    grid-column: auto;
  }

  .solutions-image,
  .testimonial-portrait,
  .showcase-card {
    height: 320px;
    min-height: 0;
  }

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

  .projects-section .project-card--large {
    grid-row: span 2;
  }

  .projects-section .project-card--wide {
    grid-column: auto;
  }

  .testimonials-section .testimonial-layout {
    grid-template-columns: minmax(0, 1fr) 220px;
  }

  .testimonials-section .testimonial-layout.is-portrait-hidden {
    grid-template-columns: 1fr;
  }

  .testimonial-portrait {
    min-height: 300px;
  }

  .testimonial-portrait img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 28px, 1560px);
    --radius-xl: 28px;
    --radius-lg: 24px;
  }

  .header-actions {
    gap: 10px;
  }

  .header-social-link {
    width: 40px;
    height: 40px;
  }

  .hero-section,
  .stats-section,
  .showcase-section,
  .solutions-section,
  .projects-section,
  .testimonials-section,
  .cta-section {
    padding-bottom: 92px;
  }

  .hero-title {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .hero-copy__text,
  .section-copy,
  .hero-side__text,
  .stats-copy,
  .stats-feature__copy p,
  .testimonial-slide p,
  .cta-banner p {
    font-size: 0.98rem;
  }

  .stats-cards,
  .showcase-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .projects-section > .site-container {
    gap: 12px;
  }

  .testimonials-section > .site-container {
    gap: 12px;
  }

  .projects-section .section-title {
    font-size: clamp(1.9rem, 7vw, 2.55rem);
  }

  .projects-section .section-copy {
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.42;
  }

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

  .testimonials-section .testimonial-layout {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) 180px;
  }

  .testimonials-section .testimonial-layout.is-portrait-hidden {
    grid-template-rows: auto;
  }

  .testimonials-section .testimonial-panel {
    padding: 20px 20px 18px;
  }

  .testimonials-section .testimonial-portrait {
    justify-self: stretch;
    min-height: 0;
    max-width: none;
    padding: 0;
  }

  .testimonials-section .testimonial-portrait img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
  }

  .testimonials-section .cta-banner {
    padding: 22px 22px;
  }

  .button-row .button,
  .cta-banner .button {
    width: auto;
    max-width: 100%;
  }

  .testimonial-panel,
  .cta-banner {
    padding: 28px 22px;
  }

  .testimonial-meta {
    flex-direction: column;
    align-items: start;
  }

  .footer-grid {
    gap: 24px;
  }
}

@media (max-width: 1080px) and (min-width: 540px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 16px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 560px;
  }

  .footer-copy {
    max-width: 560px;
  }

  .footer-column,
  .footer-column .footer-hours {
    max-width: 100%;
  }

  .footer-column h3 {
    font-size: 0.9rem;
  }

  .footer-column a,
  .footer-hours__group strong,
  .footer-hours__group span {
    font-size: 0.85rem;
    line-height: 1.45;
  }
}

body {
  overflow-x: hidden;
}

#team {
  scroll-margin-top: 0;
}

.hero-section,
.stats-section,
.showcase-section,
.solutions-section,
.projects-section,
.testimonials-section,
.cta-section {
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--site-header-height) + 10px);
  padding-bottom: 0;
}

.hero-section > .site-container,
.stats-section > .site-container,
.showcase-section > .site-container,
.solutions-section > .site-container,
.projects-section > .site-container,
.testimonials-section > .site-container,
.cta-section > .site-container {
  margin-block: auto;
}

.footer-map-section {
  position: relative;
  background: var(--section-tint);
  box-shadow: none;
  padding: clamp(34px, 4vw, 54px) 0;
}

.footer-map-section.is-map-loaded {
  background: var(--section-tint);
  box-shadow: none;
  padding: 0;
}

.footer-map__frame {
  --footer-map-frame-height: 520px;
  position: relative;
  width: var(--container);
  min-height: var(--footer-map-frame-height);
  margin: 0 auto;
  overflow: hidden;
}

.footer-map__frame.is-loaded {
  width: 100%;
  margin: 0;
}

.footer-map__frame:not(.is-loaded) {
  min-height: auto;
}

.footer-map__frame iframe {
  display: block;
  width: 100%;
  height: var(--footer-map-frame-height);
  border: 0;
  border-radius: var(--surface-radius);
}

.footer-map-section.is-map-loaded .footer-map__frame.is-loaded {
  min-height: var(--footer-map-frame-height);
}

.footer-map-section.is-map-loaded .footer-map__frame.is-loaded iframe {
  height: var(--footer-map-frame-height);
  border-radius: 0;
}

.footer-map__frame .cookie-embed-placeholder {
  min-height: auto;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  align-content: start;
}

.footer-map__frame .cookie-embed-placeholder__copy {
  max-width: min(860px, 100%);
}

.footer-map__frame .cookie-embed-placeholder__title {
  font-size: 0.98rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.footer-map__frame .cookie-embed-placeholder__address {
  color: var(--text-soft);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-style: normal;
  font-weight: 600;
}

.footer-map__frame .cookie-embed-placeholder__text {
  font-size: 0.98rem;
}

.footer-map__frame .cookie-embed-placeholder__actions .cookie-consent__button,
.footer-map__frame .cookie-embed-placeholder__actions .cookie-consent__button--link {
  font-size: 0.88rem;
  box-shadow: none;
}

.footer-map__frame .cookie-embed-placeholder__actions .cookie-consent__button:hover,
.footer-map__frame .cookie-embed-placeholder__actions .cookie-consent__button:focus-visible,
.footer-map__frame .cookie-embed-placeholder__actions .cookie-consent__button--link:hover,
.footer-map__frame .cookie-embed-placeholder__actions .cookie-consent__button--link:focus-visible {
  box-shadow: none;
}

.footer-map__frame .cookie-embed-placeholder__actions {
  margin-top: 18px;
}

.footer-map__card {
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 1;
  max-width: min(392px, calc(100vw - 56px));
  padding: 26px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 58px rgba(119, 197, 238, 0.18);
  backdrop-filter: blur(16px);
}

.footer-map__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-map__title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.footer-map__address {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

.footer-map__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.footer-map__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--dark);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

@media (max-width: 900px) {
  .hero-section,
  .stats-section,
  .showcase-section,
  .solutions-section,
  .projects-section,
  .testimonials-section,
  .cta-section {
    padding-top: calc(var(--site-header-height) + 6px);
  }

  .footer-map__card {
    top: 24px;
    left: 24px;
  }
}

@media (max-width: 900px) {
  .footer-map__frame {
    --footer-map-frame-height: 460px;
  }

  .footer-map__card {
    top: 18px;
    left: 14px;
    right: 14px;
    max-width: none;
    padding: 20px 20px 22px;
    border-radius: 24px;
  }

  .footer-map__actions,
  .footer-map__link {
    width: auto;
    max-width: 100%;
  }
}

:root {
  --space-3xs: 8px;
  --space-2xs: 12px;
  --space-xs: 16px;
  --space-sm: 20px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 40px;
  --space-2xl: 56px;
  --container: min(1480px, calc(100vw - 136px));
}

.site-header {
  padding: clamp(16px, 2vw, 22px) 0 0;
}

.header-row {
  gap: 16px;
  border-color: transparent;
}

.site-nav {
  gap: 16px;
}

.header-actions {
  gap: 14px;
}

.outline-pill,
.button {
  min-height: 40px;
  padding: 0 18px;
}

.button-row {
  gap: var(--space-2xs);
}

main > section {
  padding-top: calc(var(--site-header-height) + var(--space-lg));
}

.hero-section,
.stats-section,
.showcase-section,
.solutions-section,
.projects-section,
.testimonials-section,
.cta-section {
  padding-top: calc(var(--site-header-height) + var(--space-lg));
  padding-bottom: 0;
}

.hero-section > .site-container,
.stats-section > .site-container,
.showcase-section > .site-container,
.solutions-section > .site-container,
.projects-section > .site-container,
.testimonials-section > .site-container {
  margin-block: 0;
}

.hero-grid {
  gap: var(--space-md);
}

.hero-copy {
  padding-top: 0;
}

.hero-media--main {
  margin-top: clamp(104px, 9vw, 122px);
}

.hero-copy__text {
  margin-top: var(--space-xs);
}

.hero-copy .button-row {
  margin-top: var(--space-xs);
}

.hero-side__text {
  margin-top: 0;
}

.hero-side__copy {
  margin-top: var(--space-xs);
  gap: var(--space-2xs);
}

.hero-side__copy .underline-link {
  display: inline-block;
  width: fit-content;
  align-self: flex-start;
  margin-top: 0;
}

.split-heading,
.showcase-heading,
.testimonials-heading {
  margin-bottom: var(--space-lg);
}

.section-copy--center {
  margin-top: var(--space-xs);
}

.stats-heading {
  gap: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.stats-layout,
.showcase-grid,
.solutions-grid {
  gap: var(--space-xs);
}

.stats-cards {
  gap: var(--space-3xs);
}

.stat-card {
  padding: var(--space-md) var(--space-sm);
}

.stats-feature {
  gap: clamp(18px, 2vw, 26px);
  padding: 0;
}

.showcase-card {
  height: 338px;
}

.showcase-copy,
.testimonials-copy {
  margin-top: var(--space-2xs);
}

.solutions-copy .section-copy,
.solutions-copy .button-row {
  margin-top: var(--space-xs);
}

.metric-row {
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

.solutions-image {
  height: 428px;
}

.projects-section > .site-container {
  gap: var(--space-xs);
}

.projects-section .section-copy {
  max-width: 440px;
}

.projects-section .projects-grid {
  --project-gap: var(--space-2xs);
}

.testimonials-section > .site-container {
  gap: var(--space-xs);
}

.testimonial-layout {
  gap: var(--space-2xs);
}

.testimonial-panel {
  padding: 22px 24px 20px;
}

.testimonial-meta {
  padding-top: var(--space-md);
}

.testimonials-section .cta-banner {
  padding: 28px 32px;
}

.cta-banner {
  gap: var(--space-lg);
  padding: 34px 38px;
}

.cta-banner p {
  margin-top: var(--space-2xs);
}

.site-footer {
  padding: 44px 0 0;
}

.footer-grid {
  gap: var(--space-lg);
  padding-bottom: var(--space-md);
}

.footer-copy,
.social-row {
  margin-top: var(--space-lg);
}

.footer-bottom {
  padding: 16px 0 18px;
}

@media (max-width: 1080px) {
  :root {
    --container: min(100vw - 64px, 1480px);
  }

  .site-header {
    padding: clamp(16px, 2vw, 22px) 0 0;
  }

  main > section {
    padding-top: calc(var(--site-header-height) + var(--space-md));
  }

  .hero-section,
  .stats-section,
  .showcase-section,
  .solutions-section,
  .projects-section,
  .testimonials-section,
  .cta-section {
    padding-top: calc(var(--site-header-height) + var(--space-md));
    padding-bottom: 0;
  }

  .header-row {
    gap: var(--space-sm);
  }

  .showcase-card {
    height: 300px;
  }

  .projects-section > .site-container,
  .testimonials-section > .site-container {
    gap: var(--space-2xs);
  }

  .cta-banner,
  .testimonials-section .cta-banner {
    padding: 24px 26px;
  }
}

@media (max-width: 1080px) and (min-width: 901px) {
  .header-row {
    gap: 14px;
    padding-inline: 20px;
  }

  .site-nav {
    gap: 12px;
    font-size: 0.9rem;
  }

  .site-nav a {
    min-height: 44px;
  }

  .header-actions {
    gap: 12px;
  }

  .header-social-link {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 1080px) and (min-width: 721px) {
  :root {
    --screen-section-safe-top: calc(var(--site-header-height) + 4px);
    --screen-section-safe-bottom: 8px;
    --tablet-section-edge-space: 28px;
    --home-section-frame-pad: 14px;
    --home-section-space-tight: 14px;
  }

  main > section:not(.hero-section) {
    min-height: auto;
  }

  .stats-section,
  .showcase-section,
  .solutions-section,
  .projects-section,
  .testimonials-section,
  .cta-section {
    padding: var(--tablet-section-edge-space) 0;
  }

  .stats-section > .site-container,
  .showcase-section > .site-container,
  .solutions-section > .site-container,
  .projects-section > .site-container,
  .testimonials-section > .site-container,
  .cta-section > .site-container {
    min-height: 0;
    margin: 0 auto;
    align-content: start;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .showcase-heading,
  .split-heading,
  .testimonials-heading {
    margin-bottom: 22px;
  }

  .contact-modal {
    padding: 16px;
  }

  .contact-modal__panel {
    width: min(960px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    padding: 34px 24px 20px;
    border-radius: 28px;
  }

  .contact-modal__close {
    top: 10px;
    right: 18px;
    font-size: 30px;
  }

  .contact-modal__layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(240px, 0.74fr);
    gap: 16px;
    align-items: start;
  }

  .contact-modal__title {
    margin-bottom: 0;
    font-size: clamp(1.55rem, 2.35vw, 1.9rem);
  }

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

  .contact-modal__field input,
  .contact-modal__field textarea {
    min-height: 50px;
    padding-inline: 14px;
  }

  .contact-modal__field textarea {
    min-height: 124px;
    padding-top: 14px;
  }

  .contact-modal__privacy {
    gap: 10px;
    font-size: 0.84rem;
    line-height: 1.4;
  }

  .contact-modal__privacy input {
    margin-top: 2px;
  }

  .contact-modal__submit {
    min-height: 42px;
    padding-inline: 20px;
  }

  .contact-modal__info {
    gap: 12px;
    padding: 18px 16px;
  }

  .contact-modal__info-title {
    font-size: 1.06rem;
  }

  .contact-modal__info-label {
    font-size: 0.72rem;
  }

  .contact-modal__info-block {
    gap: 6px;
  }

  .stats-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stats-cards {
    gap: 14px;
  }

  .stat-card {
    min-height: 124px;
    padding: 22px 18px;
  }

  .stat-card span {
    margin-top: 10px;
    font-size: 0.92rem;
  }

  .stats-feature {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
    gap: 14px;
    min-height: 0;
    align-items: center;
  }

  .stats-feature__copy {
    gap: 18px;
  }

  .stats-feature__copy p {
    max-width: 34ch;
  }

  .stats-feature__button {
    margin-top: 0;
  }

  .stats-feature__image {
    width: min(100%, 320px);
    max-width: 320px;
  }

  .showcase-grid {
    gap: 14px;
  }

  .showcase-card {
    height: 308px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .solutions-copy .section-copy {
    max-width: none;
    margin-top: 18px;
  }

  .solutions-copy .button-row {
    gap: 10px 12px;
    margin-top: 20px;
  }

  .metric-row {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: start;
    gap: 14px 24px;
    margin-top: 22px;
  }

  .metric-row strong {
    font-size: clamp(1.8rem, 2.4vw, 2.35rem);
  }

  .metric-row span {
    font-size: 0.92rem;
  }

  .solutions-image {
    height: 380px;
  }

  .projects-section > .site-container {
    align-content: start;
    gap: 20px;
  }

  .projects-section .split-heading {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.78fr);
    gap: 24px;
  }

  .projects-section .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: auto;
    gap: 16px;
    height: auto;
    min-height: 0;
  }

  .projects-section .project-card,
  .projects-section .project-card--large,
  .projects-section .project-card--wide {
    grid-column: auto;
    grid-row: auto;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .testimonials-section > .site-container {
    gap: 18px;
  }

  .testimonials-section .testimonial-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.62fr);
    gap: 16px;
  }

  .testimonials-section .testimonial-panel {
    min-height: 0;
    padding: 26px 24px 22px;
  }

  .testimonials-section .testimonial-meta {
    gap: 16px;
    padding-top: 18px;
  }

  .cta-banner,
  .testimonials-section .cta-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px 22px;
    padding: 30px 32px;
  }
}

@media (max-width: 1080px) {
  :root {
    --container: min(100vw - 36px, 1480px);
  }

  main > section {
    padding-top: calc(var(--site-header-height) + var(--space-sm));
  }

  .hero-section,
  .stats-section,
  .showcase-section,
  .solutions-section,
  .projects-section,
  .testimonials-section,
  .cta-section {
    padding-top: calc(var(--site-header-height) + var(--space-sm));
    padding-bottom: 0;
  }

  .split-heading,
  .showcase-heading,
  .testimonials-heading {
    margin-bottom: var(--space-sm);
  }

  .showcase-card,
  .solutions-image {
    height: 282px;
  }

  .projects-section > .site-container,
  .testimonials-section > .site-container {
    gap: 10px;
  }

  .testimonial-panel,
  .cta-banner,
  .testimonials-section .cta-banner {
    padding: 18px 18px 16px;
  }

  .site-footer {
    padding-top: 34px;
  }
}

/* Keep content sections natural-height instead of viewport-centered. */

.projects-section .projects-grid {
  height: auto;
  min-height: 0;
  grid-template-rows: none;
  grid-auto-rows: minmax(238px, auto);
}

.projects-section .project-card {
  height: var(--project-bottom-height);
}

.projects-section .project-card--large {
  height: calc(var(--project-top-height) + var(--project-gap) + var(--project-bottom-height));
}

.projects-section .project-card--wide {
  height: var(--project-top-height);
}

.testimonial-layout {
  height: auto;
  min-height: 0;
}

.testimonials-section .testimonial-panel {
  height: auto;
  min-height: var(--testimonial-panel-height, 320px);
}

@media (max-width: 900px) {
  .projects-section .projects-grid {
    height: auto;
    grid-template-rows: none;
  }

  .projects-section .project-card--large {
    grid-row: auto;
    height: 360px;
  }

  .projects-section .project-card--wide {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .hero-section {
    padding: 12px 0 56px;
  }

  .stats-section,
  .showcase-section,
  .solutions-section,
  .projects-section,
  .testimonials-section,
  .cta-section {
    padding-bottom: 56px;
  }

  .projects-section .projects-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-section .testimonial-layout {
    grid-template-columns: 1fr;
  }

  .testimonials-section .testimonial-portrait {
    height: auto;
  }
}

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

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

/* Alternating section rhythm across the home page. */
:root {
  --section-plain: #ffffff;
  --section-tint:
    radial-gradient(circle at top left, rgba(119, 197, 238, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(119, 197, 238, 0.08) 0%, rgba(255, 255, 255, 0.99) 58%, #ffffff 100%);
  --hero-surface-tint:
    radial-gradient(circle at 0% 16%, rgba(119, 197, 238, 0.28), transparent 24%),
    radial-gradient(circle at 100% 14%, rgba(119, 197, 238, 0.16), transparent 18%),
    radial-gradient(circle at 100% 100%, rgba(119, 197, 238, 0.12), transparent 16%),
    linear-gradient(180deg, rgba(119, 197, 238, 0.14) 0%, rgba(255, 255, 255, 0.98) 42%, #ffffff 100%);
}

body {
  background: var(--section-plain);
  --site-footer-surface: var(--section-plain);
}

.hero-section {
  background: var(--section-tint);
}

main > section:not(.hero-section) {
  background: var(--section-plain);
}

main > section:not(.hero-section):nth-of-type(odd) {
  background: var(--section-tint);
}

.projects-section {
  padding: clamp(40px, 6vw, 84px) 0;
}

.site-footer {
  background: var(--site-footer-surface);
}

.stats-section .stat-card:not(.stat-card--dark),
.solutions-section .solutions-image,
.testimonials-section .testimonial-panel {
  background: #ffffff;
  border: 1px solid var(--card-outline);
}

.home-page {
  --hero-header-overlap: calc(var(--site-header-height) + clamp(28px, 3vw, 40px));
}

.home-page .site-header::before {
  content: none;
}

.home-page .hero-section {
  position: relative;
  isolation: isolate;
  background: transparent;
}

.home-page .hero-section::before {
  content: "";
  position: absolute;
  inset: calc(var(--hero-header-overlap) * -1) 0 0;
  z-index: -1;
  pointer-events: none;
  background: var(--hero-surface-tint);
}

.testimonials-section .testimonial-portrait {
  height: auto;
  min-height: var(--testimonial-panel-height, 320px);
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--surface-radius);
  box-shadow: 0 22px 54px rgba(119, 197, 238, 0.1);
}

.testimonials-section .testimonial-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: var(--portrait-fit, contain);
  object-position: var(--portrait-position, center top);
}

@media (max-width: 720px) {
  .testimonials-section .testimonial-portrait {
    height: auto;
    min-height: 0;
  }
}

.testimonials-section .control-button {
  position: relative;
  width: 54px;
  height: 54px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: var(--dark-soft);
  color: transparent;
  font-size: 0;
  line-height: 0;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
  box-shadow: var(--green-button-shadow);
}

.testimonials-section .control-button--light {
  border-color: rgba(143, 205, 161, 0.34);
  background: #ffffff;
}

.testimonials-section .control-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2.5px solid #ffffff;
  border-right: 2.5px solid #ffffff;
  transform: translate(-58%, -50%) rotate(45deg);
}

.testimonials-section .control-button--light::before {
  border-top-color: var(--dark-soft);
  border-right-color: var(--dark-soft);
}

.testimonials-section .control-button[data-prev]::before {
  transform: translate(-42%, -50%) rotate(-135deg);
}

.testimonials-section .control-button::after {
  content: none;
}

.testimonials-section .control-button:hover {
  transform: translateY(-1px);
  background: var(--green-button-bg-hover);
  border-color: transparent;
  box-shadow: var(--green-button-shadow-hover);
}

.testimonials-section .control-button--light:hover {
  background: rgba(143, 205, 161, 0.14);
  border-color: rgba(143, 205, 161, 0.62);
  box-shadow: var(--green-button-shadow-hover);
}

.testimonials-section .control-button:focus-visible {
  outline: 2px solid rgba(143, 205, 161, 0.4);
  outline-offset: 3px;
}

.testimonials-section .control-button.is-triggered-prev {
  animation: testimonial-arrow-prev 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonials-section .control-button.is-triggered-next {
  animation: testimonial-arrow-next 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonials-section .testimonial-slide,
.testimonials-section .testimonial-portrait img {
  will-change: transform, opacity;
}

.testimonials-section .testimonial-layout.is-sliding-prev .testimonial-slide.is-active {
  animation: testimonial-slide-prev 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonials-section .testimonial-layout.is-sliding-next .testimonial-slide.is-active {
  animation: testimonial-slide-next 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonials-section .testimonial-layout.is-sliding-prev .testimonial-portrait img {
  animation: testimonial-portrait-prev 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonials-section .testimonial-layout.is-sliding-next .testimonial-portrait img {
  animation: testimonial-portrait-next 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes testimonial-arrow-prev {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  45% {
    transform: translate3d(-8px, -1px, 0) scale(0.94);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes testimonial-arrow-next {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  45% {
    transform: translate3d(8px, -1px, 0) scale(0.94);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes testimonial-slide-prev {
  0% {
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes testimonial-slide-next {
  0% {
    opacity: 0;
    transform: translate3d(30px, 0, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes testimonial-portrait-prev {
  0% {
    opacity: 0;
    transform: translate3d(-22px, 0, 0) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes testimonial-portrait-next {
  0% {
    opacity: 0;
    transform: translate3d(22px, 0, 0) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* Final home-page rhythm and premium modal finish. */
:root {
  --screen-section-height: 100svh;
  --screen-section-safe-top: calc(var(--site-header-height) + clamp(8px, 1.4vh, 14px));
  --screen-section-safe-bottom: clamp(14px, 1.8vh, 22px);
  --home-section-space: clamp(88px, 8vw, 120px);
  --home-section-space-tight: clamp(28px, 3vw, 40px);
  --home-content-gap: clamp(28px, 3vw, 40px);
  --home-content-gap-wide: clamp(32px, 3.4vw, 46px);
  --home-section-inset-top: clamp(56px, 5vw, 76px);
  --home-section-frame-pad: clamp(20px, 2vw, 28px);
}

main > section {
  min-height: var(--screen-section-height);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  scroll-margin-top: 0;
}

.hero-section,
.stats-section,
.showcase-section,
.solutions-section,
.projects-section,
.testimonials-section,
.cta-section {
  display: flex;
  flex-direction: column;
  padding: 0;
  box-sizing: border-box;
}

.hero-section {
  padding: 0;
}

.stats-section,
.showcase-section,
.solutions-section,
.projects-section,
.testimonials-section,
.cta-section {
  padding: var(--screen-section-safe-top) 0 var(--screen-section-safe-bottom);
}

.hero-section > .site-container,
.stats-section > .site-container,
.showcase-section > .site-container,
.solutions-section > .site-container,
.projects-section > .site-container,
.testimonials-section > .site-container,
.cta-section > .site-container {
  width: var(--container);
  padding-inline: clamp(12px, 1.2vw, 22px);
}

.hero-section > .site-container {
  margin: 0 auto;
  padding-bottom: clamp(12px, 1.2vw, 20px);
}

.stats-section > .site-container,
.showcase-section > .site-container,
.solutions-section > .site-container,
.projects-section > .site-container,
.testimonials-section > .site-container,
.cta-section > .site-container {
  min-height: calc(var(--screen-section-height) - var(--screen-section-safe-top) - var(--screen-section-safe-bottom));
  margin: auto auto;
  display: grid;
  align-content: center;
  padding-top: var(--home-section-frame-pad);
  padding-bottom: var(--home-section-frame-pad);
  box-sizing: border-box;
}

.hero-grid {
  gap: var(--home-content-gap-wide);
  align-items: start;
}

.hero-media--main {
  margin-top: clamp(40px, 4vw, 56px);
}

.hero-copy__text,
.hero-copy .button-row,
.hero-side__copy,
.solutions-copy .section-copy,
.solutions-copy .button-row {
  margin-top: var(--home-section-space-tight);
}

.hero-side__copy {
  gap: 10px;
}

.split-heading,
.showcase-heading,
.testimonials-heading {
  margin-bottom: clamp(44px, 4vw, 60px);
}

.stats-heading {
  gap: clamp(28px, 3vw, 40px);
  margin-bottom: clamp(40px, 4vw, 56px);
}

.stats-layout,
.showcase-grid,
.testimonial-layout {
  gap: clamp(28px, 3vw, 40px);
}

.solutions-grid {
  gap: clamp(26px, 2.8vw, 38px);
}

.projects-section > .site-container,
.testimonials-section > .site-container {
  align-content: start;
  gap: clamp(26px, 2.8vw, 38px);
}

.stats-cards {
  gap: 20px;
}

.stat-card {
  min-height: 176px;
  padding: 42px 34px;
  border-radius: var(--surface-radius);
}

.stats-feature {
  min-height: 332px;
  padding: 0;
  border-radius: 0;
}

.showcase-card {
  height: 472px;
  border: 1px solid rgba(36, 48, 58, 0.08);
  border-radius: var(--surface-radius);
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(119, 197, 238, 0.08);
}

.showcase-card--feature::after {
  background: linear-gradient(180deg, rgba(10, 24, 31, 0) 24%, rgba(10, 24, 31, 0.72) 100%);
}

.showcase-card__content {
  inset: auto 38px 34px;
}

.metric-row {
  gap: clamp(32px, 3vw, 48px);
  margin-top: clamp(36px, 3vw, 52px);
}

.solutions-image {
  height: 596px;
  border-radius: var(--surface-radius);
  box-shadow: 0 22px 54px rgba(119, 197, 238, 0.12);
}

.projects-section {
  padding-top: clamp(54px, 5vw, 72px);
}

.projects-section .project-card,
.projects-section .project-card--large,
.projects-section .project-card--wide {
  border: 1px solid rgba(36, 48, 58, 0.08);
  border-radius: var(--surface-radius);
  box-shadow: 0 20px 52px rgba(119, 197, 238, 0.1);
}

.testimonial-panel,
.testimonial-portrait {
  border-radius: var(--surface-radius);
  box-shadow: 0 22px 54px rgba(119, 197, 238, 0.1);
}

.testimonial-panel {
  padding: 42px 54px;
  background: rgba(255, 255, 255, 0.92);
}

.cta-banner,
.testimonials-section .cta-banner {
  gap: 46px;
  padding: 72px 74px;
  border-radius: var(--surface-radius);
  box-shadow: none;
}

.footer-map__frame {
  --footer-map-frame-height: 480px;
}

.contact-modal {
  padding: clamp(18px, 3vw, 28px);
}

.contact-modal__backdrop {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.24));
  backdrop-filter: blur(24px) saturate(132%);
  -webkit-backdrop-filter: blur(24px) saturate(132%);
}

.contact-modal__panel {
  width: min(1040px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  padding: 42px 30px 24px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 34px 100px rgba(31, 60, 76, 0.16);
  backdrop-filter: blur(26px) saturate(140%);
  -webkit-backdrop-filter: blur(26px) saturate(140%);
}

.contact-modal__close {
  top: 14px;
  right: 22px;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 34px;
  line-height: 0.8;
  z-index: 3;
}

.contact-modal__layout {
  gap: 26px;
}

.contact-modal__title {
  margin-bottom: 4px;
}

.contact-modal__form {
  gap: 14px 16px;
}

.contact-modal__field input,
.contact-modal__field textarea {
  border: 1px solid rgba(119, 197, 238, 0.16);
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contact-modal__field textarea {
  min-height: 156px;
}

.contact-modal__info {
  gap: 16px;
  padding: 26px 24px;
  border: 1px solid rgba(119, 197, 238, 0.12);
  background: rgba(247, 251, 248, 0.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.contact-modal__submit {
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-modal__submit:hover,
.contact-modal__submit:focus-visible {
  transform: translateY(-1px);
  background: var(--green-button-bg-hover);
  box-shadow: var(--green-button-shadow-hover);
}

@media (max-width: 720px) {
  .hero-media--main {
    margin-top: 0;
  }

  .projects-section {
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .hero-section > .site-container,
  .stats-section > .site-container,
  .showcase-section > .site-container,
  .solutions-section > .site-container,
  .projects-section > .site-container,
  .testimonials-section > .site-container,
  .cta-section > .site-container {
    padding-inline: 10px;
  }

  .hero-section {
    padding-top: 42px;
  }

  .stats-section,
  .showcase-section,
  .solutions-section,
  .projects-section,
  .testimonials-section,
  .cta-section {
    padding: var(--screen-section-safe-top) 0 var(--screen-section-safe-bottom);
  }

  .stats-section > .site-container,
  .showcase-section > .site-container,
  .solutions-section > .site-container,
  .projects-section > .site-container,
  .testimonials-section > .site-container,
  .cta-section > .site-container {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .hero-grid {
    gap: 18px;
  }

  .contact-modal__panel {
    width: min(100vw - 24px, 100%);
    padding: 40px 22px 22px;
    border-radius: 28px;
  }

  .contact-modal__layout,
  .contact-modal__form {
    grid-template-columns: 1fr;
  }

  .contact-modal__info {
    padding: 22px 20px;
  }
}

@media (max-width: 720px) {
  .hero-section {
    padding: 40px 0 96px;
  }

  main > section:not(.hero-section) {
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(2.35rem, 11.6vw, 3.25rem);
    line-height: 0.94;
  }

  .hero-title > span:first-child,
  .hero-title > span:last-child {
    white-space: normal;
  }

  .hero-title > span:last-child {
    font-size: clamp(1.32rem, 7vw, 1.88rem);
  }

  .stats-section,
  .showcase-section,
  .solutions-section,
  .projects-section,
  .testimonials-section,
  .cta-section {
    padding: var(--screen-section-safe-top) 0 var(--screen-section-safe-bottom);
  }

  .hero-section > .site-container,
  .stats-section > .site-container,
  .showcase-section > .site-container,
  .solutions-section > .site-container,
  .projects-section > .site-container,
  .testimonials-section > .site-container,
  .cta-section > .site-container {
    min-height: 0;
    margin: 0 auto;
    align-content: start;
    padding-inline: 0;
  }

  .testimonials-section > .site-container {
    grid-template-rows: auto auto auto;
    gap: 18px;
  }

  .stats-section > .site-container,
  .showcase-section > .site-container,
  .solutions-section > .site-container,
  .projects-section > .site-container,
  .testimonials-section > .site-container,
  .cta-section > .site-container {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .split-heading,
  .showcase-heading,
  .testimonials-heading,
  .stats-heading {
    margin-bottom: 24px;
  }

  .showcase-card,
  .solutions-image {
    height: 388px;
  }

  .testimonials-section .testimonial-layout {
    --testimonial-panel-height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "panel"
      "portrait";
    grid-template-rows: auto auto;
    gap: 8px;
    align-items: stretch;
  }

  .testimonials-section .testimonial-panel {
    grid-area: panel;
    height: fit-content;
    min-height: 0;
    align-self: start;
    padding: 16px;
  }

  .testimonials-section .testimonial-portrait {
    grid-area: portrait;
    height: min(62vw, 280px);
    min-height: min(62vw, 280px);
    justify-self: stretch;
    align-self: stretch;
  }

  .testimonials-section .testimonial-slide {
    height: auto;
    min-height: 0;
    grid-template-rows: auto minmax(0, 1fr) auto;
    row-gap: 0;
  }

  .testimonials-section .testimonial-slide h3 {
    max-width: none;
    font-size: clamp(1.34rem, 6vw, 1.82rem);
    line-height: 1.08;
  }

  .testimonials-section .testimonial-slide p {
    margin-top: 10px;
    font-size: 0.94rem;
    line-height: 1.46;
  }

  .testimonials-section .testimonial-meta {
    gap: 10px;
    padding-top: 12px;
  }

  .testimonials-section .testimonial-meta > div:first-child {
    max-width: none;
  }

  .testimonials-section .testimonial-controls {
    width: 100%;
    gap: 8px;
    justify-content: flex-start;
  }

  .testimonials-section .cta-banner {
    margin-top: 0;
    align-self: stretch;
    gap: 12px;
    padding: 18px 16px;
  }

  .testimonials-section .cta-banner h2 {
    font-size: clamp(1.42rem, 6vw, 1.82rem);
    line-height: 1.08;
  }

  .testimonials-section .cta-banner p {
    margin-top: 8px;
    line-height: 1.55;
  }

  .contact-modal {
    padding: 12px;
  }

  .contact-modal__panel {
    max-height: calc(100vh - 24px);
    padding: 36px 16px 18px;
    border-radius: 24px;
  }

  .contact-modal__close {
    top: 12px;
    right: 14px;
    width: auto;
    height: auto;
    font-size: 28px;
  }

  .contact-modal__field textarea {
    min-height: 144px;
  }
}

@media (max-width: 720px) and (min-width: 541px) {
  .testimonials-section > .site-container {
    grid-template-rows: auto auto auto;
    gap: 0;
  }

  .testimonials-section .testimonial-layout {
    height: auto;
    min-height: 0;
    grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.68fr);
    grid-template-areas: "panel portrait";
    grid-template-rows: auto;
    gap: 14px;
    align-items: stretch;
  }

  .testimonials-section .testimonial-panel {
    height: auto;
    min-height: 0;
    align-self: start;
    padding: 18px;
  }

  .testimonials-section .testimonial-portrait {
    height: auto;
    min-height: 0;
    justify-self: stretch;
    align-self: stretch;
  }
}

@media (max-width: 1080px) and (min-width: 721px) {
  :root {
    --screen-section-safe-top: calc(var(--site-header-height) + 4px);
    --screen-section-safe-bottom: 8px;
    --tablet-section-edge-space: 28px;
    --home-section-frame-pad: 14px;
    --home-section-space-tight: 14px;
  }

  main > section:not(.hero-section) {
    min-height: auto;
  }

  .stats-section,
  .showcase-section,
  .solutions-section,
  .projects-section,
  .testimonials-section,
  .cta-section {
    padding: var(--tablet-section-edge-space) 0;
  }

  .stats-section > .site-container,
  .showcase-section > .site-container,
  .solutions-section > .site-container,
  .projects-section > .site-container,
  .testimonials-section > .site-container,
  .cta-section > .site-container {
    min-height: 0;
    margin: 0 auto;
    align-content: start;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .showcase-heading,
  .split-heading,
  .testimonials-heading {
    margin-bottom: 22px;
  }

  .contact-modal {
    padding: 16px;
  }

  .contact-modal__panel {
    width: min(960px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    padding: 34px 24px 20px;
    border-radius: 28px;
  }

  .contact-modal__close {
    top: 10px;
    right: 18px;
    font-size: 30px;
  }

  .contact-modal__layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(240px, 0.74fr);
    gap: 16px;
    align-items: start;
  }

  .contact-modal__title {
    margin-bottom: 0;
    font-size: clamp(1.55rem, 2.35vw, 1.9rem);
  }

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

  .contact-modal__field input,
  .contact-modal__field textarea {
    min-height: 50px;
    padding-inline: 14px;
  }

  .contact-modal__field textarea {
    min-height: 124px;
    padding-top: 14px;
  }

  .contact-modal__privacy {
    gap: 10px;
    font-size: 0.84rem;
    line-height: 1.4;
  }

  .contact-modal__privacy input {
    margin-top: 2px;
  }

  .contact-modal__submit {
    min-height: 42px;
    padding-inline: 20px;
  }

  .contact-modal__info {
    gap: 12px;
    padding: 18px 16px;
  }

  .contact-modal__info-title {
    font-size: 1.06rem;
  }

  .contact-modal__info-label {
    font-size: 0.72rem;
  }

  .contact-modal__info-block {
    gap: 6px;
  }

  .stats-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stats-cards {
    gap: 14px;
  }

  .stat-card {
    min-height: 124px;
    padding: 22px 18px;
  }

  .stat-card span {
    margin-top: 10px;
    font-size: 0.92rem;
  }

  .stats-feature {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
    gap: 14px;
    min-height: 0;
    align-items: center;
  }

  .stats-feature__copy {
    gap: 18px;
  }

  .stats-feature__copy p {
    max-width: 34ch;
  }

  .stats-feature__button {
    margin-top: 0;
  }

  .stats-feature__image {
    width: min(100%, 320px);
    max-width: 320px;
  }

  .showcase-grid {
    gap: 14px;
  }

  .showcase-card {
    height: 308px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .solutions-copy .section-copy {
    max-width: none;
    margin-top: 18px;
  }

  .solutions-copy .button-row {
    gap: 10px 12px;
    margin-top: 20px;
  }

  .metric-row {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: start;
    gap: 14px 24px;
    margin-top: 22px;
  }

  .metric-row strong {
    font-size: clamp(1.8rem, 2.4vw, 2.35rem);
  }

  .metric-row span {
    font-size: 0.92rem;
  }

  .solutions-image {
    height: 380px;
  }

  .projects-section > .site-container {
    align-content: start;
    gap: 20px;
  }

  .projects-section .split-heading {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.78fr);
    gap: 24px;
  }

  .projects-section .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: auto;
    gap: 16px;
    height: auto;
    min-height: 0;
  }

  .projects-section .project-card,
  .projects-section .project-card--large,
  .projects-section .project-card--wide {
    grid-column: auto;
    grid-row: auto;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .testimonials-section > .site-container {
    grid-template-rows: auto auto auto;
    gap: 0;
  }

  .testimonials-section .testimonial-layout {
    height: auto;
    min-height: 0;
    grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.62fr);
    gap: 16px;
    align-items: stretch;
  }

  .testimonials-section .testimonial-panel {
    height: auto;
    min-height: 0;
    align-self: start;
    padding: 22px;
  }

  .testimonials-section .testimonial-meta {
    gap: 14px;
    padding-top: 14px;
  }

  .testimonials-section .testimonial-portrait {
    height: auto;
    min-height: 0;
    align-self: stretch;
  }

  .testimonials-section .cta-banner {
    margin-top: 0;
    align-self: stretch;
  }

  .cta-banner,
  .testimonials-section .cta-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px 22px;
    padding: 30px 32px;
  }
}

.home-page .hero-section {
  height: var(--screen-section-height);
  min-height: var(--screen-section-height);
  max-height: var(--screen-section-height);
  padding: 0;
  display: flex;
  align-items: stretch;
  overflow: visible;
  background: #07131b;
}

.home-page .hero-section::before {
  inset: calc(var(--hero-header-overlap) * -1) 0 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 28%, rgba(119, 197, 238, 0.12), transparent 40%),
    linear-gradient(100deg, rgba(7, 19, 27, 0.42) 0%, rgba(7, 19, 27, 0.28) 34%, rgba(7, 19, 27, 0.14) 58%, rgba(7, 19, 27, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 19, 27, 0.1) 0%, rgba(7, 19, 27, 0.18) 100%);
}

.home-page .hero-video-stage {
  position: absolute;
  inset: calc(var(--hero-header-overlap) * -1) 0 0;
  z-index: -2;
  overflow: hidden;
}

.home-page .hero-video-stage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.96) contrast(1.01) brightness(0.92);
  transform: scale(1.02);
}

.home-page .hero-section > .site-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: min(var(--container), calc(100vw - 24px));
  height: var(--screen-section-height);
  min-height: var(--screen-section-height);
  max-height: var(--screen-section-height);
  margin: 0 auto;
  padding: calc(var(--site-header-height) + clamp(12px, 2vh, 22px)) clamp(12px, 1.2vw, 22px) 0;
}

.home-page .hero-video-layout {
  width: min(860px, 100%);
  display: block;
}

.home-page .hero-video-copy {
  width: 100%;
  max-width: min(720px, 100%);
  color: #ffffff;
}

.home-page .hero-video-kicker {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(7, 19, 27, 0.26);
}

.home-page .hero-title {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 11ch;
  color: #ffffff;
  font-size: clamp(3.5rem, 7vw, 6.3rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 600;
  text-shadow: 0 16px 40px rgba(7, 19, 27, 0.34);
}

.home-page .hero-title > span {
  display: block;
}

.home-page .hero-title > span:first-child {
  white-space: normal;
}

.home-page .hero-title > span:last-child {
  margin-top: 0;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.44rem, 2.4vw, 2.3rem);
  line-height: 1.08;
  white-space: normal;
}

.home-page .hero-copy__text {
  max-width: 28rem;
  margin-top: clamp(16px, 1.6vw, 22px);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.55;
  text-shadow: 0 10px 22px rgba(7, 19, 27, 0.26);
}

.home-page .hero-video-copy .button-row {
  margin-top: clamp(24px, 2.5vw, 34px);
}

.home-page .hero-video-copy .button--dark {
  background: #ffffff;
  color: #07131b;
  border-color: transparent;
}

.home-page .hero-video-copy .button--dark:hover {
  background: rgba(255, 255, 255, 0.88);
}

.home-page .hero-video-copy .button--light {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: #ffffff;
  box-shadow: none;
}

.home-page .hero-video-copy .button--light:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.home-page .hero-audio-toggle {
  justify-content: center;
  min-width: 64px;
  min-height: 40px;
  padding: 0 18px;
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: #ffffff;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-page .hero-audio-toggle:hover,
.home-page .hero-audio-toggle:focus-visible {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.home-page .hero-audio-toggle.is-active {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: #ffffff;
  box-shadow: none;
}

.home-page .hero-audio-toggle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.home-page .hero-audio-toggle__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.home-page .hero-audio-toggle__icon--active {
  display: none;
}

.home-page .hero-audio-toggle.is-active .hero-audio-toggle__icon--muted {
  display: none;
}

.home-page .hero-audio-toggle.is-active .hero-audio-toggle__icon--active {
  display: inline-flex;
}

@media (max-width: 1080px) {
  .home-page .hero-section > .site-container {
    padding-top: calc(var(--site-header-height) + 10px);
  }

  .home-page .hero-video-layout {
    width: min(760px, 100%);
  }
}

@media (max-width: 720px) {
  .home-page .hero-section > .site-container {
    width: min(100vw - 16px, var(--container));
    padding: calc(var(--site-header-height) + 8px) 0 0;
  }

  .home-page .hero-title {
    gap: 10px;
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .home-page .hero-title > span:last-child {
    margin-top: 0;
    font-size: clamp(1.22rem, 6vw, 1.7rem);
  }

  .home-page .hero-copy__text {
    font-size: 1rem;
  }
}

@media (min-width: 821px) and (max-width: 1200px) {
  .testimonials-section .testimonial-panel {
    height: var(--testimonial-panel-height, auto);
    min-height: var(--testimonial-panel-height, 320px);
  }

  .testimonials-section .testimonial-slide {
    height: auto;
    min-height: 0;
    grid-template-rows: auto minmax(0, 1fr) auto;
    row-gap: 0;
  }

  .testimonials-section .testimonial-portrait {
    height: var(--testimonial-panel-height, 320px);
    min-height: var(--testimonial-panel-height, 320px);
  }
}

@media (min-width: 721px) and (max-width: 1024px) {
  .testimonials-section .cta-banner {
    margin-top: 14px;
  }
}

@media (max-width: 1080px) and (min-width: 721px) {
  :root {
    --space-3xs: 10px;
    --space-2xs: 14px;
    --space-xs: 18px;
    --space-sm: 22px;
    --space-md: 24px;
    --space-lg: 30px;
    --space-xl: 36px;
    --container: min(100vw - 56px, 1480px);
  }

  .home-page .hero-video-copy {
    max-width: 44rem;
  }

  .home-page .hero-copy__text,
  .home-page .hero-video-copy .button-row,
  .showcase-copy,
  .testimonials-copy,
  .solutions-copy .section-copy,
  .solutions-copy .button-row {
    margin-top: var(--space-2xs);
  }

  .stats-heading,
  .split-heading,
  .showcase-heading,
  .testimonials-heading {
    margin-bottom: var(--space-sm);
  }

  .stats-heading {
    gap: var(--space-lg);
  }

  .stats-layout,
  .showcase-grid,
  .solutions-grid,
  .projects-section > .site-container,
  .projects-section .split-heading {
    gap: var(--space-xs);
  }

  .stats-cards,
  .projects-section .projects-grid,
  .testimonial-layout,
  .testimonials-section .testimonial-meta,
  .metric-row,
  .cta-banner,
  .testimonials-section .cta-banner {
    gap: var(--space-2xs);
  }

  .testimonials-section > .site-container {
    gap: var(--space-2xs);
  }

  .testimonials-section .testimonial-panel {
    padding: var(--space-sm) var(--space-sm) var(--space-xs);
  }

  .stat-card {
    padding: var(--space-sm) var(--space-sm);
  }

  .cta-banner,
  .testimonials-section .cta-banner {
    padding: var(--space-sm) var(--space-md);
  }

  .testimonials-section .cta-banner {
    margin-top: 0;
  }

  .site-footer {
    padding-top: 40px;
  }

  .footer-grid {
    gap: var(--space-lg);
    padding-bottom: var(--space-sm);
  }

  .footer-copy,
  .social-row {
    margin-top: var(--space-lg);
  }
}

@media (min-width: 821px) and (max-width: 1100px) {
  .stats-feature {
    grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.98fr);
    gap: var(--space-xs);
  }

  .stats-feature__copy p {
    max-width: 38ch;
  }

  .stats-feature__image {
    width: min(100%, 392px);
    max-width: 392px;
  }
}

@media (min-width: 721px) {
  .testimonials-section .testimonial-layout:not(.is-portrait-hidden) {
    align-items: stretch;
  }

  .testimonials-section .testimonial-layout:not(.is-portrait-hidden) .testimonial-panel,
  .testimonials-section .testimonial-layout:not(.is-portrait-hidden) .testimonial-portrait {
    align-self: stretch;
  }

  .testimonials-section .testimonial-layout:not(.is-portrait-hidden) .testimonial-portrait img {
    object-fit: cover;
  }
}

@media (max-width: 900px) {
  .site-header .header-row {
    position: relative;
  }

  .site-header .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 22px;
    box-sizing: border-box;
    border: 1px solid rgba(39, 58, 66, 0.08);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(119, 197, 238, 0.14);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 5;
  }

  .site-header .site-nav.is-open {
    display: flex;
  }

  .site-header .site-nav a {
    width: 100%;
    min-height: 48px;
  }
}

/* Unified site radius across images, surfaces, and controls. */
img {
  border-radius: var(--surface-radius);
}

.outline-pill,
.button,
.header-social-link,
.contact-modal__submit {
  border-radius: var(--control-radius);
}

.hero-media,
.hero-side__image,
.stat-card,
.detail-card,
.image-card,
.showcase-card,
.solutions-image,
.project-card,
.testimonial-panel,
.testimonial-portrait,
.stats-feature__image,
.contact-modal__panel,
.contact-modal__info,
.contact-modal__field input,
.contact-modal__field textarea {
  border-radius: var(--surface-radius);
}

.stats-feature__image {
  overflow: hidden;
}

.hero-media img,
.hero-side__image img,
.showcase-card img,
.solutions-image img,
.project-card img,
.testimonial-portrait img,
.stats-feature__image img {
  border-radius: inherit;
}

/* Keep every homepage section flush with the shared header/footer edge on all devices. */
.hero-section > .site-container,
.stats-section > .site-container,
.showcase-section > .site-container,
.solutions-section > .site-container,
.projects-section > .site-container,
.testimonials-section > .site-container,
.cta-section > .site-container,
.home-page main > section > .site-container {
  width: var(--container);
  margin: 0 auto;
  padding-inline: 0px !important;
}

.stats-feature--contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  align-items: center;
  min-height: 292px;
  padding: clamp(6px, 1vw, 14px) 0 0 clamp(18px, 2vw, 28px);
  gap: clamp(18px, 2vw, 30px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.stats-feature--contact::after {
  content: none;
}

.stats-feature--contact .stats-feature__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(16px, 1.5vw, 22px);
  max-width: min(100%, 520px);
  min-height: 0;
}

.stats-feature--contact .stats-feature__copy p {
  max-width: 40ch;
  color: var(--text);
  font-size: clamp(1rem, 0.72vw + 0.76rem, 1.08rem);
  font-weight: 500;
  line-height: 1.68;
}

.stats-feature--contact .stats-feature__button {
  margin-top: 0;
}

.stats-feature--contact .stats-feature__image {
  width: min(100%, 300px);
  max-width: 300px;
  aspect-ratio: 1.08 / 1;
  justify-self: end;
  align-self: center;
  background: #ffffff;
  border: 1px solid rgba(10, 24, 31, 0.08);
  box-shadow: 0 18px 40px rgba(10, 24, 31, 0.06);
}

.stats-feature--contact .stats-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

@media (max-width: 1100px) {
  .stats-feature--contact {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 270px);
    min-height: 0;
    padding: 10px 0 0;
    align-items: flex-start;
  }

  .stats-feature--contact .stats-feature__image {
    width: min(100%, 270px);
    max-width: 270px;
  }
}

@media (max-width: 900px) {
  .stats-feature--contact {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0;
    align-items: stretch;
  }

  .stats-feature--contact .stats-feature__copy {
    max-width: none;
  }

  .stats-feature--contact .stats-feature__copy p {
    max-width: none;
  }

  .stats-feature--contact .stats-feature__image {
    width: min(100%, 420px);
    max-width: 420px;
    aspect-ratio: 1.2 / 0.92;
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .stats-feature--contact {
    padding: 0;
  }

  .stats-feature--contact .stats-feature__copy p {
    line-height: 1.64;
  }

  .stats-feature--contact .stats-feature__image {
    width: 100%;
    max-width: none;
    aspect-ratio: 1.14 / 0.9;
  }
}

.projects-section .projects-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: none;
  grid-auto-rows: auto;
  align-items: stretch;
}

.projects-section .project-card,
.projects-section .project-card--large,
.projects-section .project-card--wide {
  grid-column: auto;
  grid-row: auto;
  height: clamp(260px, 24vw, 340px);
}

@media (min-width: 721px) and (max-width: 1080px) {
  .projects-section .project-card,
  .projects-section .project-card--large,
  .projects-section .project-card--wide {
    width: 100%;
    max-width: none;
    height: auto;
    justify-self: stretch;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 720px) {
  .projects-section .projects-grid {
    grid-template-columns: 1fr;
  }

  .projects-section .project-card,
  .projects-section .project-card--large,
  .projects-section .project-card--wide {
    height: clamp(260px, 68vw, 360px);
  }
}

/* Accessibility typography pass */
body {
  font-size: 18px;
  line-height: 1.6;
}

.site-nav,
.site-nav a {
  font-size: 1rem;
  line-height: 1.45;
}

.header-top__meta a,
.header-top__meta span,
.header-top__social a,
.header-call__number,
.text-link {
  font-size: 0.96rem;
  line-height: 1.5;
}

.outline-pill,
.button,
.nav-band__side .button,
.footer-map__frame .cookie-embed-placeholder__actions .cookie-consent__button,
.footer-map__frame .cookie-embed-placeholder__actions .cookie-consent__button--link {
  min-height: 44px;
  padding: 0 20px;
  font-size: 1rem;
  line-height: 1.2;
}

.header-call__label,
.contact-modal__info-label,
.footer-hours__label,
.home-page .hero-video-kicker {
  font-size: 0.88rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.footer-copy,
.footer-column h3,
.footer-column a,
.footer-hours__group strong,
.footer-hours__group span {
  font-size: 1rem;
}

.footer-copy,
.footer-column a,
.footer-hours__group span {
  line-height: 1.65;
}

.hero-title,
.section-title,
.home-page .hero-title {
  text-wrap: balance;
}

.hero-title {
  line-height: 1;
}

.hero-title > span:last-child {
  line-height: 1.1;
}

.hero-copy__text {
  max-width: 42ch;
  font-size: clamp(1.08rem, 0.96rem + 0.36vw, 1.2rem);
  line-height: 1.72;
}

.home-page .hero-section::before {
  background:
    radial-gradient(circle at 12% 28%, rgba(119, 197, 238, 0.12), transparent 40%),
    linear-gradient(100deg, rgba(7, 19, 27, 0.42) 0%, rgba(7, 19, 27, 0.28) 34%, rgba(7, 19, 27, 0.14) 58%, rgba(7, 19, 27, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 19, 27, 0.1) 0%, rgba(7, 19, 27, 0.18) 100%);
}

.home-page .hero-video-kicker {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-shadow: 0 8px 24px rgba(7, 19, 27, 0.26);
}

.home-page .hero-title {
  text-wrap: normal;
  line-height: 0.92;
  text-shadow: 0 16px 40px rgba(7, 19, 27, 0.34);
}

.home-page .hero-title > span:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.home-page .hero-copy__text {
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.55;
  text-shadow: 0 10px 22px rgba(7, 19, 27, 0.26);
}

@media (max-width: 720px) {
  .site-nav,
  .site-nav a,
  .header-top__meta a,
  .header-top__meta span,
  .header-top__social a,
  .header-call__number,
  .text-link {
    font-size: 0.98rem;
  }

  .outline-pill,
  .button,
  .nav-band__side .button,
  .footer-copy,
  .footer-column h3,
  .footer-column a,
  .footer-hours__group strong,
  .footer-hours__group span,
  .footer-map__frame .cookie-embed-placeholder__actions .cookie-consent__button,
  .footer-map__frame .cookie-embed-placeholder__actions .cookie-consent__button--link {
    font-size: 1rem;
  }

  .hero-title,
  .home-page .hero-title {
    line-height: 1.01;
  }

  .home-page .hero-title {
    line-height: 0.92;
  }

  .hero-copy__text,
  .home-page .hero-copy__text,
  .section-copy,
  .projects-section .section-copy,
  .footer-copy,
  .footer-map__frame .cookie-embed-placeholder__address,
  .footer-map__frame .cookie-embed-placeholder__text {
    font-size: 1rem;
    line-height: 1.68;
  }

  .header-call__label,
  .home-page .hero-video-kicker,
  .contact-modal__info-label,
  .footer-hours__label {
    font-size: 0.86rem;
  }

  .home-page .hero-video-kicker {
    font-size: 0.8rem;
  }

  .home-page .hero-copy__text {
    line-height: 1.55;
  }
}

.project-card img[src$="sachs-heizung-badezimmer-sanierung-waschtisch-spiegel-fenster.webp"],
.gallery-card img[src$="sachs-heizung-badezimmer-sanierung-waschtisch-spiegel-fenster.webp"] {
  object-position: 50% 78%;
}

.project-card img[src$="sachs-heizung-badezimmer-doppelwaschtisch-runder-led-spiegel.webp"],
.gallery-card img[src$="sachs-heizung-badezimmer-doppelwaschtisch-runder-led-spiegel.webp"] {
  object-position: 44% 58%;
}

.project-card img[src$="sachs-heizung-badezimmer-waschtisch-dusche-holzmoebel.webp"],
.gallery-card img[src$="sachs-heizung-badezimmer-waschtisch-dusche-holzmoebel.webp"] {
  object-position: 50% 68%;
}

.project-card img[src$="sachs-heizung-gaestebad-waschtisch-wc-spiegel.webp"],
.gallery-card img[src$="sachs-heizung-gaestebad-waschtisch-wc-spiegel.webp"] {
  object-position: 50% 74%;
}

.project-card img[src$="sachs-heizung-badezimmer-badewanne-duscharmatur-wandnische.webp"],
.gallery-card img[src$="sachs-heizung-badezimmer-badewanne-duscharmatur-wandnische.webp"] {
  object-position: 50% 66%;
}

.project-card img[src$="sachs-heizung-badezimmer-badewanne-glasabtrennung-duschloesung.webp"],
.gallery-card img[src$="sachs-heizung-badezimmer-badewanne-glasabtrennung-duschloesung.webp"] {
  object-position: 52% 34%;
}

.project-card img[src$="sachs-heizung-badezimmer-dusche-regendusche-wandnische.webp"],
.gallery-card img[src$="sachs-heizung-badezimmer-dusche-regendusche-wandnische.webp"] {
  object-position: 54% 22%;
}

/* Virtual tour CTA and modal */
.home-page .hero-tour-button {
  padding-right: 14px;
}

.home-page .hero-tour-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
}

.tour-modal[hidden] {
  display: none;
}

.tour-modal {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 30px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.tour-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.tour-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(119, 197, 238, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(7, 19, 27, 0.48), rgba(7, 19, 27, 0.64));
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
}

.tour-modal__panel {
  position: relative;
  width: min(1180px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(16px, 2vw, 22px);
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  box-shadow: 0 38px 110px rgba(7, 19, 27, 0.34);
  transform: translateY(10px) scale(0.985);
  transition: transform 0.18s ease;
}

.tour-modal.is-open .tour-modal__panel {
  transform: translateY(0) scale(1);
}

.tour-modal__close {
  position: absolute;
  top: 16px;
  right: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-size: 34px;
  line-height: 0.8;
}

.tour-modal__header {
  max-width: 760px;
  padding-right: 52px;
}

.tour-modal__eyebrow {
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.tour-modal__title {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-wrap: balance;
}

.tour-modal__copy {
  max-width: 58ch;
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.68);
  font-size: 1rem;
  line-height: 1.55;
}

.tour-modal__viewport {
  position: relative;
  min-height: min(700px, calc(100vh - 244px));
  overflow: hidden;
  border: 1px solid rgba(119, 197, 238, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(7, 19, 27, 0.94), rgba(19, 47, 62, 0.92)),
    #07131b;
}

.tour-modal__viewport iframe {
  display: block;
  width: 100%;
  height: min(700px, calc(100vh - 244px));
  min-height: 360px;
  border: 0;
  background: #07131b;
}

.tour-modal__loader {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tour-modal__loader[hidden] {
  display: none;
}

@media (max-width: 820px) {
  .home-page .hero-tour-button {
    padding-right: 12px;
  }

  .tour-modal {
    padding: 12px;
  }

  .tour-modal__panel {
    width: min(100%, calc(100vw - 18px));
    max-height: calc(100dvh - 18px);
    gap: 14px;
    padding: 26px 14px 14px;
    border-radius: 24px;
  }

  .tour-modal__close {
    top: 12px;
    right: 14px;
    font-size: 28px;
  }

  .tour-modal__header {
    padding-right: 34px;
  }

  .tour-modal__eyebrow {
    margin-bottom: 6px;
    font-size: 0.72rem;
  }

  .tour-modal__title {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .tour-modal__copy {
    margin-top: 8px;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .tour-modal__viewport {
    min-height: min(560px, calc(100dvh - 220px));
    border-radius: 18px;
  }

  .tour-modal__viewport iframe {
    height: min(560px, calc(100dvh - 220px));
    min-height: 320px;
  }
}

@media (max-width: 520px) {
  .home-page .hero-video-copy .button-row {
    align-items: stretch;
  }

  .home-page .hero-video-copy .button-row .button:not(.hero-audio-toggle) {
    width: 100%;
  }

  .home-page .hero-audio-toggle {
    width: auto;
  }

  .tour-modal__copy {
    display: none;
  }

  .tour-modal__viewport {
    min-height: min(560px, calc(100dvh - 164px));
  }

  .tour-modal__viewport iframe {
    height: min(560px, calc(100dvh - 164px));
    min-height: 300px;
  }
}
