:root {
  --teal: #12b3a8;
  --teal-dark: #0e9a90;
  --teal-glow: rgba(18, 179, 168, 0.22);
  --navy: #0b2f5b;
  --navy-mid: #1a6db0;
  --gold: #d8a63d;
  --charcoal: #2b2f33;
  --slate: #7b8794;
  --mist: #e6e9ed;
  --off: #f2f2f2;
  --warm-sand: #e8dccb;
  --white: #ffffff;

  --font-d: "Inter", sans-serif;
  --font-b: "Inter", sans-serif;

  --shadow-sm: 0 2px 12px rgba(11, 47, 91, 0.08);
  --shadow-md: 0 8px 32px rgba(11, 47, 91, 0.12);
  --shadow-lg: 0 20px 60px rgba(11, 47, 91, 0.18);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;

  --text-xs: 0.8rem;
  --text-sm: 0.9rem;
  --text-base: 1rem;
  --text-md: 1.1rem;
  --text-lg: 1.2rem;
  --text-xl: 1.4rem;
  --hero-img: none;
}

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

/* ── Skip to Content (Accessibility) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus-visible {
  top: 0;
}
/* Fix: Hide skip link on mobile/touch devices to prevent false focus-visible triggers */
@media (hover: none) and (pointer: coarse) {
  .skip-link:focus {
    top: -100%;
  }
  .skip-link:focus-visible {
    top: -100%;
  }
}

/* ── Focus Visible Styles (Accessibility) ── */
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}
:focus:not(:focus-visible) {
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
}
body {
  font-family: var(--font-b);
  color: var(--charcoal);
  background: #fff;
  overflow-x: hidden;
  font-size: var(--text-base);
  line-height: 1.75;
}

svg[xmlns] {
  display: block;
}
a svg,
button svg,
span svg,
li svg,
.nav-links a svg {
  display: block;
  flex-shrink: 0;
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--off);
}
::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 3px;
}

#cursor-dot,
#cursor-ring {
  display: none;
}

#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  z-index: 9000;
  background: linear-gradient(90deg, var(--teal), #6dd0c8, var(--gold));
  width: 0;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(18, 179, 168, 0.6);
}

#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 400;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 20px rgba(18, 179, 168, 0.4);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.3s,
    transform 0.3s;
  pointer-events: none;
}
#backToTop.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#backToTop:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(18, 179, 168, 0.55);
}

/* ── Chaty-like Floating Widget ── */
.chaty-widget {
  position: fixed;
  bottom: 90px;
  left: 24px;
  z-index: 510;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ── Toggle Button ── */
.chaty-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #12b3a8 0%, #0e9a90 50%, #0b8a81 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow:
    0 6px 24px rgba(18, 179, 168, 0.45),
    0 0 0 0 rgba(18, 179, 168, 0.2);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.chaty-toggle:hover {
  transform: scale(1.1);
  box-shadow:
    0 10px 36px rgba(18, 179, 168, 0.55),
    0 0 0 0 rgba(18, 179, 168, 0.2);
}
.chaty-toggle:active {
  transform: scale(0.95);
}
.chaty-toggle .chaty-close-icon {
  display: none;
}
.chaty-toggle.active .chaty-open-icon {
  display: none;
}
.chaty-toggle.active .chaty-close-icon {
  display: block;
}

/* Pulse ring */
.chaty-toggle-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(18, 179, 168, 0.35);
  animation: chatyPulse 2.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes chatyPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0; }
}
.chaty-toggle.active .chaty-toggle-pulse {
  animation: none;
  border-color: transparent;
}

/* ── Popup ── */
.chaty-popup {
  position: absolute;
  bottom: 68px;
  left: 0;
  width: 280px;
  max-height: calc(100vh - 180px);
  max-height: calc(100dvh - 180px);
  overflow-y: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow:
    0 16px 56px rgba(11, 47, 91, 0.18),
    0 2px 12px rgba(11, 47, 91, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.92);
  transform-origin: bottom left;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.chaty-popup.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* ── Popup Header ── */
.chaty-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: linear-gradient(135deg, #12b3a8 0%, #0e9a90 50%, #0a7d75 100%);
  color: #fff;
}
.chaty-header-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.chaty-header-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.chaty-header-text {
  display: flex;
  flex-direction: column;
}
.chaty-header-title {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
}
.chaty-header-sub {
  font-size: 11.5px;
  opacity: 0.85;
  line-height: 1.3;
  margin-top: 1px;
}
.chaty-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: all 0.2s;
  flex-shrink: 0;
}
.chaty-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.25);
}

/* ── Popup Body ── */
.chaty-popup-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ── WhatsApp Expandable Group ── */
.chaty-group {
  position: relative;
}
.chaty-group-toggle {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}
.chaty-group-toggle:hover {
  background: #f0f9f8;
  transform: translateX(4px);
}
.chaty-group-arrow {
  transition: transform 0.3s ease;
}
.chaty-group-toggle[aria-expanded="true"] .chaty-group-arrow {
  transform: rotate(180deg);
}
.chaty-sub-items {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  padding-left: 16px;
}
.chaty-sub-items.open {
  grid-template-rows: 1fr;
}
.chaty-sub-items > div {
  overflow: hidden;
}
.chaty-sub-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--charcoal);
  transition: all 0.2s ease;
  min-height: 0;
}
.chaty-sub-item:hover {
  background: #f0f9f8;
  transform: translateX(4px);
}
.chaty-sub-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25d366;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(37, 211, 102, 0.4);
}
.chaty-sub-phone {
  font-family: var(--font-d);
  font-weight: 500;
  font-size: 12.5px;
  flex: 1;
  white-space: nowrap;
}
.chaty-sub-badge {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--teal);
  background: rgba(18, 179, 168, 0.1);
  padding: 2px 6px;
  border-radius: 20px;
  line-height: 1.3;
  flex-shrink: 0;
}

/* ── Channel Items ── */
.chaty-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--charcoal);
  transition: all 0.2s ease;
  position: relative;
}
.chaty-item:hover {
  background: #f0f9f8;
  transform: translateX(4px);
}
.chaty-item:active {
  transform: translateX(4px) scale(0.98);
}
.chaty-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.chaty-icon-wa {
  background: linear-gradient(135deg, #25d366, #1da851);
}
.chaty-icon-phone {
  background: linear-gradient(135deg, #12b3a8, #0e9a90);
}
.chaty-icon-email {
  background: linear-gradient(135deg, #d8a63d, #c49430);
}
.chaty-item-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}
.chaty-label {
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.3;
}
.chaty-desc {
  font-size: 12px;
  color: var(--slate);
  line-height: 1.3;
  margin-top: 1px;
}
.chaty-item-arrow {
  color: var(--slate);
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
  display: flex;
  flex-shrink: 0;
}
.chaty-item:hover .chaty-item-arrow {
  opacity: 0.6;
  transform: translateX(0);
}

/* ── RTL: keep left always ── */
html[dir="rtl"] .chaty-widget {
  left: 24px;
  right: auto;
  align-items: flex-start;
}
html[dir="rtl"] .chaty-popup {
  left: 0;
  right: auto;
  transform-origin: bottom left;
}
html[dir="rtl"] .chaty-item:hover {
  transform: translateX(-4px);
}
html[dir="rtl"] .chaty-item:active {
  transform: translateX(-4px) scale(0.98);
}
html[dir="rtl"] .chaty-group-toggle {
  text-align: left;
}
html[dir="rtl"] .chaty-sub-items {
  padding-left: 0;
  padding-right: 16px;
}
html[dir="rtl"] .chaty-sub-item:hover {
  transform: translateX(-4px);
}

/* ── Mobile ── */
@media (max-width: 640px) {
  .chaty-widget {
    bottom: 70px;
    left: 16px;
  }
  .chaty-toggle {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  .chaty-popup {
    width: 260px;
    bottom: 62px;
    max-height: calc(100vh - 160px);
    max-height: calc(100dvh - 160px);
    overflow-y: auto;
    overflow-x: hidden;
  }
  .chaty-popup-header {
    padding: 14px 16px;
  }
  .chaty-popup-body {
    padding: 8px;
  }
  .chaty-item {
    padding: 10px 12px;
    min-height: 0;
  }
  .chaty-sub-items {
    padding-left: 8px;
  }
  html[dir="rtl"] .chaty-sub-items {
    padding-right: 8px;
  }
  .chaty-sub-item {
    padding: 5px 10px 5px 8px;
  }
  .chaty-sub-phone {
    font-size: 11.5px;
  }
  html[dir="rtl"] .chaty-widget {
    left: 16px;
    right: auto;
  }
  /* Ensure popup doesn't exceed viewport on mobile */
  .chaty-popup > * {
    min-height: 0;
  }
}

html,
body {
  overflow-x: hidden;
}

.section {
  padding: 64px 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 16px;
}
.section-title--sm,
.section-sub--sm {
  max-width: 460px;
}
.section-title--md,
.section-sub--md {
  max-width: 500px;
}
.section-title--lg,
.section-sub--lg {
  max-width: 520px;
}
.section-title--xl,
.section-sub--xl {
  max-width: 560px;
}
.section-title.white {
  color: #fff;
}
.section-sub {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
}
.section-sub.white {
  color: rgba(255, 255, 255, 0.6);
}
.divider {
  width: 36px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin: 12px 0 20px;
}

.text-center {
  text-align: center;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--charcoal);
  transition: all 0.2s;
}
.pill:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}
.pill svg {
  color: var(--teal);
}

[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

.section.bg-off {
  background: var(--off);
}
.section.bg-navy {
  background: var(--navy);
}
.section.bg-teal-fade {
  background: linear-gradient(135deg, #e6f7f6 0%, var(--off) 100%);
}

@keyframes gradientShift {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes float3d {
  0%,
  100% {
    transform: translateY(0) rotateX(2deg) rotateY(-3deg);
  }
  33% {
    transform: translateY(-12px) rotateX(-1deg) rotateY(2deg);
  }
  66% {
    transform: translateY(-6px) rotateX(3deg) rotateY(-1deg);
  }
}
@keyframes dotPulse {
  0%,
  100% {
    box-shadow: 0 0 4px var(--teal);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 0 14px var(--teal),
      0 0 28px rgba(18, 179, 168, 0.4);
    transform: scale(1.3);
  }
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
  font-family: var(--font-d);
}
.page-breadcrumb a {
  color: var(--teal);
  text-decoration: none;
  transition: opacity 0.2s;
}
.page-breadcrumb a:hover {
  opacity: 0.8;
}
.page-breadcrumb span {
  color: rgba(255, 255, 255, 0.25);
}
.breadcrumb-current {
  color: rgba(255, 255, 255, 0.6);
}

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.page-hero-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
  border-radius: 2px;
}

.page-hero {
  min-height: 38vh;
  background: linear-gradient(
    160deg,
    #020712 0%,
    #040e1e 40%,
    #06162b 65%,
    #081828 100%
  );
  display: flex;
  align-items: center;
  padding: 120px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 80% 50% at 20% 100%,
      rgba(18, 179, 168, 0.14) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 40% at 90% 10%,
      rgba(18, 179, 168, 0.08) 0%,
      transparent 60%
    );
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(18, 179, 168, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 179, 168, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(
    ellipse 100% 100% at 50% 50%,
    black 20%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 100% 100% at 50% 50%,
    black 20%,
    transparent 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-title {
  font-family: var(--font-d);
  font-size: clamp(28px, 6vw, 50px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero-title .accent {
  background: linear-gradient(
    135deg,
    var(--teal) 0%,
    #6dd0c8 60%,
    var(--teal) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s linear infinite;
}
.page-hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  max-width: 480px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--teal), #0e9a90);
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 6px 28px rgba(18, 179, 168, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, #0e9a90, var(--teal-dark));
  transition: opacity 0.3s;
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(18, 179, 168, 0.55);
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary > * {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  padding: 14px 24px;
  border-radius: 50px;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--teal);
  padding: 13px 24px;
  border-radius: 50px;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  color: var(--teal);
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #fff;
  color: var(--teal-dark);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}
.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  color: var(--teal-dark);
}

.btn-ghost-white,
.btn-cta-ghost-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  transition: all 0.3s;
}
.btn-ghost-white:hover,
.btn-cta-ghost-white:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  transform: translateY(-3px);
}

#mainNav,
#mainNav * {
  box-sizing: border-box;
}
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 18px 0;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
#mainNav.scrolled {
  padding: 14px 0;
  background: #0b2f5b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.28);
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 32px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(18, 179, 168, 0.3));
  transition: all 0.3s;
}
@media (hover: hover) {
  .nav-logo:hover img {
    filter: drop-shadow(0 0 16px rgba(18, 179, 168, 0.7));
    transform: scale(1.04);
  }
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  gap: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  margin: 4px 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 498;
  background: rgba(2, 6, 14, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 501;
  background: linear-gradient(180deg, #081c34 0%, #0b2f5b 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 80px 20px 32px;
  max-height: 100dvh;
  overflow-y: auto;
}
.nav-drawer.open {
  transform: translateY(0);
}

.nav-drawer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--teal);
  border-radius: 0 0 4px 4px;
  opacity: 0.6;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-links-desktop {
  display: none;
}

.nav-links li {
  opacity: 0;
  transform: translateX(-25px);
  transition:
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-drawer.open .nav-links li {
  opacity: 1;
  transform: translateX(0);
}
.nav-drawer.open .nav-links li:nth-child(1) {
  transition-delay: 0.06s;
}
.nav-drawer.open .nav-links li:nth-child(2) {
  transition-delay: 0.12s;
}
.nav-drawer.open .nav-links li:nth-child(3) {
  transition-delay: 0.18s;
}
.nav-drawer.open .nav-links li:nth-child(4) {
  transition-delay: 0.24s;
}
.nav-drawer.open .nav-links li:nth-child(5) {
  transition-delay: 0.3s;
}
.nav-drawer.open .nav-links li:nth-child(6) {
  transition-delay: 0.36s;
}
.nav-drawer.open .nav-links li:nth-child(7) {
  transition-delay: 0.42s;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nav-links a svg {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--teal);
  transition: all 0.25s;
  font-size: 16px;
}

.nav-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--teal);
  border-radius: 0 3px 3px 0;
  transition: height 0.3s ease;
}

@media (hover: hover) {
  .nav-links a:hover::before {
    height: 60%;
  }
  .nav-links a:hover {
    color: #fff !important;
  }
  .nav-links a:hover svg {
    color: #fff;
  }
}

.nav-links a:active::before {
  height: 60%;
}
.nav-links a:active {
  color: #fff !important;
  background: rgba(18, 179, 168, 0.08);
}
.nav-links a:active svg {
  color: #fff;
}

.nav-links a.active-link::before {
  height: 60%;
}
.nav-links a.active-link {
  color: #fff !important;
}
.nav-links a.active-link svg {
  color: #fff;
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark)) !important;
  color: #fff !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  justify-content: center;
  margin-top: 12px;
  padding: 14px 24px !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(18, 179, 168, 0.3) !important;
}
.btn-nav-cta svg {
  background: transparent !important;
  color: #fff !important;
}
.btn-nav-cta::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.5s;
}
@media (hover: hover) {
  .nav-links a.btn-nav-cta:hover::after {
    left: 120%;
  }
  .nav-links a.btn-nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 28px rgba(18, 179, 168, 0.5) !important;
    color: var(--navy) !important;
  }
  .nav-links a.btn-nav-cta:hover svg {
    color: var(--navy) !important;
  }
}

.nav-drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .nav-drawer-close:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--teal);
    color: #fff;
    transform: rotate(90deg) scale(1.1);
  }
}

@media (min-width: 992px) {
  .nav-container {
    padding: 0;
  }

  .hamburger {
    display: none;
  }

  .nav-overlay,
  .nav-drawer,
  .nav-drawer-close {
    display: none !important;
  }

  .nav-links-desktop {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
  }

  .nav-links-desktop li {
    opacity: 1 !important;
    transform: none !important;
    transition: none;
  }

  .nav-links-desktop a {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    padding: 8px 14px;
    border-radius: 8px;
    gap: 6px;
  }

  .nav-links-desktop a svg {
    width: 16px;
    height: 16px;
    background: transparent !important;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.5);
  }

  .nav-links-desktop a::before {
    display: none;
  }

  .nav-links-desktop a:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.07);
  }
  .nav-links-desktop a:hover svg {
    color: rgba(255, 255, 255, 0.8);
  }

  .nav-links-desktop a.active-link {
    color: var(--teal) !important;
    background: rgba(18, 179, 168, 0.08);
  }
  .nav-links-desktop a.active-link svg {
    color: var(--teal);
  }

  .btn-nav-cta {
    background: linear-gradient(
      135deg,
      var(--teal),
      var(--teal-dark)
    ) !important;
    color: #fff !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    padding: 10px 22px !important;
    margin-top: 0 !important;
    margin-left: 8px;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(18, 179, 168, 0.35) !important;
    white-space: nowrap;
  }
  .btn-nav-cta svg {
    width: 15px !important;
    height: 15px !important;
    color: #fff !important;
    background: transparent !important;
  }
  .nav-links a.btn-nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 28px rgba(18, 179, 168, 0.55) !important;
    color: var(--navy) !important;
  }
  .nav-links a.btn-nav-cta:hover svg {
    color: var(--navy) !important;
  }

  #mainNav .nav-container {
    justify-content: space-between;
  }

  #mainNav .nav-container > ul.nav-links {
    margin-left: auto;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 580px;
  overflow: hidden;
  background: #020712;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: grab;
}
.hero-slider:active {
  cursor: grabbing;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-image: var(--hero-img);
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform, opacity;
  transition:
    transform 0.9s cubic-bezier(0.77, 0, 0.18, 1),
    opacity 0.9s cubic-bezier(0.77, 0, 0.18, 1);
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-slide:first-child {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.hero-slide.is-active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(2, 6, 14, 0.52) 0%,
    rgba(2, 6, 14, 0.35) 45%,
    rgba(2, 6, 14, 0.72) 100%
  );
  z-index: 1;
}

.hero-slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 80px 16px 60px;
  text-align: center;
  box-sizing: border-box;
}
.hero-slide-content .container {
  max-width: 680px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  opacity: 0;
}
.hero-slide-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  flex-shrink: 0;
}
.hero-slide-title {
  font-family: var(--font-d);
  font-size: clamp(26px, 7.5vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 16px;
  opacity: 0;
}
.hero-slide-sub {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 560px;
  opacity: 0;
  text-align: center;
}
.hero-slide-btn {
  opacity: 0;
}

.hero-slide.is-active .hero-slide-eyebrow {
  animation: heroTextIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}
.hero-slide.is-active .hero-slide-title {
  animation: heroTextIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.35s forwards;
}
.hero-slide.is-active .hero-slide-sub {
  animation: heroTextIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.48s forwards;
}
.hero-slide.is-active .hero-slide-btn {
  animation: heroTextIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}
@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slider-controls {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
}

.hero-slider-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 20, 40, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.28s,
    border-color 0.28s,
    box-shadow 0.28s,
    transform 0.28s;
  flex-shrink: 0;
}
#heroPrev {
  left: 24px;
}
#heroNext {
  right: 24px;
}

.hero-slider-arrow:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #051223;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 28px rgba(18, 179, 168, 0.5);
}
.hero-slider-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.hero-slider-dots {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.hero-dot.active {
  background: var(--teal);
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(18, 179, 168, 0.7);
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 36px;
}
.value-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 22px 20px;
  border: 1px solid var(--mist);
  transition: all 0.25s;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(18, 179, 168, 0.2);
}
.value-card.featured {
  background: var(--teal);
  border-color: var(--teal);
}
.value-card.featured-navy {
  background: var(--navy);
  border-color: var(--navy);
  position: relative;
  overflow: hidden;
}
.value-card.featured-navy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../imgs/Artboard 7.svg") repeat;
  background-size: 300px auto;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
.value-card.featured-navy > * {
  position: relative;
  z-index: 1;
}
.vc-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--teal);
  background: rgba(18, 179, 168, 0.1);
}
.value-card.featured .vc-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.value-card.featured-navy .vc-icon {
  background: rgba(18, 179, 168, 0.15);
  color: var(--teal);
}
.vc-val {
  font-family: var(--font-d);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
}
.value-card.featured .vc-val,
.value-card.featured-navy .vc-val {
  color: #fff;
}
.vc-label {
  font-size: 13px;
  color: var(--slate);
  margin-top: 5px;
}
.value-card.featured .vc-label,
.value-card.featured-navy .vc-label {
  color: rgba(255, 255, 255, 0.7);
}

#solutions {
  position: relative;
}
#solutions::after {
  display: none;
}
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}
.sol-card {
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: var(--r-md);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.28s;
}
.sol-card > * {
  position: relative;
  z-index: 1;
}
.sol-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.sol-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.sol-card:hover::before {
  transform: scaleX(1);
}
.sol-card.dark {
  background: var(--navy);
  border-color: var(--navy);
}
.sol-card.dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../imgs/Artboard 7.svg") repeat;
  background-size: 300px auto;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
.sol-card.dark > * {
  position: relative;
  z-index: 1;
}
.sol-card.dark::before {
  background: var(--gold);
}
.sol-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.sol-icon.teal {
  background: rgba(18, 179, 168, 0.1);
  color: var(--teal);
}
.sol-icon.gold {
  background: rgba(216, 166, 61, 0.1);
  color: var(--gold);
}
.sol-card h3 {
  font-family: var(--font-d);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.sol-card.dark h3 {
  color: #fff;
}
.sol-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.75;
}
.sol-card.dark p {
  color: rgba(255, 255, 255, 0.55);
}
.sol-features {
  list-style: none;
  margin-top: 18px;
}
.sol-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--slate);
  padding: 7px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.sol-card.dark .sol-features li {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.06);
}
.sol-features li:last-child {
  border-bottom: none;
}
.sol-features li svg {
  color: var(--teal);
  flex-shrink: 0;
}
.sol-extra-grid {
  background: var(--off);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.sol-extra-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.sol-extra-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  flex-shrink: 0;
  background: rgba(18, 179, 168, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.sol-extra-title {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  margin-bottom: 3px;
}
.sol-extra-desc {
  font-size: 12px;
  color: var(--slate);
  line-height: 1.6;
}

#sectors {
  position: relative;
  overflow: hidden;
}
#sectors::after {
  display: none;
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}
.sector-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  padding: 22px 16px;
  text-align: center;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.sector-card > * {
  position: relative;
  z-index: 1;
}
.sector-card:hover {
  background: rgba(18, 179, 168, 0.12);
  border-color: rgba(18, 179, 168, 0.4);
  transform: translateY(-5px);
}
.sc-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(18, 179, 168, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--teal);
  transition: all 0.25s;
}
.sector-card:hover .sc-icon {
  background: var(--teal);
  color: #fff;
  transform: scale(1.1) rotate(-6deg);
}
.sector-card h4 {
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.sector-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.eco-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 40px;
}
.eco-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.eco-bullet {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  flex-shrink: 0;
  background: rgba(18, 179, 168, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: all 0.25s;
}
.eco-item:hover .eco-bullet {
  background: var(--teal);
  color: #fff;
  transform: rotate(10deg);
}
.eco-item h4 {
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.eco-item p {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.7;
}
.eco-visual {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-md);
}
.eco-label {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 13px;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eco-label i {
  color: var(--teal);
}
.eco-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--mist);
}
.eco-metric:last-child {
  border-bottom: none;
}
.eco-metric span {
  font-size: 13px;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 7px;
}
.eco-metric strong {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 14px;
  color: var(--teal);
}

#trust {
  position: relative;
  overflow: hidden;
}
#trust::after {
  display: none;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}
.trust-badge {
  background: var(--off);
  border: 1px solid var(--mist);
  border-radius: var(--r-md);
  padding: 22px 16px;
  text-align: center;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.trust-badge > * {
  position: relative;
  z-index: 1;
}
.trust-badge:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}
.tb-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(18, 179, 168, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--teal);
  transition: all 0.25s;
}
.trust-badge:hover .tb-icon {
  background: var(--teal);
  color: #fff;
}
.trust-badge h4 {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}
.trust-badge p {
  font-size: 12px;
  color: var(--slate);
  line-height: 1.55;
}

.corp-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}
.value-list {
  list-style: none;
}
.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.7;
  padding: 11px 0;
  border-bottom: 1px solid var(--mist);
}
.value-list li:last-child {
  border-bottom: none;
}
.value-list li svg {
  color: var(--teal);
  margin-top: 3px;
  flex-shrink: 0;
}
.quote-box {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.quote-mark {
  position: absolute;
  top: -24px;
  left: 16px;
  font-size: 120px;
  color: rgba(18, 179, 168, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.quote-box blockquote {
  font-family: var(--font-d);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.quote-box cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.core-values h4 {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
  margin-top: 26px;
}
.val-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.val-chip {
  background: rgba(18, 179, 168, 0.12);
  border: 1px solid rgba(18, 179, 168, 0.25);
  border-radius: 50px;
  padding: 5px 13px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
}

.activities-section {
  background: linear-gradient(160deg, #0b2f5b 0%, #1a6db0 50%, #06162b 100%);
  position: relative;
  overflow: hidden;
}
.activities-section .container {
  position: relative;
  z-index: 2;
}
.activities-section .section-label {
  color: var(--teal);
}
.activities-section .section-title {
  color: #fff;
}
.activities-section .section-sub {
  color: rgba(255, 255, 255, 0.55);
}
.activities-section .divider {
  background: var(--teal);
}

.activities-grid {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.act-row {
  display: grid;
  gap: 20px;
}
.act-row-3 {
  grid-template-columns: 1fr;
}
.act-row-2 {
  grid-template-columns: 1fr;
}

.act-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 24px 24px;
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s,
    box-shadow 0.3s;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.act-card:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 179, 168, 0.35);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(18, 179, 168, 0.1);
}
.act-card-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  top: -90px;
  right: -70px;
  opacity: 0;
  transition: opacity 0.4s;
}
.act-card:hover .act-card-glow {
  opacity: 1;
}
.act-glow-teal {
  background: radial-gradient(
    circle,
    rgba(18, 179, 168, 0.2) 0%,
    transparent 70%
  );
}
.act-glow-gold {
  background: radial-gradient(
    circle,
    rgba(216, 166, 61, 0.2) 0%,
    transparent 70%
  );
}
.act-glow-navy {
  background: radial-gradient(
    circle,
    rgba(18, 179, 168, 0.28) 0%,
    transparent 70%
  );
}
.act-num {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 14px;
  display: block;
}
.act-num-white {
  color: rgba(255, 255, 255, 0.35);
}
.act-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.act-card:hover .act-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}
.act-icon-teal {
  background: rgba(18, 179, 168, 0.18);
  color: var(--teal);
}
.act-icon-gold {
  background: rgba(216, 166, 61, 0.18);
  color: var(--gold);
}
.act-icon-white {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.act-title {
  font-family: var(--font-d);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.act-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}
.act-desc-white {
  color: rgba(255, 255, 255, 0.65);
}
.act-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(18, 179, 168, 0.12);
  border: 1px solid rgba(18, 179, 168, 0.28);
  border-radius: 50px;
  padding: 4px 13px;
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  align-self: flex-start;
}
.act-tag-light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.8);
}
.act-card-featured {
  background: linear-gradient(
    145deg,
    rgba(18, 179, 168, 0.16) 0%,
    rgba(18, 179, 168, 0.05) 100%
  );
  border-color: rgba(18, 179, 168, 0.28);
}
.act-card-featured:hover {
  border-color: rgba(18, 179, 168, 0.55);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(18, 179, 168, 0.15);
}

.photo-banner {
  position: relative;
  width: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.photo-banner-img-1 {
  background-image: url("/imgs/Banner1.webp");
}
.photo-banner-img-2 {
  background-image: url("/imgs/Banner2.webp");
}
.photo-banner-img-3 {
  background-image: url("/imgs/Banner1.webp");
}
.photo-banner-img-4 {
  background-image: url("/imgs/Banner2.webp");
}

.photo-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 14, 0.62);
  z-index: 1;
}

.photo-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 55%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  animation: photoBannerShimmer 5s ease-in-out infinite;
  z-index: 3;
}
@keyframes photoBannerShimmer {
  0% {
    left: -60%;
  }
  100% {
    left: 160%;
  }
}

.photo-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 72px 20px;
  max-width: 760px;
}

.photo-banner-logo {
  height: 34px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(18, 179, 168, 0.45));
  transition:
    filter 0.3s,
    transform 0.3s;
}
.photo-banner-logo:hover {
  filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(18, 179, 168, 0.9));
  transform: scale(1.04);
}

.photo-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.photo-banner-eyebrow::before,
.photo-banner-eyebrow::after {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  flex-shrink: 0;
}

.photo-banner-title {
  font-family: var(--font-d);
  font-size: clamp(20px, 4vw, 34px);
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 32px;
  max-width: 680px;
}

footer {
  background: var(--navy);
  padding: 0 0 0;
  position: relative;
  overflow: hidden;
}
footer > * {
  position: relative;
  z-index: 1;
}

.footer-top-accent {
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--teal),
    #6dd0c8,
    var(--gold),
    var(--teal)
  );
  background-size: 300% 100%;
  animation: gradientShift 6s linear infinite;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 48px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo img {
  height: 34px;
  display: block;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(18, 179, 168, 0.3));
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.8;
  max-width: 340px;
  margin-bottom: 20px;
}

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

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.25s;
}

.footer-social-icon:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #051223;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(18, 179, 168, 0.35);
}

.footer-col h5 {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}

.footer-col h5::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 4px 0;
  transition: all 0.22s;
}

.footer-col ul a:hover {
  color: var(--teal);
  transform: translateX(4px);
}

.footer-col ul a svg {
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.footer-col ul a:hover svg {
  opacity: 1;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 12px 14px;
  transition: all 0.25s;
  text-decoration: none;
}

.footer-contact-item:hover {
  background: rgba(18, 179, 168, 0.08);
  border-color: rgba(18, 179, 168, 0.2);
  transform: translateX(4px);
}

.footer-contact-link {
  cursor: pointer;
}

.fci-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 179, 168, 0.12);
  color: var(--teal);
  transition: all 0.25s;
}

.footer-contact-item:hover .fci-icon {
  background: var(--teal);
  color: #051223;
}

.fci-icon.gold {
  background: rgba(216, 166, 61, 0.12);
  color: var(--gold);
}

.footer-contact-item:hover .fci-icon.gold {
  background: var(--gold);
  color: #051223;
}

.fci-body {
  flex: 1;
  min-width: 0;
}

.fci-label {
  display: block;
  font-family: var(--font-d);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 2px;
}

.fci-value {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  white-space: nowrap;
  transition: color 0.2s;
}

.footer-contact-link:hover .fci-value {
  color: var(--teal);
}

.fci-actions {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.fci-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
  background: rgba(18, 179, 168, 0.12);
  color: var(--teal);
  transition: all 0.22s;
  flex-shrink: 0;
}

.fci-btn:hover {
  background: var(--teal);
  color: #051223;
  transform: scale(1.12);
}

.fci-btn.wa {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

.fci-btn.wa:hover {
  background: #25d366;
  color: #fff;
}

.fci-arrow {
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  transition: all 0.22s;
}

.footer-contact-link:hover .fci-arrow {
  color: var(--teal);
  transform: translateX(3px);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.22);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.18);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--teal);
}

.footer-bottom-sep {
  opacity: 0.3;
}

.hero-type-wrap {
  display: inline;
}
.hero-type-text {
  display: inline;
  color: var(--teal);
  position: relative;
}
.hero-type-cursor {
  display: none;
}
@keyframes typeBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.home-stats {
  background: linear-gradient(135deg, var(--navy) 0%, #081c34 100%);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.home-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(18, 179, 168, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(216, 166, 61, 0.06) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.home-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 16px;
  position: relative;
  z-index: 1;
}
.home-stat-item {
  text-align: center;
}
.home-stat-num {
  font-family: var(--font-d);
  font-size: clamp(32px, 6.5vw, 46px);
  font-weight: 900;
  background: linear-gradient(
    135deg,
    var(--teal) 0%,
    #6dd0c8 50%,
    var(--gold) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 4px;
}
.home-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.home-stat-item .home-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(18, 179, 168, 0.12);
  color: var(--teal);
  margin-bottom: 10px;
}

.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.floating-icon {
  position: absolute;
  opacity: 0.04;
  color: var(--teal);
  will-change: transform;
}
.floating-icon--1 {
  top: 8%;
  left: 5%;
  animation: floatIcon 14s ease-in-out infinite;
  font-size: 48px;
}
.floating-icon--2 {
  top: 60%;
  right: 8%;
  animation: floatIcon 18s ease-in-out infinite reverse;
  font-size: 36px;
  color: var(--gold);
}
.floating-icon--3 {
  bottom: 12%;
  left: 50%;
  animation: floatIcon 16s ease-in-out infinite 2s;
  font-size: 42px;
  color: var(--teal);
}
.floating-icon--4 {
  top: 25%;
  right: 15%;
  animation: floatIcon 20s ease-in-out infinite 1s;
  font-size: 28px;
  color: var(--gold);
}
.floating-icon--5 {
  bottom: 30%;
  left: 10%;
  animation: floatIcon 12s ease-in-out infinite 3s;
  font-size: 32px;
}
.floating-icon--6 {
  top: 45%;
  left: 80%;
  animation: floatIcon 22s ease-in-out infinite 0.5s;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.06);
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-18px) rotate(8deg) scale(1.05);
  }
  50% {
    transform: translateY(-8px) rotate(-4deg) scale(0.97);
  }
  75% {
    transform: translateY(-22px) rotate(6deg) scale(1.02);
  }
}

.section.bg-navy .floating-icon--6 {
  color: rgba(255, 255, 255, 0.05);
}

.marquee-section {
  background: var(--navy);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.marquee-section::before,
.marquee-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  pointer-events: none;
}
.marquee-section::before {
  top: 0;
}
.marquee-section::after {
  bottom: 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.marquee-item svg {
  color: var(--teal);
  flex-shrink: 0;
  opacity: 0.7;
}
.marquee-item .marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section-glow {
  position: relative;
}
.section-glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(18, 179, 168, 0.25),
    var(--teal),
    rgba(18, 179, 168, 0.25),
    transparent
  );
  pointer-events: none;
  z-index: 1;
}

.section-accents {
  position: relative;
}
.section-accents::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 20px;
  background:
    radial-gradient(circle, var(--teal) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(18, 179, 168, 0.5) 1.5px, transparent 1.5px),
    radial-gradient(circle, var(--teal) 1.5px, transparent 1.5px);
  background-size: 8px 8px;
  background-position:
    0 6px,
    20px 0,
    40px 6px;
  background-repeat: no-repeat;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

.section-glow-radial::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(
    ellipse at center,
    rgba(18, 179, 168, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.home-stat-num .stat-suffix {
  font-size: 0.5em;
  vertical-align: super;
}

.about-hero {
  min-height: 100vh;
  min-height: 100svh;
  padding: 120px 0 80px;
}
.about-hero::before {
  background:
    radial-gradient(
      ellipse 80% 50% at 80% 50%,
      rgba(0, 184, 212, 0.13) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 40% at 10% 80%,
      rgba(245, 166, 35, 0.08) 0%,
      transparent 55%
    );
}
.about-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 184, 212, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 184, 212, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(
    ellipse 100% 100% at 50% 50%,
    black 20%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 100% 100% at 50% 50%,
    black 20%,
    transparent 100%
  );
}
.about-hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 184, 212, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
.about-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.about-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
  border-radius: 2px;
}
.about-hero-title {
  font-family: var(--font-d);
  font-size: clamp(30px, 7vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 22px;
}
.about-hero-title .accent {
  background: linear-gradient(
    135deg,
    var(--teal) 0%,
    #6dd0c8 60%,
    var(--teal) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s linear infinite;
}
.about-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(18, 179, 168, 0.12);
  border: 1px solid rgba(18, 179, 168, 0.25);
  border-radius: 50px;
  padding: 8px 16px;
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.hero-chip i {
  color: var(--teal);
}

.about-stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ast-item {
  display: flex;
  flex-direction: column;
}
.ast-val {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.ast-val .ast-accent {
  color: var(--teal);
}
.ast-val-light {
  color: #fff;
}
.ast-plus {
  color: var(--teal);
}
.ast-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-hero-visual {
  display: none;
}
.about-visual-card {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(18, 179, 168, 0.06) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-radius: 28px;
  padding: 28px 24px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  animation: float3d 7s ease-in-out infinite;
}
.avc-header {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.avc-header::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
}
.avc-value-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 10px;
  border-radius: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
  margin: 0 -10px;
}
.avc-value-row:last-of-type {
  border-bottom: none;
}
.avc-value-row:hover {
  background: rgba(255, 255, 255, 0.05);
}
.avc-val-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.avc-val-icon.teal {
  background: rgba(18, 179, 168, 0.2);
  color: var(--teal);
}
.avc-val-icon.gold {
  background: rgba(216, 166, 61, 0.2);
  color: var(--gold);
}
.avc-val-icon.white {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.avc-val-icon.green {
  background: rgba(52, 211, 153, 0.15);
  color: #6dd0c8;
}
.avc-val-icon.navy {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}
.avc-val-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: 2px;
}
.avc-val-muted {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.vision-section {
  background: #fff;
}
.vision-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.vision-quote-block {
  background: linear-gradient(135deg, var(--navy) 0%, #1a6db0 100%);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.vision-quote-block::before {
  content: "\201C";
  position: absolute;
  top: -20px;
  right: 24px;
  font-size: 180px;
  font-family: var(--font-d);
  font-weight: 900;
  color: rgba(18, 179, 168, 0.1);
  line-height: 1;
  pointer-events: none;
}
.vqb-label {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vqb-label::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.vqb-quote {
  font-family: var(--font-d);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.vqb-cite {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vqb-cite::before {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.vqb-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.vqb-chip {
  background: rgba(18, 179, 168, 0.15);
  border: 1px solid rgba(18, 179, 168, 0.25);
  border-radius: 50px;
  padding: 6px 14px;
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
}

.vision-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding: 0;
}
.vision-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
}
.vision-list li i {
  color: var(--teal);
  margin-top: 2px;
  flex-shrink: 0;
}

.val-card--navy {
  background: var(--navy) !important;
  border-color: rgba(18, 179, 170, 0.2) !important;
}
.val-card--navy:hover {
  background: var(--navy) !important;
  border-color: rgba(18, 179, 170, 0.4) !important;
}
.val-card--navy .val-card-num {
  color: rgba(18, 179, 170, 0.15);
}
.val-card--navy .val-card-icon {
  background: rgba(18, 179, 170, 0.2);
  color: var(--teal);
}
.val-card--navy:hover .val-card-icon {
  background: var(--teal);
  color: #fff;
}
.val-card--navy h4 {
  color: #fff;
}
.val-card--navy p {
  color: rgba(255, 255, 255, 0.55);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}
.val-card {
  background: var(--off);
  border: 1px solid var(--mist);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: all 0.28s;
  position: relative;
  overflow: hidden;
}
.val-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), #6dd0c8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.val-card:hover::after {
  transform: scaleX(1);
}
.val-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: #fff;
  border-color: rgba(18, 179, 168, 0.2);
}
.val-card-num {
  font-family: var(--font-d);
  font-size: 48px;
  font-weight: 900;
  color: rgba(18, 179, 168, 0.1);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
  transition: color 0.3s;
}
.val-card:hover .val-card-num {
  color: rgba(18, 179, 168, 0.2);
}
.val-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(18, 179, 168, 0.1);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.25s;
}
.val-card:hover .val-card-icon {
  background: var(--teal);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}
.val-card h4 {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.val-card p {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.75;
  margin: 0;
}

.mv-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 64px;
}
.mv-panel {
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.mv-panel.mission {
  background: var(--navy);
}
.mv-panel.vision {
  background: linear-gradient(
    135deg,
    rgba(18, 179, 168, 0.08) 0%,
    rgba(18, 179, 168, 0.03) 100%
  );
  border: 1.5px solid rgba(18, 179, 168, 0.2);
}
.mv-eyebrow {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 6px;
}
.mv-eyebrow i {
  display: inline;
}
.mv-panel h3 {
  font-family: var(--font-d);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}
.mission h3 {
  color: #fff;
}
.vision h3 {
  color: var(--navy);
}
.mv-panel p {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}
.mission p {
  color: rgba(255, 255, 255, 0.58);
}
.vision p {
  color: var(--slate);
}
.mv-icon-bg {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}
.mission .mv-icon-bg {
  background: var(--teal);
}
.vision .mv-icon-bg {
  background: var(--navy);
}

.about-cta-strip {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: var(--r-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 64px;
}
.about-cta-strip::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.about-cta-strip::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.about-cta-strip h3 {
  font-family: var(--font-d);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.about-cta-strip p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.cta-strip-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-cards-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 56px;
}

.contact-info-card {
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), #6dd0c8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-info-card:hover::before {
  transform: scaleX(1);
}
.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(18, 179, 168, 0.2);
}

.cic-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(18, 179, 168, 0.1);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
  transition: all 0.25s;
}
.contact-info-card:hover .cic-icon {
  background: var(--teal);
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}
.cic-icon.gold {
  background: rgba(216, 166, 61, 0.1);
  color: var(--gold);
}
.contact-info-card:hover .cic-icon.gold {
  background: var(--gold);
  color: #fff;
}
.cic-icon.green {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}
.contact-info-card:hover .cic-icon.green {
  background: #25d366;
  color: #fff;
}

.cic-label {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}
.cic-value {
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
  line-height: 1.4;
}
.cic-value a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}
.cic-value a:hover {
  color: var(--teal);
}
.cic-sub {
  font-size: 12.5px;
  color: var(--slate);
  margin-bottom: 0;
}

.cnc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.cnc-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 13px;
  border-radius: 50px;
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.22s;
  white-space: nowrap;
}
.cnc-btn--call {
  background: rgba(18, 179, 168, 0.12);
  color: var(--teal);
  border: 1px solid rgba(18, 179, 168, 0.28);
}
.cnc-btn--call:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.cnc-btn--wa {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.28);
}
.cnc-btn--wa:hover {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.cnc-btn--map {
  background: rgba(18, 179, 168, 0.12);
  color: var(--teal);
  border: 1px solid rgba(18, 179, 168, 0.28);
}
.cnc-btn--map:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.cnc-btn--mail {
  background: rgba(216, 166, 61, 0.12);
  color: var(--gold);
  border: 1px solid rgba(216, 166, 61, 0.28);
}
.cnc-btn--mail:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.map-section-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--mist);
  box-shadow: var(--shadow-md);
}
.map-header {
  background: var(--navy);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.map-header-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(18, 179, 168, 0.2);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.map-header-text strong {
  display: block;
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.map-header-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.map-header-badge {
  margin-left: auto;
  background: rgba(18, 179, 168, 0.2);
  border: 1px solid rgba(18, 179, 168, 0.3);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  font-family: var(--font-d);
  display: flex;
  align-items: center;
  gap: 5px;
}
.map-header-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 6px var(--teal);
  animation: dotPulse 2s ease-in-out infinite;
}

.map-iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.map-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-footer-strip {
  background: var(--off);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.map-footer-strip a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-d);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: opacity 0.2s;
}
.map-footer-strip a:hover {
  opacity: 0.75;
}
.map-footer-addr {
  font-size: 12px;
  color: var(--slate);
  margin-left: auto;
}

.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.form-header {
  background: linear-gradient(135deg, var(--navy) 0%, #1a6db0 100%);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}
.form-header::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(18, 179, 168, 0.12);
  pointer-events: none;
}
.form-header-label {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.form-header h3 {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.form-header p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.form-body {
  padding: 32px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-row-2--offset {
  margin-top: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.form-group--row-col {
  margin-bottom: 0;
}
.form-group--offset {
  margin-top: 18px;
}
.form-group:last-of-type {
  margin-bottom: 0;
}
.form-group label {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group label span {
  color: var(--teal);
  margin-left: 2px;
}

.form-control-ob {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--mist);
  border-radius: var(--r-sm);
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--charcoal);
  background: var(--off);
  outline: none;
  resize: none;
  transition: all 0.25s;
}
.form-control-ob:focus {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(18, 179, 168, 0.1);
}
.form-control-ob::placeholder {
  color: rgba(94, 113, 145, 0.6);
}

select.form-control-ob {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235e7191' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-submit-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--teal), #0e9a90);
  color: #fff;
  padding: 15px 28px;
  border-radius: 50px;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 28px rgba(18, 179, 168, 0.35);
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}
.form-submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0e9a90, var(--teal-dark));
  opacity: 0;
  transition: opacity 0.3s;
}
.form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(18, 179, 168, 0.55);
}
.form-submit-btn:hover::before {
  opacity: 1;
}
.form-submit-btn > * {
  position: relative;
  z-index: 1;
}

.form-privacy {
  text-align: center;
  font-size: 11.5px;
  color: var(--slate);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.form-toast {
  display: none;
  padding: 14px 20px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.form-toast.success {
  background: rgba(18, 179, 168, 0.1);
  border: 1px solid rgba(18, 179, 168, 0.3);
  color: var(--teal-dark);
}
.form-toast.error {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: #dc2626;
}
.form-toast.show {
  display: flex;
}

.input-error {
  border-color: #e53e3e !important;
  background: rgba(229, 62, 62, 0.05) !important;
}
.field-error {
  display: block;
  color: #e53e3e;
  font-size: 12px;
  margin-top: 4px;
  font-family: var(--font-d);
}

.quick-contact-bar {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.qcb-title {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 4px;
}
.qcb-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qcb-num-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.25s;
}
.qcb-num-row:hover {
  background: rgba(18, 179, 168, 0.1);
  border-color: rgba(18, 179, 168, 0.28);
}
.qcb-num-label {
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.qcb-num-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.qcb-num-btn {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.22s;
}
.qcb-num-btn.call {
  background: rgba(18, 179, 168, 0.15);
  color: var(--teal);
}
.qcb-num-btn.call:hover {
  background: var(--teal);
  color: #051223;
  transform: scale(1.1);
}
.qcb-num-btn.wa {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}
.qcb-num-btn.wa:hover {
  background: #25d366;
  color: #fff;
  transform: scale(1.1);
}

.qcb-link {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.25s;
}
.qcb-link:hover {
  background: rgba(18, 179, 168, 0.12);
  border-color: rgba(18, 179, 168, 0.3);
  transform: translateX(4px);
}
.qcb-link-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(18, 179, 168, 0.15);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.qcb-link-icon.gold {
  background: rgba(216, 166, 61, 0.15);
  color: var(--gold);
}
.qcb-link-text strong {
  display: block;
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.qcb-link-text span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
}
.qcb-link-arrow {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.25);
  transition: all 0.2s;
}
.qcb-link:hover .qcb-link-arrow {
  color: var(--teal);
  transform: translateX(3px);
}

.faq-card {
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 24px;
}
.faq-card-header {
  background: var(--navy);
  padding: 16px 24px;
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-card-header i {
  color: var(--teal);
}

.faq-list {
  padding: 8px 0;
}

.faq-item {
  border-bottom: 1px solid var(--mist);
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.faq-question:hover {
  background: rgba(18, 179, 168, 0.04);
}
.faq-question span {
  font-family: var(--font-d);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.faq-chevron {
  color: var(--slate);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--teal);
}
.faq-question[aria-expanded="true"] span {
  color: var(--teal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p {
  padding: 0 24px 18px;
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.7;
  margin: 0;
}

.office-hours-card {
  background: linear-gradient(
    135deg,
    rgba(18, 179, 168, 0.08) 0%,
    rgba(18, 179, 168, 0.03) 100%
  );
  border: 1px solid rgba(18, 179, 168, 0.15);
  border-radius: var(--r-md);
  padding: 22px 24px;
  margin-top: 20px;
}
.oh-title {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.oh-title i {
  color: var(--teal);
}
.oh-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(18, 179, 168, 0.1);
  font-size: 13px;
}
.oh-row:last-child {
  border-bottom: none;
}
.oh-row span:first-child {
  color: var(--slate);
}
.oh-row .oh-open {
  font-family: var(--font-d);
  font-weight: 700;
  color: var(--teal);
  font-size: 12px;
}
.oh-row .oh-closed {
  color: rgba(94, 113, 145, 0.5);
  font-size: 12px;
}

@media (max-width: 575px) {
  .about-hero {
    padding: 100px 0 50px;
  }
  .vision-quote-block {
    padding: 28px 20px;
  }
  .about-cta-strip {
    padding: 36px 24px;
  }
  .mv-panel {
    padding: 28px 20px;
  }
}

@media (max-width: 575.98px) {
  .marquee-section {
    padding: 16px 0;
  }
  .marquee-track {
    gap: 32px;
    animation-duration: 20s;
  }
  .marquee-item {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .photo-banner {
    background-attachment: scroll;
    min-height: 320px;
  }
  .photo-banner-content {
    padding: 60px 20px;
  }
}

@media (max-width: 767.98px) {
  .hero-slide {
    background-color: #020712;
    background-image:
      linear-gradient(
        180deg,
        rgba(2, 6, 14, 0.08) 0%,
        rgba(2, 6, 14, 0.16) 28%,
        rgba(2, 6, 14, 0.72) 47%,
        rgba(2, 6, 14, 0.96) 100%
      ),
      var(--hero-img), var(--hero-img);
    background-size:
      cover,
      min(100vw, 430px) auto,
      cover;
    background-position:
      center,
      center 86px,
      center center;
    background-repeat: no-repeat;
  }
  .hero-slide-overlay {
    background: linear-gradient(
      180deg,
      rgba(2, 6, 14, 0.2) 0%,
      rgba(2, 6, 14, 0.26) 30%,
      rgba(2, 6, 14, 0.72) 52%,
      rgba(2, 6, 14, 0.92) 100%
    );
  }
  .hero-slide-content {
    align-items: center;
    padding: 80px 16px;
  }
}

@media (min-width: 576px) {
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 72px 0;
  }
  .section-label {
    font-size: 11px;
  }

  .hero-slide-title {
    font-size: clamp(32px, 6.5vw, 44px);
  }
  .hero-slide-sub {
    font-size: 15.5px;
  }
  .hero-type-cursor {
    height: 1.1em;
  }

  .nav-logo img {
    height: 34px;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .home-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .home-stats {
    padding: 56px 0;
  }

  .footer-grid {
    gap: 36px;
    padding: 56px 0 44px;
  }
  .footer-contact-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .footer-col h5 {
    font-size: 13px;
  }

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

  .cta-strip-btns {
    flex-direction: row;
    justify-content: center;
  }
  .mv-split {
    grid-template-columns: 1fr 1fr;
  }

  .form-row-2 {
    grid-template-columns: 1fr 1fr;
  }
  .contact-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-cards {
    grid-template-columns: 1fr 1fr;
  }
  .cf-row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
  .section {
    padding: 88px 0;
  }
  .section-sub {
    font-size: 16px;
    max-width: 540px;
  }
  .divider {
    margin: 14px 0 24px;
  }
  .pill {
    font-size: 13px;
    padding: 8px 16px;
  }

  #backToTop {
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
  }

  .hero-slider-arrow {
    display: flex;
  }
  .hero-slide-content {
    padding: 0;
  }
  .hero-slide-content .container {
    max-width: 620px;
  }
  .hero-slide-title {
    font-size: clamp(36px, 5.2vw, 50px);
  }
  .hero-slide-sub {
    font-size: 16px;
    max-width: 540px;
  }
  #heroPrev {
    left: 32px;
  }
  #heroNext {
    right: 32px;
  }
  .hero-slider-arrow {
    width: 54px;
    height: 54px;
  }

  .nav-logo img {
    height: 36px;
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .sol-extra-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 28px;
  }
  .sol-extra-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  .sol-extra-title {
    font-size: 14px;
  }
  .sol-extra-desc {
    font-size: 13px;
  }

  .sectors-grid {
    gap: 18px;
  }
  .sector-card {
    padding: 26px 18px;
  }
  .sector-card p {
    font-size: 13px;
  }

  .eco-visual {
    padding: 28px 24px;
  }
  .eco-item h4 {
    font-size: 15px;
  }

  .trust-badge {
    padding: 24px 18px;
  }
  .trust-badge h4 {
    font-size: 14px;
  }
  .trust-badge p {
    font-size: 13px;
  }

  .quote-box {
    padding: 34px 30px;
  }
  .quote-box blockquote {
    font-size: 18px;
  }
  .value-list li {
    font-size: 15px;
  }

  .act-card {
    padding: 30px 26px;
  }
  .act-title {
    font-size: 18px;
  }
  .act-desc {
    font-size: 14px;
  }
  .act-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .photo-banner {
    min-height: 420px;
  }
  .photo-banner-content {
    padding: 88px 28px;
  }
  .photo-banner-logo {
    height: 40px;
    margin-bottom: 28px;
  }
  .photo-banner-title {
    font-size: clamp(24px, 3.5vw, 38px);
  }

  .cta-section {
    padding: 88px 0;
  }
  .cta-section p {
    font-size: 16px;
    margin-bottom: 36px;
  }
  .cta-cards {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 44px;
  }

  .cta-form-layout {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .cta-form-content {
    text-align: left;
  }
  .cta-form-content p {
    margin: 0 0 28px;
  }
  .cta-contact-row {
    justify-content: flex-start;
  }
  .cta-form-card {
    margin: 0;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.6fr;
    gap: 32px;
    padding: 60px 0 48px;
  }
  .footer-logo img {
    height: 36px;
  }
  .footer-desc {
    font-size: 14px;
  }
  .footer-contact-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    padding: 24px 0;
  }
}

@media (min-width: 992px) {
  .section {
    padding: 100px 0;
  }

  * {
    cursor: none !important;
  }

  #cursor-dot {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    transform: translate(-50%, -50%);
    transition:
      width 0.2s,
      height 0.2s,
      background 0.2s;
    box-shadow: 0 0 10px rgba(18, 179, 168, 0.8);
  }
  #cursor-ring {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    pointer-events: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(18, 179, 168, 0.5);
    transform: translate(-50%, -50%);
    transition:
      width 0.25s,
      height 0.25s,
      border-color 0.25s,
      opacity 0.25s;
  }
  body.cursor-hover #cursor-dot {
    width: 12px;
    height: 12px;
    background: #d8a63d;
    box-shadow: 0 0 18px rgba(216, 166, 61, 1);
  }
  body.cursor-hover #cursor-ring {
    width: 54px;
    height: 54px;
    border-color: rgba(18, 179, 168, 0.9);
  }
  body.cursor-click #cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
  }

  .hero-slide-content .container {
    max-width: 680px;
  }
  .hero-slide-title {
    font-size: clamp(40px, 4.4vw, 56px);
  }
  .hero-slide-eyebrow {
    font-size: 12px;
    margin-bottom: 20px;
  }
  #heroPrev {
    left: 48px;
  }
  #heroNext {
    right: 48px;
  }
  .hero-slider-arrow {
    width: 58px;
    height: 58px;
  }

  #mainNav {
    padding: 12px 0;
    display: flex;
    align-items: center;
  }
  .nav-container {
    padding: 0;
  }
  .hamburger {
    display: none;
  }
  .nav-overlay {
    display: none !important;
  }
  .nav-drawer {
    position: static;
    transform: none;
    width: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    flex: 1;
  }
  .nav-drawer.open {
    transform: none;
  }
  .nav-drawer-close {
    display: none;
  }
  .nav-drawer::before {
    display: none;
  }
  .nav-links {
    display: flex !important;
    flex-direction: row;
    align-items: center;
  justify-content: flex-start;
    gap: 0;
    padding: 0;
  }
  .nav-links li {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    margin: 0 4px;
  }
  .nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    padding: 4px 10px;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    line-height: 1;
    text-decoration: none;
    position: relative;
    transition: color 0.25s;
  }
  .nav-links a::before {
    display: none;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
    transition:
      width 0.3s ease,
      left 0.3s ease;
  }
  .nav-links a:hover::after {
    width: 80%;
    left: 10%;
  }
  .nav-links a:hover {
    color: var(--teal) !important;
  }
  .nav-links a svg {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    transition:
      color 0.25s,
      opacity 0.25s;
  }
  .nav-links a:hover svg {
    color: var(--teal) !important;
    opacity: 1;
  }
  .nav-links a.active-link {
    color: #fff !important;
  }
  .nav-links a.active-link svg {
    color: #fff !important;
    opacity: 1;
  }
  .btn-nav-cta {
    padding: 8px 20px !important;
    margin-top: 0;
    margin-left: 12px;
    justify-content: flex-start;
    font-size: 13px !important;
    border-radius: 50px !important;
    background: linear-gradient(
      135deg,
      var(--teal),
      var(--teal-dark)
    ) !important;
    color: #fff !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 18px rgba(18, 179, 168, 0.38) !important;
    transition: all 0.25s;
  }
  .btn-nav-cta svg {
    color: #fff !important;
    background: transparent !important;
  }
  @media (hover: hover) {
    .nav-links a.btn-nav-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(18, 179, 168, 0.5) !important;
      color: var(--navy) !important;
    }
    .nav-links a.btn-nav-cta:hover svg {
      color: var(--navy) !important;
    }
  }

  .value-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 44px;
  }
  .vc-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
  }
  .vc-val {
    font-size: 28px;
  }

  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 44px;
  }
  .sol-icon {
    width: 56px;
    height: 56px;
  }
  .sol-card {
    padding: 28px 24px;
  }

  .sectors-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 44px;
  }
  .sc-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 18px;
  }
  .sector-card {
    padding: 32px 20px;
  }
  .sector-card h4 {
    font-size: 15px;
  }

  .eco-layout {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-top: 56px;
    align-items: center;
  }
  .eco-bullet {
    width: 48px;
    height: 48px;
  }
  .eco-visual {
    padding: 36px;
  }
  .eco-metric span {
    font-size: 14px;
  }
  .eco-metric strong {
    font-size: 15px;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 44px;
  }
  .tb-icon {
    width: 60px;
    height: 60px;
  }
  .trust-badge {
    padding: 28px 20px;
  }

  .corp-layout {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-top: 56px;
    align-items: start;
  }
  .quote-box {
    padding: 40px;
  }
  .quote-mark {
    font-size: 160px;
  }
  .quote-box blockquote {
    font-size: 19px;
  }

  .act-row-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .act-row-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .activities-grid {
    gap: 22px;
  }

  .photo-banner {
    min-height: 460px;
  }
  .photo-banner-content {
    padding: 100px 28px;
  }

  .cta-section {
    padding: 100px 0;
  }

  .about-hero-layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  .about-hero-visual {
    display: block;
    perspective: 900px;
  }
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .vision-layout {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .contact-layout > div:last-child {
    position: sticky;
    top: 100px;
  }
  .contact-cards-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    gap: 40px;
    padding: 64px 0 52px;
  }
  .footer-desc {
    max-width: 300px;
  }
  .footer-logo img {
    height: 38px;
  }
  .footer-social-icon {
    width: 40px;
    height: 40px;
  }
  .footer-col ul a {
    font-size: 14px;
  }
  .footer-contact-item {
    padding: 13px 16px;
  }
  .fci-value {
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 28px;
  }

  .hero-slide-content .container {
    max-width: 720px;
  }
  .hero-slide-title {
    font-size: clamp(44px, 4vw, 60px);
  }
  #heroPrev {
    left: 56px;
  }
  #heroNext {
    right: 56px;
  }

  .nav-links a {
    font-size: 15px;
    padding: 6px 8px;
  }
  .btn-nav-cta {
    padding: 10px 22px !important;
  }

  .value-grid {
    gap: 24px;
    margin-top: 48px;
  }

  .solutions-grid {
    margin-top: 48px;
  }
  .sol-card h3 {
    font-size: 19px;
  }
  .sol-extra-grid {
    padding: 36px 40px;
    margin-top: 32px;
  }

  .eco-layout {
    gap: 64px;
  }

  .corp-layout {
    gap: 64px;
  }

  .act-card {
    padding: 34px 30px 28px;
  }
  .act-title {
    font-size: 19px;
  }

  .footer-grid {
    gap: 48px;
    padding: 72px 0 56px;
  }
  .footer-desc {
    font-size: 15px;
  }
  .footer-bottom p,
  .footer-bottom-links {
    font-size: 14px;
  }
}

/* ── Glassmorphism Utilities ── */
.glass {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.glass-dark {
  background: rgba(11, 47, 91, 0.55);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.glass-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 0 8px 32px rgba(11, 47, 91, 0.06);
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s,
    border-color 0.3s;
}
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 60px rgba(11, 47, 91, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-color: rgba(18, 179, 168, 0.25);
}
.glass-card-detailed {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 0 8px 32px rgba(11, 47, 91, 0.06);
  border-radius: 24px;
  padding: 30px 26px;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s,
    border-color 0.3s;
  position: relative;
}
.glass-card-detailed:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(11, 47, 91, 0.12);
  border-color: rgba(18, 179, 168, 0.25);
}

/* ── Stagger Reveal ── */
.stagger-group {
  perspective: 800px;
}
.stagger-item {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  will-change: transform, opacity;
}
.stagger-item.is-visible {
  animation: staggerIn 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.stagger-item:nth-child(1) { animation-delay: 0ms; }
.stagger-item:nth-child(2) { animation-delay: 80ms; }
.stagger-item:nth-child(3) { animation-delay: 160ms; }
.stagger-item:nth-child(4) { animation-delay: 240ms; }
.stagger-item:nth-child(5) { animation-delay: 320ms; }
.stagger-item:nth-child(6) { animation-delay: 400ms; }
.stagger-item:nth-child(7) { animation-delay: 480ms; }
.stagger-item:nth-child(8) { animation-delay: 560ms; }
.stagger-item:nth-child(9) { animation-delay: 640ms; }
.stagger-item:nth-child(10) { animation-delay: 720ms; }
.stagger-item:nth-child(11) { animation-delay: 800ms; }
.stagger-item:nth-child(12) { animation-delay: 880ms; }
@keyframes staggerIn {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Animated Gradient Background ── */
.animated-gradient {
  background: linear-gradient(-45deg, #020712, #06162b, #0b2f5b, #1a6db0, #0b2f5b, #020712);
  background-size: 400% 400%;
  animation: gradientBG 12s ease infinite;
}
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── Parallax ── */
.parallax-banner {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .parallax-banner { background-attachment: scroll; }
}

@keyframes formToastIn {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: opacity 0.4s;
    transform: translateX(0) !important;
  }
  .hero-slide.is-active .hero-slide-eyebrow,
  .hero-slide.is-active .hero-slide-title,
  .hero-slide.is-active .hero-slide-sub,
  .hero-slide.is-active .hero-slide-btn {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ── Language Switcher — Same Level as Navbar, Higher Layer ── */
.lang-top-bar {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 68px;
  padding: 0 32px;
  pointer-events: none;
  direction: ltr;
}
.lang-top-inner {
  display: flex;
  align-items: center;
  gap: 3px;
  background: rgba(11, 47, 91, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 8px;
  padding: 3px 4px;
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 0;
}
.lang-top-label {
  display: none;
}
.lang-top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 24px;
  padding: 0 8px;
  border: none;
  border-radius: 5px;
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
}
.lang-top-btn:hover {
  color: rgba(255, 255, 255, 0.75);
}
.lang-top-btn.active {
  color: #fff;
  background: #12B3A8;
}
.lang-top-btn.active:hover {
  background: #14c4b8;
}
/* Hide custom cursor on lang bar */
.lang-top-bar * {
  cursor: pointer !important;
}
body.cursor-hide #cursor-dot,
body.cursor-hide #cursor-ring {
  opacity: 0 !important;
  transform: scale(0) !important;
  pointer-events: none !important;
}
/* Hide when mobile drawer is open */
body.drawer-open .lang-top-bar,
body.drawer-open .lang-inline {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
/* Navbar scrolled: shrink lang bar to match */
#mainNav.scrolled ~ .lang-top-bar {
  height: 60px;
}

/* ── Inline Lang Switcher (inside navbar, mobile only) ── */
.nav-mobile-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-inline {
  display: none;
  align-items: center;
  gap: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 2px 3px;
}
.lang-inline .lang-top-btn {
  min-width: 24px;
  height: 22px;
  padding: 0 7px;
  font-size: 9px;
}

/* Desktop: hide inline, show fixed */
@media (min-width: 992px) {
  .nav-mobile-actions .lang-inline { display: none !important; }
}

/* Mobile: show inline, hide fixed */
@media (max-width: 640px) {
  .lang-inline { display: flex; }
  .lang-top-bar { display: none !important; }
}

/* Mobile */
@media (max-width: 640px) {
  .lang-top-bar {
    top: 60px;
    right: 16px;
    height: auto;
    padding: 0;
  }
  .lang-top-inner {
    padding: 2px 3px;
    border-radius: 6px;
  }
  .lang-top-btn {
    min-width: 24px;
    height: 22px;
    padding: 0 7px;
    font-size: 9px;
  }
}

/* ── RTL Support ── */
html[dir="rtl"] body {
  font-family: 'Cairo', 'Noto Sans Arabic', 'Inter', sans-serif;
}
/* ── RTL Navbar ── */
html[dir="rtl"] .nav-container {
  direction: rtl;
  justify-content: flex-end;
  gap: 28px;
}
html[dir="rtl"] .nav-links-desktop {
  margin: 0 !important;
  gap: 4px;
}
html[dir="rtl"] .nav-links-desktop a {
  flex-direction: row-reverse;
}
html[dir="rtl"] .nav-drawer {
  direction: rtl;
}
html[dir="rtl"] .nav-drawer-close {
  right: auto;
  left: 16px;
}
html[dir="rtl"] .nav-links li {
  transform: translateX(25px);
}
html[dir="rtl"] .nav-drawer.open .nav-links li {
  transform: translateX(0);
}
html[dir="rtl"] .hero-slide-title,
html[dir="rtl"] .section-title,
html[dir="rtl"] .about-hero-title,
html[dir="rtl"] .photo-banner-title {
  direction: rtl;
}
html[dir="rtl"] .value-list li {
  flex-direction: row-reverse;
}
html[dir="rtl"] .value-list li i {
  margin-left: 0;
  margin-right: 0;
}
html[dir="rtl"] .vision-list li {
  flex-direction: row-reverse;
}
html[dir="rtl"] .sol-features li {
  flex-direction: row-reverse;
}
html[dir="rtl"] .eco-item {
  flex-direction: row-reverse;
}
html[dir="rtl"] .eco-metric span {
  flex-direction: row-reverse;
}
html[dir="rtl"] .eco-metric span i {
  margin-left: 0;
  margin-right: 7px;
}
html[dir="rtl"] .eco-label {
  flex-direction: row-reverse;
}
html[dir="rtl"] .footer-contact-item {
  flex-direction: row-reverse;
}
html[dir="rtl"] .footer-contact-item .fci-body {
  text-align: right;
}
html[dir="rtl"] .footer-contact-item .fci-actions {
  margin-right: auto;
  margin-left: 0;
}
html[dir="rtl"] .fci-arrow {
  margin-right: auto;
  margin-left: 0;
}
html[dir="rtl"] .about-hero-layout {
  direction: rtl;
}
html[dir="rtl"] .about-hero-visual {
  direction: rtl;
}
html[dir="rtl"] .about-visual-card .avc-value-row {
  flex-direction: row-reverse;
}
html[dir="rtl"] .about-visual-card .avc-value-row .avc-val-icon {
  margin-right: 0;
  margin-left: 0;
}
html[dir="rtl"] .vision-layout {
  direction: rtl;
}
html[dir="rtl"] .corp-layout {
  direction: rtl;
}
html[dir="rtl"] .eco-layout {
  direction: rtl;
}
html[dir="rtl"] .contact-layout {
  direction: rtl;
}
html[dir="rtl"] .photo-banner-content {
  text-align: center;
}
html[dir="rtl"] .marquee-item {
  direction: ltr;
}
html[dir="rtl"] .container {
  direction: rtl;
}
html[dir="rtl"] .form-row-2 {
  direction: rtl;
}
html[dir="rtl"] input, html[dir="rtl"] textarea, html[dir="rtl"] select {
  text-align: right;
}
html[dir="rtl"] .page-breadcrumb {
  flex-direction: row-reverse;
}
