/* ==========================================================================
   M.O. Labacom Consult — Shared Stylesheet
   Fonts: Plus Jakarta Sans (Paralucent substitute), Playfair Display (italic accents), Poppins (testimonial names)
   ========================================================================== */

:root {
  --dark: #0a3a3c;
  --darker: #161919;
  --gray-80: #454747;
  --green: #68e570;
  --green-dark: #01b381;
  --mint-text: #bae7bd;
  --mint-bg: rgba(104, 229, 112, 0.2);
  --mint-bg-soft: rgba(104, 229, 112, 0.1);
  --light-mint: #def7df;
  --peach: #f8d498;
  --white: #ffffff;
  --off-white: #f4faf5;
  --section-gray: #e4e4e4;
  --section-green: #d2e4d3;

  --section-padding-y: 150px;
  --section-padding-y-mobile: 80px;

  --font-heading: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-name: "Poppins", "Segoe UI", sans-serif;
  --font-accent: "Playfair Display", serif;

  --container-width: 1200px;
  --side-pad: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--darker);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--side-pad);
}

.italic-accent {
  font-family: var(--font-accent);
  font-weight: 700;
  font-style: italic;
}

/* ==========================================================================
   INTRO LOADER
   ========================================================================== */

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  opacity: 1;
  transition: opacity 0.35s ease;
}

.intro-loader img {
  width: 140px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0;
  transform: scale(0.85);
  animation: introLogoIn 0.45s ease forwards;
}

@keyframes introLogoIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.intro-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

html.no-intro .intro-loader {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .intro-loader {
    display: none;
  }
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 20px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.16px;
  white-space: nowrap;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green);
  color: var(--dark);
}

.btn-primary:hover {
  box-shadow: 0 8px 20px rgba(104, 229, 112, 0.4);
}

.btn-outline {
  border: 1px solid var(--green);
  color: var(--mint-text);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(104, 229, 112, 0.1);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.btn-arrow svg {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   NAVBAR (shared across all pages)
   ========================================================================== */

.navbar-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 24px var(--side-pad) 0;
}

.navbar {
  max-width: var(--container-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(10, 58, 60, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 12px 24px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  height: 32px;
}

.navbar__logo img {
  height: 100%;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.navbar__links a,
.navbar__links button {
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.16px;
  padding: 6px 0;
}

.navbar__mobile-only {
  display: none;
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__cta {
  font-size: 16px;
  padding: 10px 20px;
}

.navbar__links a.is-active {
  color: var(--green);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.navbar__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  background: #050f0f;
  padding-top: 128px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 3%,
    rgba(10, 58, 60, 0.81) 57%,
    rgba(10, 58, 60, 0) 92%
  );
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 40px;
  align-items: center;
  padding-block: 80px 64px;
  min-height: 75vh;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero__title {
  margin: 0;
  font-weight: 800;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--white);
}

.hero__title .italic-accent {
  color: var(--green);
}

.hero__subtitle {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.2px;
  color: var(--mint-text);
  max-width: 540px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__actions .btn {
  font-size: 18px;
  padding: 14px 20px;
}

.hero__card {
  justify-self: end;
  align-self: end;
  width: 100%;
  max-width: 300px;
  min-width: 0;
  background: rgba(104, 229, 112, 0.1);
  border: 1px solid var(--green);
  border-radius: 14px;
  overflow: hidden;
  display: block;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.hero__card:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.hero__card-media {
  position: relative;
  display: block;
  aspect-ratio: 288 / 220;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(104, 229, 112, 0.5), rgba(10, 58, 60, 0.5));
}

.hero__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hero__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  transition: transform 0.2s ease;
}

.hero__card:hover .hero__play {
  transform: translate(-50%, -50%) scale(1.08);
}

.hero__play svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__reviews {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(10, 58, 60, 0.55);
}

.hero__reviews-avatars {
  display: flex;
  flex-shrink: 0;
}

.hero__avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--dark);
  margin-left: -7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
}

.hero__avatar:first-child {
  margin-left: 0;
}

.hero__avatar svg {
  width: 14px;
  height: 14px;
}

.hero__avatar--a {
  background: var(--green);
}

.hero__avatar--b {
  background: var(--peach);
}

.hero__avatar--c {
  background: var(--mint-text);
}

.hero__reviews-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hero__reviews-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero__reviews-score {
  font-weight: 800;
  font-size: 12px;
  color: var(--green);
}

.hero__reviews-stars {
  display: flex;
  align-items: center;
  gap: 1px;
}

.hero__reviews-stars svg {
  width: 9px;
  height: 9px;
}

.hero__reviews-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--mint-text);
  white-space: nowrap;
}

/* ==========================================================================
   VIDEO LIGHTBOX MODAL
   ========================================================================== */

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.video-modal:not([hidden]) {
  display: flex;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 15, 15, 0.86);
}

.video-modal__content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 80vh;
  line-height: 0;
}

.video-modal__video {
  display: block;
  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  background: #000;
}

.video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}

.video-modal__close:hover {
  background: rgba(0, 0, 0, 0.8);
}

.video-modal__close:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.video-modal__close svg {
  width: 20px;
  height: 20px;
}

body.modal-open {
  overflow: hidden;
}

/* ==========================================================================
   CLIENTS LOGO BAR
   ========================================================================== */

.client-logos {
  background: var(--off-white);
  padding-block: 56px;
  border-bottom: 1px solid rgba(10, 58, 60, 0.08);
}

.client-logos__heading {
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-80);
  margin: 0 0 32px;
}

.client-logos__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px 56px;
}

.client-logos__item {
  flex: 0 1 auto;
  max-height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.client-logos__item:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */

.services {
  position: relative;
  background: var(--off-white);
  padding-block: var(--section-padding-y);
  overflow: hidden;
  background-image:
    repeating-linear-gradient(0deg, rgba(10, 58, 60, 0.05) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(90deg, rgba(10, 58, 60, 0.05) 0 1px, transparent 1px 130px);
}

.services__header {
  max-width: 620px;
  margin-bottom: 64px;
}

.section-heading {
  font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -1.4px;
  color: var(--dark);
  margin: 0 0 18px;
}

.section-subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.2px;
  color: var(--dark);
  margin: 0;
  max-width: 540px;
}

.services__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--mint-bg);
  border: 1px solid var(--white);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-card__media {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 332 / 160;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.service-card__title {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.8px;
  color: var(--dark);
  margin: 0;
}

.service-card__text {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: -0.1px;
  color: var(--dark);
  margin: 0;
  flex-grow: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 500;
  font-size: 16px;
}

.service-card__link .btn-arrow {
  width: 22px;
  height: 22px;
  transform: rotate(90deg);
}

/* ==========================================================================
   CLARITY / STATS SECTION
   ========================================================================== */

.clarity {
  padding-block: var(--section-padding-y);
  background: var(--white);
}

.clarity__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 48px;
  align-items: start;
}

.clarity__heading {
  color: var(--dark);
}

.clarity__text {
  color: var(--dark);
  opacity: 0.85;
}

.checklist {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-block: 14px;
  border-bottom: 1px solid rgba(10, 58, 60, 0.1);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.17px;
  color: var(--dark);
}

.checklist li:last-child {
  border-bottom: none;
}

.checklist__icon {
  flex-shrink: 0;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.checklist__icon svg {
  width: 14px;
  height: 14px;
}

.clarity .checklist li {
  gap: 12px;
  padding-block: 12px;
  font-size: 16px;
  letter-spacing: -0.16px;
}

.clarity .checklist__icon {
  width: 24px;
  height: 24px;
}

.clarity .checklist__icon svg {
  width: 12px;
  height: 12px;
}

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

.stat-card {
  background: var(--dark);
  border-radius: 16px;
  padding: 28px 24px;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.stat-card__number {
  font-weight: 800;
  font-size: 42px;
  letter-spacing: -0.5px;
  color: var(--green);
  line-height: 1;
}

.stat-card__label {
  font-weight: 500;
  font-size: 13px;
  color: var(--mint-text);
  line-height: 1.3;
}

/* ==========================================================================
   PROCESS / STEPS
   ========================================================================== */

.process {
  position: relative;
  background: var(--dark);
  padding-block: var(--section-padding-y);
  overflow: hidden;
}

.process__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  z-index: 0;
}

.process__inner {
  position: relative;
  z-index: 1;
}

.process__header {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 64px;
}

.process__header .section-heading,
.process__header .section-subtitle {
  color: var(--white);
}

.process__header .italic-accent {
  color: var(--green);
}

.process__header .section-subtitle {
  margin-inline: auto;
}

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

.step-card {
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-card--wide {
  grid-column: span 2;
  background: var(--light-mint);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 40px;
}

.step-card--peach {
  background: var(--peach);
}

.step-card--mint {
  background: var(--light-mint);
}

.step-card__label {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.4px;
  color: var(--green-dark);
  margin: 0;
}

.step-card--peach .step-card__label {
  color: var(--white);
}

.step-card__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-card__icon {
  width: 49px;
  height: 49px;
  object-fit: contain;
  flex-shrink: 0;
}

.step-card__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--dark);
  margin: 0;
}

.step-card__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.16px;
  color: var(--dark);
  margin: 0;
}

.step-card__media {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.step-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-card--stacked .step-card__media {
  margin-top: auto;
}

/* ==========================================================================
   CTA
   ========================================================================== */

.cta {
  position: relative;
  overflow: hidden;
  background: #10201f;
}

.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cta__inner {
  position: relative;
  z-index: 2;
  padding-block: 120px;
  display: flex;
  justify-content: flex-end;
}

.cta__content {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  background: rgba(10, 58, 60, 0.7);
  border-radius: 18px;
  padding: 56px 48px;
}

.cta__title {
  font-weight: 800;
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -1.44px;
  color: var(--white);
  margin: 0;
}

.cta__title .italic-accent {
  color: var(--green);
}

.cta__subtitle {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.13px;
  color: var(--white);
  margin: 0;
}

.cta__content .btn {
  align-self: flex-start;
  font-size: 18px;
}

/* ==========================================================================
   FOOTER (shared across all pages)
   ========================================================================== */

.footer {
  background: var(--dark);
  color: var(--white);
  padding-block: 64px 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__brand-logo {
  height: 32px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer__about {
  font-size: 14px;
  line-height: 1.6;
  color: var(--mint-text);
  max-width: 260px;
  margin: 0 0 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__heading {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__links a {
  font-size: 15px;
  color: var(--mint-text);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--mint-text);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__card {
    justify-self: start;
    align-self: auto;
    max-width: 280px;
  }

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

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

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

  .step-card--wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    row-gap: 32px;
  }

  .cta__inner {
    justify-content: center;
    text-align: center;
  }

  .cta__content {
    align-items: center;
    padding: 40px 32px;
  }

  .cta__content .btn {
    align-self: center;
  }
}

@media (max-width: 720px) {
  :root {
    --side-pad: 20px;
  }

  .navbar-wrap {
    padding-top: 16px;
  }

  .navbar {
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    padding: 12px 16px;
  }

  .navbar__logo {
    height: 34px;
  }

  .navbar__links {
    display: flex;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    background: var(--dark);
    border-radius: 16px;
    transition: max-height 0.3s ease, opacity 0.25s ease, margin-top 0.3s ease;
  }

  .navbar__links.is-open {
    max-height: 600px;
    opacity: 1;
    margin-top: 12px;
  }

  .navbar__links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .navbar__links li:last-child {
    border-bottom: none;
  }

  .navbar__links a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 52px;
    padding: 0 20px;
  }

  .navbar__mobile-only {
    display: list-item;
  }

  .navbar__right {
    align-items: center;
    gap: 12px;
  }

  .navbar__right .navbar__cta--desktop {
    display: none;
  }

  .navbar__cta {
    padding: 8px 14px;
    font-size: 14px;
  }

  .navbar__toggle {
    align-items: center;
    justify-content: center;
    padding: 8px 2px;
    display: flex;
  }

  .navbar__toggle span {
    transition: transform 0.25s ease, opacity 0.2s ease;
  }

  .navbar__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .navbar__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .navbar__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding-top: 108px;
  }

  .hero__inner {
    padding-block: 40px 48px;
    min-height: 0;
  }

  .hero__title {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .hero__subtitle {
    font-size: 17px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .hero__card {
    justify-self: center;
    max-width: 280px;
    margin-inline: auto;
  }

  .video-modal__content,
  .video-modal__video {
    max-width: 96vw;
    max-height: 88vh;
  }

  .section-heading {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .section-subtitle {
    font-size: 17px;
  }

  .services,
  .clarity,
  .process {
    padding-block: var(--section-padding-y-mobile);
  }

  .client-logos {
    padding-block: 36px;
  }

  .client-logos__row {
    gap: 28px 32px;
  }

  .client-logos__item {
    max-height: 28px;
  }

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

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

  .clarity .checklist li {
    gap: 10px;
    padding-block: 10px;
    font-size: 14px;
  }

  .clarity .checklist__icon {
    width: 21px;
    height: 21px;
  }

  .clarity .checklist__icon svg {
    width: 10px;
    height: 10px;
  }

  .step-card--wide {
    padding: 24px;
  }

  .step-card {
    padding: 24px;
  }

  .step-card__title {
    font-size: 26px;
  }

  .cta__title {
    font-size: 30px;
  }

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

/* ==========================================================================
   ABOUT PAGE (about.html only)
   ========================================================================== */

.about-hero {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding-top: 128px;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.about-hero__tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(150deg, rgba(10, 58, 60, 0.88) 20%, rgba(1, 179, 129, 0.35) 55%, rgba(10, 58, 60, 0.9) 100%);
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(10, 58, 60, 0) 0%,
    rgba(10, 58, 60, 0.6) 35%,
    rgba(0, 0, 0, 0.92) 60%,
    rgba(0, 0, 0, 0.92) 85%,
    rgba(0, 0, 0, 0.78) 100%
  );
}

.about-hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-block: 96px 80px;
  min-height: 75vh;
}

.about-hero__lead {
  max-width: 760px;
}

.about-purpose-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 56px;
}

.about-eyebrow {
  font-weight: 700;
  font-size: 18px;
  color: var(--green);
  margin: 0 0 14px;
}

.about-purpose {
  border-left: 4px solid var(--green);
  padding-left: 24px;
}

.about-purpose__quote {
  font-family: var(--font-accent);
  font-weight: 700;
  font-style: italic;
  font-size: 28px;
  line-height: 1.3;
  color: var(--white);
  margin: 0;
}

.about-mission-vision {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-mission-vision__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.18px;
  color: var(--mint-text);
  margin: 0;
}

.about-photo-break {
  line-height: 0;
}

.about-photo-break img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.about-stats-bar {
  background: var(--dark);
  padding-block: 48px;
}

.about-stats-bar__row {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

.about-stats-bar__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 48px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.3);
}

.about-stats-bar__item:last-child {
  border-right: none;
  padding-right: 0;
}

.about-stats-bar__number {
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.4px;
  color: var(--green);
  line-height: 1.1;
}

.about-stats-bar__label {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.13px;
  color: var(--mint-text);
  max-width: 200px;
  line-height: 1.3;
}

.values {
  position: relative;
  background-color: #e7e3dd;
  padding-block: 180px;
  overflow: hidden;
  background-image:
    repeating-linear-gradient(0deg, rgba(10, 58, 60, 0.05) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(90deg, rgba(10, 58, 60, 0.05) 0 1px, transparent 1px 130px);
}

.values-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: #f7feff;
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-card__icon {
  width: 58px;
  height: 50px;
  border-radius: 12px;
  background: rgba(104, 229, 112, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-card__icon img {
  width: 32px;
  height: 32px;
}

.value-card__title {
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.6px;
  color: var(--dark);
  margin: 0;
}

.value-card__text {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.1px;
  color: var(--dark);
  margin: 0;
}

.values-photo {
  grid-column: span 2;
  border-radius: 20px;
  overflow: hidden;
}

.values-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story {
  padding-block: var(--section-padding-y);
  background: #e4e4e4;
}

.story__inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
}

.story__media img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 20px;
}

.story__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  opacity: 0.85;
  margin: 0;
}

@media (max-width: 1024px) {
  .about-purpose-mission {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .story__media {
    order: -1;
  }

}

@media (max-width: 720px) {
  .about-hero {
    padding-top: 108px;
  }

  .about-hero__inner {
    min-height: 0;
  }

  .about-hero__lead {
    font-size: 17px;
  }

  .about-purpose__quote {
    font-size: 22px;
  }

  .about-photo-break img {
    height: 320px;
  }

  .about-stats-bar__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .about-stats-bar__item {
    width: 100%;
    border-right: none;
    padding-right: 0;
    padding-bottom: 24px;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.3);
  }

  .about-stats-bar__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .values,
  .story {
    padding-block: var(--section-padding-y-mobile);
  }

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

  .values-photo {
    grid-column: span 1;
  }

  .value-card {
    padding: 32px 24px;
  }
}

/* ==========================================================================
   HOW WE WORK PAGE (how-we-work.html only)
   ========================================================================== */

.how-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-block: 96px 80px;
  min-height: 62vh;
}

.phases {
  padding-block: var(--section-padding-y);
  background: #e4e4e4;
}

.phases__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}

.phases__header .section-heading,
.phases__header .section-subtitle {
  margin: 0;
  max-width: none;
}

.phase-row__checklist .checklist__icon {
  background: transparent;
  width: 24px;
  height: 24px;
}

.phase-row__checklist .checklist__icon svg {
  width: 24px;
  height: 24px;
}

.phase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}

.phase-row:last-child {
  margin-bottom: 0;
}

.phase-number {
  font-weight: 800;
  font-size: 72px;
  line-height: 1.1;
  letter-spacing: -2.16px;
  color: rgba(1, 179, 129, 0.2);
  margin: 0 0 8px;
}

.phase-title {
  font-weight: 800;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -1.14px;
  color: var(--dark);
  margin: 0 0 16px;
}

.phase-text {
  font-weight: 500;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.17px;
  color: var(--dark);
  opacity: 0.85;
  margin: 0;
  max-width: 560px;
}

.phase-row__checklist {
  margin-top: 24px;
}

.phase-row__media {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 587 / 526;
}

.phase-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deliverables {
  position: relative;
  background-color: rgba(186, 231, 189, 0.4);
  padding-block: var(--section-padding-y);
  overflow: hidden;
  background-image:
    repeating-linear-gradient(0deg, rgba(10, 58, 60, 0.05) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(90deg, rgba(10, 58, 60, 0.05) 0 1px, transparent 1px 130px);
}

.deliverables-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.faq {
  padding-block: var(--section-padding-y);
  background: #e4e4e4;
}

.faq__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.faq__intro .section-heading,
.faq__intro .section-subtitle {
  margin-bottom: 0;
}

.faq__intro .section-subtitle {
  margin-top: 18px;
}

.faq__cta {
  margin-top: 32px;
}

.faq-list {
  background: #f9fbff;
  border-radius: 16px;
  padding: 37px 27px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.faq-item {
  border-bottom: 1px solid rgba(10, 58, 60, 0.1);
  padding-bottom: 20px;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.4px;
  color: var(--dark);
}

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

.faq-item summary::after {
  content: "+";
  font-size: 26px;
  font-weight: 400;
  color: var(--dark);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "\2013";
}

.faq-item[open] summary {
  margin-bottom: 12px;
}

.faq-item__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--dark);
  opacity: 0.85;
  margin: 0;
}

@media (max-width: 1024px) {
  .phases__header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }

  .phase-row {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
  }

  .phase-row__media {
    order: -1;
  }

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

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

@media (max-width: 720px) {
  .how-hero__inner {
    padding-block: 40px 48px;
    min-height: 0;
  }

  .phases,
  .deliverables,
  .faq {
    padding-block: var(--section-padding-y-mobile);
  }

  .phase-number {
    font-size: 56px;
  }

  .phase-title {
    font-size: 28px;
  }

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

  .faq-list {
    padding: 28px 20px;
  }

  .faq-item summary {
    font-size: 17px;
  }
}

/* ==========================================================================
   CLIENTS PAGE (clients.html only)
   ========================================================================== */

.clients-hero {
  min-height: 70vh;
  background-image: url("assets/clients-hero.webp");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

.industries {
  padding-block: var(--section-padding-y);
  background: linear-gradient(to top, rgba(248, 212, 152, 0.05) 0%, rgba(248, 212, 152, 0.55) 46%, #ffffff 100%);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.industry-card__media {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 381 / 362;
}

.industry-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-card__title {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.84px;
  color: var(--dark);
  margin: 0;
}

.industry-card__text {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.15px;
  color: var(--dark);
  opacity: 0.85;
  margin: 0;
}

@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .clients-hero {
    background-position: 68% center;
    position: relative;
    min-height: 55vh;
  }

  .clients-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 58, 60, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
  }

  .clients-hero .how-hero__inner {
    position: relative;
  }

  .industries {
    padding-block: var(--section-padding-y-mobile);
  }
}

/* ==========================================================================
   SERVICES PAGE (services.html only)
   ========================================================================== */

.services-hero {
  min-height: 70vh;
  background-image: url("assets/services-hero.webp");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

.services-detail {
  padding-block: var(--section-padding-y);
  background: var(--section-gray);
}

.services-detail--tinted {
  position: relative;
  background-color: var(--section-green);
  overflow: hidden;
  background-image:
    repeating-linear-gradient(0deg, rgba(10, 58, 60, 0.05) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(90deg, rgba(10, 58, 60, 0.05) 0 1px, transparent 1px 130px);
}

.services-detail--tinted .phase-row {
  position: relative;
  z-index: 1;
}

.phase-row__media--dark {
  border-radius: 24px;
  background: #000;
}

.services-detail__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn-primary-dark {
  background: var(--green-dark);
  color: var(--white);
}

.btn-primary-dark:hover {
  box-shadow: 0 8px 20px rgba(1, 179, 129, 0.4);
}

.btn-outline-dark {
  border: 1px solid var(--green-dark);
  color: var(--dark);
  background: transparent;
}

.btn-outline-dark:hover {
  background: rgba(1, 179, 129, 0.08);
}

@media (max-width: 720px) {
  .services-hero {
    background-position: 70% center;
    position: relative;
    min-height: 55vh;
  }

  .services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 58, 60, 0.35) 0%, rgba(0, 0, 0, 0.55) 100%);
  }

  .services-hero .how-hero__inner {
    position: relative;
  }

  .services-detail,
  .services-detail--tinted {
    padding-block: var(--section-padding-y-mobile);
  }
}

/* ==========================================================================
   CONTACT PAGE (contact.html only)
   ========================================================================== */

.contact-hero {
  min-height: 70vh;
  background-image: url("assets/contact-hero.webp");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

.contact-hero__info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.contact-hero__info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(10, 58, 60, 0.6);
  border: 1px solid #0f8;
  border-radius: 17px;
  padding: 18px 22px;
}

.contact-hero__info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 38px;
  border-radius: 9px;
  background: rgba(104, 229, 112, 0.22);
  flex-shrink: 0;
}

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

.contact-hero__info-text {
  display: flex;
  flex-direction: column;
}

.contact-hero__info-label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--green);
}

.contact-hero__info-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
}

.contact-form-section {
  padding-block: var(--section-padding-y);
  background: var(--white);
}

.contact-form-section__header {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.contact-form-section__header .section-subtitle {
  margin-inline: auto;
}

.contact-form-wrap {
  max-width: 794px;
  margin: 0 auto;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.contact-form {
  background: var(--white);
  border: 1px solid #d6e8e6;
  border-radius: 24px;
  box-shadow: 0 24px 34px rgba(10, 58, 60, 0.14);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
}

.form-required {
  color: var(--green-dark);
}

.form-input {
  width: 100%;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: #1c2b2b;
  background: var(--white);
  border: 1px solid #d6e8e6;
  border-radius: 12px;
  padding: 18px 20px;
}

.form-input::placeholder {
  color: #9bbdba;
}

.form-input:focus {
  outline: none;
  border-color: var(--green-dark);
}

.form-input.is-invalid {
  border-color: #d64545;
}

.form-error {
  display: none;
  font-size: 13px;
  color: #d64545;
  margin: 0;
}

.form-error.is-visible {
  display: block;
}

.form-textarea {
  resize: vertical;
  min-height: 144px;
}

.form-select {
  position: relative;
}

.form-select select.form-input {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 48px;
  cursor: pointer;
}

.form-select select.form-input:invalid {
  color: #9bbdba;
}

.form-select__chevron {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  pointer-events: none;
  display: flex;
}

.form-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f2f6f5;
  border: 1px solid #d6e8e6;
  border-radius: 9px;
  padding: 15px 18px;
  cursor: pointer;
}

.form-check__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.form-check__box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: var(--white);
  border: 1px solid #d6e8e6;
  flex-shrink: 0;
}

.form-check__box svg {
  width: 13px;
  height: 13px;
  opacity: 0;
}

.form-check__input:checked ~ .form-check__box {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.form-check__input:checked ~ .form-check__box svg {
  opacity: 1;
}

.form-check__input:focus-visible ~ .form-check__box {
  outline: 2px solid var(--green-dark);
  outline-offset: 2px;
}

.form-check__label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: #1c2b2b;
}

.form-checks.is-invalid .form-check {
  border-color: #d64545;
}

.form-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-pill {
  position: relative;
}

.form-pill__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.form-pill__label {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: #4a6464;
  border: 1px solid #d6e8e6;
  border-radius: 100px;
  padding: 12px 23px;
  cursor: pointer;
}

.form-pill__input:checked ~ .form-pill__label {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.form-pill__input:focus-visible ~ .form-pill__label {
  outline: 2px solid var(--green-dark);
  outline-offset: 2px;
}

.contact-form__submit {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 16px;
}

.contact-form__submit.is-loading {
  opacity: 0.75;
  cursor: wait;
}

.contact-form__disclaimer {
  font-family: var(--font-heading);
  font-size: 13px;
  color: #4a6464;
  text-align: center;
  margin: -12px 0 0;
}

.contact-form__status {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  margin: 0;
  min-height: 20px;
}

.contact-form__status.is-success {
  color: var(--green-dark);
}

.contact-form__status.is-error {
  color: #d64545;
}

.contact-channels {
  position: relative;
  background: var(--dark);
  padding-block: var(--section-padding-y);
  overflow: hidden;
}

.contact-channels__decoration {
  position: absolute;
  top: -10%;
  right: -12%;
  width: 60%;
  max-width: 780px;
  z-index: 0;
  pointer-events: none;
}

.contact-channels__inner {
  position: relative;
  z-index: 1;
}

.contact-channels__header {
  max-width: 760px;
  margin-bottom: 48px;
}

.contact-channels__header .section-heading,
.contact-channels__header .section-subtitle {
  color: var(--white);
}

.contact-channels__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 548px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid #d6e8e6;
  border-radius: 14px;
  padding: 19px 21px;
}

.contact-channel__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-channel__icon svg {
  width: 20px;
  height: 20px;
}

.contact-channel__icon--email {
  background: rgba(1, 179, 129, 0.1);
}

.contact-channel__icon--phone {
  background: rgba(10, 58, 60, 0.07);
}

.contact-channel__icon--office {
  background: rgba(104, 229, 112, 0.1);
}

.contact-channel__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-channel__label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #4a6464;
}

.contact-channel__value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
}

@media (max-width: 1024px) {
  .form-checks {
    grid-template-columns: 1fr;
  }

  .contact-channels__decoration {
    width: 80%;
    opacity: 0.6;
  }
}

@media (max-width: 720px) {
  .contact-hero {
    background-position: 70% center;
    position: relative;
    min-height: 55vh;
  }

  .contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 58, 60, 0.35) 0%, rgba(0, 0, 0, 0.55) 100%);
  }

  .contact-hero .how-hero__inner {
    position: relative;
  }

  .contact-form-section {
    padding-block: var(--section-padding-y-mobile);
  }

  .contact-form {
    padding: 28px 20px;
  }

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

  .contact-hero__info {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-channels {
    padding-block: var(--section-padding-y-mobile);
  }

  .contact-channels__decoration {
    display: none;
  }
}
