﻿/* ================================================================
   ESKILL LABS — Premium Design System v2.0
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ----------------------------------------------------------------
   TOKENS
   ---------------------------------------------------------------- */
:root {
  /* Brand */
  --blue-900: #061d3a;
  --blue-800: #0a2a52;
  --blue-700: #0F3D73;
  --blue-600: #155292;
  --blue-500: #1c5ba8;
  --blue-400: #2d79d6;
  --blue-100: #dbeafe;
  --orange-600: #d86f15;
  --orange-500: #F48120;
  --orange-400: #f79640;
  --orange-100: #fff0e0;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;

  /* Gradients */
  --grad-blue: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-500) 100%);
  --grad-orange: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
  --grad-dark: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%);
  --grad-hero: linear-gradient(160deg, #061d3a 0%, #0e3563 40%, #0a2a52 100%);
  --grad-mesh: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(244, 129, 32, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(28, 91, 168, 0.25) 0%, transparent 60%);

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
  --shadow-sm: 0 4px 12px rgba(15, 61, 115, .08);
  --shadow-md: 0 8px 28px rgba(15, 61, 115, .12);
  --shadow-lg: 0 20px 60px rgba(15, 61, 115, .16);
  --shadow-xl: 0 32px 80px rgba(15, 61, 115, .20);
  --shadow-glow-orange: 0 8px 40px rgba(244, 129, 32, .40);
  --shadow-glow-blue: 0 8px 40px rgba(15, 61, 115, .35);

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-full: 9999px;

  /* Motion */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.4, 0, .2, 1);
  --dur-fast: 150ms;
  --dur-base: 280ms;
  --dur-slow: 500ms;

  /* Layout */
  --container: 1200px;
  --nav-h: 80px;
}

/* ----------------------------------------------------------------
   RESET & BASE
   ---------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

input,
select,
textarea {
  font-family: inherit;
}

/* ----------------------------------------------------------------
   LAYOUT UTILITIES
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.section {
  padding-block: var(--space-24);
}

.section-sm {
  padding-block: var(--space-16);
}

.section-lg {
  padding-block: 120px;
}

.section-dark {
  background: var(--blue-900);
  color: var(--white);
}

.section-tinted {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-16);
}

/* ----------------------------------------------------------------
   TYPOGRAPHY
   ---------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: var(--space-3);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--orange-500);
  border-radius: 2px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--gray-900);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: 1.35rem;
}

h4 {
  font-size: 1.1rem;
}

.display-xl {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-family: 'Poppins', sans-serif;
}

.text-gradient {
  background: linear-gradient(90deg, #F48120, #ffb870);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-white {
  color: var(--white);
}

.text-muted {
  color: var(--gray-500);
}

.lead {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.75;
}

.lead-lg {
  font-size: 1.2rem;
}

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--grad-orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(244, 129, 32, .35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-orange);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border-color: rgba(255, 255, 255, .25);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .5);
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue-700);
  border-color: var(--blue-200, #bfdbfe);
}

.btn-outline-blue:hover {
  background: var(--blue-700);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 11px 20px;
  font-size: 13px;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
  border-radius: var(--r-lg);
}

.btn-icon {
  width: 18px;
  height: 18px;
  transition: transform var(--dur-base) var(--ease-out);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* ----------------------------------------------------------------
   NAVBAR
   ---------------------------------------------------------------- */
.navbar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--dur-slow) var(--ease-in-out),
    border-color var(--dur-slow) var(--ease-in-out),
    box-shadow var(--dur-slow) var(--ease-in-out);
  /* Start transparent over dark hero */
  background: transparent;
  border-bottom: 1px solid transparent;
}

.navbar.is-scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-6);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

/* Logo */
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  text-decoration: none;
}


.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: var(--grad-orange);
  display: grid;
  place-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(244, 129, 32, .4);
}

.logo-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.logo-tagline {
  font-size: 9px;
  font-weight: 600;
  opacity: .7;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
  color: inherit;
  font-family: 'Poppins', sans-serif;
}

.logo-img {
  height: 130px;
  width: 150px;
  display: block;
  object-fit: contain;
  transition: opacity 0.15s ease;
}

.footer-brand .logo-img {
  height: 34px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  border-radius: var(--r-sm);
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange-500);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--dur-base) var(--ease-out);
  transform-origin: left;
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.navbar.is-scrolled .nav-link {
  color: var(--gray-600);
}

.navbar.is-scrolled .nav-link:hover {
  color: var(--blue-700);
}

/* Dropdown */
.nav-item {
  position: relative;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-base) var(--ease-out);
}

.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--r-sm);
  transition: all var(--dur-fast);
}

.nav-dropdown a:hover {
  background: var(--gray-50);
  color: var(--blue-700);
  padding-left: 18px;
}

.nav-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Navbar CTA — outline style to avoid competing with hero primary CTA */
.nav-cta .btn-primary {
  background: transparent !important;
  color: var(--orange-500) !important;
  border: 1.5px solid var(--orange-500) !important;
  box-shadow: none !important;
  font-size: 13px;
  padding: 9px 20px;
}

.nav-cta .btn-primary:hover {
  background: var(--orange-500) !important;
  color: var(--white) !important;
}

/* Keep navbar CTA outline white when navbar is on dark hero (not scrolled) */
.navbar:not(.is-scrolled) .nav-cta .btn-primary {
  color: var(--orange-400) !important;
  border-color: var(--orange-400) !important;
}

.navbar:not(.is-scrolled) .nav-cta .btn-primary:hover {
  background: var(--orange-500) !important;
  color: var(--white) !important;
  border-color: var(--orange-500) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: var(--space-2);
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease-out);
}

.navbar.is-scrolled .hamburger span {
  background: var(--blue-800);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Animated mesh background */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  animation: orb-drift 18s ease-in-out infinite;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(244, 129, 32, .6);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(28, 91, 168, .7);
  bottom: -200px;
  left: -150px;
  animation-delay: -6s;
}

.hero-orb-3 {
  width: 350px;
  height: 350px;
  background: rgba(244, 129, 32, .35);
  top: 40%;
  left: 40%;
  animation-delay: -12s;
}

@keyframes orb-drift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -40px) scale(1.08);
  }

  66% {
    transform: translate(-20px, 30px) scale(.95);
  }
}

/* Grid overlay */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-6);
  padding-block: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Hero content */
.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 16px;
  background: rgba(244, 129, 32, .15);
  border: 1px solid rgba(244, 129, 32, .3);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  color: #ffa94d;
  margin-bottom: var(--space-6);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--orange-500);
  border-radius: 50%;
  animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(1.4)
  }
}


/* Badge row — both pills side by side */
.hero-badges-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* AI-powered pill tag in hero */
.hero-ai-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  background: linear-gradient(90deg, rgba(99,102,241,0.22), rgba(168,85,247,0.18));
  border: 1px solid rgba(168,85,247,0.45);
  border-radius: var(--r-full);
  font-size: 10.5px;
  font-weight: 700;
  color: #c4b5fd;
  letter-spacing: 0.4px;
  margin-bottom: 0;
}
.ai-pill-dot {
  width: 6px;
  height: 6px;
  background: #a78bfa;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(167,139,250,0.8);
  animation: blink 1.8s ease-in-out infinite;
}
.hero-headline {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-headline .accent {
  color: var(--orange-500);
}

.hero-primary-btn {
  box-shadow: 0 4px 20px rgba(244, 129, 32, 0.45), 0 2px 8px rgba(244, 129, 32, 0.25);
}

/* Subtext */
.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 0 20px 0;
}

/* Trust micro badge pill — sits beside AI pill */
.hero-trust-micro {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(244, 129, 32, 0.1);
  border: 1px solid rgba(244, 129, 32, 0.32);
  border-radius: 100px;
  padding: 4px 11px;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}
.htm-check {
  color: #4ade80;
  font-size: 13px;
}

/* Explore CTA block — explore text above, CTA below */
.hero-explore-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

/* Slightly smaller primary CTA next to explore button */
.hero-cta-sm {
  padding: 13px 22px !important;
  font-size: 14px !important;
}

/* Gradient "Explore Our" text link above CTA */
.hero-explore-link {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.hero-explore-link:hover {
  opacity: 0.85;
}

/* "Explore Our →" part — cool indigo-violet gradient */
.explore-prefix {
  background: linear-gradient(90deg, #818cf8, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Typing CTA button (legacy, kept for JS hook) */
.cta-type-btn {
  white-space: nowrap;
  min-width: 260px;
  border-color: rgba(255, 255, 255, .18) !important;
}

.cta-type-word {
  display: inline-block;
  font-weight: 800;
  min-width: 130px;
  background: linear-gradient(90deg, #f48120, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  align-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-full);
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  backdrop-filter: blur(4px);
  white-space: nowrap;
  height: 32px;
}

.trust-badge svg,
.trust-badge .tb-icon {
  font-size: 10px;
  color: var(--orange-400);
  flex-shrink: 0;
}

/* Typing cursor */
.type-cursor {
  display: inline-block;
  color: var(--orange-400);
  font-weight: 300;
  animation: blink-cursor 0.75s step-end infinite;
}
@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Hero stats row — full-width strip below text + image */
.hero-stats-row {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: -16px;
  padding: 24px var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.hsr-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
}

.hsr-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hsr-plus {
  color: var(--orange-400);
}

.hsr-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.hsr-div {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, .15);
  flex-shrink: 0;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card-main {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  border-radius: var(--r-2xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, .1) 0%, rgba(255, 255, 255, .04) 100%);
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, .05) inset;
}

.hero-card-main::before {
  display: none;
}

.hero-card-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(4, 18, 40, 0.96) 0%, rgba(4, 18, 40, 0.65) 45%, transparent 100%);
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
}

/* Real photo inside why-visual */
.why-visual>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  z-index: 0;
}

/* Real photo support inside hero card */
.hero-card-main>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 0;
  opacity: 1;
  border-radius: inherit;
}

.hero-card-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Poppins', sans-serif;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255, 255, 255, .04);
  letter-spacing: 8px;
  user-select: none;
  white-space: nowrap;
}

.hero-lab-pills {
  position: absolute;
  top: var(--space-6);
  left: var(--space-6);
  right: var(--space-6);
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  z-index: 1;
}

.hero-pill {
  padding: 6px 12px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .5px;
}

.hero-pill.active {
  background: var(--orange-500);
  border-color: var(--orange-500);
}

.hero-card-content {
  position: relative;
  z-index: 2;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--orange-500);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
}

.hero-card-content h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.2;
}

.hero-card-content p {
  color: rgba(255, 255, 255, .7);
  font-size: .78rem;
  margin: 0;
  line-height: 1.4;
}

/* Floating metric cards */
.metric-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 8px 12px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.metric-card.mc-1 {
  top: 12px;
  left: -8px;
  animation: float-a 5s ease-in-out infinite;
}

.metric-card.mc-2 {
  bottom: 16px;
  right: -8px;
  animation: float-b 5s ease-in-out infinite;
}

@keyframes float-a {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes float-b {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(7px)
  }
}

.mc-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.72rem;
  color: var(--white);
  flex-shrink: 0;
}

.mc-icon-orange {
  background: var(--grad-orange);
}

.mc-icon-blue {
  background: var(--grad-blue);
}

.mc-value {
  font-size: 0.88rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: var(--blue-800);
  line-height: 1;
}

.mc-label {
  font-size: 9px;
  color: var(--gray-500);
  font-weight: 500;
}

/* ================================================================
   TRUST STRIP
   ================================================================ */
.trust-strip {
  padding-block: var(--space-8);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
}

/* When trust strip is on white bg */
.trust-strip.light {
  border-color: var(--gray-200);
  background: var(--gray-50);
  padding-block: var(--space-12);
}

.trust-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: var(--space-8);
}

.trust-strip.light .trust-label {
  color: var(--gray-400);
}

.scroll-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.scroll-track {
  display: flex;
  gap: var(--space-6);
  width: max-content;
  animation: track-scroll 40s linear infinite;
}

@keyframes track-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.scroll-track:hover {
  animation-play-state: paused;
}

.brand-chip {
  flex-shrink: 0;
  height: 54px;
  min-width: 170px;
  padding-inline: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .5px;
  transition: all var(--dur-base);
}

.brand-chip:hover {
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .9);
}

.trust-strip.light .brand-chip {
  background: var(--white);
  border-color: var(--gray-200);
  color: var(--gray-400);
  box-shadow: var(--shadow-xs);
}

.trust-strip.light .brand-chip:hover {
  border-color: var(--blue-500);
  color: var(--blue-700);
  box-shadow: var(--shadow-sm);
}

/* ================================================================
   STATS
   ================================================================ */
.stats-section {
  background: var(--grad-dark);
  padding-block: var(--space-20);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(244, 129, 32, .12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 90% 50%, rgba(28, 91, 168, .25) 0%, transparent 60%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}

.stat-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: all var(--dur-base) var(--ease-out);
}

.stat-card:hover {
  background: rgba(255, 255, 255, .07);
  transform: translateY(-4px);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: var(--space-4);
  display: block;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-2);
  letter-spacing: -0.03em;
}

.stat-number .stat-suffix {
  color: var(--orange-500);
}

.stat-label {
  font-size: .95rem;
  color: rgba(255, 255, 255, .65);
  font-weight: 500;
}

/* ================================================================
   LABS SECTION — Premium Cards
   ================================================================ */
.labs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.lab-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-slow) var(--ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
}

.lab-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.lab-card-visual {
  height: 240px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lab-card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .5) 100%);
  z-index: 1;
}

.lcv-ev {
  background: linear-gradient(145deg, #0a2a52, #1c5ba8);
}

.lcv-solar {
  background: linear-gradient(145deg, #c45d0a, #F48120);
}

.lcv-drone {
  background: linear-gradient(145deg, #111827, #1c3f70);
}

.lcv-golf {
  background: linear-gradient(145deg, #134e1b, #1f7a2d);
}

.lcv-auto {
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
}

.lcv-3dp {
  background: linear-gradient(145deg, #3b1f6e, #6c35c9);
}

.lcv-cnc {
  background: linear-gradient(145deg, #5c2d00, #a64d00);
}

.lcv-cbse {
  background: linear-gradient(145deg, #003b5c, #0077b6);
}

/* 4-column labs grid for 8 labs */
.labs-grid-8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.labs-grid-8 .lab-card-visual {
  height: 200px;
}

.labs-grid-8 .lab-visual-shape {
  width: 130px;
  height: 130px;
}

.labs-grid-8 .lab-visual-inner {
  width: 90px;
  height: 90px;
  font-size: 1.1rem;
}

.labs-grid-8 .lab-card-body {
  padding: var(--space-5) var(--space-5) var(--space-6);
}

.labs-grid-8 .lab-card-body h3 {
  font-size: 1.1rem;
}

/* Animated inner shape */
.lab-visual-shape {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .12);
  display: grid;
  place-items: center;
  transition: transform var(--dur-slow) var(--ease-out);
}

.lab-card:hover .lab-visual-shape {
  transform: scale(1.12) rotate(8deg);
}

.lab-visual-inner {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: grid;
  place-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: rgba(255, 255, 255, .95);
  letter-spacing: 2px;
  border: 1px solid rgba(255, 255, 255, .2);
}

.lcv-solar .lab-visual-inner {
  color: rgba(255, 255, 255, .98);
}

/* Real photo inside lab card visual */
.lab-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--dur-slow) var(--ease-out);
}
.lab-card:hover .lab-card-img {
  transform: scale(1.06);
}

.lab-card-tag {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  z-index: 2;
  padding: 5px 12px;
  background: rgba(255, 255, 255, .9);
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-800);
  letter-spacing: .5px;
  text-transform: uppercase;
}

.lcv-solar .lab-card-tag {
  color: var(--orange-600);
}

.lab-card-body {
  padding: var(--space-6) var(--space-6) var(--space-8);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lab-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-3);
  color: var(--blue-800);
}

.lab-card-body p {
  color: var(--gray-600);
  font-size: .93rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--space-5);
}

.lab-card-chips {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}

.chip {
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-600);
}

.lab-card-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-700);
  margin-top: auto;
  align-self: flex-start;
  transition: all var(--dur-base) var(--ease-out);
}

.lab-card-cta .arrow {
  transition: transform var(--dur-base) var(--ease-out);
}

.lab-card:hover .lab-card-cta {
  color: var(--orange-500);
}

.lab-card:hover .lab-card-cta .arrow {
  transform: translateX(5px);
}

/* ================================================================
   WHY ESKILL — SPLIT
   ================================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--r-2xl);
  background: var(--grad-dark);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why-visual-inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.why-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 30%, rgba(244, 129, 32, .3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 70%, rgba(28, 91, 168, .4) 0%, transparent 60%);
}

.why-visual-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-8);
  background: linear-gradient(0deg, rgba(6, 29, 58, .95) 0%, transparent 100%);
  color: var(--white);
  z-index: 1;
}

.why-visual-text h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}

.why-visual-text p {
  color: rgba(255, 255, 255, .75);
  font-size: .92rem;
  margin: 0;
}

.why-visual-badges {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  z-index: 1;
}

.why-badge {
  padding: 8px 14px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--r-md);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  text-align: center;
  backdrop-filter: blur(6px);
}

.why-content {}

.why-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.why-item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-5);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  transition: all var(--dur-base) var(--ease-out);
  cursor: default;
}

.why-item:hover {
  border-color: var(--orange-500);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.why-item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--orange-100);
  color: var(--orange-500);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 800;
  transition: all var(--dur-base);
}

.why-item:hover .why-item-icon {
  background: var(--orange-500);
  color: var(--white);
}

.why-item-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-800);
  margin-bottom: 4px;
}

.why-item-desc {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.55;
  margin: 0;
}

/* ================================================================
   ABOUT PHOTO STRIP
   ================================================================ */
.about-photo-strip {
  padding: var(--space-16) 0;
  background: var(--white);
}

.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-strip-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}

.about-strip-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-strip-content {}

.about-strip-content h3 {
  font-size: 1.8rem;
  color: var(--blue-800);
  margin-bottom: var(--space-4);
  line-height: 1.25;
}

.about-strip-content p {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.cert-badges {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.cert-badge {
  padding: 6px 14px;
  background: var(--blue-100);
  color: var(--blue-700);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ================================================================
   HOW IT WORKS — HORIZONTAL TIMELINE
   ================================================================ */
.how-it-works {
  background: var(--gray-50);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: var(--space-12);
}

/* Connecting line */
.steps-row::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(10% + 24px);
  right: calc(10% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange-500), var(--blue-500));
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-inline: var(--space-4);
  position: relative;
  z-index: 1;
}

.step-dot {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gray-200);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-5);
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step-dot-inner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-blue);
  display: grid;
  place-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  transition: all var(--dur-base);
}

.step-item:hover .step-dot {
  border-color: var(--orange-500);
  transform: scale(1.08);
  box-shadow: var(--shadow-glow-orange);
}

.step-item:hover .step-dot-inner {
  background: var(--grad-orange);
}

.step-item:nth-child(1) .step-dot-inner,
.step-item:nth-child(3) .step-dot-inner,
.step-item:nth-child(5) .step-dot-inner {
  background: var(--grad-orange);
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-800);
  margin-bottom: var(--space-2);
}

.step-desc {
  font-size: .85rem;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ================================================================
   FEATURES GRID
   ================================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.feature-card {
  padding: var(--space-8) var(--space-6);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  margin-bottom: var(--space-5);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.feature-card:nth-child(odd) .feature-icon {
  background: rgba(15, 61, 115, .1);
  color: var(--blue-700);
}

.feature-card:nth-child(even) .feature-icon {
  background: var(--orange-100);
  color: var(--orange-600);
}

.feature-card h4 {
  font-size: 1.05rem;
  margin-bottom: var(--space-3);
  color: var(--blue-800);
}

.feature-card p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-section {
  background: var(--blue-900);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(244, 129, 32, .1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 50%, rgba(28, 91, 168, .25) 0%, transparent 60%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  position: relative;
}

.testi-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-xl);
  padding: var(--space-8) var(--space-6);
  transition: all var(--dur-base) var(--ease-out);
}

.testi-card:hover {
  background: rgba(255, 255, 255, .09);
  transform: translateY(-6px);
  border-color: rgba(244, 129, 32, .4);
}

.testi-stars {
  color: var(--orange-400);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-4);
}

.testi-quote {
  font-size: .97rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.75;
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testi-quote::before {
  content: '"';
}

.testi-quote::after {
  content: '"';
}

.testi-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.av-1 {
  background: var(--grad-orange);
}

.av-2 {
  background: linear-gradient(135deg, #1c5ba8, #0F3D73);
}

.av-3 {
  background: linear-gradient(135deg, #155292, #F48120);
}

.testi-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
}

.testi-role {
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--grad-blue);
  padding-block: var(--space-24);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(244, 129, 32, .25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 15% 30%, rgba(255, 255, 255, .08) 0%, transparent 60%);
}

.cta-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 740px;
  margin-inline: auto;
}

.cta-inner h2 {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.cta-inner p {
  color: rgba(255, 255, 255, .8);
  font-size: 1.1rem;
  margin-bottom: var(--space-8);
}

.cta-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: var(--space-5);
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--blue-900);
  color: rgba(255, 255, 255, .7);
  padding-top: var(--space-20);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand {}

.footer-brand .logo {
  margin-bottom: var(--space-5);
}

.footer-brand p {
  font-size: .9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .6);
  max-width: 320px;
  margin-bottom: 14px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-6);
}

.f-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 100px;
  padding: 3px 10px;
}

/* Footer CTA button */
.footer-cta-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 20px;
  background: linear-gradient(90deg, #f48120, #f97316);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: opacity 0.2s;
}
.footer-cta-btn:hover {
  opacity: 0.88;
}

/* Emoji label in contact list */
.fci-label {
  font-size: 15px;
  flex-shrink: 0;
}

.social-row {
  display: flex;
  gap: var(--space-2);
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  font-weight: 700;
  transition: all var(--dur-base);
}

.social-btn:hover {
  background: var(--orange-500);
  color: var(--white);
  border-color: var(--orange-500);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-5);
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a {
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
  transition: all var(--dur-fast);
}

.footer-links a:hover {
  color: var(--orange-400);
  padding-left: 4px;
}

.footer-contact-list li {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: .88rem;
}

.fci-text a {
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
}
.fci-text a:hover {
  color: var(--orange-400);
}

.fci-text {
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
}

.footer-bottom {
  padding-block: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
  color: rgba(255, 255, 255, .4);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-bottom a {
  color: var(--orange-400);
}

/* ================================================================
   INNER PAGES — Page Hero
   ================================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 70px) 0 70px;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-mesh);
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-5);
}

.page-hero .lead {
  color: rgba(255, 255, 255, .8);
  margin-bottom: var(--space-8);
}

.breadcrumb {
  display: flex;
  gap: var(--space-2);
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  font-weight: 500;
  margin-bottom: var(--space-5);
}

.breadcrumb a {
  color: rgba(255, 255, 255, .8);
}

.breadcrumb a:hover {
  color: var(--orange-400);
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, .3);
}

/* ================================================================
   INNER PAGE COMPONENTS
   ================================================================ */
/* Feature grid (lab pages) */
.fg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

@media(max-width:1024px) {
  .fg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fg-card {
  padding: var(--space-6) var(--space-5);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  transition: all var(--dur-base) var(--ease-out);
}

.fg-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange-500);
  box-shadow: var(--shadow-md);
}

.fg-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange-500);
  margin-bottom: var(--space-3);
}

.fg-card h4 {
  font-size: 1rem;
  color: var(--blue-800);
  margin-bottom: var(--space-2);
  font-weight: 600;
}

.fg-card p {
  font-size: .88rem;
  line-height: 1.6;
  color: var(--gray-500);
  margin: 0;
}

/* Modules grid */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.module-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
  transition: all var(--dur-base) var(--ease-out);
}

.module-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.module-card-image {
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .9);
  font-weight: 900;
  letter-spacing: 4px;
  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
}

.mci-1 {
  background: linear-gradient(135deg, #0F3D73, #1c5ba8);
}

.mci-2 {
  background: linear-gradient(135deg, #F48120, #d86f15);
}

.mci-3 {
  background: linear-gradient(135deg, #1c5ba8, #0F3D73);
}

.mci-4 {
  background: linear-gradient(135deg, #1a1a2e, #0F3D73);
}

.mci-5 {
  background: linear-gradient(135deg, #d86f15, #F48120);
}

.mci-6 {
  background: linear-gradient(135deg, #0a2a52, #1c5ba8);
}

/* Module / project card with real photo */
.mci-photo {
  position: relative !important;
  display: block !important;
  overflow: hidden;
}

.mci-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease-out);
}

.module-card:hover .mci-photo img,
.project-card:hover .mci-photo img {
  transform: scale(1.05);
}

.mci-photo .mci-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(0deg, rgba(6, 29, 58, 0.75) 0%, transparent 55%);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 900;
  letter-spacing: 4px;
  font-size: 1.3rem;
  font-family: 'Poppins', sans-serif;
  z-index: 1;
}

.module-card-body {
  padding: var(--space-5) var(--space-6) var(--space-6);
}

.module-card-body h4 {
  font-size: 1.05rem;
  color: var(--blue-800);
  margin-bottom: var(--space-2);
}

.module-card-body p {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0;
}

/* Lab photo gallery strip */
.lab-gallery-strip {
  padding: 0;
}

.lab-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.lab-gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.lab-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease-out);
}

.lab-gallery-item:hover img {
  transform: scale(1.06);
}

/* Why-lab grid */
.why-lab-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.why-lab-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.wl-item {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  transition: all var(--dur-base);
}

.wl-item:hover {
  border-color: var(--orange-400);
  box-shadow: var(--shadow-sm);
}

.wl-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--grad-orange);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
}

.wl-item strong {
  display: block;
  font-size: .95rem;
  color: var(--blue-800);
  margin-bottom: 3px;
}

.wl-item span {
  font-size: .82rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* FAQ */
.faq-wrap {
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  margin-bottom: var(--space-3);
  overflow: hidden;
  transition: all var(--dur-base);
}

.faq-item.open {
  border-color: var(--orange-400);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  font-size: .98rem;
  font-weight: 600;
  color: var(--blue-800);
  text-align: left;
  font-family: inherit;
}

.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gray-100);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-700);
  transition: all var(--dur-base);
}

.faq-item.open .faq-icon {
  background: var(--orange-500);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}

.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-5);
  font-size: .93rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* IT Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-card {
  padding: var(--space-8) var(--space-7);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--orange-500);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(6, 29, 58, 0.10);
  border-color: var(--gray-200);
  border-top-color: var(--orange-500);
}

.service-num {
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: var(--space-5);
  background: var(--grad-orange);
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.service-card p {
  font-size: .875rem;
  color: var(--gray-500);
  margin-bottom: var(--space-5);
  line-height: 1.65;
}

.service-card ul {
  margin-top: auto;
  border-top: 1px solid var(--gray-100);
  padding-top: var(--space-4);
}

.service-card ul li {
  font-size: .85rem;
  color: var(--gray-600);
  padding: 5px 0 5px 22px;
  position: relative;
}

.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange-500);
  font-weight: 700;
  font-size: 0.75rem;
  top: 6px;
}

/* Projects grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.project-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
  transition: all var(--dur-base) var(--ease-out);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.project-card-image {
  aspect-ratio: 16/10;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .85);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: .9rem;
  font-family: 'Poppins', sans-serif;
}

.project-card-body {
  padding: var(--space-5);
}

.project-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: var(--space-2);
}

.project-card-body h4 {
  font-size: 1rem;
  color: var(--blue-800);
  margin-bottom: var(--space-2);
}

.project-card-body p {
  font-size: .86rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Timeline / Process */
.process-timeline {
  max-width: 820px;
  margin-inline: auto;
  position: relative;
  padding: 20px 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(var(--blue-500), var(--orange-500));
  border-radius: 2px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-5);
  padding: 18px 0;
  position: relative;
}

.tl-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--orange-500);
  display: grid;
  place-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--blue-800);
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

.tl-content {
  background: var(--white);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
}

.tl-content h4 {
  font-size: 1.05rem;
  color: var(--blue-800);
  margin-bottom: var(--space-2);
}

.tl-content p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0;
}

/* Tech Stack */
.tech-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  max-width: 900px;
  margin-inline: auto;
}

.tech-pill {
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-full);
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: all var(--dur-base);
}

.tech-pill:hover {
  background: var(--blue-700);
  color: var(--white);
  border-color: var(--blue-700);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

/* Contact + Service Request layouts */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.contact-info-panel {
  background: var(--grad-dark);
  border-radius: var(--r-2xl);
  padding: var(--space-10);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(244, 129, 32, .25), transparent 70%);
  border-radius: 50%;
}

.contact-info-panel h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: var(--space-3);
}

.contact-info-panel>p {
  color: rgba(255, 255, 255, .75);
  font-size: .95rem;
  margin-bottom: var(--space-8);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-info-list li {
  display: flex;
  gap: var(--space-4);
}

.ci-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .1);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--orange-400);
}

.ci-strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 3px;
}

.ci-span {
  color: rgba(255, 255, 255, .65);
  font-size: .88rem;
  line-height: 1.55;
}

/* Forms */
.form-panel {
  background: var(--white);
  padding: var(--space-10);
  border-radius: var(--r-2xl);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.form-panel h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-2);
}

.form-panel>p {
  color: var(--gray-500);
  margin-bottom: var(--space-8);
  font-size: .95rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-800);
}

.form-field label .req {
  color: var(--orange-500);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  font-size: .95rem;
  color: var(--gray-900);
  background: var(--white);
  transition: all var(--dur-base);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(15, 61, 115, .08);
}

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

.error-msg {
  font-size: 12px;
  color: #e11d48;
  display: none;
  font-weight: 500;
}

.form-field.error input,
.form-field.error select,
.form-field.error textarea {
  border-color: #e11d48;
}

.form-field.error .error-msg {
  display: block;
}

.form-success {
  padding: 14px 18px;
  background: #ecfdf5;
  border: 1.5px solid #10b981;
  border-radius: var(--r-md);
  color: #065f46;
  font-weight: 600;
  font-size: .9rem;
  display: none;
  margin-bottom: var(--space-5);
}

.form-success.show {
  display: block;
}

/* ================================================================
   REVEAL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media(max-width:1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual {
    display: none;
  }

  .why-grid,
  .why-lab-split,
  .contact-grid,
  .about-strip-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .labs-grid,
  .labs-grid-8,
  .modules-grid,
  .services-grid,
  .projects-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .steps-row {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }

  .steps-row::before {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .why-lab-list {
    grid-template-columns: 1fr;
  }

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

@media(max-width:768px) {
  :root {
    --nav-h: 70px;
  }

  .section {
    padding-block: var(--space-16);
  }

  .section-lg {
    padding-block: 80px;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    padding: var(--space-4);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    z-index: 999;
    gap: 2px;
  }

  .nav-links.open .nav-link {
    color: var(--gray-700);
    padding: 14px 16px;
  }

  .nav-links.open .nav-link::after {
    display: none;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--gray-50);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--dur-base);
  }

  .nav-item.open .nav-dropdown {
    max-height: 300px;
  }

  .hamburger {
    display: flex;
  }

  .nav-cta .btn {
    display: none;
  }

  .hero-inner {
    padding-block: 60px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .labs-grid,
  .labs-grid-8,
  .modules-grid,
  .services-grid,
  .projects-grid,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .steps-row {
    grid-template-columns: 1fr;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .form-panel {
    padding: var(--space-6);
  }

  .contact-info-panel {
    padding: var(--space-6);
  }

  .hero-trust-badges {
    gap: var(--space-2);
    flex-wrap: wrap;
  }

  .hero-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 20px var(--space-4);
    justify-items: center;
  }

  .hsr-div {
    display: none;
  }

  .hsr-item {
    align-items: center;
    padding: 14px 8px;
  }

  .hero-stats-row .hsr-item:nth-child(1),
  .hero-stats-row .hsr-item:nth-child(5) {
    border-right: 1px solid rgba(255, 255, 255, .12);
  }

  .hero-stats-row .hsr-item:nth-child(1),
  .hero-stats-row .hsr-item:nth-child(3) {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .metric-card {
    display: none;
  }

  .section-header {
    margin-bottom: var(--space-10);
  }

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

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

  .why-lab-list {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: calc(var(--nav-h) + 50px) 0 50px;
  }
}

@media(max-width:480px) {
  h1 {
    font-size: 2rem;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .hero-inner {
    padding-inline: var(--space-4);
    padding-block: 40px;
  }

  .hero-explore-link {
    font-size: 16px;
    white-space: normal;
  }

  .cta-type-word {
    min-width: auto;
  }

  .btn-lg {
    padding: 15px 24px;
    font-size: 15px;
  }

  .cta-actions .btn {
    width: 100%;
  }
}

/* ================================================================
   SCROLL PROGRESS BAR
   ================================================================ */
#scroll-progress {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #c75e08, #f48120, #ffaa55, #f48120);
  background-size: 300% 100%;
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 10001;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 0 10px rgba(244, 129, 32, 0.6), 0 0 2px rgba(255, 160, 60, 0.9);
  transition: opacity 0.4s ease;
  animation: progress-shine 3s linear infinite;
}

#scroll-progress.is-active {
  opacity: 1;
}

@keyframes progress-shine {
  0%   { background-position: 300% 0; }
  100% { background-position: 0%   0; }
}

/* ================================================================
   CUSTOM CURSOR RING  (native cursor stays visible)
   ================================================================ */
#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  border: 1.5px solid rgba(244, 129, 32, 0.65);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  will-change: transform;
  opacity: 0;
  transition:
    width            0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    height           0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color     0.25s ease,
    background-color 0.25s ease,
    opacity          0.4s  ease;
}

#cursor-ring.is-visible {
  opacity: 1;
}

#cursor-ring.cursor-hover {
  width: 32px;
  height: 32px;
  border-color: rgba(244, 129, 32, 0.9);
  background-color: rgba(244, 129, 32, 0.07);
}

@media (hover: none), (pointer: coarse) {
  #cursor-ring { display: none !important; }
}

/* ================================================================
   FLOATING CONTACT WIDGET
   ================================================================ */
.fc-widget {
  position: fixed;
  right: 20px;
  bottom: 90px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 8900;
  animation: fc-enter 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s both;
}

@keyframes fc-enter {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}

.fc-btn {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.22s ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.fc-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.fc-btn:hover {
  transform: scale(1.12) translateX(-3px);
}

/* Tooltip */
.fc-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: rgba(6, 18, 40, 0.92);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Inter', 'Poppins', sans-serif;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.fc-btn:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Call button */
.fc-call {
  background: #f48120;
  color: #fff;
  box-shadow: 0 4px 16px rgba(244, 129, 32, 0.45);
  animation: fc-call-pulse 2.4s ease-in-out infinite;
}

@keyframes fc-call-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(244,129,32,0.4), 0 0 0 0 rgba(244,129,32,0.35); }
  60%       { box-shadow: 0 4px 16px rgba(244,129,32,0.4), 0 0 0 12px rgba(244,129,32,0); }
}

.fc-call:hover {
  box-shadow: 0 6px 24px rgba(244, 129, 32, 0.6);
}

/* WhatsApp button */
.fc-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.fc-wa:hover {
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

/* Chatbot button */
.fc-chat {
  background: linear-gradient(135deg, #1c5ba8 0%, #0e3563 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(28, 91, 168, 0.4);
}

.fc-chat:hover {
  box-shadow: 0 6px 24px rgba(28, 91, 168, 0.55);
}

/* ── Chatbot popup ── */
.fc-popup {
  position: fixed;
  bottom: 160px;
  right: 80px;
  width: 320px;
  height: 460px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(6, 29, 58, 0.18), 0 4px 16px rgba(0,0,0,0.1);
  overflow: hidden;
  z-index: 8901;
  display: flex;
  flex-direction: column;
  transform: scale(0.85) translateY(20px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fc-popup.is-open {
  opacity: 1;
  pointer-events: all;
  transform: scale(1) translateY(0);
}

.fc-popup-header {
  background: linear-gradient(135deg, #0e3563, #1c5ba8);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.fc-popup-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.fc-popup-info { flex: 1; }

.fc-popup-name {
  font-weight: 700;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}

.fc-popup-status {
  font-size: 11px;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 5px;
}

.fc-popup-status::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px rgba(74,222,128,0.8);
}

.fc-popup-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}

.fc-popup-close:hover { background: rgba(255,255,255,0.28); }

/* Messages scroll area */
.fc-popup-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scroll-behavior: smooth;
}

.fc-popup-messages::-webkit-scrollbar { width: 4px; }
.fc-popup-messages::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }

/* Message rows */
.fc-msg { display: flex; }
.fc-msg-bot  { justify-content: flex-start; }
.fc-msg-user { justify-content: flex-end; }

/* Bubbles */
.fc-bubble {
  max-width: 86%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.55;
  word-wrap: break-word;
}

.fc-msg-bot  .fc-bubble { background: #f1f5f9; color: #1e293b; border-bottom-left-radius: 4px; }
.fc-msg-user .fc-bubble { background: linear-gradient(135deg,#f48120,#d96d10); color:#fff; border-bottom-right-radius: 4px; }

/* Typing dots */
.fc-typing {
  display: flex !important;
  align-items: center;
  gap: 5px;
  padding: 12px 14px !important;
}

.fc-typing span {
  width: 7px; height: 7px;
  background: #94a3b8;
  border-radius: 50%;
  animation: fc-bounce 1.2s infinite;
}
.fc-typing span:nth-child(2) { animation-delay: .2s; }
.fc-typing span:nth-child(3) { animation-delay: .4s; }

@keyframes fc-bounce {
  0%,60%,100% { transform: translateY(0); opacity: .5; }
  30%          { transform: translateY(-6px); opacity: 1; }
}

/* Quick option chips */
.fc-quick-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 2px 0;
}

.fc-quick-opt {
  padding: 6px 11px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: #334155;
  cursor: pointer;
  transition: all .18s;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.fc-quick-opt:hover {
  background: #fff7ed;
  border-color: #f48120;
  color: #f48120;
}

/* Input bar */
.fc-popup-inputbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid #e2e8f0;
  background: #fff;
  flex-shrink: 0;
}

#fc-chat-input {
  flex: 1;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 8px 14px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  outline: none;
  background: #f8fafc;
  transition: border-color .2s;
}

#fc-chat-input:focus { border-color: #f48120; background: #fff; }

#fc-send-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #f48120, #d96d10);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .2s;
}

#fc-send-btn:hover   { transform: scale(1.1); box-shadow: 0 4px 12px rgba(244,129,32,.4); }
#fc-send-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* Online dot */
.fc-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 5px rgba(74,222,128,.8);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .fc-widget { right: 14px; bottom: 70px; gap: 10px; }
  .fc-btn { width: 46px; height: 46px; }
  .fc-btn svg { width: 20px; height: 20px; }
  .fc-btn::before { display: none; }
  .fc-popup { right: 10px; bottom: 130px; width: calc(100vw - 20px); height: 420px; }
}