/* ============================================
   FARBE TECHNOLOGIES — Redesign
   Precision Dark × Electric Lime
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&family=Figtree:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --bg-deep: #ffffff;
  --bg-surface: #f9fafb;
  --bg-elevated: #f3f4f6;
  --bg-card: rgba(255, 255, 255, 0.85);
  --lime: #2563eb;
  --lime-dim: rgba(37, 99, 235, 0.08);
  --lime-glow: rgba(37, 99, 235, 0.15);
  --lime-border: rgba(37, 99, 235, 0.25);
  --blue-soft: #3b82f6;
  --blue-dim: rgba(59, 130, 246, 0.08);
  --text: #0f172a;
  --text-muted: #475569;
  --text-faint: #94a3b8;
  --border: rgba(0, 0, 0, 0.06);
  --border-mid: rgba(0, 0, 0, 0.12);
  --navy-cta: #f8fafc;
  --ff-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --ff-heading: 'Outfit', sans-serif;
  --ff-body: 'Figtree', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ─── Grain overlay ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.55;
}

/* ─── Container (full-width; edge padding only) ─── */
.container {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: #2563eb;
  border-radius: 2px;
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo (single image: assets/images/logo/logo.png) */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo>.logo-img {
  height: 44px;
  width: auto;
  max-width: min(220px, 52vw);
  display: block;
  object-fit: contain;
  object-position: left center;
}

/* Nav */
.main-nav .nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav .nav-list>li>a {
  font-family: var(--ff-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.45rem 0.85rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav .nav-list>li>a:hover,
.main-nav .nav-list>li>a.active {
  color: var(--lime);
  background: var(--lime-dim);
}

.dropdown-arrow {
  font-size: 0.45rem;
  opacity: 0.6;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 260px;
  background: #ffffff;
  border: 1px solid var(--border-mid);
  border-radius: 10px;
  padding: 0.22rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px var(--border);
}

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

.dropdown-menu a {
  display: block;
  padding: 0.28rem 0.75rem;
  font-family: var(--ff-heading);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.dropdown-menu a:hover {
  color: var(--lime);
  background: var(--lime-dim);
}

/* Nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-mid);
  color: var(--text);
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--ff-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--lime);
  color: #ffffff;
  border-color: var(--lime);
}

.btn-primary:hover {
  background: #3b82f6;
  border-color: #3b82f6;
  box-shadow: 0 0 30px var(--lime-glow), 0 8px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-mid);
}

.hero .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-2px);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh;
  padding: 88px 2rem 56px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Ambient orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: orb-drift 12s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: orb-drift 16s ease-in-out infinite reverse;
}

@keyframes orb-drift {

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

  33% {
    transform: translate(3%, -2%) scale(1.05);
  }

  66% {
    transform: translate(-2%, 3%) scale(0.97);
  }
}

/* Hero background slider */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  filter: brightness(0.52) saturate(0.75);
}

.hero-slide:not(.active) img {
  animation: none;
  transform: scale(1);
}

.hero-slide.active img {
  animation: hero-zoom 25s ease-out forwards;
}

@keyframes hero-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(5, 8, 15, 0.78) 0%, rgba(5, 8, 15, 0.5) 45%, rgba(5, 8, 15, 0.7) 100%);
}

/* Hero grid line decoration */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: none;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--lime);
  border-radius: 1px;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 2rem;
  animation: fadeUp 0.9s var(--ease) 0.35s both;
}

.hero-title-accent {
  color: var(--lime);
  display: block;
  -webkit-text-stroke: 2px var(--lime);
  color: transparent;
}

.hero-title-accent.solid {
  color: var(--lime);
  -webkit-text-stroke: none;
}

/* Rotating words */
.hero-title-rotate {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  min-width: 5ch;
  height: 0.95em;
  overflow: visible;
}

.hero-title-rotate-inner {
  position: relative;
  display: block;
  height: 0.95em;
}

.hero-title-rotate-word {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  animation: word-cycle 8s ease-in-out infinite;
}

.hero-title-rotate-word:nth-child(1) {
  animation-delay: 0s;
}

.hero-title-rotate-word:nth-child(2) {
  animation-delay: -2s;
}

.hero-title-rotate-word:nth-child(3) {
  animation-delay: -4s;
}

.hero-title-rotate-word:nth-child(4) {
  animation-delay: -6s;
}

@keyframes word-cycle {

  0%,
  18% {
    opacity: 0;
    transform: translateY(12px);
  }

  22%,
  44% {
    opacity: 1;
    transform: translateY(0);
  }

  48%,
  100% {
    opacity: 0;
    transform: translateY(-12px);
  }
}

.hero-tagline {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s var(--ease) 0.5s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease) 0.65s both;
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
}

.hero-stats-inner {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.hero-stat-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--lime);
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero-stat-label {
  font-family: var(--ff-heading);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
}

.hero-stat-divider {
  width: 1px;
  height: 30px;
  background: var(--border-mid);
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 85px;
  right: 2rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-family: var(--ff-heading);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.hero-scroll-icon {
  width: 2px;
  height: 40px;
  background: var(--border-mid);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}

.hero-scroll-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--lime);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(200%);
  }
}

/* ================================================================
   COMMON SECTION STYLES
   ================================================================ */
.section {
  position: relative;
  padding: 3.25rem 2rem;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

/* JS-enhanced: hide initially only when JS has loaded */
.js-reveal .section {
  opacity: 0;
  transform: translateY(40px);
}

.section.section-revealed,
.js-reveal .section.section-revealed {
  opacity: 1;
  transform: translateY(0);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.25rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lime);
  border-radius: 1px;
}

.section-heading {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: inherit;
  margin-bottom: 1.5rem;
}

.section-heading.center {
  text-align: center;
}

.section-heading.large {
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.section-intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 2rem;
}

.section-intro.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Divider line */
.section-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ================================================================
   ABOUT SECTION (homepage)
   ================================================================ */
/* ================================================================
   ABOUT SECTION — text-only redesign
   ================================================================ */
.section-about {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 60%, #2563eb 100%);
  overflow: hidden;
  padding: 4rem 2rem;
  color: #ffffff;
}

.section-about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 15% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Top two-column: headline left, description right */
.about-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.about-top-left .section-heading {
  margin-bottom: 0;
}

.about-lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  padding-top: 0.5rem;
}

/* Thin lime rule */
.about-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 40%, transparent 70%);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

/* 3-column expertise grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.expertise-card {
  padding: 2.25rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.expertise-card:nth-child(3n) {
  border-right: none;
}

.expertise-card:nth-child(4),
.expertise-card:nth-child(5),
.expertise-card:nth-child(6) {
  border-bottom: none;
}

.expertise-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.expertise-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.expertise-card:hover::after {
  transform: scaleX(1);
}

.expertise-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.04em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  color: transparent;
  transition: -webkit-text-stroke 0.25s;
}

.expertise-card:hover .expertise-num {
  -webkit-text-stroke-color: #ffffff;
}

.expertise-title {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.expertise-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1024px) {
  .about-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .expertise-card:nth-child(3n) {
    border-right: 1px solid var(--border);
  }

  .expertise-card:nth-child(2n) {
    border-right: none;
  }

  .expertise-card:nth-child(4),
  .expertise-card:nth-child(5),
  .expertise-card:nth-child(6) {
    border-bottom: 1px solid var(--border);
  }

  .expertise-card:nth-child(5),
  .expertise-card:nth-child(6) {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .expertise-card {
    border-right: none !important;
  }

  .expertise-card:last-child {
    border-bottom: none;
  }
}

/* ================================================================
   SERVICES / WHAT WE DO
   ================================================================ */
.section-services {
  background: var(--bg-deep);
}

.section-services .section-heading {
  text-align: center;
  color: var(--lime);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(37, 99, 235, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.service-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(37, 99, 235, 0.05) 100%);
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 12px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.service-card:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 15px 45px rgba(37, 99, 235, 0.15);
  border-color: var(--lime);
  transform: translateY(-5px);
  z-index: 2;
}

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

.service-icon {
  width: 44px;
  height: 44px;
  background: rgba(37, 99, 235, 0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(37, 99, 235, 0.4);
}

.icon-chip {
  display: block;
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='1.5'%3E%3Crect x='4' y='4' width='16' height='16' rx='2'/%3E%3Cpath d='M9 9h6v6H9z'/%3E%3Cpath d='M9 4v4M15 4v4M9 16v4M15 16v4M4 9h4M4 15h4M16 9h4M16 15h4'/%3E%3C/svg%3E") center/contain no-repeat;
}

.service-card h3 {
  font-family: var(--ff-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.service-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ================================================================
   APPROACH SECTION — horizontal timeline redesign
   ================================================================ */
.section-approach {
  background: var(--bg-deep);
  overflow: hidden;
  position: relative;
}

/* Subtle radial glow top-right */
.section-approach::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* Two-col header: title left, intro+stats right */
.approach-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.approach-header-left .section-heading {
  margin-bottom: 0;
  line-height: 1;
  color: var(--lime);
}

.approach-intro-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.approach-stat-row {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.approach-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.approach-stat-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--lime);
}

.approach-stat-lbl {
  font-family: var(--ff-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.approach-stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border-mid);
  flex-shrink: 0;
}

/* ── Timeline ── */
.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

/* Horizontal connecting line behind dots */
.process-line {
  position: absolute;
  top: 28px;
  left: calc(10% + 0px);
  right: calc(10% + 0px);
  height: 2px;
  pointer-events: none;
  z-index: 0;
}

.process-line-track {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      var(--lime) 0%,
      var(--blue-soft) 50%,
      var(--lime) 100%);
}

/* Each step */
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
  cursor: default;
}

/* Dot circle with icon */
.process-step-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--lime-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
  flex-shrink: 0;
}

.process-step:hover .process-step-dot {
  border-color: var(--lime);
  background: var(--lime-dim);
  box-shadow: 0 0 24px var(--lime-glow), 0 0 0 6px rgba(37, 99, 235, 0.06);
  transform: scale(1.12);
}

.process-step-icon {
  display: block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  transition: opacity 0.3s;
}

.process-step:hover .process-step-icon {
  opacity: 1;
}

/* Step number */
.process-step-num {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--lime);
  margin-bottom: 0.6rem;
  opacity: 1;
  transition: opacity 0.3s;
}

.process-step:hover .process-step-num {
  opacity: 1;
}

/* Step card body */
.process-step-body {
  background: var(--blue-dim);
  border: 1px solid var(--lime-border);
  border-radius: 12px;
  padding: 1.5rem 1.15rem;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
  width: 100%;
}

.process-step:hover .process-step-body {
  border-color: var(--lime);
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px var(--lime-glow);
}

.process-step-body h3 {
  font-family: var(--ff-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.process-step-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Icon SVGs (shared) */
.icon-search {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
}

.icon-refresh {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2'%3E%3Cpath d='M21 12a9 9 0 11-9-9'/%3E%3Cpath d='M21 3v6h-6'/%3E%3C/svg%3E");
}

.icon-brain {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='1.5'%3E%3Cpath d='M12 5a4 4 0 014 4 4 4 0 01-4 4 4 4 0 01-4-4 4 4 0 014-4z'/%3E%3C/svg%3E");
}

.icon-gears {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='1.5'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 1v3M12 20v3M4.22 4.22l2.12 2.12M17.66 17.66l2.12 2.12M1 12h3M20 12h3M4.22 19.78l2.12-2.12M17.66 6.34l2.12-2.12'/%3E%3C/svg%3E");
}

.icon-chart {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2'%3E%3Cpath d='M3 3v18h18'/%3E%3Cpath d='M7 14l4-4 4 4 5-9'/%3E%3C/svg%3E");
}

/* Responsive */
@media (max-width: 1100px) {
  .approach-header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-line {
    display: none;
  }

  .process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1.25rem;
  }

  .process-step-dot {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .process-step-num {
    margin-bottom: 0.35rem;
  }

  .process-step-body {
    flex: 1;
  }
}

@media (max-width: 600px) {
  .approach-stat-row {
    flex-wrap: wrap;
    gap: 1.25rem;
  }
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.section-cta {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 60%, #2563eb 100%) !important;
  padding: 4rem 2rem;
}

.section-cta::before,
.section-cta::after {
  display: none;
}

.section-cta .cta-heading {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem;
}

.section-cta .cta-text {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.25rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.65;
}

.contact-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--ff-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #ffffff;
  transition: opacity 0.2s;
}

.contact-item:hover {
  opacity: 0.75;
}

.contact-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Crect x='5' y='2' width='14' height='20' rx='2'/%3E%3Cpath d='M12 18h.01'/%3E%3C/svg%3E");
}

.icon-email {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M8 12h8M12 8v8'/%3E%3C/svg%3E");
}

.icon-globe {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20M12 2a15.3 15.3 0 014 10 15.3 15.3 0 01-4 10 15.3 15.3 0 01-4-10 15.3 15.3 0 014-10'/%3E%3C/svg%3E");
}

/* ================================================================
   AI INSIGHTS PAGES (shared layout)
   ================================================================ */
.page-hero {
  min-height: 58vh;
  padding: 68px 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* Grid lines */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 100% 0%, black 0%, transparent 55%);
  -webkit-mask-image: radial-gradient(ellipse at 100% 0%, black 0%, transparent 55%);
}

/* Particle canvas */
.page-hero canvas,
.hmt-particles,
.ia-particles,
.cv-qa-particles,
.vs-particles,
.msi-particles,
.rs-particles,
.eai-particles,
.about-particles,
.about-hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Two-col layout */
.insight-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 1.75rem;
  align-items: start;
  margin-bottom: 1.1rem;
}

/* Page title */
.page-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.15rem;
}

/* Feature list */
.insight-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.insight-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.6;
}

.feature-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  margin-top: 0.5em;
  box-shadow: 0 0 10px var(--lime-glow);
}

/* Solutions panel */
.solutions-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem;
  position: sticky;
  top: 90px;
}

.solutions-badge {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--lime);
  padding: 0.45rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0;
  /* Reset old margin */
}

.solution-item {
  display: block;
  padding: 0.85rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--ff-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: pointer;
}

.solution-item:hover {
  border-color: var(--lime-border);
  color: var(--lime);
  background: var(--lime-dim);
}

/* Use Cases */
.usecases-section {
  margin-top: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 0.65rem;
}

.usecase-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  transition: border-color 0.25s, transform 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}

.usecase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--lime);
  transition: height 0.3s var(--ease);
  border-radius: 0 0 2px 2px;
}

.usecase-card:hover {
  border-color: var(--lime-border);
  transform: translateY(-4px);
}

.usecase-card:hover::before {
  height: 100%;
}

.usecase-card h3 {
  font-family: var(--ff-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.65rem;
}

.usecase-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Shared page section wrappers */
.section-cv-qa,
.section-ia-automation,
.section-hmt,
.section-vs,
.section-msi,
.section-rs,
.section-eai {
  padding: 84px 2rem 3rem;
  min-height: auto;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eef4ff 0%, #dbeafe 100%);
}

/* Tighter label → title on all AI Insights pages */
.section-cv-qa .section-label,
.section-ia-automation .section-label,
.section-hmt .section-label,
.section-vs .section-label,
.section-msi .section-label,
.section-rs .section-label,
.section-eai .section-label {
  margin-bottom: 0.55rem;
}

.cv-qa-content-wrap,
.ia-content-wrap,
.hmt-content-wrap,
.vs-content-wrap,
.msi-content-wrap,
.rs-content-wrap,
.eai-content-wrap {
  position: relative;
  z-index: 1;
}

/* Map old class names to new structure */
.cv-qa-grid,
.ia-grid,
.hmt-grid,
.vs-grid,
.msi-grid,
.rs-grid,
.eai-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 1.75rem;
  align-items: start;
  margin-bottom: 1rem;
}

.cv-qa-title,
.ia-title,
.hmt-title,
.vs-title,
.msi-title,
.rs-title,
.eai-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1e3a8a;
  margin-bottom: 1.15rem;
}

.cv-qa-features,
.ia-features,
.hmt-features,
.vs-features,
.msi-features,
.rs-features,
.eai-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.cv-qa-features li,
.ia-features li,
.hmt-features li,
.vs-features li,
.msi-features li,
.rs-features li,
.eai-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.6;
}

.cv-qa-check,
.ia-check,
.hmt-check,
.vs-check,
.msi-check,
.rs-check,
.eai-check {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  margin-top: 0.55em;
  box-shadow: 0 0 10px var(--lime-glow);
}

/* Solution panels for insight pages */
.cv-qa-solutions,
.ia-solutions,
.hmt-solutions,
.vs-solutions,
.msi-solutions,
.rs-solutions,
.eai-solutions {
  background: linear-gradient(180deg, #ffffff 0%, #f0f5ff 100%);
  border: 2px solid var(--lime);
  border-radius: 16px;
  padding: 1.5rem;
  position: sticky;
  top: 94px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.cv-qa-solutions-badge,
.ia-solutions-badge,
.hmt-solutions-badge,
.vs-solutions-badge,
.msi-solutions-badge,
.rs-solutions-badge,
.eai-solutions-badge {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--lime);
  padding: 0.45rem 1rem;
  border-radius: 4px;
  width: fit-content;
}

.cv-qa-solution-list,
.ia-solution-list,
.hmt-solution-list,
.vs-solution-list,
.msi-solution-list,
.rs-solution-list,
.eai-solution-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cv-qa-solution-item,
.ia-solution-item,
.hmt-solution-item,
.vs-solution-item,
.msi-solution-item,
.rs-solution-item,
.eai-solution-item {
  display: block;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 8px;
  font-family: var(--ff-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all 0.25s var(--ease);
}

.cv-qa-solution-item:hover,
.ia-solution-item:hover,
.hmt-solution-item:hover,
.vs-solution-item:hover,
.msi-solution-item:hover,
.rs-solution-item:hover,
.eai-solution-item:hover {
  border-color: var(--lime-border);
  color: var(--lime);
  background: var(--lime-dim);
}

/* Use case sections for insight pages */
.cv-qa-usecases,
.ia-usecases,
.hmt-usecases,
.vs-usecases,
.msi-usecases,
.rs-usecases,
.eai-usecases {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cv-qa-usecase-list,
.ia-usecase-list,
.hmt-usecase-list,
.vs-usecase-list,
.msi-usecase-list,
.rs-usecase-list,
.eai-usecase-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.cv-qa-usecase-item,
.ia-usecase-item,
.hmt-usecase-item,
.vs-usecase-item,
.msi-usecase-item,
.rs-usecase-item,
.eai-usecase-item {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 14px;
  padding: 1.5rem;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.06);
}

.cv-qa-usecase-item::before,
.ia-usecase-item::before,
.hmt-usecase-item::before,
.vs-usecase-item::before,
.msi-usecase-item::before,
.rs-usecase-item::before,
.eai-usecase-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--lime);
  transition: height 0.3s var(--ease);
}

.cv-qa-usecase-item:hover,
.ia-usecase-item:hover,
.hmt-usecase-item:hover,
.vs-usecase-item:hover,
.msi-usecase-item:hover,
.rs-usecase-item:hover,
.eai-usecase-item:hover {
  border-color: var(--lime);
  background: #fcfdff;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.1);
}

.cv-qa-usecase-item:hover::before,
.ia-usecase-item:hover::before,
.hmt-usecase-item:hover::before,
.vs-usecase-item:hover::before,
.msi-usecase-item:hover::before,
.rs-usecase-item:hover::before,
.eai-usecase-item:hover::before {
  height: 100%;
}

.cv-qa-usecase-item h3,
.ia-usecase-item h3,
.hmt-usecase-item h3,
.vs-usecase-item h3,
.msi-usecase-item h3,
.rs-usecase-item h3,
.eai-usecase-item h3 {
  font-family: var(--ff-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.65rem;
}

.cv-qa-usecase-item p,
.ia-usecase-item p,
.hmt-usecase-item p,
.vs-usecase-item p,
.msi-usecase-item p,
.rs-usecase-item p,
.eai-usecase-item p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
/* ================================================================
   ABOUT HERO — full-width text-only redesign
   ================================================================ */
.about-hero {
  padding: 64px 2rem 0;
  min-height: auto;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--bg-surface);
}

/* Ambient glow layers */
.about-hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -5%;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse at left center, rgba(37, 99, 235, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 50%;
  background: radial-gradient(ellipse at right bottom, rgba(59, 130, 246, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Grid line texture */
.about-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: none;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 0;
}

/* Top: label + giant headline */
.about-hero-top {
  padding-bottom: 1.35rem;
}

.about-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(5rem, 12vw, 11rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.about-hero-title-loop {
  display: inline;
  color: var(--lime);
  -webkit-text-stroke: 0;
}

/* Bottom: rule + two-col text + stats strip */
.about-hero-bottom {
  border-top: 1px solid var(--border-mid);
}

.about-hero-rule {
  display: none;
  /* handled by border-top above */
}

.about-hero-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  padding: 1.5rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
}

.about-hero-col p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

/* Facts strip */
.about-hero-facts {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-elevated);
  border-radius: 0 0 12px 12px;
}

.about-fact {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.about-fact:last-child {
  border-right: none;
}

.about-fact:hover {
  background: var(--lime-dim);
}

.about-fact-num {
  font-family: var(--ff-display);
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--lime);
}

.about-fact-lbl {
  font-family: var(--ff-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.about-fact-sep {
  display: none;
}

/* Responsive */
@media (max-width: 900px) {
  .about-hero {
    min-height: auto;
    padding-top: 80px;
  }

  .about-hero-title {
    font-size: clamp(3.5rem, 12vw, 7rem);
  }

  .about-hero-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-hero-facts {
    flex-wrap: wrap;
  }

  .about-fact {
    flex: 1 1 calc(50% - 1px);
  }
}

@media (max-width: 500px) {
  .about-fact {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .about-fact:last-child {
    border-bottom: none;
  }
}

/* ================================================================
   VISION & MISSION — image-free card redesign
   ================================================================ */
.section-vision-mission {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #eef4ff 0%, #dbeafe 100%);
  position: relative;
  overflow: hidden;
}

.section-vision-mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Section top label + heading */
.vm-top {
  margin-bottom: 1.35rem;
  position: relative;
  z-index: 1;
}

.vm-top .section-heading {
  margin-bottom: 0;
}

.section-vision-mission .vm-top .section-label {
  margin-bottom: 0.75rem;
}

/* Two cards + centre divider */
.vm-cards {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

/* ── Individual card ── */
.vm-card {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 14px;
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
}

.vm-card:hover {
  border-color: var(--lime);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15), 0 0 0 1px var(--lime-dim);
}

/* Animated top-edge glow on hover */
.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.vm-card:hover::before {
  opacity: 1;
}

/* Tag badge */
.vm-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--lime);
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  width: fit-content;
}

/* Icon */
.vm-card-icon {
  width: 48px;
  height: 48px;
  color: var(--lime);
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s var(--ease);
}

.vm-card:hover .vm-card-icon {
  opacity: 1;
  transform: scale(1.08);
}

.vm-card-icon svg {
  width: 100%;
  height: 100%;
}

/* Quote text */
.vm-quote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-style: italic;
  flex: 1;
  margin: 0;
  padding: 0;
  quotes: none;
  position: relative;
  padding-left: 1.25rem;
  border-left: 2px solid var(--lime-border);
  transition: border-color 0.3s, color 0.3s;
}

.vm-card:hover .vm-quote {
  color: var(--text);
  border-color: var(--lime);
}

/* Keyword pills */
.vm-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.vm-card-keyword {
  font-family: var(--ff-heading);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  background: var(--lime-dim);
  border: 1px solid var(--lime-border);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  transition: background 0.2s;
}

.vm-card:hover .vm-card-keyword {
  background: rgba(37, 99, 235, 0.18);
}

/* ── Centre vertical divider ── */
.vm-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 1rem;
}

.vm-divider-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--lime-border), transparent);
}

.vm-divider-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--lime-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  flex-shrink: 0;
  margin: 6px 0;
}

.vm-divider-dot svg {
  width: 14px;
  height: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .vm-cards {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .vm-divider {
    flex-direction: row;
    padding: 0;
    height: 28px;
  }

  .vm-divider-line {
    flex: 1;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lime-border), transparent);
  }
}

/* Team Section */
.section-team {
  padding: 2.25rem 2rem 2.5rem;
  background: var(--bg-surface);
}

.team-container {
  max-width: none;
  width: 100%;
  margin: 0 auto;
}

.team-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.team-intro {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.team-group {
  margin-bottom: 1.75rem;
}

.team-group-title {
  font-family: var(--ff-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.team-group-title::before {
  content: '';
  width: 4px;
  height: 1.2em;
  background: var(--lime);
  border-radius: 2px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-grid.team-cofounders {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.15rem;
}

.team-group:has(.team-leadership) {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-grid.team-leadership {
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: none;
}

.team-grid.team-cofounders .team-card-image-wrap {
  padding: 1.4rem 1rem 0;
}

.team-grid.team-cofounders .team-card-image {
  width: 96px;
  height: 96px;
}

.team-grid.team-cofounders .team-card-body {
  padding: 1rem 1rem 1.25rem;
}

.team-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.team-card:hover {
  border-color: var(--lime-border);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 0 0 1px var(--lime-dim);
}

.team-card-image-wrap {
  padding: 1.75rem 1.5rem 0;
  display: flex;
  justify-content: center;
}

.team-card-image {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-mid);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.team-card:hover .team-card-image {
  border-color: var(--lime-border);
  box-shadow: 0 0 20px var(--lime-dim);
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card-name {
  font-family: var(--ff-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.team-card-role {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  background: var(--lime-dim);
  border: 1px solid var(--lime-border);
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.team-card-bio {
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--text-muted);
  flex: 1;
}

.team-card-bio-ellipsis {
  display: none;
}

.team-card-bio.is-clamped .team-card-bio-ellipsis {
  display: inline;
}

.team-card-toggle {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  font-family: var(--ff-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  background: transparent;
  border: 1px solid var(--lime-border);
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.team-card-toggle:hover,
.team-card-toggle:focus-visible {
  background: var(--lime-dim);
  border-color: var(--lime);
  outline: none;
}

.team-card-toggle-icon {
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 600;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-map-section {
  margin-top: 72px;
  position: relative;
}

.contact-map-wrap {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}

.contact-map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-map-card {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-mid);
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 300px;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.contact-map-card-title {
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.contact-map-card-address {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.contact-map-card-rating {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.contact-map-card-rating .star {
  color: var(--lime);
}

.contact-map-card-rating .review-count {
  color: var(--text-faint);
}

.contact-map-card-actions {
  display: flex;
  gap: 0.5rem;
}

.contact-map-card-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.contact-map-card-btn:hover {
  background: var(--lime-dim);
  color: var(--lime);
  border-color: var(--lime-border);
}

.contact-map-card-btn svg {
  width: 16px;
  height: 16px;
}

/* Contact section */
.section-contact {
  padding: 3.25rem 2rem;
  background: var(--bg-deep);
  position: relative;
}

.contact-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.contact-content-wrap {
  position: relative;
  z-index: 1;
}

.contact-headline {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 2.25rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  max-width: none;
  width: 100%;
  margin: 0 auto;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info-item a {
  transition: color 0.2s;
}

.contact-info-item a:hover {
  color: var(--lime);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

.icon-phone-contact {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2'%3E%3Crect x='5' y='2' width='14' height='20' rx='2'/%3E%3Cpath d='M12 18h.01'/%3E%3C/svg%3E");
}

.icon-email-contact {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E");
}

.icon-location-contact {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

/* Contact Form */
.contact-form-col {
  display: flex;
  flex-direction: column;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border-mid);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-faint);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--lime-border);
  box-shadow: 0 0 0 3px var(--lime-dim);
}

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

.contact-submit {
  align-self: flex-start;
  background: var(--lime);
  color: #ffffff;
  border-color: var(--lime);
  font-family: var(--ff-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.contact-submit:hover {
  background: #3b82f6;
  box-shadow: 0 0 30px var(--lime-glow);
  transform: translateY(-2px);
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 2.25rem 2rem 1.5rem;
}

.footer-inner {
  max-width: none;
  width: 100%;
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo>.logo-img {
  height: 38px;
  max-width: min(200px, 70vw);
  object-fit: contain;
  object-position: left center;
}

.footer-mission {
  max-width: 540px;
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-faint);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.social-links a:hover {
  background: var(--lime-dim);
  color: var(--lime);
  border-color: var(--lime-border);
}

.social-links svg {
  width: 17px;
  height: 17px;
}

/* ================================================================
   SCROLL TO TOP
   ================================================================ */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 46px;
  height: 52px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-mid);
  border-radius: 8px;
  color: var(--text-muted);
  font-family: var(--ff-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease), background 0.2s, color 0.2s;
}

.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-to-top:hover {
  background: var(--lime-dim);
  color: var(--lime);
  border-color: var(--lime-border);
}

.scroll-arrow {
  font-size: 1rem;
  line-height: 1;
}

.scroll-text {
  text-transform: uppercase;
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section reveal stagger */
.section.section-revealed .section-heading {
  animation: fadeUp 0.8s var(--ease) 0.1s both;
}

.section.section-revealed .section-intro {
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}

.section.section-revealed .section-label {
  animation: fadeUp 0.8s var(--ease) 0.05s both;
}

.section-services.section-revealed .service-card:nth-child(1) {
  animation: fadeUp 0.7s var(--ease) 0.15s both;
}

.section-services.section-revealed .service-card:nth-child(2) {
  animation: fadeUp 0.7s var(--ease) 0.24s both;
}

.section-services.section-revealed .service-card:nth-child(3) {
  animation: fadeUp 0.7s var(--ease) 0.33s both;
}

.section-services.section-revealed .service-card:nth-child(4) {
  animation: fadeUp 0.7s var(--ease) 0.42s both;
}

.section-services.section-revealed .service-card:nth-child(5) {
  animation: fadeUp 0.7s var(--ease) 0.51s both;
}

.section-approach.section-revealed .process-step:nth-child(1) {
  animation: fadeUp 0.7s var(--ease) 0.10s both;
}

.section-approach.section-revealed .process-step:nth-child(2) {
  animation: fadeUp 0.7s var(--ease) 0.22s both;
}

.section-approach.section-revealed .process-step:nth-child(3) {
  animation: fadeUp 0.7s var(--ease) 0.34s both;
}

.section-approach.section-revealed .process-step:nth-child(4) {
  animation: fadeUp 0.7s var(--ease) 0.46s both;
}

.section-approach.section-revealed .process-step:nth-child(5) {
  animation: fadeUp 0.7s var(--ease) 0.58s both;
}

.section-cta.section-revealed .cta-heading {
  animation: fadeUp 0.8s var(--ease) 0.1s both;
}

.section-cta.section-revealed .cta-text {
  animation: fadeUp 0.8s var(--ease) 0.22s both;
}

.section-cta.section-revealed .contact-block {
  animation: fadeUp 0.8s var(--ease) 0.34s both;
}

/* Hero stays visible */
.hero.section-revealed {
  opacity: 1;
  transform: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1380px) {
  .team-grid.team-cofounders {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 1100px) {

  .cv-qa-grid,
  .ia-grid,
  .hmt-grid,
  .vs-grid,
  .msi-grid,
  .rs-grid,
  .eai-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .cv-qa-solutions,
  .ia-solutions,
  .hmt-solutions,
  .vs-solutions,
  .msi-solutions,
  .rs-solutions,
  .eai-solutions {
    position: static;
  }

  .cv-qa-usecase-list,
  .ia-usecase-list,
  .hmt-usecase-list,
  .vs-usecase-list,
  .msi-usecase-list,
  .rs-usecase-list,
  .eai-usecase-list,
  .usecase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content-wrap {
    grid-template-columns: 1fr;
  }

  /* about-hero-inner is now flex column — no override needed */
  /* vm-cards collapses via its own responsive rule */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid.team-cofounders {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

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

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

  /* approach-grid replaced with process-timeline */
}

@media (max-width: 768px) {
  .site-header {
    padding: 0 1.25rem;
  }

  .header-inner {
    gap: 1rem;
  }

  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav.is-open {
    display: block;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(5, 8, 15, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
  }

  .main-nav.is-open .nav-list {
    flex-direction: column;
    gap: 0.25rem;
  }

  .main-nav.is-open .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 0.25rem;
    margin-left: 0.5rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--bg-deep);
  }

  .hero {
    padding: 80px 1.25rem 72px;
  }

  .hero-stats {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    max-width: 280px;
  }

  .section,
  .section-about,
  .section-services,
  .section-approach,
  .section-cta {
    padding: 2.75rem 1.25rem;
  }

  .section-cv-qa,
  .section-ia-automation,
  .section-hmt,
  .section-vs,
  .section-msi,
  .section-rs,
  .section-eai {
    padding: 72px 1.25rem 2rem;
    min-height: auto;
  }

  .about-hero {
    padding: 72px 1.25rem 2rem;
    min-height: auto;
  }

  .section-vision-mission,
  .section-team {
    padding: 2rem 1.25rem;
  }

  .section-contact {
    padding: 2.5rem 1.25rem;
  }

  .cv-qa-usecase-list,
  .ia-usecase-list,
  .hmt-usecase-list,
  .vs-usecase-list,
  .msi-usecase-list,
  .rs-usecase-list,
  .eai-usecase-list,
  .usecase-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .contact-map-wrap {
    height: 350px;
  }

  .contact-map-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 1rem;
    max-width: none;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .team-grid.team-cofounders {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .team-grid.team-leadership {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .team-card-image-wrap {
    padding: 1.25rem 1.1rem 0;
  }

  .team-card-body {
    padding: 1rem 1rem 1.2rem;
  }

  .team-card-name {
    font-size: 0.95rem;
  }

  .team-card-role {
    font-size: 0.6rem;
  }

  .team-card-bio {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .team-card-toggle {
    font-size: 0.62rem;
  }

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

  .contact-block {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

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

@media (max-width: 480px) {
  .logo>.logo-img {
    height: 36px;
    max-width: min(180px, 58vw);
  }
}