/* ── Global Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  color: #2b2f33;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.75;
}
:root {
  --hero-img: none;
}

/* ── 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;
  }
}

/* ── Lucide Icons Fix ── */
svg[xmlns] {
  display: block;
}
a svg,
button svg,
span svg,
li svg {
  display: block;
  flex-shrink: 0;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #f2f2f2;
}
::-webkit-scrollbar-thumb {
  background: #12b3a8;
  border-radius: 3px;
}

/* ── Progress Bar ── */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  z-index: 9000;
  background: linear-gradient(90deg, #12b3a8, #6dd0c8, #d8a63d);
  width: 0;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(18, 179, 168, 0.6);
}

/* ── Back to Top ── */
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 400;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #12b3a8, #0e9a90);
  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);
}

/* ── Navbar ── */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 10px 0;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
#mainNav.scrolled {
  padding: 8px 0;
  background: #0B2F5B;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

/* Hamburger */
.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);
}

/* Overlay */
.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;
}

/* Drawer */
.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: #12b3a8;
  border-radius: 0 0 4px 4px;
  opacity: 0.6;
}

/* Nav links */
.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: "Outfit", sans-serif;
  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: #12b3a8;
  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: #12b3a8;
  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;
}

/* CTA Button in drawer */
.btn-nav-cta {
  background: linear-gradient(135deg, #12b3a8, #0e9a90) !important;
  color: #fff !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  justify-content: center;
  margin-top: 12px;
  padding: 0 !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) {
  .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: #0b2f5b !important;
  }
  .nav-links a.btn-nav-cta:hover svg {
    color: #0b2f5b !important;
  }
}

/* Drawer close */
.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: #12b3a8;
    color: #fff;
    transform: rotate(90deg) scale(1.1);
  }
}

/* Desktop navbar */
@media (min-width: 992px) {
  .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;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    transition: color 0.25s;
  }
  .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: #12b3a8 !important;
    background: rgba(18, 179, 168, 0.08);
  }
  .nav-links-desktop a.active-link svg {
    color: #12b3a8;
  }
  .btn-nav-cta {
    background: linear-gradient(135deg, #12b3a8, #0e9a90) !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: #0b2f5b !important;
  }
  .nav-links a.btn-nav-cta:hover svg {
    color: #0b2f5b !important;
  }
}

/* ── Hero ── */
.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-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: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #12b3a8;
  margin-bottom: 16px;
  opacity: 0;
}
.hero-slide-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: #12b3a8;
  border-radius: 2px;
  flex-shrink: 0;
}
.hero-slide-title {
  font-family: "Outfit", sans-serif;
  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: #12b3a8;
  border-color: #12b3a8;
  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: #12b3a8;
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(18, 179, 168, 0.7);
}

@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;
  }
}

/* ── Typewriter ── */
.hero-type-text {
  display: inline;
  color: #12b3a8;
  position: relative;
}
.hero-type-cursor {
  display: inline-block;
  width: 2.5px;
  height: 1.05em;
  background: #12b3a8;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: typeBlink 0.8s step-end infinite;
}
@keyframes typeBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* ── Keyframes ── */
@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 #12b3a8;
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 0 14px #12b3a8,
      0 0 28px rgba(18, 179, 168, 0.4);
    transform: scale(1.3);
  }
}

/* ── Floating Icons ── */
.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: #12b3a8;
  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: #d8a63d;
}
.floating-icon--3 {
  bottom: 12%;
  left: 50%;
  animation: floatIcon 16s ease-in-out infinite 2s;
  font-size: 42px;
}
.floating-icon--4 {
  top: 25%;
  right: 15%;
  animation: floatIcon 20s ease-in-out infinite 1s;
  font-size: 28px;
  color: #d8a63d;
}
.floating-icon--5 {
  bottom: 30%;
  left: 10%;
  animation: floatIcon 12s ease-in-out infinite 3s;
  font-size: 32px;
}
@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);
  }
}

/* ── Marquee ── */
.marquee-section {
  background: #0b2f5b;
  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: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.marquee-item svg {
  color: #12b3a8;
  flex-shrink: 0;
  opacity: 0.7;
}
.marquee-item .marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d8a63d;
  opacity: 0.4;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 575.98px) {
  .marquee-section {
    padding: 16px 0;
  }
  .marquee-track {
    gap: 32px;
    animation-duration: 20s;
  }
  .marquee-item {
    font-size: 12px;
  }
}

/* ── Photo Banner ── */
.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-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, #12b3a8, 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: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #12b3a8;
  margin-bottom: 20px;
}
.photo-banner-eyebrow::before,
.photo-banner-eyebrow::after {
  content: "";
  width: 18px;
  height: 2px;
  background: #12b3a8;
  border-radius: 2px;
  flex-shrink: 0;
}
.photo-banner-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(20px, 4vw, 34px);
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 32px;
  max-width: 680px;
}
@media (max-width: 767px) {
  .photo-banner {
    background-attachment: scroll;
    min-height: 320px;
  }
  .photo-banner-content {
    padding: 60px 20px;
  }
}
/* ── Section Glow ── */
.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),
    #12b3a8,
    rgba(18, 179, 168, 0.25),
    transparent
  );
  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;
}

/* ── Footer ── */
footer {
  background: #0b2f5b;
  position: relative;
}
.footer-top-accent {
  height: 3px;
  background: linear-gradient(90deg, #12b3a8, #6dd0c8, #d8a63d, #12b3a8);
  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-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: #12b3a8;
  border-color: #12b3a8;
  color: #051223;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(18, 179, 168, 0.35);
}
.footer-col h5 {
  font-family: "Outfit", sans-serif;
  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: #12b3a8;
  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: #12b3a8;
  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);
}
.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: #12b3a8;
  transition: all 0.25s;
}
.footer-contact-item:hover .fci-icon {
  background: #12b3a8;
  color: #051223;
}
.fci-icon.gold {
  background: rgba(216, 166, 61, 0.12);
  color: #d8a63d;
}
.footer-contact-item:hover .fci-icon.gold {
  background: #d8a63d;
  color: #051223;
}
.fci-body {
  flex: 1;
  min-width: 0;
}
.fci-label {
  display: block;
  font-family: "Outfit", sans-serif;
  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: "Outfit", sans-serif;
  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: #12b3a8;
}
.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: #12b3a8;
  transition: all 0.22s;
  flex-shrink: 0;
}
.fci-btn:hover {
  background: #12b3a8;
  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: #12b3a8;
  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: #12b3a8;
}
.footer-bottom-sep {
  opacity: 0.3;
}

/* ── Activities Section ── */
.activities-section {
  background: linear-gradient(160deg, #0b2f5b 0%, #1a6db0 50%, #06162b 100%);
  position: relative;
  overflow: hidden;
}
.activities-bg-pattern {
  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: 60px 60px;
  mask-image: radial-gradient(
    ellipse 100% 100% at 50% 50%,
    black 20%,
    transparent 80%
  );
}
.activities-section .container {
  position: relative;
  z-index: 2;
}

/* ── AOS fix ── */
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

/* ── Reduced Motion ── */
/* ── Activities card styles (from activities.css) ── */
.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-card:hover .act-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}
.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);
}

/* ── Breadcrumb (shared) ── */
.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: "Outfit", sans-serif;
}
.page-breadcrumb a {
  color: #12b3a8;
  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 (shared) ── */
.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;
  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: "Outfit", sans-serif;
  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, #12b3a8 0%, #6dd0c8 60%, #12b3a8 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;
}

/* ── Page Hero Glow (shared) ── */
.page-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 ── */
.about-hero {
  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;
  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 (shared) ── */
.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: "Outfit", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #12b3a8;
  margin-bottom: 20px;
}
.about-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #12b3a8, transparent);
  border-radius: 2px;
}
.about-hero-title {
  font-family: "Outfit", sans-serif;
  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, #12b3a8 0%, #6dd0c8 60%, #12b3a8 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: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.hero-chip i,
.hero-chip .fa-brands {
  color: #12b3a8;
}
.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: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.ast-val .ast-accent {
  color: #12b3a8;
}
.ast-val-light {
  color: #fff;
}
.ast-plus {
  color: #12b3a8;
}
.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 ── */
.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);
  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 card elements ── */
.avc-header {
  font-family: "Outfit", sans-serif;
  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: #12b3a8;
}
.avc-val-icon.gold {
  background: rgba(216, 166, 61, 0.2);
  color: #d8a63d;
}
.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);
}

/* ── Section glass overrides ── */
.section-light { background: #F8FAFB; }
.bg-off { background: #F8FAFB; }
.bg-teal-fade { background: rgba(240, 249, 248, 0.5); backdrop-filter: blur(4px); }
.section-glow::before { height: 1px; background: linear-gradient(90deg, transparent, rgba(18, 179, 168, 0.2), #12b3a8, rgba(18, 179, 168, 0.2), transparent); }

/* ── Typography polish ── */
.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 100px 0; } }
@media (min-width: 992px) { .section { padding: 120px 0; } }
@media (min-width: 1200px) { .section { padding: 120px 0; } }
.section-title { font-size: clamp(24px, 4vw, 34px); line-height: 1.2; }
.section-sub { font-size: 15px; max-width: 600px; line-height: 1.75; }
.section-label { font-size: 11px; letter-spacing: 0.18em; }

/* ── Values cards (glass) ── */
.val-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);
  border-radius: 24px;
  padding: 30px 26px;
  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;
  position: relative;
  overflow: hidden;
}
.val-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #12b3a8, #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: 0 20px 60px rgba(11, 47, 91, 0.18);
  background: #fff;
  border-color: rgba(18, 179, 168, 0.2);
}
.val-card-num {
  font-family: "Outfit", sans-serif;
  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: #12b3a8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.25s;
}
.val-card:hover .val-card-icon {
  background: #12b3a8;
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}
.val-card h4 {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #0b2f5b;
  margin-bottom: 10px;
}
.val-card p {
  font-size: 13.5px;
  color: #7b8794;
  line-height: 1.75;
  margin: 0;
}

/* ── Mission / Vision panels ── */
.mv-panel {
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.mv-panel.mission {
  background: #0b2f5b;
}
.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-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: #12b3a8;
}
.vision .mv-icon-bg {
  background: #0b2f5b;
}

/* ── About CTA Strip ── */
.about-cta-strip {
  background: linear-gradient(135deg, #12b3a8 0%, #0e9a90 100%);
  border-radius: 24px;
  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: "Outfit", sans-serif;
  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;
}

/* ── Contact Info Cards ── */
.contact-info-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);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(11, 47, 91, 0.06);
  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, #12b3a8, #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: 0 20px 60px rgba(11, 47, 91, 0.18);
  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: #12b3a8;
  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: #12b3a8;
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}
.cic-icon.gold {
  background: rgba(216, 166, 61, 0.1);
  color: #d8a63d;
}
.contact-info-card:hover .cic-icon.gold {
  background: #d8a63d;
  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;
}

/* ── Contact form ── */
.contact-form-wrap {
  background: #fff;
  border: 1px solid #e6e9ed;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(11, 47, 91, 0.12);
}
.form-header {
  background: linear-gradient(135deg, #0b2f5b 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-control-ob {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e6e9ed;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: #2b2f33;
  background: #f2f2f2;
  outline: none;
  resize: none;
  transition: all 0.25s;
}
.form-control-ob:focus {
  border-color: #12b3a8;
  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;
  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, #12b3a8, #0e9a90);
  color: #fff;
  padding: 15px 28px;
  border-radius: 50px;
  font-family: "Outfit", sans-serif;
  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, #0e9a90);
  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-toast {
  display: none;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.form-toast.success {
  display: flex;
  background: rgba(18, 179, 168, 0.1);
  border: 1px solid rgba(18, 179, 168, 0.3);
  color: #0e9a90;
}
.form-toast.error {
  display: flex;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: #dc2626;
}
.input-error {
  border-color: #e53e3e !important;
  background: rgba(229, 62, 62, 0.05) !important;
}

/* ── FAQ ── */
.faq-card {
  background: #fff;
  border: 1px solid #e6e9ed;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(11, 47, 91, 0.12);
  margin-top: 24px;
}
.faq-card-header {
  background: #0b2f5b;
  padding: 16px 24px;
  font-family: "Outfit", sans-serif;
  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: #12b3a8;
}
.faq-item {
  border-bottom: 1px solid #e6e9ed;
}
.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-chevron {
  color: #7b8794;
  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: #12b3a8;
}
.faq-question[aria-expanded="true"] span {
  color: #12b3a8;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Map ── */
.map-section-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e6e9ed;
  box-shadow: 0 8px 32px rgba(11, 47, 91, 0.12);
}
.map-header {
  background: #0b2f5b;
  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: #12b3a8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.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: #12b3a8;
  font-family: "Outfit", sans-serif;
  display: flex;
  align-items: center;
  gap: 5px;
}
.map-header-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #12b3a8;
  box-shadow: 0 0 6px #12b3a8;
  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: #f2f2f2;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── Office Hours ── */
.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: 16px;
  padding: 22px 24px;
  margin-top: 20px;
}

/* ── Quick Contact Bar ── */
.quick-contact-bar {
  background: #0b2f5b;
  border-radius: 24px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

/* ── Value card polish (homepage) ── */
.value-card {
  border-radius: 20px;
  padding: 26px 24px;
  border-color: #edf0f2;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(11, 47, 91, 0.1);
  border-color: rgba(18, 179, 168, 0.2);
}
.value-card.featured {
  background: linear-gradient(135deg, #12b3a8, #0e9a90);
  border-color: transparent;
}
.value-card.featured-navy {
  background: linear-gradient(135deg, #0b2f5b, #164472);
  border-color: transparent;
}
.value-card.featured:hover,
.value-card.featured-navy:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(11, 47, 91, 0.18);
}
.vc-icon {
  border-radius: 14px;
  width: 48px;
  height: 48px;
}
.vc-val {
  font-size: 28px;
}

@keyframes formToastIn {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.form-toast.show {
  display: flex;
  animation: formToastIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ═══════════════════════════════════════════
   main.css migration – critical classes
   ═══════════════════════════════════════════ */

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: linear-gradient(135deg, #12b3a8, #0e9a90);
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  font-family: "Outfit", sans-serif;
  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, #0e9a90);
  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-cta-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #fff;
  color: #0e9a90;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: "Outfit", sans-serif;
  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: #0e9a90;
}
.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: "Outfit", sans-serif;
  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);
}

/* ── Divider & Pills ── */
.divider {
  width: 36px;
  height: 3px;
  background: #12b3a8;
  border-radius: 2px;
  margin: 12px 0 20px;
}
.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 #e6e9ed;
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #2b2f33;
  transition: all 0.2s;
}
.pill:hover {
  border-color: #12b3a8;
  color: #12b3a8;
  transform: translateY(-2px);
}
.pill svg { color: #12b3a8; }

/* ── Section backgrounds ── */
.section.bg-off { background: #f2f2f2; }
.section.bg-navy { background: #0b2f5b; }
.section.bg-teal-fade {
  background: linear-gradient(135deg, #e6f7f6 0%, #f2f2f2 100%);
}

/* ── Homepage: Solutions ── */
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 36px;
}
.sol-card {
  background: #fff;
  border: 1px solid #e6e9ed;
  border-radius: 16px;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.28s;
}
.sol-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #12b3a8;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.sol-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(11, 47, 91, 0.12);
}
.sol-card:hover::before { transform: scaleX(1); }
.sol-card.dark { background: #0b2f5b; border-color: #0b2f5b; }
.sol-card.dark::before { background: #d8a63d; }
.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: #12b3a8; }
.sol-icon.gold { background: rgba(216, 166, 61, 0.1); color: #d8a63d; }
.sol-card h3 {
  font-family: "Outfit", sans-serif; font-size: 17px; font-weight: 700;
  color: #0b2f5b; margin-bottom: 8px;
}
.sol-card.dark h3 { color: #fff; }
.sol-card p { font-size: 14px; color: #7b8794; 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: #7b8794;
  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: #12b3a8; flex-shrink: 0; }

/* ── Homepage: Sectors ── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.sector-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 22px 16px;
  text-align: center;
  transition: all 0.25s;
}
.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: #12b3a8; transition: all 0.25s;
}
.sector-card:hover .sc-icon {
  background: #12b3a8; color: #fff; transform: scale(1.1) rotate(-6deg);
}
.sector-card h4 {
  font-family: "Outfit", sans-serif; 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; }

/* ── Homepage: Sustainability (Eco) ── */
.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: #12b3a8; transition: all 0.25s;
}
.eco-item:hover .eco-bullet {
  background: #12b3a8; color: #fff; transform: rotate(10deg);
}
.eco-item h4 {
  font-family: "Outfit", sans-serif; font-size: 14px; font-weight: 700;
  color: #0b2f5b; margin-bottom: 4px;
}
.eco-item p { font-size: 13.5px; color: #7b8794; line-height: 1.7; }
.eco-visual {
  background: #fff; border-radius: 24px; padding: 24px 20px;
  box-shadow: 0 8px 32px rgba(11, 47, 91, 0.12);
}
.eco-label {
  font-family: "Outfit", sans-serif; font-weight: 700; font-size: 13px;
  color: #7b8794; text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.eco-label i { color: #12b3a8; }
.eco-metric {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 0; border-bottom: 1px solid #e6e9ed;
}
.eco-metric:last-child { border-bottom: none; }
.eco-metric span { font-size: 13px; color: #7b8794; display: flex; align-items: center; gap: 7px; }
.eco-metric strong {
  font-family: "Outfit", sans-serif; font-weight: 700;
  font-size: 14px; color: #12b3a8;
}

/* ── Homepage: Trust & Security ── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.trust-badge {
  background: #f2f2f2; border: 1px solid #e6e9ed;
  border-radius: 16px; padding: 22px 16px; text-align: center;
  transition: all 0.25s;
}
.trust-badge:hover {
  border-color: #12b3a8; box-shadow: 0 2px 12px rgba(11,47,91,0.08);
  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: #12b3a8; transition: all 0.25s;
}
.trust-badge:hover .tb-icon { background: #12b3a8; color: #fff; }
.trust-badge h4 {
  font-family: "Outfit", sans-serif; font-size: 13px; font-weight: 700;
  color: #0b2f5b; margin-bottom: 5px;
}
.trust-badge p { font-size: 12px; color: #7b8794; line-height: 1.55; }

/* ── Homepage: Corporate About section ── */
.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: #2b2f33; line-height: 1.7;
  padding: 11px 0; border-bottom: 1px solid #e6e9ed;
}
.value-list li:last-child { border-bottom: none; }
.value-list li svg { color: #12b3a8; margin-top: 3px; flex-shrink: 0; }
.quote-box {
  background: #0b2f5b; border-radius: 24px; 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: "Outfit", sans-serif; 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: "Outfit", sans-serif; 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: #12b3a8;
}

/* ── Homepage: Activities section ── */
.activities-section {
  background: linear-gradient(160deg, #0b2f5b 0%, #1a6db0 50%, #06162b 100%);
  position: relative; overflow: hidden;
}
.activities-bg-pattern {
  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: 60px 60px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 20%, transparent 80%);
}
.activities-section .container { position: relative; z-index: 2; }
.activities-section .section-label { color: #12b3a8; }
.activities-section .section-title { color: #fff; }
.activities-section .section-sub { color: rgba(255,255,255,0.55); }
.activities-section .divider { background: #12b3a8; }
.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: "Outfit", sans-serif; 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: #12b3a8; }
.act-icon-gold { background: rgba(216,166,61,0.18); color: #d8a63d; }
.act-icon-white { background: rgba(255,255,255,0.14); color: #fff; }
.act-title {
  font-family: "Outfit", sans-serif; 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: "Outfit", sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #12b3a8; 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);
}

/* ── About page: CTA strip ── */
.about-cta-strip {
  background: linear-gradient(135deg, #12b3a8 0%, #0e9a90 100%);
  border-radius: 24px; 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: "Outfit", sans-serif;
  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 page: cards, form, map, FAQ ── */
.contact-cards-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 56px;
}
.contact-info-card {
  background: #fff; border: 1px solid #e6e9ed; border-radius: 24px;
  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, #12b3a8, #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: 0 20px 60px rgba(11,47,91,0.18);
  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: #12b3a8;
  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: #12b3a8; color: #fff; transform: scale(1.08) rotate(-4deg);
}
.cic-icon.gold { background: rgba(216,166,61,0.1); color: #d8a63d; }
.contact-info-card:hover .cic-icon.gold { background: #d8a63d; 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: "Outfit", sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #7b8794; margin-bottom: 6px;
}
.cic-value {
  font-family: "Outfit", sans-serif; font-size: 15px; font-weight: 700;
  color: #0b2f5b; margin-bottom: 3px; line-height: 1.4;
}
.cic-value a { color: #0b2f5b; text-decoration: none; transition: color 0.2s; }
.cic-value a:hover { color: #12b3a8; }
.cic-sub { font-size: 12.5px; color: #7b8794; 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: "Outfit", sans-serif;
  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: #12b3a8;
  border: 1px solid rgba(18,179,168,0.28);
}
.cnc-btn--call:hover { background: #12b3a8; color: #fff; border-color: #12b3a8; }
.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: #12b3a8;
  border: 1px solid rgba(18,179,168,0.28);
}
.cnc-btn--map:hover { background: #12b3a8; color: #fff; border-color: #12b3a8; }
.cnc-btn--mail {
  background: rgba(216,166,61,0.12); color: #d8a63d;
  border: 1px solid rgba(216,166,61,0.28);
}
.cnc-btn--mail:hover { background: #d8a63d; color: #fff; border-color: #d8a63d; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.map-section-wrap {
  border-radius: 24px; overflow: hidden;
  border: 1px solid #e6e9ed; box-shadow: 0 8px 32px rgba(11,47,91,0.12);
}
.map-header { background: #0b2f5b; 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: #12b3a8;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.map-header-text strong {
  display: block; font-family: "Outfit", sans-serif;
  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: #12b3a8;
  font-family: "Outfit", sans-serif; display: flex; align-items: center; gap: 5px;
}
.map-header-badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #12b3a8; box-shadow: 0 0 6px #12b3a8;
  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: #f2f2f2; 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: "Outfit", sans-serif; font-size: 12.5px; font-weight: 600;
  color: #12b3a8; text-decoration: none; transition: opacity 0.2s;
}
.map-footer-strip a:hover { opacity: 0.75; }
.map-footer-addr { font-size: 12px; color: #7b8794; margin-left: auto; }

.contact-form-wrap {
  background: #fff; border: 1px solid #e6e9ed; border-radius: 24px;
  overflow: hidden; box-shadow: 0 8px 32px rgba(11,47,91,0.12);
}
.form-header {
  background: linear-gradient(135deg, #0b2f5b 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: "Outfit", sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #12b3a8; margin-bottom: 8px;
}
.form-header h3 {
  font-family: "Outfit", sans-serif; 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: "Outfit", sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; color: #0b2f5b;
}
.form-group label span { color: #12b3a8; margin-left: 2px; }
.form-control-ob {
  width: 100%; padding: 13px 16px; border: 1.5px solid #e6e9ed;
  border-radius: 10px; font-family: "DM Sans", sans-serif;
  font-size: 14px; color: #2b2f33; background: #f2f2f2; outline: none;
  resize: none; transition: all 0.25s;
}
.form-control-ob:focus {
  border-color: #12b3a8; 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; 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, #12b3a8, #0e9a90); color: #fff;
  padding: 15px 28px; border-radius: 50px; font-family: "Outfit", sans-serif;
  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, #0e9a90);
  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: #7b8794;
  margin-top: 14px; display: flex; align-items: center;
  justify-content: center; gap: 5px;
}
.form-toast {
  display: none; padding: 14px 20px; border-radius: 10px;
  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: #0e9a90;
}
.form-toast.error {
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.2); color: #dc2626;
}
.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: "Outfit", sans-serif; }

.faq-card {
  background: #fff; border: 1px solid #e6e9ed; border-radius: 24px;
  overflow: hidden; box-shadow: 0 8px 32px rgba(11,47,91,0.12); margin-top: 24px;
}
.faq-card-header {
  background: #0b2f5b; padding: 16px 24px;
  font-family: "Outfit", sans-serif; 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: #12b3a8; }
.faq-list { padding: 8px 0; }
.faq-item { border-bottom: 1px solid #e6e9ed; }
.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: "Outfit", sans-serif; font-size: 13.5px;
  font-weight: 600; color: #0b2f5b; line-height: 1.4;
}
.faq-chevron { color: #7b8794; 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: #12b3a8; }
.faq-question[aria-expanded="true"] span { color: #12b3a8; }
.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: #7b8794; line-height: 1.7; margin: 0; }

/* ── Vision section (About page) ── */
.vision-section { background: #fff; }
.vision-layout { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.vision-quote-block {
  background: linear-gradient(135deg, #0b2f5b 0%, #1a6db0 100%);
  border-radius: 24px; padding: 40px 36px; position: relative; overflow: hidden;
}
.vision-quote-block::before {
  content: "\201C"; position: absolute; top: -20px; right: 24px;
  font-size: 180px; font-family: "Outfit", sans-serif; font-weight: 900;
  color: rgba(18,179,168,0.1); line-height: 1; pointer-events: none;
}
.vqb-label {
  font-family: "Outfit", sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: #12b3a8;
  margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.vqb-label::before {
  content: ""; width: 18px; height: 2px;
  background: #12b3a8; border-radius: 2px;
}
.vqb-quote {
  font-family: "Outfit", sans-serif;
  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: "Outfit", sans-serif;
  font-size: 12px; font-weight: 600; color: #12b3a8;
}
.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: #7b8794; line-height: 1.7;
}
.vision-list li i { color: #12b3a8; margin-top: 2px; flex-shrink: 0; }

/* ── About page: Mission/Vision split ── */
.mv-split { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 64px; }
.mv-panel { border-radius: 24px; padding: 36px 32px; position: relative; overflow: hidden; }
.mv-panel.mission { background: #0b2f5b; }
.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: "Outfit", sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 14px;
  color: #12b3a8; display: flex; align-items: center; gap: 6px;
}
.mv-eyebrow i { display: inline; }
.mv-panel h3 {
  font-family: "Outfit", sans-serif; font-size: clamp(20px, 3vw, 26px);
  font-weight: 800; margin-bottom: 16px; line-height: 1.3;
}
.mission h3 { color: #fff; }
.vision h3 { color: #0b2f5b; }
.mv-panel p { font-size: 14px; line-height: 1.8; margin: 0; }
.mission p { color: rgba(255,255,255,0.58); }
.vision p { color: #7b8794; }
.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: #12b3a8; }
.vision .mv-icon-bg { background: #0b2f5b; }

/* ── About page: hero chips & stats strip ── */
.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: "Outfit", sans-serif;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8);
}
.hero-chip i { color: #12b3a8; }
.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: "Outfit", sans-serif; font-size: 28px; font-weight: 800;
  color: #fff; line-height: 1;
}
.ast-val .ast-accent { color: #12b3a8; }
.ast-val-light { color: #fff; }
.ast-plus { color: #12b3a8; }
.ast-lbl {
  font-size: 11px; color: rgba(255,255,255,0.38);
  margin-top: 5px; text-transform: uppercase; letter-spacing: 0.08em;
}

/* ── Responsive overrides from main.css (576/768/992/1200) ── */

@media (min-width: 576px) {
  .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; }
  .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); }
}

@media (min-width: 768px) {
  .about-hero { padding: 120px 0 80px; }
  .about-visual-card { display: block; }
  .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; }
  .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); }
  .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) {
  * { 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: #12b3a8; 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: #d8a63d; }
  .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; }
  .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; }
  .about-hero { min-height: 100svh; }
  .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; }
  .value-grid { gap: 24px; margin-top: 48px; }
  .solutions-grid { margin-top: 48px; }
  .sol-card h3 { font-size: 19px; }
  .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; }
}

@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; }
}
