/* =========================================================
   IMPACT OUTSOURCING — Modern Website Styles
   Colors: Navy #0A1628, Gold #F5C518, Cyan #00D4FF, White #FFFFFF
   ========================================================= */

:root {
  --navy:      #0A1628;
  --navy-mid:  #0F1F3D;
  --navy-light:#162850;
  --gold:      #F5C518;
  --gold-dark: #D4A800;
  --cyan:      #00D4FF;
  --cyan-dark: #009BBD;
  --white:     #FFFFFF;
  --off-white: #F4F7FC;
  --text-muted:#8A99B5;
  --border:    rgba(255,255,255,0.08);
  --shadow:    0 20px 60px rgba(0,0,0,0.3);
  --radius:    16px;
  --radius-sm: 10px;
  --transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-main: 'Inter', system-ui, sans-serif;
  --font-head: 'Space Grotesk', system-ui, sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title .gold  { color: var(--gold); }
.section-title .cyan  { color: var(--cyan); }
.section-desc {
  font-size: 1.05rem;
  color: #4A5878;
  max-width: 560px;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-desc { margin: 0 auto; }
.gradient-text {
  background: linear-gradient(120deg, var(--gold) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(245,197,24,0.35);
}
.btn-primary:hover {
  background: #ffe033;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,197,24,0.5);
}
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius-sm); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0,212,255,0.08);
}
.play-icon { font-size: 0.7rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.25rem 0;
}
.navbar.scrolled {
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.logo-icon span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--gold);
  font-style: italic;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-impact {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.logo-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
}
.nav-cta:hover { background: #ffe033 !important; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}
#neuralCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.5;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.25);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.8s ease forwards;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse {
  0%,100%{transform:scale(1);opacity:1}
  50%{transform:scale(1.4);opacity:0.7}
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  max-width: 780px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
  animation: fadeUp 0.8s 0.45s ease both;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  animation: fadeUp 0.8s 0.6s ease both;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.25rem 2rem;
  width: fit-content;
}
.trust-item {
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
  text-align: center;
}
.trust-item strong {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}
.trust-item span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}
.trust-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-indicator span::before {
  content: '';
  position: absolute;
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  left: 50%; transform: translateX(-50%);
  top: 6px;
  animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot {
  0%{top:6px;opacity:1}
  100%{top:22px;opacity:0}
}
@keyframes fadeUp {
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:translateY(0)}
}

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--gold);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 1.5rem;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--navy);
  text-transform: uppercase;
}
.marquee-track .sep { color: var(--navy-light); font-size: 0.6rem; }
@keyframes marquee {
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* ===== ABOUT ===== */
.about {
  padding: 7rem 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-glow {
  position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  z-index: 0;
}
.about-card-stack {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  z-index: 1;
}
.about-card {
  background: var(--white);
  border: 1.5px solid rgba(10,22,40,0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  transition: var(--transition);
}
.about-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.about-card .card-icon { font-size: 2rem; margin-bottom: 0.6rem; }
.about-card strong { display: block; font-family: var(--font-head); font-size: 1rem; color: var(--navy); margin-bottom: 0.3rem; }
.about-card p { font-size: 0.84rem; color: #6B7A9A; line-height: 1.5; }
/* Span first card across both columns */
.card-1 {
  grid-column: span 2;
  background: var(--navy);
  border-color: transparent;
  border-left: 4px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.card-1 .card-icon { font-size: 2.5rem; flex-shrink: 0; margin: 0; }
.card-1 strong { color: var(--gold); font-size: 1.1rem; }
.card-1 p { color: rgba(255,255,255,0.7); }
.card-2 { border-left: 4px solid var(--cyan); }
.card-3 { border-left: 4px solid var(--gold-dark); }
.about-content .section-label { display: block; }
.about-content .gold { color: var(--gold-dark); }
.about-desc {
  font-size: 1rem;
  color: #4A5878;
  margin-bottom: 1rem;
  line-height: 1.75;
}
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.pillar-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.pillar-icon.quality { background: rgba(245,197,24,0.15); color: var(--gold-dark); font-weight: 900; font-size: 1.2rem; }
.pillar-icon.security { background: rgba(0,212,255,0.1); }
.pillar-icon.impact { background: rgba(255,100,100,0.1); }
.pillar strong { display: block; font-size: 0.95rem; color: var(--navy); margin-bottom: 0.2rem; }
.pillar p { font-size: 0.85rem; color: #6B7A9A; }

/* ===== STATS ===== */
.stats-section {
  background: var(--navy);
  padding: 4rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item {
  text-align: center;
  padding: 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  display: inline;
}
.stat-suffix {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: inline;
}
.stat-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
}

/* ===== SERVICES ===== */
.services {
  padding: 7rem 0;
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1.5px solid rgba(10,22,40,0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  transform: translateY(-6px);
}
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  background: var(--navy);
  color: var(--white);
  border-color: transparent;
  grid-row: span 1;
}
.service-card.featured::before { opacity: 1; }
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,0.7); }
.service-card.featured .service-features li { color: rgba(255,255,255,0.65); }
.service-card.featured .service-features li::before { background: var(--gold); }
.service-card.featured .service-link { color: var(--gold); }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(245,197,24,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold-dark);
}
.service-card.featured .service-icon {
  background: rgba(245,197,24,0.15);
  color: var(--gold);
}
.service-icon svg { width: 28px; height: 28px; }
.service-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.65rem;
}
.service-card p {
  font-size: 0.88rem;
  color: #6B7A9A;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.service-features {
  margin-bottom: 1.25rem;
}
.service-features li {
  font-size: 0.82rem;
  color: #5A6A8A;
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px;
  background: var(--cyan-dark);
  border-radius: 50%;
}
.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cyan-dark);
  transition: var(--transition);
}
.service-link:hover { gap: 0.5rem; color: var(--navy); }

/* ===== INDUSTRIES ===== */
.industries {
  padding: 7rem 0;
  background: var(--navy);
}
.industries .section-header .section-title { color: var(--white); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.industry-card {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  text-align: center;
}
.industry-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(245,197,24,0.3);
  transform: translateY(-4px);
}
.industry-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.industry-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.industry-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ===== WHY US ===== */
.why-us {
  padding: 7rem 0;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.why-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--off-white);
  border: 1.5px solid rgba(10,22,40,0.05);
  transition: var(--transition);
  position: relative;
}
.why-card:hover {
  background: var(--white);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.why-number {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(10,22,40,0.05);
  position: absolute;
  top: 1rem; right: 1.5rem;
  line-height: 1;
}
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.65rem;
}
.why-card p { font-size: 0.88rem; color: #5A6A8A; line-height: 1.7; }

/* ===== PROCESS ===== */
.process {
  padding: 7rem 0;
  background: var(--navy-mid);
  overflow: hidden;
}
.process .section-header .section-title { color: var(--white); }
.process .section-label { color: var(--gold); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
/* Horizontal connecting line behind all steps */
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan), var(--gold));
  opacity: 0.2;
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}
.step-circle {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(245,197,24,0.4);
}
.step-connector { display: none; }
.process-step h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.process-step p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ===== MISSION / VISION / VALUES ===== */
.mvv-section {
  padding: 7rem 0;
  background: var(--off-white);
}
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.mvv-card {
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: var(--transition);
}
.mvv-card.mission { background: var(--navy); color: var(--white); }
.mvv-card.vision  { background: linear-gradient(135deg, #0F2A5A, #162850); color: var(--white); }
.mvv-card.values  { background: var(--white); border: 1.5px solid rgba(10,22,40,0.08); }
.mvv-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(0,0,0,0.15); }
.mvv-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.mvv-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.mvv-card.mission h3, .mvv-card.vision h3 { color: var(--gold); }
.mvv-card.values h3 { color: var(--navy); }
.mvv-card p { font-size: 0.92rem; line-height: 1.75; }
.mvv-card.mission p, .mvv-card.vision p { color: rgba(255,255,255,0.75); }
.mvv-card.values p { color: #4A5878; }
.mvv-card.values strong { color: var(--navy); }

/* ===== CERTIFICATION ===== */
.cert-section {
  padding: 5rem 0;
  background: var(--navy);
}
.cert-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 3rem;
}
.cert-badge {
  flex-shrink: 0;
}
.cert-seal {
  width: 130px; height: 130px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  position: relative;
}
.cert-seal::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1.5px solid rgba(245,197,24,0.3);
  border-radius: 50%;
}
.cert-icon { font-size: 1.8rem; }
.cert-seal span:nth-child(2) {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.cert-num {
  font-family: var(--font-head);
  font-size: 1.5rem !important;
  font-weight: 900 !important;
  color: var(--gold) !important;
}
.cert-content { flex: 1; }
.cert-content .section-label { color: var(--gold); }
.cert-content h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.cert-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.cert-content strong { color: var(--gold); }
.cert-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.cert-points span {
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.2);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
}

/* ===== INSIGHTS ===== */
.insights {
  padding: 7rem 0;
  background: var(--white);
}
.insights-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.insight-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1.5px solid rgba(10,22,40,0.06);
  transition: var(--transition);
}
.insight-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.featured-insight {
  grid-row: span 2;
  background: var(--navy);
  border-color: transparent;
  display: flex;
  flex-direction: column;
}
.featured-insight .insight-category { color: var(--cyan); }
.featured-insight .insight-date { color: rgba(255,255,255,0.5); }
.featured-insight h3 { color: var(--white); font-size: 1.35rem; }
.featured-insight p { color: rgba(255,255,255,0.65); flex: 1; }
.featured-insight .insight-link { color: var(--gold); }
.insight-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin-bottom: 0.35rem;
}
.insight-date {
  font-size: 0.78rem;
  color: #8A99B5;
  margin-bottom: 0.75rem;
}
.insight-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}
.insight-card p {
  font-size: 0.88rem;
  color: #5A6A8A;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.insight-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cyan-dark);
  transition: var(--transition);
}
.insight-link:hover { color: var(--navy); }

/* ===== CTA / CONTACT ===== */
.cta-section {
  padding: 7rem 0;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
#ctaCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.3;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}
.cta-content .section-label.light { color: var(--gold); }
.cta-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-content > p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
  width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.contact-form select { color: rgba(255,255,255,0.35); }
.contact-form select option { background: var(--navy-mid); color: var(--white); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.contact-form textarea { resize: vertical; }
.cta-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.info-block {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.info-icon { font-size: 1.5rem; }
.info-block strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.info-block span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.cta-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.social-btn {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,197,24,0.08);
}
.social-btn svg { width: 18px; height: 18px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-cert {
  margin-top: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  opacity: 0.7;
}
.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links {
  display: flex;
  gap: 2rem;
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .step-connector { display: none; }
  .mvv-grid { grid-template-columns: 1fr; }
  .cert-inner { flex-direction: column; gap: 2rem; }
  .insights-grid { grid-template-columns: 1fr; }
  .featured-insight { grid-row: span 1; }
  .cta-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; background: var(--navy); padding: 5rem 2rem 2rem; gap: 1.5rem; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; z-index: 1000; }
  .hero-title { font-size: 2.5rem; }
  .hero-trust { flex-wrap: wrap; padding: 1rem; }
  .trust-item { padding: 0.75rem 1rem; }
  .trust-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .about-card-stack { grid-template-columns: 1fr; }
  .card-1 { grid-column: span 1; flex-direction: column; align-items: flex-start; }
  .hero-trust { width: 100%; }
}

/* ===== UTILITY ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAV DROPDOWN ===== */
.has-dropdown { position: relative; }
.nav-arrow { font-size: 0.6rem; opacity: 0.7; margin-left: 2px; transition: var(--transition); }
.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 0.75rem 0;
  min-width: 260px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  z-index: 999;
  flex-direction: column;
}
.has-dropdown:hover .nav-dropdown { display: flex; }
.nav-dropdown li { list-style: none; }
.nav-dropdown a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75) !important;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-dropdown a:hover {
  background: rgba(245,197,24,0.08);
  color: var(--gold) !important;
  padding-left: 1.5rem;
}
/* Mobile dropdown */
@media (max-width: 768px) {
  .nav-dropdown {
    position: static;
    transform: none;
    border: none;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-sm);
    margin: 0.25rem 0 0.5rem 0.5rem;
    padding: 0.25rem 0;
    min-width: auto;
    box-shadow: none;
    display: none;
  }
  .has-dropdown.open .nav-dropdown { display: flex; }
  .has-dropdown > a { cursor: pointer; }
}

/* ===== INNER PAGE STYLES ===== */

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--gold); font-weight: 600; }

/* Inner page hero */
.inner-hero {
  background: var(--navy);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,212,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.inner-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.inner-hero-content .section-label { color: var(--cyan); }
.inner-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.25rem;
}
.inner-hero h1 span { color: var(--gold); }
.inner-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.inner-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-icon-large {
  width: 220px; height: 220px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
}
.service-icon-large::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(245,197,24,0.15);
  border-radius: 50%;
}
.service-icon-large::after {
  content: '';
  position: absolute;
  inset: -24px;
  border: 1px solid rgba(0,212,255,0.08);
  border-radius: 50%;
}

/* Metrics row */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 4rem 0;
  padding: 2.5rem;
  background: var(--navy);
  border-radius: var(--radius);
}
.metric-item { text-align: center; }
.metric-number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}
.metric-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.25rem;
}

/* Overview section */
.overview-section { padding: 6rem 0; background: var(--white); }
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.overview-content .section-title { color: var(--navy); }
.overview-text {
  font-size: 1rem;
  color: #4A5878;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.overview-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.overview-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: #4A5878;
  line-height: 1.6;
}
.overview-list li::before {
  content: '';
  display: block;
  width: 20px; height: 20px;
  min-width: 20px;
  background: rgba(0,212,255,0.12);
  border: 1.5px solid var(--cyan-dark);
  border-radius: 50%;
  position: relative;
  top: 2px;
}
.overview-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--cyan-dark);
  background: rgba(0,212,255,0.1);
  border: 1.5px solid var(--cyan-dark);
  border-radius: 50%;
  width: 20px; height: 20px; min-width: 20px;
}
.overview-visual-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.overview-visual-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,197,24,0.12) 0%, transparent 70%);
}
.overview-visual-box .big-icon { font-size: 5rem; text-align: center; margin-bottom: 1.5rem; }
.overview-visual-box h4 {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.overview-visual-box p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; }
.overview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.overview-tags span {
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

/* Use Cases */
.usecases-section { padding: 6rem 0; background: var(--off-white); }
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.usecase-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1.5px solid rgba(10,22,40,0.06);
  transition: var(--transition);
}
.usecase-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.usecase-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.usecase-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.usecase-card p { font-size: 0.88rem; color: #5A6A8A; line-height: 1.65; }

/* Approach / process */
.approach-section { padding: 6rem 0; background: var(--navy); }
.approach-section .section-title { color: var(--white); }
.approach-section .section-label { color: var(--gold); }
.approach-section .section-desc { color: rgba(255,255,255,0.6); }
.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}
.approach-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  transition: var(--transition);
}
.approach-step:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(245,197,24,0.25);
}
.approach-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.approach-step-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.approach-step h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.approach-step p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* Benefits */
.benefits-section { padding: 6rem 0; background: var(--white); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1.5px solid rgba(10,22,40,0.06);
  background: var(--off-white);
  transition: var(--transition);
}
.benefit-card:hover {
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: rgba(0,212,255,0.2);
}
.benefit-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.benefit-card h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.benefit-card p { font-size: 0.86rem; color: #5A6A8A; line-height: 1.65; }

/* Related Services */
.related-section { padding: 5rem 0; background: var(--off-white); }
.related-section .section-title { color: var(--navy); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.related-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  border: 1.5px solid rgba(10,22,40,0.06);
  transition: var(--transition);
  text-align: center;
}
.related-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(0,0,0,0.07);
}
.related-card .r-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.related-card span {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

/* Inner CTA */
.inner-cta {
  padding: 6rem 0;
  background: var(--navy-mid);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inner-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(245,197,24,0.08) 0%, transparent 70%);
}
.inner-cta .section-label { color: var(--gold); margin-bottom: 1rem; }
.inner-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}
.inner-cta p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2rem;
  position: relative;
  line-height: 1.7;
}
.inner-cta .cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ===== SOCIAL IMPACT PAGE ===== */
.impact-hero { background: linear-gradient(135deg, var(--navy) 0%, #0D2A5A 100%); }
.impact-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--gold);
  padding: 3rem 0;
}
.impact-stat {
  text-align: center;
  padding: 1rem 2rem;
  border-right: 1px solid rgba(10,22,40,0.15);
}
.impact-stat:last-child { border-right: none; }
.impact-stat .num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy);
  display: block;
}
.impact-stat .lbl {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(10,22,40,0.65);
  margin-top: 0.25rem;
}
.sdg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.sdg-card {
  padding: 2rem;
  border-radius: var(--radius);
  border-left: 5px solid var(--cyan);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.sdg-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.sdg-number {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin-bottom: 0.5rem;
}
.sdg-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.65rem;
}
.sdg-card p { font-size: 0.9rem; color: #5A6A8A; line-height: 1.7; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1.5px solid rgba(10,22,40,0.07);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem; left: 1.5rem;
  line-height: 1;
}
.testimonial-text {
  font-size: 0.92rem;
  color: #4A5878;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.25rem;
  position: relative;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--navy); }
.testimonial-author span { font-size: 0.78rem; color: #8A99B5; }

/* ===== CONTACT PAGE ===== */
.contact-hero { background: var(--navy); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  padding: 6rem 0;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.contact-info > p {
  font-size: 1rem;
  color: #5A6A8A;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-detail-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(245,197,24,0.1);
  border: 1.5px solid rgba(245,197,24,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.2rem;
}
.contact-detail p, .contact-detail a {
  font-size: 0.95rem;
  color: #4A5878;
  line-height: 1.5;
}
.contact-detail a:hover { color: var(--cyan-dark); }
.contact-hours {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
}
.contact-hours h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.88rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: rgba(255,255,255,0.6); }
.hours-row span:last-child { color: var(--gold); font-weight: 600; }
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1.5px solid rgba(10,22,40,0.06);
}
.contact-form-box h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.contact-form-box > p { font-size: 0.9rem; color: #6B7A9A; margin-bottom: 2rem; }
.contact-form-light .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form-light input,
.contact-form-light select,
.contact-form-light textarea {
  background: var(--off-white);
  border: 1.5px solid rgba(10,22,40,0.1);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--navy);
  font-size: 0.9rem;
  transition: var(--transition);
  width: 100%;
  font-family: var(--font-main);
}
.contact-form-light input::placeholder,
.contact-form-light textarea::placeholder { color: #AAB5CC; }
.contact-form-light input:focus,
.contact-form-light select:focus,
.contact-form-light textarea:focus {
  outline: none;
  border-color: var(--cyan-dark);
  background: var(--white);
}
.contact-form-light { display: flex; flex-direction: column; gap: 1rem; }
.contact-form-light textarea { resize: vertical; }
.map-section { padding: 0 0 6rem; }
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px;
  border: 1.5px solid rgba(10,22,40,0.08);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* Responsive for inner pages */
@media (max-width: 1024px) {
  .inner-hero-grid { grid-template-columns: 1fr; }
  .inner-hero-visual { display: none; }
  .overview-grid { grid-template-columns: 1fr; }
  .usecases-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-steps { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .sdg-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .impact-stats-row { grid-template-columns: repeat(2, 1fr); }
  .metrics-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .inner-hero { padding: 120px 0 60px; }
  .usecases-grid { grid-template-columns: 1fr; }
  .approach-steps { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .sdg-grid { grid-template-columns: 1fr; }
  .contact-form-light .form-row { grid-template-columns: 1fr; }
  .impact-stats-row { grid-template-columns: repeat(2, 1fr); }
  .metrics-row { grid-template-columns: repeat(2, 1fr); padding: 1.5rem; }
}

/* =========================================================
   IMPACT OUTSOURCING — Extended Styles v2
   Cursor · Dropdown · Slider · About · Team · Reveal · Footer
   ========================================================= */

/* ===== CUSTOM CURSOR ===== */
* { cursor: none !important; }
#io-cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: 99999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(calc(1 + var(--scroll-vel, 0) * 0.5));
  transition: transform 0.15s ease, border-color 0.2s ease, width 0.2s ease, height 0.2s ease;
  box-shadow: 0 0 12px rgba(0,212,255,0.4);
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px var(--gold);
}
.cursor-label {
  position: absolute;
  top: 24px; left: 20px;
  font-size: 10px;
  font-weight: 700;
  color: var(--cyan);
  white-space: nowrap;
  letter-spacing: 0.08em;
}
#io-cursor.cursor-hover .cursor-ring {
  width: 52px; height: 52px;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(245,197,24,0.4);
}
#io-cursor.cursor-click .cursor-ring {
  width: 20px; height: 20px;
  border-color: var(--cyan);
}
#io-cursor.cursor-click .cursor-dot {
  width: 12px; height: 12px;
}
.cursor-trail {
  position: fixed;
  top: 0; left: 0;
  z-index: 99998;
  pointer-events: none;
  color: var(--cyan);
  font-family: monospace;
  font-size: 10px;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
  mix-blend-mode: screen;
}

/* ===== NAVBAR DROPDOWN ===== */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  background: none; border: none;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem; font-weight: 500;
  display: flex; align-items: center; gap: 0.35rem;
  transition: var(--transition);
  padding: 0;
}
.nav-dropdown-btn:hover { color: var(--gold); }
.dropdown-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.nav-dropdown.open .dropdown-chevron { transform: rotate(180deg); }
.nav-dropdown.open .nav-dropdown-btn { color: var(--gold); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(10,22,40,0.98);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 16px;
  padding: 1.5rem;
  min-width: 620px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 2000;
}
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.dropdown-group-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0,212,255,0.12);
}
.dropdown-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  transition: background 0.2s ease;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2px;
}
.dropdown-item:hover {
  background: rgba(0,212,255,0.08);
  color: var(--white);
}
.di-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.di-text { display: flex; flex-direction: column; gap: 2px; }
.di-text strong { font-size: 0.82rem; font-weight: 600; color: inherit; }
.di-text small { font-size: 0.72rem; color: var(--text-muted); }
.dropdown-item:hover .di-text small { color: rgba(255,255,255,0.5); }

/* ===== ACTIVE NAV LINK ===== */
.nav-links a.nav-active { color: var(--gold) !important; }

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 85vw);
    background: rgba(10,22,40,0.98);
    backdrop-filter: blur(24px);
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    overflow-y: auto;
    border-left: 1px solid rgba(0,212,255,0.1);
    z-index: 999;
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-links.nav-open { display: flex; transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links a, .nav-dropdown-btn {
    width: 100%; display: block;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 1rem;
  }
  .nav-links a:hover, .nav-dropdown-btn:hover { background: rgba(255,255,255,0.05); }
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
  .nav-cta { background: var(--gold) !important; color: var(--navy) !important; text-align: center; }
  .dropdown-menu {
    position: static; transform: none;
    min-width: 0; width: 100%;
    border-radius: 10px;
    margin-top: 0.5rem;
    padding: 1rem;
    box-shadow: none;
    border-color: rgba(0,212,255,0.1);
    opacity: 1; pointer-events: all;
    display: none;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .dropdown-grid { grid-template-columns: 1fr; gap: 0; }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--navy);
}
.slider-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.77,0,0.175,1);
  will-change: transform;
}
.slide {
  min-width: 100%;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.slide-bg {
  position: absolute; inset: 0;
  background: var(--navy);
  z-index: 0;
}
.slide-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,22,40,0.92) 50%, rgba(10,22,40,0.55) 100%);
  z-index: 1;
}
.slide-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 2;
}
.slide-content {
  position: relative; z-index: 3;
  max-width: 1240px;
  margin: 0 auto;
  padding: 130px 24px 80px;
  width: 100%;
}
.slide-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.25);
  color: var(--cyan);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.slide-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  max-width: 780px;
}
.slide-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.slide-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Slide data-tag floating text */
.slide-tag-bg {
  position: absolute;
  right: 5%; top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex; flex-direction: column; gap: 0.75rem;
  opacity: 0.15;
  pointer-events: none;
}
.slide-tag-bg span {
  font-family: monospace;
  font-size: clamp(0.7rem, 1.5vw, 1rem);
  color: var(--cyan);
  white-space: nowrap;
  animation: floatData 6s ease-in-out infinite;
}
.slide-tag-bg span:nth-child(even) { animation-delay: -3s; color: var(--gold); }
@keyframes floatData {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; align-items: center; gap: 1rem;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}
.slider-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(245,197,24,0.5);
}
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}
.slider-arrow:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.slider-arrow.prev { left: 1.5rem; }
.slider-arrow.next { right: 1.5rem; }

/* Slide hover parallax */
.slider-track:hover .slide-title { transform: translateZ(0) scale(1.005); transition: transform 0.4s ease; }

/* ===== SCROLL REVEAL ANIMATION ===== */
.service-card, .usecase-card, .benefit-card, .approach-step,
.about-card, .insight-card, .related-card, .stat-item,
.sdg-card, .testimonial-card, .why-card, .footer-col {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.service-card.revealed, .usecase-card.revealed, .benefit-card.revealed,
.approach-step.revealed, .about-card.revealed, .insight-card.revealed,
.related-card.revealed, .stat-item.revealed, .sdg-card.revealed,
.testimonial-card.revealed, .why-card.revealed, .footer-col.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(135deg, #050d1a 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0,212,255,0.12);
}
.footer-particles {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.fp {
  position: absolute;
  color: var(--cyan);
  font-family: monospace;
  animation: fpFloat linear infinite;
  pointer-events: none;
}
@keyframes fpFloat {
  0% { transform: translateY(100%) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-120%) rotate(360deg); opacity: 0; }
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  position: relative; z-index: 1;
}
.footer-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}
.footer-col ul li a:hover { color: var(--cyan); }
.footer-contact li {
  display: flex; gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}
.footer-contact li a { color: var(--text-muted); transition: color 0.2s; }
.footer-contact li a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  position: relative; z-index: 1;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom-right { opacity: 0.6; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== ABOUT PAGE ===== */
.about-hero { min-height: 60vh; display: flex; align-items: center; }
.about-story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; padding: 6rem 0;
}
.about-story-img {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border-radius: 20px;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  position: relative; overflow: hidden;
  border: 1px solid rgba(0,212,255,0.15);
}
.about-story-img::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(0,212,255,0.12), transparent 60%);
}
@media (max-width: 768px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0; }
}

/* ===== TEAM PAGE ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}
.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(10,22,40,0.08);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(10,22,40,0.06);
  opacity: 0;
  transform: translateY(24px);
}
.team-card.revealed { opacity: 1; transform: translateY(0); }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(10,22,40,0.14); }
.team-photo {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  position: relative;
}
.team-photo::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 40% 40%, rgba(0,212,255,0.15), transparent 60%);
}
.team-info { padding: 1.5rem; }
.team-name { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--navy); margin-bottom: 0.25rem; }
.team-role { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyan); margin-bottom: 0.75rem; }
.team-bio { font-size: 0.87rem; color: #4A5878; line-height: 1.6; }
.team-social { display: flex; gap: 0.5rem; margin-top: 1rem; }
.team-social a { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(10,22,40,0.15); display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 0.75rem; transition: var(--transition); }
.team-social a:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }

/* ===== INNER HERO TWEAK ===== */
.inner-hero { padding-top: 100px; }

/* ===== METRICS ROW FIX ===== */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--navy-mid);
  border-top: 1px solid rgba(0,212,255,0.08);
  border-bottom: 1px solid rgba(0,212,255,0.08);
  margin: 0;
}
.metric-item, .metric {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.metric-item:last-child, .metric:last-child { border-right: none; }
.metric-number, .metric-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.metric-label, .metric-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 640px) {
  .metrics-row { grid-template-columns: 1fr 1fr; }
  .metric-item, .metric { border-bottom: 1px solid rgba(255,255,255,0.06); }
}

