/* ── MONA SANS via @font-face (GitHub CDN) ──────────────────── */
@font-face {
  font-family: "Mona Sans";
  src: url("https://github.githubassets.com/assets/mona-sans-1d7c15f2ab33.woff2")
    format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
  --navy: #2e3192;
  --navy-dark: #1a1d6e;
  --navy-light: #4a4fb8;
  --teal: #00aeac;
  --teal-light: #00cec9;
  --teal-dark: #007a78;
  --gold: #f5a623;
  --gold-light: #ffc555;
  --gold-dark: #d4891a;
  --orange: #e85d04;

  --white: #ffffff;
  --off-white: #f8f9fc;
  --light-gray: #eef0f6;
  --mid-gray: #8b8fa8;
  --dark-gray: #3a3d52;
  --near-black: #12142a;

  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  --shadow-sm: 0 2px 12px rgba(46, 49, 146, 0.08);
  --shadow-md: 0 8px 32px rgba(46, 49, 146, 0.14);
  --shadow-lg: 0 20px 60px rgba(46, 49, 146, 0.2);
  --shadow-xl: 0 30px 90px rgba(46, 49, 146, 0.28);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 999px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --fast: 0.18s;
  --mid: 0.32s;
  --slow: 0.55s;

  --space-lg: clamp(1.25rem, 4vw, 2.5rem);
  --space-xl: clamp(2.5rem, 6vw, 4rem);
  --space-2xl: clamp(2.5rem, 6vw, 4rem);
  --space-3xl: clamp(5rem, 10vw, 9rem);
}

/* ── RESET ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--dark-gray);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── HEADING UTILITY ─────────────────────────────────────────*/
h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  overflow: hidden;
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 9px var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.topbar a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--fast);
}
.topbar a:hover {
  color: var(--teal-light);
}
.tb-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}
.tb-item svg {
  color: var(--teal);
  flex-shrink: 0;
}
.tb-socials {
  display: flex;
  gap: 0.5rem;
}
.tb-socials a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: background var(--fast);
}
.tb-socials a:hover {
  background: var(--teal);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  transition:
    box-shadow var(--mid),
    border-color var(--mid);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
  position: relative;
}
.nav-logo img {
  height: 46px;
  width: auto;
  display: block;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.8rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-gray);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition:
    color var(--fast),
    background var(--fast);
}
.nav-link:hover,
.nav-link.active {
  color: var(--navy);
  background: var(--light-gray);
}
.nav-link .chev {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform var(--fast);
}
.nav-item:hover .nav-link .chev {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--mid) var(--ease-out);
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.845rem;
  border-radius: var(--radius-sm);
  color: var(--dark-gray);
  transition: all var(--fast);
}
.dropdown a:hover {
  background: var(--light-gray);
  color: var(--navy);
  padding-left: 1.2rem;
}

/* CTA button */
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-full);
  font-size: 0.845rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: all var(--mid);
  box-shadow: 0 4px 14px rgba(46, 49, 146, 0.28);
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--teal);
  box-shadow: 0 4px 18px rgba(0, 174, 172, 0.38);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--off-white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  transition: background var(--fast);
}
.hamburger:hover {
  background: var(--light-gray);
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1.8px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--mid) var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ── MOBILE DRAWER ─────────────────────────────────────────── */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--white);
  z-index: 1100;
  box-shadow: -8px 0 40px rgba(46, 49, 146, 0.18);
  transform: translateX(100%);
  transition: transform var(--slow) var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mobile-drawer.open {
  transform: translateX(0);
}
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 20, 42, 0.45);
  backdrop-filter: blur(3px);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  transition: all var(--slow) var(--ease);
}
.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--light-gray);
  flex-shrink: 0;
}
.drawer-header img {
  height: 38px;
  width: auto;
}
.drawer-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--off-white);
  display: grid;
  place-items: center;
  color: var(--dark-gray);
  transition: all var(--fast);
  cursor: pointer;
  border: none;
}
.drawer-close:hover {
  background: var(--light-gray);
}
.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem 0 1.5rem;
}
.drawer-nav-item {
}
.drawer-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--dark-gray);
  border-radius: 0;
  transition:
    background var(--fast),
    color var(--fast);
  cursor: pointer;
}
.drawer-nav-link:hover,
.drawer-nav-link.active {
  background: var(--off-white);
  color: var(--navy);
}
.drawer-nav-link .chev {
  transition: transform var(--mid);
  color: var(--mid-gray);
}
.drawer-nav-item.expanded .drawer-nav-link .chev {
  transform: rotate(180deg);
}
.drawer-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--mid) var(--ease);
  background: var(--off-white);
}
.drawer-nav-item.expanded .drawer-sub {
  max-height: 300px;
}
.drawer-sub a {
  display: block;
  padding: 0.6rem 1.25rem 0.6rem 2rem;
  font-size: 0.845rem;
  color: var(--mid-gray);
  transition: color var(--fast);
}
.drawer-sub a:hover {
  color: var(--teal);
}
.drawer-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--light-gray);
  flex-shrink: 0;
}
.btn-drawer-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--mid);
}
.btn-drawer-cta:hover {
  background: var(--teal);
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  padding-top: 0px !important;
}
.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.hero-slide.prev {
  opacity: 0;
  z-index: 1;
}

/* Per-slide backgrounds */
.slide-bg {
  position: absolute;
  inset: 0;
}
.slide-1-bg {
  background:
    radial-gradient(
      ellipse 80% 60% at 70% 50%,
      rgba(0, 174, 172, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 80% at 20% 80%,
      rgba(245, 166, 35, 0.12) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #12142a 0%, #1a1d6e 40%, #2e3192 70%, #1a1d6e 100%);
}
.slide-2-bg {
  background:
    radial-gradient(
      ellipse 70% 60% at 30% 40%,
      rgba(0, 174, 172, 0.2) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 70% at 80% 70%,
      rgba(46, 49, 146, 0.3) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #0d1b2a 0%, #1a4b6e 40%, #007a78 70%, #1a1d6e 100%);
}
.slide-3-bg {
  background:
    radial-gradient(
      ellipse 70% 60% at 60% 30%,
      rgba(245, 166, 35, 0.18) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 70% at 20% 70%,
      rgba(46, 49, 146, 0.25) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #12142a 0%, #2e3192 30%, #4a4fb8 60%, #1a1d6e 100%);
}
.slide-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 2px 2px,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 0
  );
  background-size: 40px 40px;
}
.slide-decor-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Slide content */
.hero-slide-inner {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.slide-content {
}
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 174, 172, 0.14);
  border: 1px solid rgba(0, 174, 172, 0.3);
  color: var(--teal-light);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.35rem;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s 0.15s var(--ease-out),
    transform 0.65s 0.15s var(--ease-out);
}
.hero-slide.active .slide-badge {
  opacity: 1;
  transform: translateY(0);
}
.slide-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.slide-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s 0.28s var(--ease-out),
    transform 0.65s 0.28s var(--ease-out);
}
.hero-slide.active .slide-title {
  opacity: 1;
  transform: translateY(0);
}
.slide-title .accent {
  background: linear-gradient(135deg, var(--teal-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.slide-desc {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2.25rem;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s 0.42s var(--ease-out),
    transform 0.65s 0.42s var(--ease-out);
}
.hero-slide.active .slide-desc {
  opacity: 1;
  transform: translateY(0);
}
.slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.65s 0.55s var(--ease-out),
    transform 0.65s 0.55s var(--ease-out);
}
.hero-slide.active .slide-actions {
  opacity: 1;
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 6px 24px rgba(0, 174, 172, 0.4);
  transition: all var(--mid);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 174, 172, 0.5);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  transition: all var(--mid);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline-white:hover {
  border-color: var(--teal-light);
  color: var(--teal-light);
}

.slide-stats {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.65s 0.65s var(--ease-out),
    transform 0.65s 0.65s var(--ease-out);
}
.hero-slide.active .slide-stats {
  opacity: 1;
  transform: translateY(0);
}
.slide-stat-num {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}
.slide-stat-num span {
  color: var(--teal-light);
}
.slide-stat-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}
.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  align-self: stretch;
}

/* Slide visual */
.slide-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.7s 0.2s var(--ease-out),
    transform 0.7s 0.2s var(--ease-out);
}
.hero-slide.active .slide-visual {
  opacity: 1;
  transform: translateX(0);
}

/* Visual cards */
.slide-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  width: 100%;
  max-width: 420px;
}
.slide-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  backdrop-filter: blur(12px);
  transition: all var(--mid);
}
.slide-card:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(0, 174, 172, 0.3);
  transform: translateY(-3px);
}
.slide-card.wide {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.sc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-bottom: 0.75rem;
}
.sc-icon.teal {
  background: rgba(0, 174, 172, 0.22);
  color: var(--teal-light);
}
.sc-icon.gold {
  background: rgba(245, 166, 35, 0.2);
  color: var(--gold-light);
}
.sc-icon.navy {
  background: rgba(74, 79, 184, 0.3);
  color: #9ea4f4;
}
.sc-icon.orange {
  background: rgba(232, 93, 4, 0.2);
  color: #ff8040;
}
.slide-card.wide .sc-icon {
  margin-bottom: 0;
}
.sc-title {
  font-size: 0.845rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--white);
  margin-bottom: 0.25rem;
}
.sc-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Slider controls */
.hero-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--mid);
  border: none;
}
.hero-dot.active {
  background: var(--teal);
  width: 28px;
  border-radius: 4px;
}
.hero-arrows {
  display: flex;
  gap: 0.5rem;
  position: absolute;
  top: 50%;
  right: var(--space-lg);
  transform: translateY(-50%);
  z-index: 10;
  flex-direction: column;
}
.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  color: white;
  cursor: pointer;
  transition: all var(--mid);
}
.hero-arrow:hover {
  background: var(--teal);
  border-color: var(--teal);
}
.slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--teal);
  width: 0%;
  z-index: 10;
  transition: width linear;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  padding: 1.1rem 0;
  overflow: hidden;
}
.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.trust-lbl {
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  padding-right: 1.25rem;
  border-right: 1px solid var(--light-gray);
  flex-shrink: 0;
}
.marquee-wrap {
  overflow: hidden;
  flex: 1;
}
.marquee-track {
  display: flex;
  gap: 2.75rem;
  animation: marquee 24s linear infinite;
  width: max-content;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.m-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--mid-gray);
  white-space: nowrap;
  transition: color var(--fast);
}
.m-item:hover {
  color: var(--navy);
}
.m-item svg {
  color: var(--teal);
  flex-shrink: 0;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
section {
  padding: var(--space-2xl) 0;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.8rem;
}
.sec-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--teal);
  border-radius: 2px;
}
.sec-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy-dark);
  line-height: 1.18;
  margin-bottom: 0.9rem;
}
.sec-title .it {
  font-style: italic;
  color: var(--teal);
}
.sec-sub {
  font-size: 0.95rem;
  color: var(--mid-gray);
  line-height: 1.72;
  max-width: 520px;
}
.tc {
  text-align: center;
}
.tc .sec-label {
  justify-content: center;
}
.tc .sec-label::before {
  display: none;
}
.tc .sec-sub {
  margin: 0 auto;
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
}
.reveal.vis {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-card {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-card-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 70%,
      rgba(0, 174, 172, 0.25) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 20%,
      rgba(245, 166, 35, 0.18) 0%,
      transparent 50%
    );
}
.about-card-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 2px 2px,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 0
  );
  background-size: 28px 28px;
}
.about-card-inner {
  position: relative;
  z-index: 2;
  padding: 2.25rem;
  text-align: center;
  width: 100%;
}
.about-logo-box {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  margin-bottom: 1.5rem;
}
.about-logo-box img {
  max-height: 52px;
  width: auto;
  margin: 0 auto;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.about-stat-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  text-align: center;
  backdrop-filter: blur(8px);
}
.asn {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}
.asn span {
  color: var(--teal-light);
}
.asl {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.15rem;
}
.about-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 210px;
}
.ab-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: grid;
  place-items: center;
  color: white;
}
.ab-text strong {
  font-size: 0.845rem;
  color: var(--navy-dark);
  display: block;
  font-family: var(--font-heading);
}
.ab-text p {
  font-size: 0.7rem;
  color: var(--mid-gray);
}
.about-badge2 {
  position: absolute;
  top: 2rem;
  left: -1.25rem;
  background: var(--navy);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-heading);
}
.about-badge2 svg {
  color: var(--gold);
  flex-shrink: 0;
}

.about-content {
}
.about-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 1.75rem 0;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.af-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--light-gray);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--navy);
  transition: all var(--mid);
}
.about-feat:hover .af-icon {
  background: var(--navy);
  color: white;
}
.af-t {
  font-family: var(--font-heading);
  font-size: 0.845rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.15rem;
}
.af-d {
  font-size: 0.78rem;
  color: var(--mid-gray);
  line-height: 1.5;
}
.about-cta-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.btn-solid {
  background: var(--navy);
  color: var(--white);
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  font-family: var(--font-heading);
  box-shadow: 0 4px 16px rgba(46, 49, 146, 0.28);
  transition: all var(--mid);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.btn-solid:hover {
  background: var(--teal);
  box-shadow: 0 6px 20px rgba(0, 174, 172, 0.32);
  transform: translateY(-1px);
}
.phone-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.855rem;
  font-weight: 600;
  color: var(--navy);
}
.phone-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 174, 172, 0.1);
  display: grid;
  place-items: center;
  color: var(--teal);
  flex-shrink: 0;
}
.phone-label {
  font-size: 0.7rem;
  color: var(--mid-gray);
  font-weight: 400;
  display: block;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--off-white);
}
.services-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
  transition: all var(--mid) var(--ease);
  cursor: pointer;
}
.svc-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--mid) var(--ease);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.svc-card:hover::after {
  transform: scaleX(1);
}
.svc-n {
  font-family: var(--font-body);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--light-gray);
  line-height: 1;
  margin-bottom: -0.25rem;
  transition: color var(--mid);
}
.svc-card:hover .svc-n {
  color: rgba(0, 174, 172, 0.12);
}
.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  transition: all var(--mid);
}
.ni {
  background: rgba(46, 49, 146, 0.1);
  color: var(--navy);
}
.ti {
  background: rgba(0, 174, 172, 0.1);
  color: var(--teal);
}
.gi {
  background: rgba(245, 166, 35, 0.12);
  color: var(--gold-dark);
}
.svc-card:hover .svc-icon.ni {
  background: var(--navy);
  color: white;
}
.svc-card:hover .svc-icon.ti {
  background: var(--teal);
  color: white;
}
.svc-card:hover .svc-icon.gi {
  background: var(--gold);
  color: white;
}
.svc-t {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}
.svc-d {
  font-size: 0.845rem;
  color: var(--mid-gray);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}
.svc-lnk {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition:
    gap var(--fast),
    color var(--fast);
}
.svc-card:hover .svc-lnk {
  gap: 0.6rem;
  color: var(--teal);
}

/* ============================================================
   STATS
   ============================================================ */
.stats-s {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  position: relative;
  overflow: hidden;
}
.stats-s::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 2px 2px,
    rgba(255, 255, 255, 0.034) 1px,
    transparent 0
  );
  background-size: 36px 36px;
}
.stats-s::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -30%;
  width: 60%;
  height: 160%;
  background: radial-gradient(
    ellipse,
    rgba(0, 174, 172, 0.08) 0%,
    transparent 60%
  );
}
.stats-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: center;
}
.stats-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.stats-lbl::before {
  content: "";
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--teal-light);
}
.stats-ctitle {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.22;
  margin-bottom: 1.1rem;
}
.stats-ctitle em {
  font-style: italic;
  color: var(--teal-light);
}
.stats-cp {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}
.btn-teal {
  background: var(--teal);
  color: white;
  padding: 0.78rem 1.65rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.855rem;
  font-family: var(--font-heading);
  box-shadow: 0 4px 16px rgba(0, 174, 172, 0.38);
  transition: all var(--mid);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.btn-teal:hover {
  background: white;
  color: var(--teal-dark);
  transform: translateY(-1px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-b {
  background: rgba(255, 255, 255, 0.04);
  padding: 2rem;
  text-align: center;
  transition: background var(--mid);
}
.stat-b:hover {
  background: rgba(0, 174, 172, 0.1);
}
.st-n {
  font-family: var(--font-body);
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
}
.st-n span {
  color: var(--teal-light);
}
.st-l {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
}
.st-div {
  width: 26px;
  height: 2px;
  background: var(--teal);
  margin: 0.4rem auto 0;
  border-radius: 2px;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  background: var(--white);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: var(--space-xl);
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 27px;
  left: calc(12.5% + 18px);
  right: calc(12.5% + 18px);
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--navy), var(--teal));
  opacity: 0.18;
}
.proc-step {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius-lg);
  transition: all var(--mid);
}
.proc-step:hover {
  background: var(--off-white);
  transform: translateY(-4px);
}
.proc-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1.35rem;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 800;
  position: relative;
  z-index: 2;
  transition: all var(--mid);
}
.proc-step:nth-child(1) .proc-num {
  background: rgba(46, 49, 146, 0.1);
  color: var(--navy);
  border: 1.5px solid rgba(46, 49, 146, 0.2);
}
.proc-step:nth-child(2) .proc-num {
  background: rgba(0, 174, 172, 0.1);
  color: var(--teal);
  border: 1.5px solid rgba(0, 174, 172, 0.2);
}
.proc-step:nth-child(3) .proc-num {
  background: rgba(245, 166, 35, 0.12);
  color: var(--gold-dark);
  border: 1.5px solid rgba(245, 166, 35, 0.25);
}
.proc-step:nth-child(4) .proc-num {
  background: rgba(232, 93, 4, 0.1);
  color: var(--orange);
  border: 1.5px solid rgba(232, 93, 4, 0.2);
}
.proc-step:hover .proc-num {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.proc-step h4 {
  font-family: var(--font-body);
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}
.proc-step p {
  font-size: 0.82rem;
  color: var(--mid-gray);
  line-height: 1.62;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries {
  background: var(--off-white);
}
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: var(--space-xl);
}
.ind-card {
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--light-gray);
  transition: all var(--mid);
  cursor: pointer;
}
.ind-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(0, 174, 172, 0.2);
}
.ind-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  background: var(--light-gray);
  display: grid;
  place-items: center;
  color: var(--navy);
  transition: all var(--mid);
}
.ind-card:hover .ind-icon {
  background: var(--navy);
  color: white;
}
.ind-t {
  font-family: var(--font-body);
  font-size: 0.955rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.35rem;
}
.ind-d {
  font-size: 0.8rem;
  color: var(--mid-gray);
  line-height: 1.55;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  background: linear-gradient(
    160deg,
    var(--navy-dark) 0%,
    var(--navy) 50%,
    #1e2070 100%
  );
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 2px 2px,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 0
  );
  background-size: 36px 36px;
}
.why-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-content .sec-label {
  color: var(--teal-light);
}
.why-content .sec-label::before {
  background: var(--teal-light);
}
.why-content .sec-title {
  color: white;
}
.why-content .sec-title .it {
  color: var(--teal-light);
}
.why-content .sec-sub {
  color: rgba(255, 255, 255, 0.62);
}
.why-list {
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all var(--mid);
  cursor: pointer;
}
.why-item:hover {
  background: rgba(0, 174, 172, 0.12);
  border-color: rgba(0, 174, 172, 0.25);
  transform: translateX(4px);
}
.wi-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  background: rgba(0, 174, 172, 0.15);
  color: var(--teal-light);
  display: grid;
  place-items: center;
  transition: all var(--mid);
}
.why-item:hover .wi-icon {
  background: var(--teal);
  color: white;
}
.wi-t {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.2rem;
}
.wi-d {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.55;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.wy-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  transition: all var(--mid);
}
.wy-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}
.wy-card.accent {
  background: linear-gradient(
    135deg,
    rgba(0, 174, 172, 0.2),
    rgba(0, 174, 172, 0.07)
  );
  border-color: rgba(0, 174, 172, 0.3);
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.wyc-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
}
.wyc-icon.teal {
  background: rgba(0, 174, 172, 0.22);
  color: var(--teal-light);
}
.wyc-icon.gold {
  background: rgba(245, 166, 35, 0.2);
  color: var(--gold-light);
}
.wyc-icon.white {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}
.wy-card.accent .wyc-icon {
  margin-bottom: 0;
  width: 44px;
  height: 44px;
}
.wy-card h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.35rem;
}
.wy-card p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.6;
}
.wy-num {
  font-family: var(--font-body);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--teal-light);
  line-height: 1;
}
.wy-card.accent p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}
.wy-card.wide {
  grid-column: span 2;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--white);
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: var(--space-xl);
}
.test-card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  transition: all var(--mid);
}
.test-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  background: white;
}
.stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.tq {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--dark-gray);
  line-height: 1.78;
  margin-bottom: 1.35rem;
}
.tq::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--teal);
  line-height: 0.5;
  display: inline-block;
  margin-right: 0.15rem;
  vertical-align: -0.5rem;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.t-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: white;
}
.av-teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}
.av-navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
}
.av-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}
.t-name {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy-dark);
  display: block;
}
.t-role {
  font-size: 0.75rem;
  color: var(--mid-gray);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(
    135deg,
    var(--teal-dark),
    var(--teal),
    var(--navy-light)
  );
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) 0;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 2px 2px,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 0
  );
  background-size: 32px 32px;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-h {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 0.4rem;
}
.cta-p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}
.cta-acts {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.btn-white {
  background: white;
  color: var(--teal-dark);
  padding: 0.82rem 1.9rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  font-family: var(--font-heading);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
  transition: all var(--mid);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.btn-ghost-white {
  background: transparent;
  color: white;
  padding: 0.82rem 1.9rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  transition: all var(--mid);
}
.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--off-white);
}
.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: var(--space-xl);
}
.faq-item {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray);
  overflow: hidden;
  transition: box-shadow var(--mid);
}
.faq-item:hover {
  box-shadow: var(--shadow-md);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.35rem;
  cursor: pointer;
  gap: 0.9rem;
}
.faq-q h4 {
  font-family: var(--font-heading);
  font-size: 0.895rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.45;
}
.faq-tog {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--light-gray);
  color: var(--navy);
  display: grid;
  place-items: center;
  transition: all var(--mid);
}
.faq-item.open .faq-tog {
  background: var(--teal);
  color: white;
  transform: rotate(45deg);
}
.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--slow) var(--ease);
}
.faq-item.open .faq-ans {
  max-height: 200px;
}
.faq-ans-in {
  padding: 0 1.35rem 1.1rem;
  font-size: 0.845rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-s {
  background: white;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.ci-cards {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 1.75rem 0;
}
.ci-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem;
  border-radius: var(--radius-md);
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  transition: all var(--mid);
}
.ci-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.ci-ico {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: white;
}
.ci-sp {
  font-size: 0.72rem;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.15rem;
}
.ci-v {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy-dark);
}
.contact-form-box {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  border: 1px solid var(--light-gray);
}
.cf-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-dark);
  margin-bottom: 0.35rem;
}
.cf-sub {
  font-size: 0.845rem;
  color: var(--mid-gray);
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}
.fg label {
  font-size: 0.76rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--navy-dark);
  letter-spacing: 0.01em;
}
.fg input,
.fg select,
.fg textarea {
  background: white;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  font-size: 0.845rem;
  color: var(--dark-gray);
  font-family: var(--font-body);
  transition:
    border-color var(--fast),
    box-shadow var(--fast);
  outline: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(46, 49, 146, 0.08);
}
.fg textarea {
  resize: vertical;
  min-height: 100px;
}
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: white;
  padding: 0.95rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(46, 49, 146, 0.28);
  transition: all var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-submit:hover {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 6px 22px rgba(0, 174, 172, 0.32);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--near-black);
  color: rgba(255, 255, 255, 0.65);
  padding: var(--space-2xl) 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--navy),
    var(--teal),
    var(--gold),
    var(--teal),
    var(--navy)
  );
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: var(--space-xl);
}
.footer-logo-box {
  background: white;
  border-radius: var(--radius-md);
  padding: 0.7rem 1rem;
  display: inline-block;
  margin-bottom: 1.1rem;
}
.footer-logo-box img {
  max-height: 40px;
  width: auto;
}
.footer-tag {
  font-size: 0.845rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.35rem;
  max-width: 270px;
}
.footer-socials {
  display: flex;
  gap: 0.5rem;
}
.fsoc {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--mid);
}
.fsoc:hover {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 1.1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--fast);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.footer-links a:hover {
  color: var(--teal-light);
  padding-left: 4px;
}
.nl-form {
  display: flex;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.nl-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  padding: 0.7rem 0.9rem;
  font-size: 0.8rem;
  color: white;
  font-family: var(--font-body);
  outline: none;
}
.nl-form input::placeholder {
  color: rgba(255, 255, 255, 0.32);
}
.nl-form button {
  background: var(--teal);
  color: white;
  padding: 0.7rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-heading);
  border: none;
  cursor: pointer;
  transition: background var(--fast);
  white-space: nowrap;
}
.nl-form button:hover {
  background: var(--teal-light);
}
.fc-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.fc-item {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.fc-item svg {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.35rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.775rem;
  color: rgba(255, 255, 255, 0.38);
}
.footer-bottom p a {
  color: var(--teal-light);
}
.footer-bl {
  display: flex;
  gap: 1.35rem;
}
.footer-bl a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.38);
  transition: color var(--fast);
}
.footer-bl a:hover {
  color: var(--teal-light);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links {
    gap: 0.05rem;
  }
  .nav-link {
    padding: 0.45rem 0.6rem;
    font-size: 0.825rem;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ind-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-visual {
    max-width: 480px;
    margin: 0 auto;
  }
  .stats-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid::before {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .test-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-slide-inner {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  /* Hide desktop nav, show hamburger */
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  /* Topbar: single-column on small screens */
  .topbar-inner {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
  .topbar-left,
  .topbar-right {
    justify-content: center;
  }

  /* Hero: single column */
  .hero-slide-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .slide-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .slide-actions {
    justify-content: center;
  }
  .slide-stats {
    justify-content: center;
  }
  .slide-visual {
    display: none;
  }
  .hero-arrows {
    display: none;
  }

  /* Sections */
  .services-grid {
    grid-template-columns: 1fr;
  }
  .ind-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .wy-card.accent,
  .wy-card.wide {
    grid-column: span 1;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .test-grid {
    grid-template-columns: 1fr;
  }
  .about-badge,
  .about-badge2 {
    display: none;
  }
  .services-hd {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .slide-stats {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .stat-divider {
    display: none;
  }
  .topbar-left {
    flex-direction: column;
    gap: 0.35rem;
  }
}

.about-visual {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
}

.about-full-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.about-visual > *:not(.about-full-img) {
  position: relative;
  z-index: 2;
}


@media(max-width:600px){
  .topbar{
    display: none !important;
  }
}

.floating-contact{
    position:fixed;
    right:20px;
    bottom:25px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:999;
}

.float-btn{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 16px;
    border-radius:40px;
    font-family:var(--font-body);
    font-size:14px;
    font-weight:600;
    color:var(--white);
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    transition:all .3s ease;
}

.float-btn .icon{
    display:flex;
    align-items:center;
    justify-content:center;
}

.call-btn{
    background:var(--navy);
}

.call-btn:hover{
    background:var(--navy-dark);
    transform:translateY(-3px);
}

.whatsapp-btn{
    background:var(--teal);
}

.whatsapp-btn:hover{
    background:var(--teal-dark);
    transform:translateY(-3px);
}

/* mobile */
@media(max-width:600px){

.float-btn span:last-child{
    display:none;
}

.float-btn{
    width:50px;
    height:50px;
    justify-content:center;
    border-radius:50%;
}

}