/* Generated from css/src — edit those files, then run npm run build:css */

/* === tokens.css === */
/* Design tokens and element resets. */

:root {
  --bg: #f4f4f1;
  --surface: #ffffff;
  --surface-alt: #f8f8f6;
  --text: #1f252c;
  --muted: #6b7280;
  --accent: #F85407;
  --accent-dark: #e76408;
  --border: rgba(31, 37, 44, 0.08);
  --shadow: 0 24px 60px rgba(24, 30, 39, 0.12);
  --site-header-height: 5.5rem;
  --viewport-height: 100vh;
  --viewport-height: 100dvh;
  --hero-viewport: calc(var(--viewport-height) - var(--site-header-height));
  --page-hero-min-height: 44vh;
  --page-hero-min-height: 44dvh;
  --page-hero-pad-x: clamp(2.25rem, 6.5vw, 5rem);
  --page-hero-pad-y: clamp(2.25rem, 5.5vw, 4.5rem);
}

@media (max-width: 991.98px) {
  :root {
    --page-hero-min-height: 38vh;
    --page-hero-min-height: 38dvh;
  }
}

@media (max-width: 767.98px) {
  :root {
    --page-hero-min-height: 34vh;
    --page-hero-min-height: 34dvh;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

@supports not (scrollbar-gutter: stable) {
  html {
    overflow-y: scroll;
  }
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: #fff;
}

a {
  text-decoration: none;
}

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

/* === chrome.css === */
/* Global chrome: header, footer, nav, buttons, page hero, quick panel. */

.site-shell {
  min-height: var(--viewport-height);
  padding-top: 0;
  position: relative;
  z-index: 1;
}

.site-header {
  position: relative;
  z-index: 10;
}

body.has-sticky-header .site-shell {
  padding-top: var(--site-header-height, 0px);
}

.site-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  transform: translate3d(0, -18px, 0) scale(0.965);
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity, visibility;
  transition:
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0ms linear 560ms;
}

body.header-top-anchor .site-header.is-sticky {
  transform: none!important;
  opacity: 1!important;
  visibility: visible!important;
  transition: none!important;
  pointer-events: auto!important;
}

.site-header.is-sticky.is-sticky-visible {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
  visibility: visible;
  transition:
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0ms linear 0ms;
}

.site-header.is-sticky.is-sticky-hidden {
  transform: translate3d(0, -110%, 0) scale(0.965);
  opacity: 0;
  visibility: hidden;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  bottom: 0;
  background: rgba(255, 255, 255);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 0 0 18px 18px;
  opacity: 0;
  transform: scale(0.985);
  transform-origin: top center;
  transition:
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

body.header-top-anchor .site-header.is-sticky::before {
  opacity: 0!important;
  transform: scale(0.985)!important;
}

.site-header.is-sticky::before {
  opacity: 1;
  transform: scale(1);
}

/* .nav-shell {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 26px;
  box-shadow: 0 14px 28px rgba(18, 24, 32, 0.08);
  backdrop-filter: blur(14px);
} */

.brand-logo {
  width: auto;
  height: 65px;
  display: block;
}

.navbar-nav .nav-link {
  color: #3a424c;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: var(--accent);
}

.btn-accent {
  background: #F85407;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 1.4rem;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 14px 24px rgba(255, 122, 26, 0.24);
  will-change: transform, box-shadow;
  transition:
    transform 300ms ease,
    box-shadow 300ms ease,
    background 300ms ease;
}

.btn-accent::before {
  content: "";
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -40%;
  width: 60%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: translate3d(-120%, 0, 0);
  opacity: 0;
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 300ms ease;
  pointer-events: none;
  z-index: 0;
}

.btn-accent > * {
  position: relative;
  z-index: 1;
}

.btn-accent:hover,
.btn-accent:focus {
  background: var(--accent-dark);
  color: #fff;
  transform: translate3d(0, -1px, 0) scale(1.02);
  box-shadow: 0 18px 30px rgba(255, 122, 26, 0.28);
}

.btn-accent:hover::before,
.btn-accent:focus::before {
  transform: translate3d(260%, 0, 0);
  opacity: 0.75;
}

.btn-accent:active {
  transform: translate3d(0, 0, 0) scale(0.99);
}

.dot-button {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: none;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #47c786;
  box-shadow: 0 12px 22px rgba(90, 204, 149, 0.28);
  transform: translate3d(0, 0, 0);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.dot-button:hover,
.dot-button:focus {
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 16px 28px rgba(90, 204, 149, 0.32);
}

.dot-button span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
}

.quick-panel {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.quick-panel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 34, 0.72);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.quick-panel-drawer {
  position: relative;
  width: min(92vw, 380px);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 1.75rem 1.65rem 2rem;
  background: linear-gradient(180deg, rgba(8, 18, 34, 0.98) 0%, rgba(6, 14, 25, 0.98) 100%);
  color: rgba(255, 255, 255, 0.92);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  box-shadow: none;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.quick-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.quick-panel-logo {
  height: 65px;
  width: auto;
  display: block;
}

.quick-panel-close {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.quick-panel-close svg {
  width: 20px;
  height: 20px;
  display: block;
}

.quick-panel-close:hover,
.quick-panel-close:focus {
  background: rgba(248, 84, 7, 0.16);
  transform: translateY(-1px);
}

.quick-panel-divider {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.14);
}

.quick-panel-label {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: #46D69F;
}

.quick-panel-text {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.8;
  font-weight: 500;
}

.quick-panel-link {
  display: inline-block;
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.quick-panel-link:hover,
.quick-panel-link:focus {
  color: var(--accent);
}

.quick-panel-socials {
  margin-top: auto;
  display: flex;
  gap: 0.85rem;
  padding-top: 0.35rem;
}

.quick-panel-social {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(70, 214, 159, 0.34);
  background: rgba(70, 214, 159, 0.06);
  color: rgba(255, 255, 255, 0.92);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.quick-panel-social svg {
  width: 18px;
  height: 18px;
  display: block;
}

.quick-panel-social:hover,
.quick-panel-social:focus {
  background: rgba(248, 84, 7, 0.14);
  border-color: rgba(248, 84, 7, 0.4);
  transform: translateY(-1px);
}

body.is-quick-panel-open {
  overflow: hidden;
}

body.is-quick-panel-open .quick-panel {
  pointer-events: auto;
}

body.is-quick-panel-open .quick-panel-overlay {
  opacity: 1;
}

body.is-quick-panel-open .quick-panel-drawer {
  transform: translateX(0);
  box-shadow: -30px 0 60px rgba(0, 0, 0, 0.55);
}

.page-hero-panel,
.services-hero-panel,
.projects-hero-panel,
.contact-hero-panel,
.how-we-work-hero-panel,
.certifications-hero-panel {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: var(--page-hero-pad-y) var(--page-hero-pad-x);
}

.page-hero-panel {
  position: relative;
  min-height: var(--page-hero-min-height);
  padding: var(--page-hero-pad-y) var(--page-hero-pad-x);
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 18, 34, 0.72) 0%, rgba(8, 18, 34, 0.45) 52%, rgba(8, 18, 34, 0.18) 100%),
    url("../img/a-banner.webp") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.12)),
    linear-gradient(180deg, rgba(6, 14, 25, 0.05), rgba(6, 14, 25, 0.24));
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  width: 100%;
  max-width: min(720px, 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  color: #fff;
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.78rem, 0.7rem + 0.35vw, 0.9rem);
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}

.page-breadcrumb-sep {
  color: rgba(255, 255, 255, 0.5);
}

.page-hero-title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.65rem, 1.15rem + 2.6vw, 3.4rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.04em;
  overflow-wrap: break-word;
}

.page-hero-subtitle {
  margin: 0;
  max-width: min(540px, 100%);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.86rem, 0.78rem + 0.4vw, 1.05rem);
  line-height: 1.65;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #46D69F;
}

.section-label::before {
  content: "";
  width: 42px;
  height: 2px;
  background: #46D69F;
  border-radius: 999px;
}

.title-accent-square {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 0.25rem;
  border-radius: 2px;
  background: var(--accent);
}

.site-footer {
  padding-top: 3rem;
  padding-bottom: 2.25rem;
  background: #09100f;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.footer-shell {
  max-width: 1280px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.footer-top {
  padding-bottom: 2.5rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: -30% -18%;
  background:
    radial-gradient(55% 55% at 14% 18%, rgba(30, 219, 168, 0.16), transparent 62%),
    radial-gradient(48% 48% at 70% 26%, rgba(114, 255, 229, 0.14), transparent 60%),
    radial-gradient(44% 44% at 38% 82%, rgba(30, 219, 168, 0.12), transparent 64%);
  opacity: 0.11;
  transform: translate3d(-6%, 0, 0);
  animation: footerAuroraDrift 18s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--footer-mx, 50%) var(--footer-my, 30%),
    rgba(30, 219, 168, 0.32),
    transparent 56%
  );
  opacity: 0;
  filter: blur(26px);
  transition: opacity 260ms ease;
  pointer-events: none;
  z-index: 0;
}

.site-footer.has-footer-glow::after {
  opacity: 0.12;
}

.footer-anim-item {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

.site-footer.is-inview .footer-anim-item {
  animation: footerFadeUp 820ms ease-out forwards;
  animation-delay: var(--footer-delay, 0ms);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: #fff;
}

.footer-logo {
  width: auto;
  height: 65px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.footer-brand-title {
  color: #fff;
  font-size: 1.42rem;
  font-weight: 700;
  letter-spacing: 0.42rem;
  line-height: 1;
}

.footer-brand-subtitle {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  letter-spacing: 0.14rem;
  line-height: 1.3;
}

.footer-description {
  max-width: 290px;
  margin: 1.35rem 0 1.4rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.85;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-social {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: color 300ms ease, transform 300ms ease, filter 300ms ease;
}

.footer-social:hover,
.footer-social:focus {
  color: #1EDBA8;
  transform: translate3d(0, -4px, 0) scale(1.1);
  filter: drop-shadow(0 12px 18px rgba(30, 219, 168, 0.25));
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-heading {
  margin: 0 0 1.25rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-links {
  list-style: disc;
  padding-left: 1rem;
  margin: 0;
}

.footer-links li + li {
  margin-top: 0.75rem;
}

.footer-links a,
.footer-contact-list a {
  color: rgba(255, 255, 255, 0.82);
  display: inline-block;
  position: relative;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: color 300ms ease, transform 300ms ease;
}

.footer-links a:hover,
.footer-links a:focus,
.footer-contact-list a:hover,
.footer-contact-list a:focus {
  color: #1EDBA8;
  transform: translate3d(6px, 0, 0);
}

.footer-contact-list p {
  max-width: 260px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.9;
}

.footer-contact-list p + p {
  margin-top: 0.65rem;
}

.footer-divider {
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.16);
  position: relative;
  overflow: hidden;
}

.footer-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(30, 219, 168, 0.7),
    rgba(114, 255, 229, 0.62),
    rgba(30, 219, 168, 0.7),
    transparent
  );
  background-size: 240% 100%;
  opacity: 0.5;
  animation: footerDividerFlow 16s linear infinite;
}

.footer-divider::after {
  content: "";
  position: absolute;
  inset: -2px 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(30, 219, 168, 0.35),
    rgba(114, 255, 229, 0.3),
    rgba(30, 219, 168, 0.35),
    transparent
  );
  background-size: 240% 100%;
  opacity: 0.38;
  filter: blur(6px);
  animation: footerDividerFlow 16s linear infinite;
}

.footer-bottom {
  padding-top: 2.9rem;
  text-align: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.footer-copy {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.footer-copy span {
  color: #46D69F;
}

.footer-wordmark {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 0.4rem;
  overflow-wrap: break-word;
  word-break: break-word;
  font-size: clamp(3.2rem, 11vw, 10rem);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: clamp(0.15rem, 1.8vw, 0.85rem);
  background: linear-gradient(90deg, #1EDBA8, #72FFE5, #1EDBA8);
  background-size: 220% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: footerWordmarkShine 7s linear infinite;
}

.footer-wordmark-sub {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 0.4rem;
  margin-top: 0.45rem;
  color: #1EDBA8;
  font-size: clamp(0.95rem, 2.2vw, 2rem);
  letter-spacing: clamp(0.1rem, 0.8vw, 0.4rem);
  text-transform: capitalize;
}

@keyframes footerAuroraDrift {
  0% {
    transform: translate3d(-6%, 0, 0) scale(1.02);
  }
  100% {
    transform: translate3d(6%, 0, 0) scale(1.02);
  }
}

@keyframes footerFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes footerWordmarkShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 220% 50%;
  }
}

@keyframes footerDividerFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 240% 50%;
  }
}

@media (min-width: 1200px) {
  .gap-xl-2 {
          gap: 1.5rem !important;
      }
}

@media (max-width: 1199.98px) {
  .navbar-collapse {
      padding-top: 1rem;
    }
  
  .footer-brand-title {
      letter-spacing: 0.28rem;
    }
}

@media (max-width: 991.98px) {
  .brand-logo {
      height: 60px;
    }
  
  .page-hero-panel,
  .services-hero-panel,
  .projects-hero-panel,
  .contact-hero-panel,
  .how-we-work-hero-panel,
  .certifications-hero-panel {
      border-radius: 26px;
    }
}

@media (max-width: 767.98px) {
  .site-header {
      padding-top: 0.25rem;
    }
  
  .navbar-nav .nav-link {
      padding-inline: 0.5rem;
    }
  
  .page-hero-panel,
  .services-hero-panel,
  .projects-hero-panel,
  .contact-hero-panel,
  .how-we-work-hero-panel,
  .certifications-hero-panel {
      border-radius: 22px;
    }
  
  .page-hero-content {
      max-width: 100%;
    }
  
  .section-label {
      font-size: 0.88rem;
    }
  
  .footer-top {
      padding-bottom: 2rem;
    }
  
  .footer-bottom {
      padding-top: 2.2rem;
      padding-left: 0.5rem;
      padding-right: 0.5rem;
    }
  
  .footer-wordmark {
      font-size: clamp(2.4rem, 13vw, 3.6rem);
      letter-spacing: clamp(0.12rem, 1vw, 0.35rem);
      padding: 0;
      text-indent: 0.08em;
    }
  
  .footer-wordmark-sub {
      letter-spacing: 0.15rem;
      padding: 0;
    }
}

@media (max-width: 399.98px) {
  .footer-wordmark {
      font-size: clamp(2rem, 11vw, 2.8rem);
      letter-spacing: clamp(0.08rem, 0.8vw, 0.22rem);
    }
  
  .footer-wordmark-sub {
      font-size: clamp(0.85rem, 3.8vw, 0.95rem);
      letter-spacing: 0.1rem;
    }
}

/* === motion.css === */
/* Motion, cursor, reveal, and background canvas. */

.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    transform 780ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 780ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}

.reveal.reveal--scale {
  transform: translate3d(0, 18px, 0) scale(0.96);
}

.reveal.reveal--rotate {
  transform: translate3d(0, 18px, 0) rotate(-0.85deg) scale(0.985);
}

.reveal.reveal--left {
  transform: translate3d(-26px, 0, 0);
}

.reveal.reveal--right {
  transform: translate3d(26px, 0, 0);
}

.reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0);
}

.btn-ripple {
  position: absolute;
  border-radius: 999px;
  transform: translate3d(-50%, -50%, 0) scale(0);
  opacity: 0.55;
  pointer-events: none;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(var(--cursor-x, -999px), var(--cursor-y, -999px), 0);
  will-change: transform, opacity;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  margin-left: -3.5px;
  margin-top: -3.5px;
  border-radius: 999px;
  background: rgba(30, 219, 168, 0.95);
  box-shadow: 0 0 20px rgba(30, 219, 168, 0.25);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  margin-left: -17px;
  margin-top: -17px;
  border-radius: 999px;
  border: 1px solid rgba(30, 219, 168, 0.45);
  background: rgba(30, 219, 168, 0.06);
  backdrop-filter: blur(2px);
  --cursor-scale: 1;
  transform: translate3d(var(--cursor-x, -999px), var(--cursor-y, -999px), 0) scale(var(--cursor-scale));
  transition:
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cursor-ring.is-hover {
  --cursor-scale: 1.28;
  border-color: rgba(30, 219, 168, 0.7);
  background: rgba(30, 219, 168, 0.1);
}

.cursor-ring.is-click {
  --cursor-scale: 0.92;
}

.js-parallax-item {
  /* Parallax disabled globally; will-change removed */
}

.three-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }
  
  .btn-ripple {
      display: none;
    }
}

@media (hover: hover) and (pointer: fine) {
  .cursor-dot,
    .cursor-ring {
      opacity: 1;
    }
}

/* === components.css === */
/* Shared leftovers that are not page-specific. */

/* === pages/home.css === */
/* Home page sections. */

.hero-scroll-track {
  position: relative;
  height: auto;
}

.hero-section {
  position: relative;
  height: var(--hero-viewport);
  width: 100%;
  z-index: 1;
}

.hero-panel {
  position: relative;
  --hero-pad: clamp(1.5rem, 4.2vw, 3rem);
  --hero-pad-double: calc(var(--hero-pad) * 2);
  min-height: var(--hero-viewport);
  height: var(--hero-viewport);
  padding: 0;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.1)),
    linear-gradient(180deg, rgba(6, 14, 25, 0.08), rgba(6, 14, 25, 0.24));
  pointer-events: none;
}

.hero-content {
  position: relative;
  min-height: 0;
  height: 100%;
  padding: var(--hero-pad);
  padding-bottom: calc(var(--hero-pad) + 3.2rem + env(safe-area-inset-bottom));
}

.hero-carousel {
  position: relative;
  z-index: 1;
  height: 100%;
}

.hero-carousel-slides {
  position: relative;
  min-height: 0;
  height: var(--hero-viewport);
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-carousel-slide.is-leaving {
  z-index: 1;
}

.hero-carousel-slide.is-active {
  z-index: 2;
  pointer-events: auto;
}

.hero-carousel-slide::before,
.hero-carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-carousel-slide::before {
  background: var(--hero-slide-bg, url("../img/h-banner.webp")) center/cover no-repeat;
  transform: scale(1.06);
  transition:
    opacity 1.25s cubic-bezier(0.22, 1, 0.36, 1),
    transform 8s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: opacity, transform;
}

.hero-carousel-slide::after {
  background:
    linear-gradient(90deg, rgba(8, 18, 34, 0.74) 0%, rgba(8, 18, 34, 0.5) 48%, rgba(8, 18, 34, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.24));
}

.hero-carousel-slide.is-active::before,
.hero-carousel-slide.is-active::after,
.hero-carousel-slide.is-leaving::before,
.hero-carousel-slide.is-leaving::after {
  opacity: 1;
}

.hero-carousel-slide.is-active::before,
.hero-carousel-slide.is-leaving::before {
  transform: scale(1);
}

.hero-carousel-slide > * {
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-carousel-slide.is-active > * {
  opacity: 1;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(38px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: inherit;
}

.hero-word-inner {
  display: inline-block;
}

@keyframes hero-word-in {
  from {
    transform: translateY(110%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-carousel-slide.is-entering .hero-eyebrow .hero-word-inner {
  animation: hero-word-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(0.08s + var(--word-i, 0) * 0.07s);
}

.hero-carousel-slide.is-entering .hero-title .hero-word-inner {
  animation: hero-word-in 0.68s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(0.14s + var(--word-i, 0) * 0.06s);
}

.hero-carousel-slide.is-entering .hero-text {
  animation: hero-enter 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.52s both;
}

.hero-carousel-slide.is-entering .hero-copy .d-flex {
  animation: hero-enter 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.64s both;
}

.hero-carousel-slide.is-entering .hero-stat-card {
  animation: hero-enter 0.68s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: calc(var(--hero-pad) + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  display: flex;
  gap: 0.65rem;
  z-index: 2;
}

.hero-carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  transition: background 0.2s ease, transform 0.2s ease, width 0.2s ease;
}

.hero-carousel-dot:hover,
.hero-carousel-dot:focus {
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}

.hero-carousel-dot.is-active {
  width: 26px;
  background: var(--accent);
}

.hero-copy {
  max-width: 710px;
  padding: 1rem 0;
  color: #fff;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  margin-bottom: 1.2rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-title {
  font-size: clamp(1.7rem, 1.15rem + 3.2vw, 4.2rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.35rem;
  letter-spacing: -0.04em;
  overflow-wrap: break-word;
}

.hero-text {
  max-width: min(560px, 100%);
  font-size: clamp(0.9rem, 0.82rem + 0.35vw, 1.05rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 1.75rem;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.hero-stat-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  align-items: stretch;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(16px);
  margin-left: auto;
  width: min(100%, 430px);
}

.stat-number {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
  font-weight: 700;
}

.stat-title {
  max-width: 220px;
  font-size: 1rem;
  color: #fff;
}

.stat-text {
  max-width: 240px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}

.hero-preview-card {
  min-height: 180px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
}

.hero-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-section {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.why-shell {
  padding: 1rem 0 0;
}

.why-heading-row {
  margin-bottom: 2.5rem;
}

.why-title {
  margin: 0;
  color: #0d2b22;
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1.38;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.why-content-row {
  align-items: stretch;
}

.why-experience-block {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.experience-copy {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.experience-number {
  color: #003d2d;
  font-size: clamp(4.3rem, 7vw, 6rem);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.experience-text {
  max-width: 88px;
  padding-top: 1.15rem;
  color: #27352f;
  font-size: 1rem;
  line-height: 1.35;
}

.why-features {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-top: 0.25rem;
}

.why-feature-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 44px;
  align-items: start;
  gap: 1rem;
  padding: 0.9rem 0 1.35rem;
  border-top: 1px solid rgba(22, 34, 28, 0.14);
}

.feature-index {
  padding-top: 0.35rem;
  color: #46D69F;
  font-size: 1rem;
  font-weight: 600;
}

.feature-copy h3 {
  margin: 0 0 0.8rem;
  color: #0d2b22;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 500;
}

.feature-copy p {
  max-width: 355px;
  margin: 0;
  color: #5f6b65;
  font-size: 1rem;
  line-height: 1.85;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f252c;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.why-btn {
  align-self: flex-start;
  min-width: 140px;
  margin-top: 1.4rem;
  padding-inline: 1.55rem;
}

.why-image-card {
  overflow: hidden;
}

.why-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-image-small {
  width: 100%;
  max-width: 240px;
  height: 255px;
  border-radius: 22px;
}

.why-image-tall {
  height: 100%;
  border-radius: 22px;
}

.services-section {
  padding-top: 1.25rem;
  padding-bottom: 5rem;
  background: #F6F6F6;
}

.services-shell {
  padding-top: 0.5rem;
}

.services-heading-row {
  margin-bottom: 2.35rem;
}

.services-title {
  max-width: 780px;
  margin: 0;
  color: #0d2b22;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.services-content-row {
  align-items: stretch;
}

.services-visual-card {
  position: relative;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
  border-radius: 24px;
  background: #dfe8e5;
}

#servicePreviewImage,
.services-visual-card .service-preview-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translate3d(0, 0, 0);
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
}

.services-visual-card .service-preview-layer {
  opacity: 0;
  pointer-events: none;
}

.services-image-note {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  max-width: 230px;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: rgba(35, 39, 43, 0.78);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.8rem;
  line-height: 1.65;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.service-tab {
  width: 100%;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  border: 0;
  border-top: 1px solid rgba(70, 214, 159, 0.32);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.25s ease;
}

.service-tab-index {
  color: #727b76;
  font-size: .85rem;
  line-height: 1;
  transition: color 0.25s ease;
  font-weight: 600;
}

.service-tab-title {
  color: #17392d;
  font-size: clamp(1.35rem, 1vw, 1.92rem);
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.03em;
  transition: color 0.25s ease, letter-spacing 0.25s ease;
}

.service-tab-arrow {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #46D69F;
  color: #fff;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.service-tab-arrow svg {
  width: 32px;
  height: 32px;
  transition: transform 0.25s ease;
}

.service-tab:hover,
.service-tab:focus-visible,
.service-tab.is-active {
  border-top-color: rgba(248, 84, 7, 0.45);
  outline: none;
}

.service-tab:hover .service-tab-index,
.service-tab:focus-visible .service-tab-index,
.service-tab.is-active .service-tab-index,
.service-tab:hover .service-tab-title,
.service-tab:focus-visible .service-tab-title,
.service-tab.is-active .service-tab-title {
  color: var(--accent);
}

.service-tab:hover .service-tab-title,
.service-tab:focus-visible .service-tab-title,
.service-tab.is-active .service-tab-title {
  letter-spacing: -0.015em;
}

.service-tab:hover .service-tab-arrow,
.service-tab:focus-visible .service-tab-arrow,
.service-tab.is-active .service-tab-arrow {
  background: var(--accent);
}

.service-tab:hover .service-tab-arrow svg,
.service-tab:focus-visible .service-tab-arrow svg,
.service-tab.is-active .service-tab-arrow svg {
  transform: rotate(-45deg);
}

.cert-section {
  padding-top: 1.5rem;
  padding-bottom: 5rem;
}

.cert-shell {
  padding-top: 0.5rem;
}

.cert-heading {
  text-align: center;
  margin-bottom: 2.4rem;
}

.cert-title {
  max-width: 860px;
  margin: 0 auto;
  color: #0d2b22;
  font-size: clamp(1.9rem, 2.7vw, 2.7rem);
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.cert-content {
  align-items: stretch;
}

.cert-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 202px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 420px;
}

.cert-media-image {
  min-height: 420px;
}

.cert-media-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cert-highlight-card {
  background: #46D69F;
  padding: 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.cert-highlight-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: white;
  color: #0d2b22;
}

.cert-highlight-icon svg {
  width: 40px;
  height: 40px;
}

.cert-highlight-text {
  margin: 1.2rem 0 1.35rem;
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.96);
}

.cert-cta {
  align-self: flex-start;
  padding-inline: 1.15rem;
  font-size: 0.9rem;
  box-shadow: 0 14px 24px rgba(248, 84, 7, 0.22);
}

.cert-detail {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0.25rem;
}

.cert-detail-title {
  margin: 0 0 1.05rem;
  color: #0d2b22;
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 700;
}

.cert-detail-text {
  margin: 0 0 1.4rem;
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 420px;
}

.cert-tabs {
  border-top: 1px solid black;
}

.cert-tab {
  width: 100%;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 0;
  border: 0;
  border-bottom: 1px solid rgba(31, 37, 44, 0.12);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.cert-tab-index {
  color: #6b7280;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.cert-tab-label {
  color: #6b7280;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.2s ease, letter-spacing 0.2s ease;
}

.cert-tab:hover .cert-tab-index,
.cert-tab:hover .cert-tab-label,
.cert-tab:focus-visible .cert-tab-index,
.cert-tab:focus-visible .cert-tab-label,
.cert-tab.is-active .cert-tab-index,
.cert-tab.is-active .cert-tab-label {
  color: var(--accent);
}

.cert-tab:hover .cert-tab-label,
.cert-tab:focus-visible .cert-tab-label,
.cert-tab.is-active .cert-tab-label {
  letter-spacing: 0;
}

.stats-section {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}

.stats-row {
  margin-top: 0.25rem;
}

.stats-card {
  height: 100%;
}

.stats-value {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  color: #0d2b22;
  font-size: clamp(2.6rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.stats-suffix {
  font-size: 0.9em;
}

.stats-divider {
  height: 1px;
  width: 100%;
  background: rgba(31, 37, 44, 0.22);
  margin: 0.95rem 0 1.05rem;
}

.stats-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d2b22;
  margin-bottom: 0.55rem;
}

.stats-text {
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(31, 37, 44, 0.62);
}

.process-section {
  position: relative;
  padding-top: 3.75rem;
  padding-bottom: 16rem !important;
  background: url("../img/h-process-bg.webp") center/cover no-repeat;
  background-color: #F6F6F6;
}

.process-shell {
  position: relative;
}

.process-heading-row {
  margin-bottom: 2.75rem;
}

.process-title {
  max-width: 720px;
  margin: 0 auto;
  color: #0d2b22;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.65rem;
  align-items: start;
}

.process-card {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(24, 30, 39, 0.1);
  transition: box-shadow 300ms ease;
  will-change: box-shadow;
}

.process-card:nth-child(1) {
  transform: translateY(0);
}

.process-card:nth-child(2) {
  transform: translateY(48px);
}

.process-card:nth-child(3) {
  transform: translateY(96px);
}

.process-card:nth-child(4) {
  transform: translateY(144px);
}

.process-card-media {
  padding: 0.85rem 0.85rem 0;
}

.process-card-media img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 300ms ease;
  will-change: transform;
}

.process-card:hover {
  box-shadow: 0 26px 58px rgba(24, 30, 39, 0.14);
}

.process-card:hover .process-card-media img {
  transform: translate3d(0, 0, 0) scale(1.05);
}

.process-card-body {
  position: relative;
  padding: 1.15rem 1.15rem 1.25rem;
}

.process-card-head {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  margin-bottom: 0.65rem;
}

.process-card-index {
  color: #46D69F;
  font-weight: 700;
  font-size: 0.95rem;
}

.process-card-title {
  margin: 0;
  color: #0d2b22;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.process-card-text {
  margin: 0;
  color: rgba(31, 37, 44, 0.62);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 215px;
}

.process-card-watermark {
  position: absolute;
  right: 0.9rem;
  bottom: 0.45rem;
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(31, 37, 44, 0.08);
  pointer-events: none;
}

.projects-section {
  --projects-peek: 140px;
  padding-top: 3.25rem;
  padding-bottom: 5rem;
  background: #fff;
  overflow-x: hidden;
}

.projects-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.1rem;
}

.projects-shell {
  max-width: 1440px;
  margin-inline: auto;
}

.projects-label {
  color: #46D69F;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.projects-title {
  margin: 0;
  color: #0d2b22;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.projects-btn {
  padding: 0.5rem 1.35rem;
  border-radius: 999px;
  white-space: nowrap;
}

.projects-viewport {
  overflow: hidden;
}

.projects-carousel {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-inline: var(--projects-peek);
  margin-inline: calc(-1 * var(--projects-peek));
  padding-bottom: 0.35rem;
  scroll-snap-type: x proximity;
  scroll-padding-left: 0.25rem;
  -webkit-overflow-scrolling: touch;
  user-select: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.projects-carousel.is-auto-scrolling {
  scroll-snap-type: none;
}

.projects-carousel::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.project-card {
  flex: 0 0 auto;
  width: clamp(240px, 18vw, 280px);
  scroll-snap-align: start;
  border-radius: 26px;
  background: transparent;
}

.project-card--offset {
  transform: translateY(22px);
}

.project-card-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow);
  background: #dfe8e5;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    transform 300ms ease,
    box-shadow 300ms ease;
  will-change: transform, box-shadow;
}

.project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 300ms ease;
  will-change: transform;
}

.project-card:hover .project-card-media,
.project-card:focus-within .project-card-media {
  transform: translate3d(0, -8px, 0) scale(1.02);
  box-shadow: 0 28px 64px rgba(24, 30, 39, 0.16);
}

.project-card:hover .project-card-media img,
.project-card:focus-within .project-card-media img {
  transform: translate3d(0, 0, 0) scale(1.06);
}

.project-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.project-card-body {
  padding-top: 1.05rem;
}

.project-card-title {
  margin: 0 0 0.35rem;
  color: #0d2b22;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.project-card-meta {
  margin: 0;
  color: rgba(31, 37, 44, 0.6);
  font-size: 0.85rem;
}

.clients-section {
  padding-top: 4.5rem;
  padding-bottom: 3rem;
  background: #fff;
}

.clients-shell {
  max-width: 1200px;
  margin-inline: auto;
}

.clients-heading-row {
  margin-bottom: 3rem;
}

.clients-title {
  margin: 0;
  color: #0d2b22;
  font-size: clamp(2rem, 3vw, 3.05rem);
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.clients-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  padding: 0.5rem 0 1rem;
  list-style: none;
  margin: 0;
  animation: clientsMarquee 32s linear infinite;
}

.clients-logo {
  flex: 0 0 auto;
  width: clamp(120px, 13vw, 180px);
  height: clamp(72px, 8.5vw, 115px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #f6f7f9;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.45s ease;
}

.clients-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  filter: grayscale(1) contrast(0.85);
  opacity: 0.75;
  transition: filter 0.45s ease, opacity 0.45s ease;
}

.clients-logo:hover {
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: 0 20px 44px rgba(6, 13, 12, 0.08);
}

.clients-logo:hover img {
  filter: grayscale(0) contrast(1);
  opacity: 1;
}

@keyframes clientsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 1.75rem)); }
}

.testimonials-section {
  padding-top: 3.5rem;
  padding-bottom: 5rem;
  background: #fff;
}

.testimonials-shell {
  max-width: 1200px;
  margin-inline: auto;
}

.testimonials-heading-row {
  margin-bottom: 2.25rem;
}

.testimonials-title {
  margin: 0;
  color: #0d2b22;
  font-size: clamp(2rem, 3vw, 3.05rem);
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.testimonials-body {
  align-items: center;
}

.testimonial-image-card {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #dfe8e5;
}

.testimonial-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 300ms ease;
  will-change: transform;
}

.testimonial-image-card:hover img {
  transform: translate3d(0, 0, 0) scale(1.04);
}

.testimonial-slider {
  position: relative;
  width: 100%;
  min-height: 290px;
  padding: 2rem 2.25rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  overflow: hidden;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  padding: 2rem 2.25rem;
  opacity: 0;
  transform: translate3d(0, 10px, 0) rotate(-0.65deg);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.testimonial-slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0);
  pointer-events: auto;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.testimonial-star {
  color: var(--accent);
  font-size: 1rem;
  line-height: 1;
}

.testimonial-quote {
  margin: 0 0 1.65rem;
  color: #0d2b22;
  font-size: 1.08rem;
  line-height: 1.85;
  font-weight: 600;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(31, 37, 44, 0.08);
  color: rgba(13, 43, 34, 0.9);
  font-weight: 700;
  letter-spacing: -0.03em;
}

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

.testimonial-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d2b22;
}

.testimonial-role {
  font-size: 0.85rem;
  color: rgba(31, 37, 44, 0.55);
  margin-top: 0.1rem;
}

.blog-section {
  padding-top: 3.5rem;
  padding-bottom: 5rem;
  background: #fff;
}

.blog-shell {
  max-width: 1200px;
  margin-inline: auto;
}

.blog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.4rem;
}

.blog-label {
  color: #46D69F;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.blog-title {
  margin: 0;
  color: #0d2b22;
  font-size: clamp(2rem, 3vw, 2.85rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.blog-btn {
  padding: 0.5rem 1.35rem;
  border-radius: 999px;
  white-space: nowrap;
}

.blog-card {
  height: 100%;
  will-change: transform;
}

.blog-card-media {
  border-radius: 24px;
  overflow: hidden;
  height: 260px;
  background: #dfe8e5;
  box-shadow: var(--shadow);
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    transform 300ms ease,
    box-shadow 300ms ease;
  will-change: transform, box-shadow;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 300ms ease;
  will-change: transform;
}

.blog-card:hover .blog-card-media,
.blog-card:focus-within .blog-card-media {
  transform: translate3d(0, -8px, 0) scale(1.02);
  box-shadow: 0 28px 64px rgba(24, 30, 39, 0.16);
}

.blog-card:hover .blog-card-media img,
.blog-card:focus-within .blog-card-media img {
  transform: translate3d(0, 0, 0) scale(1.06);
}

.blog-card-body {
  padding-top: 0.95rem;
}

.blog-card-date {
  margin: 0 0 0.55rem;
  color: rgba(31, 37, 44, 0.58);
  font-size: 0.74rem;
}

.blog-card-title {
  margin: 0 0 0.7rem;
  color: #0d2b22;
  font-size: 1.1rem;
  line-height: 1.55;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.blog-card-text {
  margin: 0;
  color: rgba(31, 37, 44, 0.62);
  font-size: 0.92rem;
  line-height: 1.8;
}

.blog-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.blog-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.blog-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 16, 15, 0.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.blog-modal-dialog {
  position: relative;
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: translateY(28px) scale(0.97);
  transition: transform 300ms cubic-bezier(0.34, 1.4, 0.64, 1);
  box-shadow: 0 32px 80px rgba(9, 16, 15, 0.3);
}

.blog-modal-scroll {
  overflow-y: auto;
  flex: 1;
}

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

.blog-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(9, 16, 15, 0.5);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 180ms ease;
}

.blog-modal-close:hover {
  background: rgba(9, 16, 15, 0.8);
}

.blog-modal-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.blog-modal-body {
  padding: 1.5rem 1.75rem 2rem;
}

.blog-modal-category {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.blog-modal-title {
  margin: 0 0 1rem;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.blog-modal-text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: rgba(31, 37, 44, 0.68);
  line-height: 1.85;
}

.blog-modal-subheading {
  margin: 1.1rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.blog-modal-subheading:empty {
  display: none;
}

.blog-modal-body-text {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(31, 37, 44, 0.62);
  line-height: 1.9;
}

.blog-modal-body-text:empty {
  display: none;
}

.blog-card {
  cursor: pointer;
}

@media (max-width: 575.98px) {
  .hero-panel {
      min-height: var(--hero-viewport);
      height: auto;
      border-radius: 0;
      box-shadow: none;
    }
  
  .hero-content {
      --bs-gutter-x: 1rem;
      --bs-gutter-y: 1rem;
      align-items: flex-start !important;
      min-height: var(--hero-viewport);
      height: auto;
      padding-bottom: calc(var(--hero-pad) + 2.6rem + env(safe-area-inset-bottom));
    }
  
  .hero-carousel-slides {
      min-height: var(--hero-viewport);
      height: var(--hero-viewport);
    }
  
  .hero-copy {
      padding: 0.35rem 0;
    }
  
  .hero-eyebrow {
      padding: 0.38rem 0.75rem;
      font-size: 0.78rem;
      margin-bottom: 0.9rem;
    }
  
  .hero-title {
      margin-bottom: 0.9rem;
    }
  
  .hero-text {
      margin-bottom: 1.05rem;
    }
  
  .hero-stat-card {
      padding: 1rem;
      border-radius: 20px;
      gap: 0.85rem;
    }
  
  .hero-preview-card {
      display: none;
    }
  
  .stat-number {
      font-size: clamp(1.6rem, 10vw, 2.15rem);
    }
  
  .stat-title {
      max-width: 100%;
      font-size: 0.92rem;
      margin-bottom: 0.35rem;
    }
  
  .stat-text {
      max-width: 100%;
      font-size: 0.85rem;
      line-height: 1.55;
    }
  
  .hero-carousel-dots {
      gap: 0.55rem;
    }
  
  .clients-section {
      padding-top: 3rem;
      padding-bottom: 2rem;
    }
  
  .clients-heading-row {
      margin-bottom: 2rem;
    }
  
  .clients-track {
      gap: 1.5rem;
      animation-duration: 24s;
    }
  
  .clients-logo {
      width: 120px;
      height: 72px;
      border-radius: 14px;
    }
}

@media (max-width: 767.98px) and (min-width: 576px) {
  .hero-panel {
      border-radius: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
  .clients-track {
      animation: none;
      flex-wrap: wrap;
      justify-content: center;
      width: 100%;
    }

  .hero-carousel-slide::before,
  .hero-carousel-slide::after,
  .hero-carousel-slide > * {
      transition-duration: 0.01ms;
  }

  .hero-carousel-slide::before,
  .hero-carousel-slide.is-active::before,
  .hero-carousel-slide.is-leaving::before {
      transform: none;
  }
}

@media (max-width: 1199.98px) {
  .hero-content {
      min-height: 0;
      height: 100%;
    }
  
  .why-title {
      max-width: 100%;
    }
  
  .feature-copy h3 {
      font-size: 1.55rem;
    }
  
  .services-title {
      max-width: 100%;
    }
  
  .services-visual-card {
      min-height: 470px;
    }
  
  .service-tab-title {
      font-size: 1.65rem;
    }
  
  .cert-media {
      grid-template-columns: minmax(0, 1fr) 190px;
    }
  
  .process-title {
      max-width: 100%;
      text-align: left;
      margin-inline: 0;
    }
  
  .process-cards {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
  .process-card {
      transform: none !important;
    }
  
  .blog-head {
      margin-bottom: 1.9rem;
    }
  
  .projects-head {
      margin-bottom: 1.75rem;
    }
  
  .project-card--offset {
      transform: none;
    }
  
  .projects-section {
      --projects-peek: 80px;
    }
}

@media (max-width: 991.98px) {
  .hero-copy {
      max-width: 100%;
    }
  
  .hero-side {
      align-items: stretch;
    }
  
  .hero-stat-card {
      grid-template-columns: 1fr;
      width: 100%;
    }
  
  .hero-preview-card {
      min-height: 210px;
    }
  
  .why-heading-row {
      margin-bottom: 2rem;
    }
  
  .why-experience-block,
    .why-features {
      justify-content: flex-start;
    }
  
  .why-image-small {
      max-width: 100%;
    }
  
  .why-image-tall {
      min-height: 380px;
    }
  
  .services-heading-row {
      margin-bottom: 1.8rem;
    }
  
  .services-visual-card {
      min-height: 400px;
    }
  
  .cert-heading {
      text-align: left;
    }
  
  .cert-title {
      margin-inline: 0;
    }
  
  .cert-media {
      min-height: 360px;
    }
  
  .cert-media-image {
      min-height: 360px;
    }
  
  .stats-text {
      max-width: 100%;
    }
  
  .process-section {
      padding-top: 3.1rem;
      padding-bottom: 5rem !important;
    }
}

@media (max-width: 767.98px) {
  .why-title {
      font-size: clamp(1.8rem, 8vw, 2.35rem);
      line-height: 1.35;
    }
  
  .experience-copy {
      margin-bottom: 1.2rem;
    }
  
  .experience-text {
      padding-top: 0.8rem;
    }
  
  .why-feature-item {
      grid-template-columns: 1fr;
      gap: 0.7rem;
    }
  
  .feature-index {
      padding-top: 0;
    }
  
  .feature-copy h3 {
      font-size: 1.45rem;
      margin-bottom: 0.55rem;
    }
  
  .feature-copy p {
      max-width: 100%;
      font-size: 0.95rem;
      line-height: 1.7;
    }
  
  .feature-icon {
      width: 38px;
      height: 38px;
    }
  
  .why-btn {
      margin-top: 1rem;
    }
  
  .why-image-small {
      height: 230px;
    }
  
  .why-image-tall {
      min-height: 300px;
    }
  
  .services-title {
      font-size: clamp(1.8rem, 8vw, 2.3rem);
      line-height: 1.35;
    }
  
  .services-visual-card {
      min-height: 320px;
    }
  
  .services-image-note {
      left: 0.8rem;
      right: 0.8rem;
      bottom: 0.8rem;
      max-width: none;
      padding: 0.9rem 1rem;
    }
  
  .service-tab {
      grid-template-columns: 46px minmax(0, 1fr) 44px;
      gap: 0.8rem;
      padding: 1rem 0;
    }
  
  .service-tab-index {
      font-size: 0.95rem;
    }
  
  .service-tab-title {
      font-size: 1.15rem;
    }
  
  .service-tab-arrow {
      width: 36px;
      height: 36px;
    }
  
  .service-tab-arrow svg {
      width: 17px;
      height: 17px;
    }
  
  .cert-heading {
      margin-bottom: 1.6rem;
    }
  
  .cert-media {
      grid-template-columns: 1fr;
      min-height: auto;
    }
  
  .cert-media-image {
      min-height: 280px;
    }
  
  .cert-highlight-card {
      padding: 1.1rem 1rem 1.25rem;
    }
  
  .cert-detail-title {
      font-size: 1rem;
    }
  
  .cert-tab {
      grid-template-columns: 46px minmax(0, 1fr);
    }
  
  .stats-value {
      font-size: 2.4rem;
    }
  
  .stats-divider {
      margin: 0.8rem 0 0.9rem;
    }
  
  .stats-label {
      font-size: 0.92rem;
    }
  
  .process-heading-row {
      margin-bottom: 1.9rem;
    }
  
  .process-title {
      text-align: left;
      font-size: clamp(1.75rem, 8vw, 2.25rem);
      line-height: 1.35;
    }
  
  .process-cards {
      grid-template-columns: 1fr;
    }
  
  .process-card-media img {
      height: 190px;
    }
  
  .process-card-text {
      max-width: 100%;
    }
  
  .projects-head {
      flex-direction: column;
      align-items: flex-start;
    }
  
  .projects-carousel {
      gap: 1.15rem;
      padding-inline: 36px;
      margin-inline: -36px;
    }
  
  .project-card-media {
      height: 260px;
    }
  
  .testimonials-heading-row {
      margin-bottom: 1.6rem;
    }
  
  .testimonials-title {
      font-size: clamp(1.75rem, 8vw, 2.25rem);
      line-height: 1.35;
    }
  
  .testimonial-slider {
      min-height: 320px;
      padding: 1.6rem 1.35rem;
    }
  
  .testimonial-slide {
      padding: 1.6rem 1.35rem;
    }
  
  .testimonial-quote {
      font-size: 1rem;
    }
  
  .blog-head {
      flex-direction: column;
      align-items: flex-start;
    }
  
  .blog-title {
      font-size: clamp(1.75rem, 8vw, 2.25rem);
    }
  
  .blog-card-media {
      height: 230px;
    }
  
  .blog-card-text {
      max-width: 100%;
    }
}

/* === pages/about.css === */
/* About page sections. */

.about-hero-panel {
  background:
    linear-gradient(90deg, rgba(8, 18, 34, 0.72) 0%, rgba(8, 18, 34, 0.45) 52%, rgba(8, 18, 34, 0.18) 100%),
    url("../img/our-story-banner.webp") center/cover no-repeat;
}

.about-intro-section {
  padding-top: 2rem;
  padding-bottom: 3.25rem;
  background: #fff;
}

.about-intro-shell {
  max-width: 1240px;
  margin-inline: auto;
}

.about-intro-copy {
  max-width: 760px;
}

.about-intro-title {
  margin: 1rem 0 1.25rem;
  color: #0d2b22;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.about-intro-text {
  max-width: 640px;
  margin: 0 0 1rem;
  color: rgba(31, 37, 44, 0.66);
  font-size: 0.98rem;
  line-height: 2;
}

.about-intro-image {
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-intro-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-vision-section {
  background: #f4f4f4;
}

.about-vision-shell {
  max-width: 1240px;
  margin-inline: auto;
}

.vision-card {
  height: 100%;
  background: #ffffff;
  border-radius: 28px;
  padding: 3.25rem 2.75rem;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.vision-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(6, 13, 12, 0.1);
}

.vision-card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.vision-icon {
  flex-shrink: 0;
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-icon svg,
.vision-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.vision-card-title {
  margin: 0;
  color: var(--accent);
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.vision-card-text {
  margin: 0;
  color: rgba(31, 37, 44, 0.78);
  line-height: 1.95;
  font-weight: 500;
  max-width: 560px;
}

.about-timeline-section {
  padding-top: 0;
  padding-bottom: 0;
  background: #060d0c;
  position: relative;
}

.about-timeline-sticky-spacer {
  height: 300vh;
}

.about-timeline-sticky-view {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--viewport-height);
  overflow: hidden;
  background: #060d0c;
  z-index: 2;
}

.about-timeline-shell {
  max-width: 1240px;
  margin-inline: auto;
  display: flex;
  align-items: center;
}

.about-timeline-copy {
  max-width: 420px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.about-timeline-title {
  margin: 0 0 0.9rem;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.about-timeline-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.9;
  max-width: 360px;
}

.about-timeline-track {
  position: relative;
  height: clamp(520px, 64vh, 720px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 220px 0;
  scroll-snap-type: y proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: auto;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.22) 0,
    rgba(255, 255, 255, 0.22) 7px,
    transparent 7px,
    transparent 16px
  );
  background-position: 22px 0;
  background-size: 1px 16px;
  background-repeat: repeat-y;
}

.about-timeline-track::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.timeline-entry {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: start;
  gap: 1.15rem;
  padding: 1.1rem 0;
  filter: blur(1.4px);
  /* opacity: 0.34; */
  transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
  scroll-snap-align: center;
}

.timeline-entry + .timeline-entry {
  margin-top: 1.25rem;
}

.timeline-entry-dot {
  position: relative;
  z-index: 1;
  width: 25px;
  height: 25px;
  margin-top: 0.15rem;
  margin-left: 10px;
  border-radius: 50%;
  background: #cccccc;
  border: none;
  transition: all 0.35s ease;
}

.timeline-entry-card {
  padding-top: 0.05rem;
}

.timeline-entry-title {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.03em;
  transition: color 0.35s ease;
}

.timeline-entry-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.85;
  font-weight: 500;
  transition: color 0.35s ease;
}

.timeline-entry.is-active {
  filter: blur(0);
  opacity: 1;
  transform: scale(1.01);
}

.timeline-entry.is-active .timeline-entry-dot {
  width: 40px;
  height: 40px;
  margin-left: 2px;
  margin-top: 0;
  background: transparent;
  border: 3px solid var(--accent);
  box-shadow: none;
  transform: none;
}

.timeline-entry.is-active .timeline-entry-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline-entry.is-active .timeline-entry-title {
  color: var(--accent);
}

.timeline-entry.is-active .timeline-entry-text {
  color: rgba(255, 255, 255, 0.92);
}

.about-journey-section {
  background: #fff url("../img/h-process-bg.webp") center/cover no-repeat;
}

.about-journey-shell {
  max-width: 1240px;
  margin-inline: auto;
}

.about-journey-heading {
  margin-bottom: 3.25rem;
}

.about-journey-title {
  margin: 0;
  color: #0d2b22;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-align: center;
}

.about-journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.25rem;
  padding-top: 0.5rem;
}

.about-journey-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 155px;
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    rgba(31, 37, 44, 0.4) 0,
    rgba(31, 37, 44, 0.4) 6px,
    transparent 6px,
    transparent 14px
  );
}

.about-journey-item {
  position: relative;
  padding-top: 0.25rem;
}

.about-journey-media {
  width: 110px;
  height: 110px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 40px rgba(6, 13, 12, 0.1);
}

.about-journey-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-journey-dot {
  position: absolute;
  top: 140px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(248, 84, 7, 0.08);
  z-index: 1;
}

.about-journey-year {
  margin-top: 2.1rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.about-journey-text {
  margin: 0.65rem 0 0;
  color: black;
  font-size: 0.93rem;
  line-height: 1.8;
  max-width: 260px;
}

.about-team-section {
  background: #F6F6F6;
}

.about-team-shell {
  max-width: 1240px;
  margin-inline: auto;
}

.about-team-title {
  margin: 0 0 3rem;
  color: #0d2b22;
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-align: center;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.25rem;
  align-items: start;
}

.about-team-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 400px;
  min-height: 0;
  background: #0b0f10;
}

.about-team-card:nth-child(2) {
  transform: translateY(22px);
}

.about-team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 13, 12, 0) 0%, rgba(6, 13, 12, 0.28) 55%, rgba(6, 13, 12, 0.78) 100%);
}

.about-team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(0.98);
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 300ms ease;
  will-change: transform;
}

.about-team-card:hover img {
  transform: translate3d(0, 0, 0) scale(1.05);
}

.about-team-meta {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.25rem;
  z-index: 1;
}

.about-team-name {
  margin: 0 0 0.2rem;
  color: #46D69F;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.about-team-role {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 500;
}

.about-team-message {
  max-width: 560px;
}

.about-team-message .section-label {
  margin: 0 0 1rem;
}

.about-team-message-title {
  margin: 0 0 1.25rem;
  color: #0d2b22;
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.about-team-message-text {
  color: #4a4a4a;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1rem;
}

.about-team-message-text:last-child {
  margin-bottom: 0;
}

/* =====pre-footer====== */
 .pre-footer{
  background: url(../img/a-section-bg.webp) no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  table-layout: fixed;
  padding:200px 0 100px;
  height: 50px;
  -webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
}

.pre-footer h2{
    color: #ffff;
    line-height: 51px; 
    font-size: 28px; 
    letter-spacing: 13px; 
    margin-top: -247px;
}

.pre-footer .pre-blank{
    color: #ffff;
    line-height: 51px; 
    font-size: 28px; 
    letter-spacing: 13px; 
    margin-top: -150px;
}

@media (max-width: 575.98px) {
  .vision-card {
      padding: 2.25rem 1.5rem;
      border-radius: 22px;
    }
  
  .vision-card-header {
      gap: 1rem;
      margin-bottom: 1.75rem;
    }
  
  .vision-icon {
      width: 60px;
      height: 60px;
    }
  
  .vision-card-text {
      font-size: 1rem;
      line-height: 1.85;
    }
}

@media (max-width: 1199.98px) {
  .about-team-card:nth-child(2) {
      transform: none;
    }
}

@media (max-width: 991.98px) {
  .about-intro-image {
      max-width: 100%;
    }
  
  .about-timeline-shell {
      min-height: auto;
      padding: 3rem 0;
    }
  
  .about-timeline-copy {
      position: static;
      max-width: 100%;
      padding-top: 0;
      transform: none;
    }
  
  .about-timeline-track {
      padding: 1rem 0 0;
      height: auto;
      overflow: visible;
      scroll-snap-type: none;
      background-image: none;
    }
  
  .timeline-entry {
      min-height: auto;
      filter: none;
      opacity: 1;
    }
  
  .timeline-entry + .timeline-entry {
      margin-top: 1.4rem;
    }
  
  .about-journey-heading {
      margin-bottom: 2rem;
    }
  
  .about-journey-title {
      text-align: left;
      font-size: clamp(1.8rem, 6.8vw, 2.35rem);
    }
  
  .about-journey-track {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.75rem;
    }
  
  .about-journey-track::before {
      display: none;
    }
  
  .about-journey-dot {
      display: none;
    }
  
  .about-team-title {
      margin-bottom: 2.25rem;
      font-size: clamp(1.75rem, 5.6vw, 2.25rem);
    }
  
  .about-team-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.6rem;
    }
}

@media (max-width: 767.98px) {
  .about-intro-title {
      font-size: clamp(1.8rem, 8vw, 2.35rem);
      line-height: 1.35;
    }
  
  .about-intro-text {
      max-width: 100%;
      font-size: 0.95rem;
      line-height: 1.8;
    }
  
  .about-timeline-section {
      padding-bottom: 3.5rem;
    }
  
  .about-timeline-title {
      font-size: clamp(1.8rem, 8vw, 2.35rem);
      line-height: 1.35;
    }
  
  .about-timeline-text {
      max-width: 100%;
      font-size: 0.95rem;
      line-height: 1.8;
    }
  
  .about-team-grid {
      grid-template-columns: 1fr;
    }
  
  .about-timeline-track {
      padding-top: 0.5rem;
    }
  
  .timeline-entry {
      grid-template-columns: 34px minmax(0, 1fr);
      gap: 0.9rem;
    }
  
  .about-timeline-track::before {
      left: 16px;
    }
  
  .timeline-entry-dot {
      width: 14px;
      height: 14px;
      margin-left: 9px;
    }
  
  .timeline-entry-title {
      font-size: 1.35rem;
    }
  
  .timeline-entry-text {
      font-size: 0.95rem;
      line-height: 1.75;
    }
}

/* === pages/services.css === */
/* Services page sections. */

.services-hero-panel {
  position: relative;
  min-height: var(--page-hero-min-height);
  padding: var(--page-hero-pad-y) var(--page-hero-pad-x);
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 18, 34, 0.72) 0%, rgba(8, 18, 34, 0.45) 52%, rgba(8, 18, 34, 0.18) 100%),
    url("../img/s-banner.webp") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.services-tabs-section {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background: var(--surface);
}

.services-tabs-shell {
  max-width: 1240px;
  margin-inline: auto;
}

.services-tabs-heading-row {
  margin-bottom: 2.75rem;
}

.services-tabs-title {
  margin: 0;
  color: var(--dark);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.services-tabs-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 2.2vw, 3rem);
  align-items: stretch;
}

.services-tabs-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #0a1512;
  min-height: 520px;
  box-shadow: 0 28px 60px rgba(6, 13, 12, 0.16);
}

.services-tabs-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-tabs-media-base {
  z-index: 1;
}

.services-tabs-media-overlay {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-tabs-media.is-animating .services-tabs-media-overlay {
  opacity: 1;
}

.service-carousel-track {
  position: absolute;
  inset: 0;
}

.service-carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-carousel-slide.is-active {
  opacity: 1;
}

.service-carousel-dots {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 4;
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.service-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.service-carousel-dot.is-active {
  background: #fff;
  transform: scale(1.4);
}

.services-tabs-media-label {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 3;
}

.services-tabs-label-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  background: rgba(6, 13, 12, 0.68);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.services-tabs-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: start;
  align-content: start;
}

.services-tab-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  /* gap: 1.25rem; */
  align-items: center;
  width: 100%;
  padding: .5rem;
  border: 1px solid rgba(6, 13, 12, 0.08);
  border-radius: 22px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.35s ease,
              background 0.35s ease;
  color: inherit;
  font: inherit;
}

.services-tab-item:hover {
  transform: translateX(5px);
  border-color: rgba(30, 219, 168, 0.35);
  box-shadow: 0 18px 38px rgba(6, 13, 12, 0.08);
}

.services-tab-item.is-active {
  transform: translateX(8px);
  border-color: rgba(30, 219, 168, 0.5);
  background: linear-gradient(135deg, #ffffff 0%, #f1fbf7 100%);
  box-shadow: 0 22px 44px rgba(30, 219, 168, 0.14);
}

.services-tab-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 60px;
  border-radius: 18px;
  background: rgba(6, 13, 12, 0.05);
  color: rgba(6, 13, 12, 0.75);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: background 0.35s ease, color 0.35s ease;
}

.services-tab-item:hover .services-tab-number,
.services-tab-item.is-active .services-tab-number {
  background: rgba(30, 219, 168, 0.16);
  color: #0b7559;
}

.services-tab-name {
  color: var(--dark);
  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.services-tab-item:hover .services-tab-name,
.services-tab-item.is-active .services-tab-name {
  color: #0b7559;
}

.facility-section {
  background: var(--bg);
}

.facility-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.facility-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #0a1512;
  min-height: 460px;
  box-shadow: 0 28px 60px rgba(6, 13, 12, 0.16);
}

.facility-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.facility-title {
  margin: 0;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.facility-desc {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.service-detail-section {
  background: var(--surface);
}

.service-detail-section-alt {
  background: var(--surface-alt);
}

.service-detail-shell {
  max-width: 1240px;
  margin-inline: auto;
}

.service-detail-media {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 300ms ease;
  will-change: transform;
}

.service-detail-media:hover img {
  transform: translate3d(0, 0, 0) scale(1.045);
}

.service-detail-copy {
  padding-top: 0.25rem;
}

.service-detail-title {
  margin: 0 0 1.05rem;
  color: #0d2b22;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.service-detail-text {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.service-detail-points {
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2.25rem;
}

.service-detail-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.service-point-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}

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

.service-point-text {
  color: #0d2b22;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.35;
}

.services-tabs {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

@media (max-width: 991.98px) {
  .services-tabs-row {
      grid-template-columns: minmax(0, 1fr);
    }
  
  .services-tabs-media {
      min-height: 360px;
    }
  
  .service-detail-shell .row {
      display: flex;
      flex-wrap: wrap;
    }
  
  .service-detail-shell .row > .col-lg-6:has(.service-detail-media) {
      order: -1;
    }
  
  .service-detail-shell .row > .col-lg-6 {
      width: 100%;
    }
  
  .service-detail-points {
      grid-template-columns: minmax(0, 1fr);
      gap: 0.9rem;
    }
}

@media (max-width: 575.98px) {
  .services-tabs-section {
      padding-top: 1rem;
      padding-bottom: 3rem;
    }
  
  .services-tabs-nav {
      grid-template-columns: 1fr;
    }
  
  .services-tabs-media {
      min-height: 260px;
      border-radius: 22px;
    }
  
  .services-tabs-label-pill {
      font-size: 0.82rem;
      padding: 0.65rem 1rem;
    }
  
  .services-tab-item {
      grid-template-columns: 58px 1fr;
      gap: 1rem;
      padding: 0.95rem 1rem;
      border-radius: 18px;
    }
  
  .services-tab-number {
      height: 44px;
      border-radius: 14px;
      font-size: 0.95rem;
    }
  
  .services-tab-name {
      font-size: 0.95rem;
    }
}

@media (max-width: 767.98px) {
  .facility-row {
      grid-template-columns: 1fr;
    }
  
  .facility-media {
      min-height: 280px;
    }
}

/* === pages/projects.css === */
/* Projects page sections. */

.projects-hero-panel {
  position: relative;
  min-height: var(--page-hero-min-height);
  padding: var(--page-hero-pad-y) var(--page-hero-pad-x);
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 18, 34, 0.72) 0%, rgba(8, 18, 34, 0.45) 52%, rgba(8, 18, 34, 0.18) 100%),
    url("../img/projects-banner.webp") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.projects-done-shell {
  max-width: 1240px;
  margin-inline: auto;
}

.projects-done-title {
  margin: 1.1rem 0 0;
  color: #0d2b22;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.projects-done-bottom {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  align-items: end;
  gap: 0.5rem;
}

.projects-done-text {
  margin: 0;
  max-width: 390px;
  color: rgba(31, 37, 44, 0.62);
  font-size: 0.96rem;
  line-height: 2;
}

.projects-done-media-small,
.projects-done-media-large {
  border-radius: 22px;
  overflow: hidden;
  background: #dfe8e5;
  box-shadow: var(--shadow);
}

.projects-done-media-small {
  width: 240px;
  height: 230px;
}

.projects-done-media-large {
  width: min(380px, 100%);
  height: 380px;
  align-self: flex-end;
}

.projects-done-media-small img,
.projects-done-media-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.projects-done-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.8rem;
}

.projects-done-stat {
  width: min(380px, 100%);
  display: flex;
  align-items: flex-end;
  gap: 1.15rem;
}

.projects-done-number {
  color: var(--accent);
  font-size: clamp(3.25rem, 4.8vw, 4.25rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.projects-done-stat-text {
  padding-bottom: 0.35rem;
  color: #0d2b22;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25;
}

.projects-filter-section{
  background-color: #F6F6F6;
}

.projects-filter-shell {
  max-width: 1240px;
  margin-inline: auto;
}

.projects-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.projects-filter-tab {
  border: 1px solid rgba(31, 37, 44, 0.14);
  background: #f6f6f6;
  color: rgba(31, 37, 44, 0.7);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.45rem 2rem;
  border-radius: 999px;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.projects-filter-tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.projects-filter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.1rem;
}

.projects-filter-card {
  min-width: 0;
}

.projects-filter-card.is-hidden {
  display: none;
}

.projects-filter-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #dfe8e5;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.projects-filter-card:hover .projects-filter-media {
  transform: translateY(-3px);
  box-shadow: 0 28px 56px rgba(6, 13, 12, 0.16);
}

.projects-filter-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.5s ease;
  transform-origin: center center;
  will-change: transform;
}

.projects-filter-card:hover .projects-filter-media img {
  transform: scale(1.1);
  filter: saturate(1.1) contrast(1.05);
}

.projects-filter-chip {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 1.05rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.projects-filter-body {
  padding-top: 0.95rem;
}

.projects-filter-title {
  margin: 0 0 0.35rem;
  color: #0d2b22;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.projects-filter-meta {
  margin: 0;
  color: rgba(31, 37, 44, 0.6);
  font-size: 0.78rem;
}

.proj-executed-section {
  background: #ddddd5;
}

.proj-executed-title {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0.5rem 0 2rem;
}

.proj-exec-card {
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(6, 13, 12, 0.1);
}

.proj-exec-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.proj-exec-card:hover .proj-exec-img {
  transform: scale(1.05);
}

.proj-exec-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin: 0.85rem 0 0;
  text-align: center;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease;
  z-index: 2;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease;
  z-index: 2;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.28);
}

.lightbox-prev { left: 1.5rem; }

.lightbox-next { right: 1.5rem; }

@media (max-width: 991.98px) {
  .projects-done-bottom {
      grid-template-columns: 1fr;
      margin-top: 1.25rem;
      gap: 1.25rem;
    }
  
  .projects-done-text {
      max-width: 100%;
    }
  
  .projects-done-media-small,
    .projects-done-media-large,
    .projects-done-stat {
      width: 100%;
    }
  
  .projects-done-media-small {
      height: 240px;
    }
  
  .projects-done-media-large {
      height: 260px;
    }
  
  .projects-done-right {
      align-items: stretch;
    }
  
  .projects-filter-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.5rem;
    }
}

@media (max-width: 575.98px) {
  .projects-filter-tabs {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }
  
  .projects-filter-tab {
      width: 100%;
      text-align: center;
      padding-left: 0.75rem;
      padding-right: 0.75rem;
    }
  
  .projects-filter-grid {
      grid-template-columns: 1fr;
    }
}

/* === pages/work.css === */
/* How We Work page sections. */

.how-we-work-hero-panel {
  position: relative;
  min-height: var(--page-hero-min-height);
  padding: var(--page-hero-pad-y) var(--page-hero-pad-x);
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 18, 34, 0.72) 0%, rgba(8, 18, 34, 0.45) 52%, rgba(8, 18, 34, 0.18) 100%),
    url("../img/w-banner.webp") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.work-process-section {
  padding-top: 2.25rem;
  padding-bottom: 5.25rem;
  background: #fff;
}

.work-process-head {
  max-width: 1100px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.work-process-title {
  margin: 0;
  color: #0d2b22;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.work-process-layout {
  max-width: 1300px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 1.4rem;
  row-gap: 0;
  align-items: start;
  padding-top: 1.65rem;
}

.work-process-item {
  --work-process-media-size: 250px;
  --work-process-overlap: 220px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.work-process-item--1 {
  grid-column: 1 / span 3;
  grid-row: 1;
}

.work-process-item--2 {
  --work-process-media-size: 225px;
  grid-column: 4 / span 3;
  grid-row: 2;
  margin-top: calc(-1.5 * var(--work-process-overlap));
  z-index: 2;
}

.work-process-item--3 {
  grid-column: 7 / span 3;
  grid-row: 1;
}

.work-process-item--4 {
  --work-process-media-size: 225px;
  grid-column: 10 / span 3;
  grid-row: 2;
  margin-top: calc(-1.5 * var(--work-process-overlap));
  z-index: 2;
}

.work-process-media {
  position: relative;
  width: var(--work-process-media-size);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  overflow: visible;
}

.work-process-media-frame {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  background: #dfe8e5;
  box-shadow: 0 22px 42px rgba(14, 18, 24, 0.12);
}

.work-process-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.work-process-step {
  position: absolute;
  left: 50%;
  bottom: -23px;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.86rem;
  box-sizing: border-box;
  z-index: 3;
  box-shadow: 0 16px 30px rgba(248, 84, 7, 0.28);
}

.work-process-copy {
  max-width: 250px;
}

.work-process-item-title {
  margin: 0 0 0.65rem;
  color: #0d2b22;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.work-process-item-text {
  margin: 0;
  color: rgba(31, 37, 44, 0.62);
  font-size: 0.88rem;
  line-height: 1.7;
}

.work-process-item.is-copy-top {
  gap: 1.05rem;
}

.work-process-item.is-copy-top .work-process-step {
  top: -23px;
  bottom: auto;
}

.work-assurance-section {
  background: #fff;
}

.work-assurance-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.work-assurance-block--reverse .work-assurance-media {
  grid-column: 2;
  grid-row: 1;
}

.work-assurance-block--reverse .work-assurance-copy {
  grid-column: 1;
  grid-row: 1;
}

.work-assurance-media {
  min-height: 420px;
  height: 100%;
  overflow: hidden;
}

.work-assurance-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-assurance-copy {
  padding: clamp(2.25rem, 3.5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work-assurance-kicker {
  font-size: 0.9rem;
  font-weight: 600;
  color: #46D69F;
  margin-bottom: 0.75rem;
}

.work-assurance-title {
  margin: 0 0 1.2rem;
  color: #0d2b22;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.work-assurance-text {
  margin: 0 0 1rem;
  color: rgba(31, 37, 44, 0.62);
  font-size: 0.98rem;
  line-height: 1.85;
  max-width: 560px;
}

.work-assurance-list {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
  max-width: 560px;
}

.work-assurance-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: rgba(31, 37, 44, 0.7);
  font-size: 0.95rem;
  line-height: 1.65;
}

.work-assurance-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 0.15rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.work-assurance-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.work-assurance-metrics {
  margin-top: 1.65rem;
  display: grid;
  gap: 0.95rem;
  max-width: 560px;
}

.work-assurance-metric {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  align-items: center;
  gap: 1.25rem;
}

.work-assurance-metric-value {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.work-assurance-metric-label {
  position: relative;
  color: #0d2b22;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.5;
  padding-left: 1.1rem;
}

.work-assurance-metric-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 2px;
  border-radius: 99px;
  background: var(--accent);
}

@media (max-width: 1199.98px) {
  .work-process-layout {
      column-gap: 1rem;
    }
  
  .work-process-item {
      --work-process-media-size: 220px;
      --work-process-overlap: 190px;
    }
  
  .work-process-item--2,
    .work-process-item--4 {
      --work-process-media-size: 200px;
    }
  
  .work-process-item--2 {
      margin-top: calc(-1.3 * var(--work-process-overlap));
    }
  
  .work-process-item--4 {
      margin-top: calc(-1.3 * var(--work-process-overlap));
    }
}

@media (max-width: 991.98px) {
  .work-process-section {
      padding-top: 2rem;
      padding-bottom: 4rem;
    }
  
  .work-process-head {
      margin-bottom: 2.25rem;
      gap: 0.5rem;
    }
  
  .work-process-layout {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      column-gap: 2rem;
      row-gap: 2.5rem;
      padding-top: 0.5rem;
    }
  
  .work-process-item {
      --work-process-media-size: 230px;
      --work-process-overlap: 170px;
      grid-column: auto !important;
      grid-row: auto !important;
      margin-top: 0 !important;
      z-index: auto !important;
    }
  
  .work-process-item--1 { order: 1; }
  
  .work-process-item--2 { order: 2; }
  
  .work-process-item--3 { order: 3; }
  
  .work-process-item--4 { order: 4; }
  
  .work-process-item:not(.is-copy-top) {
      flex-direction: column;
    }
  
  .work-process-item.is-copy-top {
      flex-direction: column;
    }
  
  .work-process-copy {
      max-width: 280px;
    }
  
  .work-process-head {
      margin-bottom: 2.35rem;
    }
  
  .work-process-title {
      text-align: left;
      font-size: clamp(1.9rem, 6vw, 2.55rem);
    }
  
  .work-process-layout {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      row-gap: 3.25rem;
      padding-top: 0.25rem;
    }
  
  .work-process-item {
      --work-process-media-size: 220px;
    }
  
  .work-process-item--1,
    .work-process-item--2,
    .work-process-item--3,
    .work-process-item--4 {
      grid-column: auto;
      grid-row: auto;
      margin-top: 0;
    }
  
  .work-process-copy {
      max-width: 100%;
    }
  
  .work-assurance-block {
      grid-template-columns: 1fr;
    }
  
  .work-assurance-block--reverse .work-assurance-media,
    .work-assurance-block--reverse .work-assurance-copy {
      grid-column: auto;
      grid-row: auto;
    }
  
  .work-assurance-media {
      min-height: 320px;
    }
  
  .work-assurance-copy {
      padding: 2.25rem 1.5rem;
    }
  
  .work-assurance-title {
      font-size: clamp(1.85rem, 6vw, 2.35rem);
    }
}

@media (max-width: 767.98px) {
  .work-process-layout {
      column-gap: 1.25rem;
      row-gap: 2rem;
    }
  
  .work-process-item {
      --work-process-media-size: 190px;
      --work-process-overlap: 140px;
      gap: 1rem;
    }
  
  .work-process-media-frame {
      box-shadow: 0 16px 32px rgba(14, 18, 24, 0.1);
    }
  
  .work-process-step {
      width: 42px;
      height: 42px;
      font-size: 0.82rem;
    }
  
  .work-process-item-title {
      font-size: 1rem;
    }
  
  .work-process-item-text {
      font-size: 0.85rem;
      line-height: 1.65;
    }
  
  .work-process-layout {
      grid-template-columns: 1fr;
    }
  
  .work-process-item {
      --work-process-media-size: 240px;
    }
  
  .work-assurance-media {
      min-height: 260px;
    }
  
  .work-assurance-copy {
      padding: 2.05rem 1.25rem;
    }
}

@media (max-width: 575.98px) {
  .work-process-section {
      padding-top: 1.5rem;
      padding-bottom: 3rem;
    }
  
  .work-process-layout {
      grid-template-columns: minmax(0, 1fr);
      row-gap: 2.25rem;
      column-gap: 0;
    }
  
  .work-process-item {
      --work-process-media-size: 210px;
      gap: 1.1rem;
    }
  
  .work-process-copy {
      max-width: 100%;
      padding-inline: 0.5rem;
    }
  
  .work-process-item-title {
      font-size: 1.02rem;
    }
  
  .work-process-item-text {
      font-size: 0.88rem;
    }
}

/* === pages/certs.css === */
/* Certifications page sections. */

.certifications-hero-panel {
  position: relative;
  min-height: var(--page-hero-min-height);
  padding: var(--page-hero-pad-y) var(--page-hero-pad-x);
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 18, 34, 0.72) 0%, rgba(8, 18, 34, 0.45) 52%, rgba(8, 18, 34, 0.18) 100%),
    url("../img/a-section-bg.webp") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.cert-page-section {
  padding-top: 1.25rem;
  padding-bottom: 5rem;
  background: #fff;
}

.cert-page-shell {
  max-width: 1240px;
  margin-inline: auto;
}

.cert-page-heading {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 2.65rem;
}

.cert-page-title {
  margin: 0 0 1.05rem;
  color: #0d2b22;
  font-size: clamp(1.95rem, 2.7vw, 2.75rem);
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.cert-page-text {
  margin: 0;
  color: rgba(31, 37, 44, 0.62);
  font-size: 0.98rem;
  line-height: 1.9;
}

.cert-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.cert-page-card {
  border-radius: 18px;
  background: #EAF7F2;
  padding: 1.35rem 1.3rem 1.55rem;
  text-align: center;
}

.cert-page-card-media {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  padding: 0.85rem;
  box-shadow: 0 18px 35px rgba(24, 30, 39, 0.08);
}

.cert-page-card-media img {
  width: 100%;
  height: auto;
  display: block;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 300ms ease;
  will-change: transform;
}

.cert-page-card:hover .cert-page-card-media img {
  transform: translate3d(0, 0, 0) scale(1.04);
}

.cert-page-card-title {
  margin: 1.2rem 0 0.45rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.cert-page-card-text {
  margin: 0;
  color: rgba(31, 37, 44, 0.62);
  font-size: 0.92rem;
}

@media (max-width: 991.98px) {
  .cert-page-heading {
      text-align: left;
      margin-inline: 0;
    }
  
  .cert-page-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
  .cert-page-heading {
      text-align: left;
    }
  
  .cert-page-title {
      font-size: clamp(1.8rem, 8vw, 2.35rem);
      line-height: 1.35;
    }
  
  .cert-page-grid {
      grid-template-columns: 1fr;
    }
}

/* === pages/contact.css === */
/* Contact page sections and form. */

.contact-hero-panel {
  position: relative;
  min-height: var(--page-hero-min-height);
  padding: var(--page-hero-pad-y) var(--page-hero-pad-x);
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 18, 34, 0.72) 0%, rgba(8, 18, 34, 0.45) 52%, rgba(8, 18, 34, 0.18) 100%),
    url("../img/c-banner.webp") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.contact-page-section {
  padding-top: 3rem;
  padding-bottom: 3.25rem;
  background: #f6f6f6;
}

.contact-page-shell {
  max-width: 1240px;
  margin-inline: auto;
}

.contact-page-heading {
  margin-bottom: 2.55rem;
}

.contact-page-title {
  margin: 0;
  color: #0d2b22;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.contact-page-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 2.25rem;
  margin-bottom: 1.8rem;
}

.contact-page-info-title {
  color: rgba(31, 37, 44, 0.62);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.contact-page-info-text {
  color: #0d2b22;
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 600;
}

.contact-page-info-text a {
  color: #0d2b22;
}

.contact-page-image {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-page-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.contact-form-card > .row.g-3 {
  --bs-gutter-y: 1.2rem;
  --bs-gutter-x: 1.4rem;
}

.contact-field-label {
  display: block;
  margin-bottom: 0.6rem;
  color: #0d2b22;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.contact-field {
  width: 100%;
  height: 52px;
  border-radius: 15px;
  padding: 0.8rem 1.25rem;
  border: 1px solid rgba(31, 37, 44, 0.1);
  background: #ffffff;
  color: #0d2b22;
  outline: none;
  font-size: 0.98rem;
  line-height: 1.2;
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    background-color 240ms ease;
  -webkit-appearance: none;
  appearance: none;
}

.contact-field::placeholder {
  color: rgba(13, 43, 34, 0.48);
  opacity: 1;
}

select.contact-field {
  padding-right: 3.15rem;
  background-image:
    linear-gradient(45deg, transparent 50%, #0d2b22 50%),
    linear-gradient(135deg, #0d2b22 50%, transparent 50%);
  background-position:
    calc(100% - 2.05rem) calc(50% - 3px),
    calc(100% - 1.6rem) calc(50% - 3px);
  background-size: 10px 10px, 10px 10px;
  background-repeat: no-repeat;
  background-color: #ffffff;
  cursor: pointer;
}

select.contact-field:focus {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent, #f85407) 50%),
    linear-gradient(135deg, var(--accent, #f85407) 50%, transparent 50%);
}

.contact-select {
  position: relative;
}

.contact-select.is-open {
  z-index: 40;
}

.contact-select.is-enhanced .contact-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
  appearance: none;
  background: none;
}

.contact-select-trigger {
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-radius: 15px;
  padding: 0.8rem 1.1rem 0.8rem 1.25rem;
  border: 1px solid rgba(31, 37, 44, 0.1);
  background: #ffffff;
  color: #0d2b22;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    background-color 240ms ease;
}

.contact-select-value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-select-value.is-placeholder {
  color: rgba(13, 43, 34, 0.48);
}

.contact-select-chevron {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #0d2b22;
  transition: transform 220ms ease, color 220ms ease;
}

.contact-select-chevron svg {
  width: 16px;
  height: 16px;
  display: block;
}

.contact-select-trigger:hover {
  border-color: rgba(248, 84, 7, 0.28);
}

.contact-select-trigger:focus-visible,
.contact-select.is-open .contact-select-trigger {
  border-color: rgba(248, 84, 7, 0.4);
  box-shadow: 0 0 0 5px rgba(248, 84, 7, 0.1);
}

.contact-select.is-open .contact-select-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.contact-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 30;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  border-radius: 16px;
  border: 1px solid rgba(31, 37, 44, 0.08);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(24, 30, 39, 0.14);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 180ms ease,
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 180ms ease;
}

.contact-select.is-open .contact-select-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.contact-select-option {
  width: 100%;
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 11px;
  padding: 0.72rem 0.9rem;
  background: transparent;
  color: #0d2b22;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.contact-select-option:hover,
.contact-select-option.is-active {
  background: rgba(248, 84, 7, 0.08);
  color: var(--accent);
}

.contact-select-option.is-selected {
  background: rgba(248, 84, 7, 0.12);
  color: var(--accent);
}

.contact-select-option.is-selected:hover,
.contact-select-option.is-selected.is-active {
  background: rgba(248, 84, 7, 0.16);
}

.contact-field-wrap.has-error .contact-select-trigger {
  border-color: rgba(217, 48, 37, 0.5);
  background-color: #fff8f7;
}

.contact-field-wrap.has-error .contact-select-trigger:focus-visible,
.contact-field-wrap.has-error .contact-select.is-open .contact-select-trigger {
  border-color: rgba(217, 48, 37, 0.65);
  box-shadow: 0 0 0 4px rgba(217, 48, 37, 0.12);
}

.contact-select:has(select.is-valid) .contact-select-trigger {
  border-color: rgba(24, 180, 125, 0.5);
  background-color: #f7fdfa;
}

.contact-select:has(select.is-valid) .contact-select-trigger:focus-visible,
.contact-select:has(select.is-valid).is-open .contact-select-trigger {
  border-color: rgba(24, 180, 125, 0.65);
  box-shadow: 0 0 0 4px rgba(24, 180, 125, 0.12);
}

.contact-field--textarea {
  height: auto;
  border-radius: 22px;
  padding: 1rem 1.25rem;
  resize: vertical;
  line-height: 1.7;
}

.contact-field:focus {
  border-color: rgba(248, 84, 7, 0.4);
  box-shadow: 0 0 0 5px rgba(248, 84, 7, 0.1);
  background-color: #ffffff;
}

.contact-submit {
  margin-top: 0.3rem;
  padding: 0.95rem 2.4rem;
  min-height: 54px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms ease,
    opacity 220ms ease;
  position: relative;
  overflow: hidden;
}

.contact-submit:disabled {
  opacity: 0.85;
  cursor: wait;
}

.contact-submit.is-sending {
  pointer-events: none;
}

.contact-submit.is-sent {
  background: #18b47d;
  box-shadow: 0 14px 24px rgba(24, 180, 125, 0.28);
  cursor: default;
}

.contact-submit.is-sent:hover,
.contact-submit.is-sent:focus {
  background: #18b47d;
  transform: none;
  box-shadow: 0 14px 24px rgba(24, 180, 125, 0.28);
}

.contact-submit .contact-submit-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-submit-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 999px;
  animation: contactSpinner 620ms linear infinite;
  display: inline-block;
}

@keyframes contactSpinner {
  to {
    transform: rotate(360deg);
  }
}

.contact-field-wrap {
  position: relative;
}

.contact-field-error {
  display: none;
  margin: 0.5rem 0 0;
  color: #d93025;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.5;
  padding-left: 0.25rem;
}

.contact-field.is-invalid {
  border-color: rgba(217, 48, 37, 0.5);
  background-color: #fff8f7;
  animation: contactShake 380ms cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.contact-field.is-invalid:focus {
  border-color: rgba(217, 48, 37, 0.65);
  box-shadow: 0 0 0 4px rgba(217, 48, 37, 0.12);
}

.contact-field-wrap.has-error .contact-field-error {
  display: block;
  animation: contactErrorIn 220ms ease-out both;
}

@keyframes contactErrorIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contactShake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}

.contact-field.is-valid {
  border-color: rgba(24, 180, 125, 0.5);
  background-color: #f7fdfa;
}

.contact-field.is-valid:focus {
  border-color: rgba(24, 180, 125, 0.65);
  box-shadow: 0 0 0 4px rgba(24, 180, 125, 0.12);
}

.contact-form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
}

.contact-form-status.is-error {
  display: block;
  color: #9a2517;
  background: #ffeceb;
  border: 1px solid rgba(217, 48, 37, 0.18);
}

.contact-form-status.is-success {
  display: block;
  color: #095c3f;
  background: #e7fbf2;
  border: 1px solid rgba(24, 180, 125, 0.22);
}

.contact-form-status[aria-hidden="false"] {
  animation: contactErrorIn 260ms ease-out both;
}

select.contact-field.is-invalid,
select.contact-field.is-valid {
  background-repeat: no-repeat;
}

.contact-map-section {
  padding-top: 0;
  background: #fff;
}

.contact-map-shell {
  /* max-width: 1240px; */
  margin-inline: auto;
}

.contact-map-frame {
  height: 380px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #dfe8e5;
  border: 1px solid rgba(31, 37, 44, 0.08);
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .contact-select-menu,
    .contact-select-chevron,
    .contact-select-trigger,
    .contact-select-option {
      transition: none;
    }
}

@media (max-width: 991.98px) {
  .contact-page-heading {
      margin-bottom: 2.15rem;
    }
  
  .contact-page-title {
      font-size: clamp(1.9rem, 6vw, 2.55rem);
    }
  
  .contact-form-card {
      padding: 1.35rem 1.35rem;
      border-radius: 24px;
    }
  
  .contact-field {
      height: 48px;
      padding: 0.7rem 1.05rem;
    }
  
  select.contact-field {
      padding-right: 2.85rem;
      background-position:
        calc(100% - 1.75rem) calc(50% - 3px),
        calc(100% - 1.3rem) calc(50% - 3px);
    }
  
  .contact-select-trigger {
      height: 48px;
      padding: 0.7rem 0.95rem 0.7rem 1.05rem;
    }
  
  .contact-field--textarea {
      min-height: 150px;
      padding: 0.9rem 1.05rem;
    }
  
  .contact-map-frame {
      height: 320px;
    }
}

@media (max-width: 767.98px) {
  .contact-page-title {
      font-size: clamp(1.8rem, 8vw, 2.35rem);
      line-height: 1.35;
    }
  
  .contact-page-info-grid {
      grid-template-columns: 1fr;
    }
  
  .contact-form-card {
      padding: 1.2rem 1.1rem;
      border-radius: 22px;
    }
  
  .contact-form-card > .row.g-3 {
      --bs-gutter-y: 1rem;
      --bs-gutter-x: 1rem;
    }
  
  .contact-field-label {
      font-size: 0.88rem;
      margin-bottom: 0.5rem;
    }
  
  .contact-field {
      height: 46px;
      padding: 0.65rem 0.95rem;
      font-size: 0.93rem;
    }
  
  select.contact-field {
      padding-right: 2.6rem;
      background-position:
        calc(100% - 1.55rem) calc(50% - 3px),
        calc(100% - 1.1rem) calc(50% - 3px);
      background-size: 9px 9px, 9px 9px;
    }
  
  .contact-select-trigger {
      height: 46px;
      padding: 0.65rem 0.85rem 0.65rem 0.95rem;
      font-size: 0.93rem;
    }
  
  .contact-select-option {
      padding: 0.65rem 0.8rem;
      font-size: 0.9rem;
    }
  
  .contact-field--textarea {
      min-height: 140px;
      padding: 0.85rem 0.95rem;
    }
  
  .contact-submit {
      padding: 0.85rem 1.9rem;
      min-height: 50px;
      font-size: 0.96rem;
    }
  
  .contact-map-frame {
      height: 280px;
    }
}
