/* ============================================================
   DATA MINDS TECHNOLOGIES — Enterprise Website Stylesheet
   Premium LIGHT theme with glassmorphism, gradients, animations
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  /* ── Brand Palette — Modern Lavender ── */
  --primary: #6c2bd9;
  /* vivid violet — buttons, links, CTAs */
  --primary-dark: #5015b0;
  /* deep violet — hover states, dark accents */
  --primary-light: #8b5cf6;
  /* bright lavender — highlights, tags */
  --accent: #a78bfa;
  /* soft violet — secondary elements */
  --accent-light: #c4b5fd;
  /* pale lavender — badges, tints */
  --accent-deep: #3b0764;
  /* near-black violet — dark sections */

  /* Surfaces */
  --bg-body: #fafafe;
  --bg-warm: #f5f3ff;
  --bg-section: #ede9fe;
  --bg-section-tint: #ddd6fe;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.8);
  --bg-glass-hover: rgba(255, 255, 255, 0.96);
  --bg-glass-dark: rgba(108, 43, 217, 0.04);
  --bg-elevated: #ffffff;

  /* Borders — sharper, more visible */
  --border: #ddd6fe;
  --border-hover: #c4b5fd;
  --border-light: #ede9fe;
  --border-accent: rgba(108, 43, 217, 0.25);

  /* Text — high contrast */
  --text-primary: #0f0520;
  --text-secondary: #2e1065;
  --text-muted: #6b5f7b;
  --text-on-dark: #ffffff;

  /* Dark surfaces */
  --bg-dark: #0f0520;
  --bg-dark-lighter: #1e0a3c;
  --bg-dark-accent: #f5f3ff;

  /* ── Gradients ── */
  --gradient-brand: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-light) 50%,
      var(--accent) 100%);
  --gradient-primary: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-light) 100%);
  --gradient-primary-rev: linear-gradient(135deg,
      var(--primary-light) 0%,
      var(--primary) 100%);
  --gradient-dark: linear-gradient(135deg,
      var(--primary-dark) 0%,
      var(--primary) 100%);
  --gradient-deep: linear-gradient(135deg,
      var(--accent-deep) 0%,
      var(--primary-dark) 100%);
  --gradient-soft: linear-gradient(135deg,
      var(--primary-light) 0%,
      var(--accent-light) 100%);
  /* Hero headline — premium white → violet → cool AI accent */
  --gradient-hero-text: linear-gradient(105deg,
      #ffffff 0%,
      #f5f3ff 18%,
      #ddd6fe 38%,
      #a78bfa 52%,
      #93c5fd 68%,
      #e9d5ff 88%,
      #ffffff 100%);
  --gradient-surface: linear-gradient(180deg,
      rgba(108, 43, 217, 0.08) 0%,
      transparent 100%);
  /* Hero video — balanced tint: readable type, video still visible */
  --gradient-hero-overlay: linear-gradient(168deg,
      rgb(8 3 22 / 62%) 0%,
      rgb(16 6 38 / 44%) 38%,
      rgb(10 4 26 / 50%) 58%,
      rgb(6 2 14 / 66%) 100%);
  --gradient-section: linear-gradient(180deg,
      var(--bg-section-tint) 0%,
      var(--bg-warm) 100%);
  --gradient-section-warm: linear-gradient(180deg,
      var(--bg-dark-accent) 0%,
      #fff 100%);
  --gradient-cta: linear-gradient(135deg,
      var(--bg-dark) 0%,
      var(--bg-dark-lighter) 50%,
      var(--bg-dark) 100%);

  /* ── Glows & Rings — punchy ── */
  --glow-sm: 0 4px 14px rgba(108, 43, 217, 0.3);
  --glow-md: 0 6px 24px rgba(108, 43, 217, 0.35);
  --glow-lg: 0 8px 36px rgba(108, 43, 217, 0.4);
  --glow-focus: 0 4px 24px rgba(108, 43, 217, 0.35);
  --glow-btn: 0 4px 14px rgba(108, 43, 217, 0.3);
  --ring-focus: 0 0 0 3px rgba(108, 43, 217, 0.25);
  --ring-outline: 0 0 0 1px rgba(108, 43, 217, 0.15);
  --primary-010: rgba(108, 43, 217, 0.1);
  --primary-008: rgba(108, 43, 217, 0.08);
  --accent-006: rgba(167, 139, 250, 0.08);
  --accent-015: rgba(167, 139, 250, 0.18);
  --accent-030: rgba(167, 139, 250, 0.35);
  --primary-004: rgba(108, 43, 217, 0.05);

  /* ── Shadows — deeper, crisper ── */
  --shadow-sm: 0 1px 3px rgba(15, 5, 32, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(15, 5, 32, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(15, 5, 32, 0.18), 0 6px 16px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 4px 32px rgba(108, 43, 217, 0.25);
  --shadow-card: 0 2px 12px rgba(15, 5, 32, 0.1), 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-card-hover:
    0 12px 40px rgba(108, 43, 217, 0.2), 0 4px 12px rgba(0, 0, 0, 0.08);

  /* Spacing */
  --section-padding: clamp(80px, 10vw, 100px);

  /* Typography */
  --font-heading: "Plus Jakarta Sans", sans-serif;
  --font-body: "DM Sans", sans-serif;

  /* Layout */
  --container-max: 1280px;
  --header-height: 96px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-secondary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

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

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section ── */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary-010), var(--accent-006));
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--accent-015);
  backdrop-filter: blur(4px);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 12px;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  box-shadow: var(--glow-sm);
}

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

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-hover);
}

.btn-outline:hover {
  background: var(--bg-glass);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Hero-specific outline button (on dark bg) */
.hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding: 14px 0;
}

.btn-ghost:hover {
  color: var(--primary-dark);
  gap: 12px;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
  border-radius: 14px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-header {
  padding: 10px 24px;
  font-size: 0.9rem;
  border-radius: 10px;
}

/* ── Preloader ── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-body);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.preloader-logo {
  width: 80px;
  animation: pulse 1.5s ease-in-out infinite;
}

.preloader-ring {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

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

  50% {
    opacity: 0.6;
    transform: scale(0.95);
  }
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1003;
  height: var(--header-height);
  transition: all 0.4s var(--ease-out);
  /* background-color: aliceblue; */
}

/* When over hero (video), header text is white + gradient for readability */
.header:not(.scrolled) {
  color: #fff;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.15) 70%,
      transparent 100%);
}

.header:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header:not(.scrolled) .nav-link:hover,
.header:not(.scrolled) .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* After scroll: dark nav links */
.header.scrolled .nav-link {
  color: var(--text-secondary);
}

.header.scrolled .nav-link:hover {
  color: var(--primary);
  background: var(--primary-008);
}

.header.scrolled .nav-link.active {
  color: var(--primary);
  background: var(--primary-010);
  font-weight: 600;
}

.header:not(.scrolled) .hamburger span {
  background: #fff;
}

.header:not(.scrolled) .btn-header {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-img {
  height: 90px;
  width: auto;
  transition: all 0.3s ease;
}

.header:not(.scrolled) .logo-img {
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.3));
}

/* Before scroll: show white logo, hide main */
.header:not(.scrolled) .logo-main {
  display: none;
}

.header:not(.scrolled) .logo-white {
  display: block;
}

/* After scroll: show main logo, hide white */
.header.scrolled .logo-white {
  display: none;
}

.header.scrolled .logo-main {
  display: block;
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

/* Navigation */
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: var(--bg-glass-dark);
}

.nav-link svg {
  transition: transform 0.3s ease;
}

.has-mega:hover .nav-link svg,
.has-mega.mega-open .nav-link svg {
  transform: rotate(180deg);
}

/* Mega Menu — positioned relative to header, not nav-item */
.header-inner {
  position: relative;
}

.mega-menu {
  position: fixed;
  top: var(--header-height);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(1180px, calc(100vw - 48px));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out), visibility 0s linear 0.4s;
  pointer-events: none;
  padding-top: 8px;
  /* bridge gap for hover */
}

/* Invisible hover bridge — prevents menu from closing while moving to it */
.has-mega::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 24px;
  pointer-events: none;
}

.has-mega:hover::after {
  pointer-events: all;
}

.has-mega:hover .mega-menu,
.has-mega.mega-open .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0s linear 0s;
}

/* Keep menu open when hovering the menu itself */
.has-mega {
  position: relative;
}

.mega-menu-inner {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 220px;
  gap: 0;
  box-shadow: 0 24px 64px rgba(15, 5, 32, 0.15), 0 8px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.mega-col {
  padding: 34px 28px;
  border-right: 1px solid var(--border-light);
}

.mega-col:last-child {
  border-right: none;
}

.mega-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
  font-weight: 700;
}

.mega-col h4:not(:first-child) {
  margin-top: 16px;
}

.mega-col ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  margin: 0 -8px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  transition: all 0.2s ease;
  border-radius: 10px;
}

.mega-col ul li a:hover {
  color: var(--primary);
  background: var(--primary-008);
  padding-left: 14px;
}

.mega-col ul li a::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-hover);
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.mega-col ul li a:hover::before {
  background: var(--primary);
}

/* CTA column */
.mega-cta-col {
  padding: 0 !important;
  border-right: none !important;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-section-tint) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mega-cta-card {
  padding: 34px 28px;
  border: none;
  border-radius: 0;
  background: transparent;
}

.mega-cta-card h4 {
  font-size: 1.1rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-primary);
  margin-bottom: 8px;
  border-bottom: none;
  padding-bottom: 0;
  font-weight: 700;
}

.mega-cta-card p {
  font-size: 0.92rem;
  margin-bottom: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.mega-cta-card .btn {
  font-size: 0.9rem;
  padding: 12px 20px;
  width: 100%;
  justify-content: center;
}

/* Smaller mega menus */
.mega-menu-sm {
  width: 600px;
}

.mega-menu-md {
  width: 860px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  padding: 4px 0;
  position: relative;
  z-index: 1004;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

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

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

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

/* Mobile Nav Overlay (above page; below header so bar + hamburger stay usable) */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1002;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s var(--ease-out);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: calc(var(--header-height) + 12px) 20px 32px;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  text-align: left;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-list>li {
  border-bottom: 1px solid var(--border);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 4px 14px 0;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text-primary);
  transition: color 0.3s ease;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

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

/* Accordion parents (mega-style sections on small screens) */
.mobile-has-sub {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.mobile-has-sub::after {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease-out);
  opacity: 0.55;
}

.mobile-nav-list>li.is-open>.mobile-has-sub::after {
  transform: rotate(225deg);
  margin-top: 8px;
  opacity: 0.85;
}

.mobile-nav-overlay .mobile-sub {
  display: none !important;
  list-style: none;
  margin: 0;
  padding: 0 0 12px 12px;
  border-left: 2px solid var(--border-light);
  margin-left: 4px;
}

.mobile-nav-overlay .mobile-nav-list>li.is-open>.mobile-sub {
  display: block !important;
}

/* Collapsible category (matches desktop mega column titles) */
.mobile-nav-overlay .mobile-nav-group {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-overlay #mobile-sub-services>.mobile-nav-group+.mobile-nav-group,
.mobile-nav-overlay #mobile-sub-industries>.mobile-nav-group+.mobile-nav-group,
.mobile-nav-overlay #mobile-sub-solutions>.mobile-nav-group+.mobile-nav-group {
  border-top: 1px solid var(--border-light);
}

.mobile-nav-overlay .mobile-nav-cat-btn.mobile-has-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 14px 4px 14px 0;
  box-sizing: border-box;
  min-height: 48px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-overlay .mobile-nav-cat-btn.mobile-has-sub:hover,
.mobile-nav-overlay .mobile-nav-cat-btn.mobile-has-sub:focus-visible {
  color: var(--primary);
  background: var(--primary-008);
  outline: none;
}

.mobile-nav-overlay .mobile-nav-group.is-open>.mobile-nav-cat-btn.mobile-has-sub {
  color: var(--primary);
}

/* Nested service / industry / product lists under each category */
.mobile-nav-overlay .mobile-sub li.is-open>.mobile-sub,
.mobile-nav-overlay .mobile-nav-group.is-open>.mobile-sub-panel {
  display: block !important;
}

.mobile-nav-overlay .mobile-sub li.is-open>.mobile-has-sub::after,
.mobile-nav-overlay .mobile-nav-group.is-open>.mobile-nav-cat-btn.mobile-has-sub::after {
  transform: rotate(225deg);
  margin-top: 8px;
  opacity: 0.85;
}

.mobile-nav-overlay .mobile-sub li a {
  display: flex;
  align-items: center;
  padding: 10px 8px;
  min-height: 44px;
  box-sizing: border-box;
  font-size: 0.9rem;
  line-height: 1.35;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-nav-overlay .mobile-sub li a:hover,
.mobile-nav-overlay .mobile-sub li a:active {
  color: var(--primary);
  background: var(--primary-008);
}

.mobile-nav-content .btn {
  margin-top: 28px;
  width: 100%;
  justify-content: center;
}

/* ── Hero + background video ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-height);
  color: #fff;
  background: #0c0618;
}

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

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 115% 90% at 50% 50%, transparent 45%, rgb(0 0 0 / 30%) 100%),
    radial-gradient(ellipse 80% 55% at 78% 8%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, rgb(0 0 0 / 12%) 0%, transparent 48%, rgb(0 0 0 / 22%) 100%),
    var(--gradient-hero-overlay);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0 60px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
}

.hero-title {
  font-size: clamp(2.6rem, 4.2vw + 1.1rem, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  margin: 0 auto 28px;
  line-height: 1.08;
  max-width: min(22ch, 96vw);
  color: #fff;
  text-align: center;
  filter: drop-shadow(0 2px 18px rgb(0 0 0 / 38%)) drop-shadow(0 1px 2px rgb(0 0 0 / 28%));
}

.hero-title-line {
  display: block;
}

/* Second line — brand gradient only (hero) */
.hero-title-accent {
  margin-top: 0.18em;
  background: var(--gradient-brand);
  background-size: 115% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 3px 22px rgba(78, 70, 229, 0.195)) drop-shadow(0 1px 0 rgba(15, 23, 42, 0.6));
  padding-bottom: 10px;
}

.hero-subtitle {
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.86);
  max-width: 39rem;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 400;
  text-shadow: 0 1px 2px rgb(0 0 0 / 22%);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Trust Strip */
.hero-trust-strip {
  position: relative;
  z-index: 2;
  padding: 40px 0 20px;
}

.trust-label {
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-logo-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: default;
}

.trust-logo-item svg {
  flex-shrink: 0;
  opacity: 0.45;
  transition: opacity 0.3s ease;
}

.trust-logo-item:hover {
  color: rgba(255, 255, 255, 0.85);
}

.trust-logo-item:hover svg {
  opacity: 0.9;
}

/* ── Trust Bar ── */
.trust-bar {
  padding: 26px 0;
  background: var(--bg-body);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.trust-bar-inner {
  text-align: center;
}

.trust-bar-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.trust-bar-text strong {
  color: var(--primary);
  font-weight: 700;
}

/* Marquee wrapper with edge fade */
.marquee-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(90deg,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%);
  -webkit-mask-image: linear-gradient(90deg,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

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

/* Partner logos — clean, no boxes */
.partner-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  flex-shrink: 0;
  cursor: default;
}

.partner-card span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.partner-card svg,
.partner-card .partner-logo-img {
  flex-shrink: 0;
  object-fit: contain;
  opacity: 0.88;
  transition: opacity 0.3s ease;
}

.partner-card:hover svg,
.partner-card:hover .partner-logo-img {
  opacity: 1;
}

.partner-card:hover span {
  color: var(--text-primary);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

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

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }

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

/* ── Stats ── */
.stats-section {
  padding: 25px 0;
  background: var(--bg-body);
  position: relative;
}

/* Top divider line — subtle gradient fade */
.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

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

/* Vertical dividers between stat items */
.stat-card {
  text-align: center;
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s var(--ease-out);
}

.stat-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
}

.stat-card:hover .stat-number,
.stat-card:hover .stat-suffix {
  transform: scale(1.08);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 3.5rem);
  font-weight: 900;
  display: inline-block;
  color: var(--text-primary);
  line-height: 1;
  transition: transform 0.4s var(--ease-out);
  letter-spacing: -0.03em;
}

.stat-suffix {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  transition: transform 0.4s var(--ease-out);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ── Services Tabs ── */
.services-section {
  background: var(--gradient-section-blue);
  position: relative;
  overflow: hidden;
}

/* Decorative — organic flowing blobs */
.services-section::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 80%;
  height: 120%;
  background: url("assets/bg-blobs.svg") no-repeat center;
  background-size: contain;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.services-section>.container {
  position: relative;
  z-index: 1;
}

.services-tabs {
  display: flex;
  gap: 32px;
}

.services-tab-nav {
  flex-shrink: 0;
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 600px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-hover) transparent;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 12px;
  transition: all 0.3s var(--ease-out);
  text-align: left;
  border: 1px solid transparent;
}

.tab-btn:hover {
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.03);
}

.tab-btn.active {
  color: #fff;
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: var(--glow-md);
}

.tab-btn.active svg {
  color: #fff;
}

.tab-btn svg {
  flex-shrink: 0;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.tab-btn.active svg,
.tab-btn:hover svg {
  opacity: 1;
}

/* Tab Panels */
.services-tab-panels {
  flex: 1;
  min-width: 0;
}

.tab-panel {
  display: none;
  animation: fadeInPanel 0.4s var(--ease-out);
}

.tab-panel.active {
  display: block;
}

@keyframes fadeInPanel {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

.panel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.panel-info h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.panel-info p {
  margin-bottom: 24px;
  line-height: 1.8;
}

.panel-features {
  margin-bottom: 32px;
}

.panel-features li {
  padding: 10px 0;
  padding-left: 36px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.panel-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--primary-008);
  border: 1px solid var(--accent-015);
}

.panel-features li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
}

/* Service visual card */
.service-visual-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.visual-icon {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-icon svg {
  width: 120px;
  height: 120px;
}

.visual-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v-stat {
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--bg-warm), var(--bg-section-tint));
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.v-stat span {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

/* ── Solutions ── */
.solutions-section {
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(196, 181, 253, 0.2) 25%,
      rgba(167, 139, 250, 0.15) 50%,
      rgba(139, 92, 246, 0.1) 75%,
      rgba(255, 255, 255, 0.4) 100%),
    #fff;
  position: relative;
  overflow: hidden;
}

/* Clean dot grid pattern */
.solutions-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(108, 43, 217, 0.09) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.solutions-section>.container {
  position: relative;
  z-index: 1;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.solution-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 36px 24px 32px;
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 20px rgba(108, 43, 217, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(108, 43, 217, 0.14), 0 4px 12px rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.95);
}

.solution-card.featured {
  border-color: var(--primary);
  border-width: 2px;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.06) 0%, rgba(255, 255, 255, 0.95) 100%);
  box-shadow: 0 8px 32px rgba(108, 43, 217, 0.12), var(--ring-outline);
}

.solution-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  padding: 5px 18px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: var(--glow-sm);
}

.solution-icon {
  color: var(--primary);
  margin-bottom: 20px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--gradient-primary);
  box-shadow: var(--glow-sm);
}

.solution-icon svg {
  stroke: #fff;
  width: 26px;
  height: 26px;
}

.solution-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.solution-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.7;
}

.solution-features {
  margin-bottom: 24px;
}

.solution-features li {
  padding: 5px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.solution-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ── Industries ── */
.industries-section {
  background: var(--gradient-section);
  position: relative;
  overflow: hidden;
}

/* Decorative — soft pastel abstract waves */
.industries-section::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 65%;
  height: 120%;
  background: url("assets/bg-v.png") no-repeat center;
  background-size: cover;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
  transform: scaleX(-1);
}

.industries-section>.container {
  position: relative;
  z-index: 1;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.35s var(--ease-out);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  cursor: default;
}

a.industry-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  background: #fff;
  box-shadow: var(--shadow-card-hover);
}

.industry-card:hover .industry-icon {
  transform: scale(1.1);
  box-shadow: var(--glow-md);
}

.industry-icon {
  color: #fff;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--gradient-primary);
  box-shadow: var(--ring-focus);
  transition: all 0.35s var(--ease-out);
}

.industry-info {
  min-width: 0;
}

.industry-card h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  line-height: 1.3;
}

.industry-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Why Us ── */
.why-section {
  background: #0B0414;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Mesh gradient canvas */
.why-section .why-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.why-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.why-bg-orb:nth-child(1) {
  width: 500px;
  height: 500px;
  top: -10%;
  left: 10%;
  background: rgba(108, 43, 217, 0.35);
  animation: orb-move-1 14s ease-in-out infinite alternate;
}

.why-bg-orb:nth-child(2) {
  width: 400px;
  height: 400px;
  top: 40%;
  right: -5%;
  background: rgba(139, 92, 246, 0.25);
  animation: orb-move-2 18s ease-in-out infinite alternate;
}

.why-bg-orb:nth-child(3) {
  width: 350px;
  height: 350px;
  bottom: -5%;
  left: 30%;
  background: rgba(167, 139, 250, 0.2);
  animation: orb-move-3 16s ease-in-out infinite alternate;
}

.why-bg-orb:nth-child(4) {
  width: 250px;
  height: 250px;
  top: 20%;
  right: 25%;
  background: rgba(196, 181, 253, 0.15);
  animation: orb-move-1 20s ease-in-out infinite alternate-reverse;
}

@keyframes orb-move-1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(60px, 40px) scale(1.2);
  }
}

@keyframes orb-move-2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-50px, -30px) scale(1.15);
  }
}

@keyframes orb-move-3 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, -50px) scale(1.1);
  }
}

/* Noise grain overlay */
.why-section .why-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' 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: 200px 200px;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

.why-section>.container {
  position: relative;
  z-index: 1;
}

/* Override text for dark bg */
.why-section .section-tag {
  color: var(--accent-light);
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
}

.why-section .section-title {
  color: #fff;
}

.why-section .why-lead {
  color: rgba(255, 255, 255, 0.55);
}

.why-section .why-top {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.why-section .wh-number {
  color: #fff;
}

.why-section .wh-suffix {
  color: var(--accent);
}

.why-section .wh-label {
  color: rgba(255, 255, 255, 0.4);
}

.why-section .why-highlight:nth-child(1),
.why-section .why-highlight:nth-child(2) {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.why-section .why-highlight:nth-child(1),
.why-section .why-highlight:nth-child(3) {
  border-right-color: rgba(255, 255, 255, 0.08);
}

/* Cards on dark */
.why-section .why-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.why-section .why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 20px 60px rgba(108, 43, 217, 0.2);
}

.why-section .why-card-icon {
  background: rgba(139, 92, 246, 0.12);
  color: var(--accent);
}

.why-section .why-card:hover .why-card-icon {
  background: var(--gradient-primary);
  color: #fff;
}

.why-section .why-card-body h4 {
  color: #fff;
}

.why-section .why-card-body p {
  color: rgba(255, 255, 255, 0.4);
}

.why-section>.container {
  position: relative;
  z-index: 1;
}

/* ── Top: intro left + stats right ── */
.why-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}

.why-intro {
  text-align: left;
}

.why-intro .section-title {
  text-align: left;
}

.why-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 480px;
}

/* Stat highlights — 2x2 grid */
.why-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.why-highlight {
  padding: 32px 24px;
  text-align: center;
  position: relative;
}

/* Divider lines between stat cells */
.why-highlight:nth-child(1),
.why-highlight:nth-child(2) {
  border-bottom: 1px solid var(--border);
}

.why-highlight:nth-child(1),
.why-highlight:nth-child(3) {
  border-right: 1px solid var(--border);
}

.wh-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.wh-suffix {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.wh-label {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── Bottom: feature cards — 4 cols ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.why-card {
  display: flex;
  gap: 16px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  margin-right: -1px;
  margin-bottom: -1px;
  transition: all 0.35s var(--ease-out);
  position: relative;
  background: #fff;
}

.why-card:hover {
  background: var(--bg-warm);
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.why-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.35s var(--ease-out);
}

.why-card:hover .why-card-icon {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--glow-sm);
}

.why-card-body h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
  line-height: 1.3;
}

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

/* ── Case Studies ── */
.case-studies-section {
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(196, 181, 253, 0.15) 20%,
      rgba(167, 139, 250, 0.12) 45%,
      rgba(139, 92, 246, 0.08) 70%,
      rgba(255, 255, 255, 0.4) 100%),
    #fff;
  position: relative;
  overflow: hidden;
  transition: background 0.8s ease;
}

/* Decorative floating shapes */
.case-studies-section::before {
  content: "";
  position: absolute;
  top: 5%;
  right: -3%;
  width: 400px;
  height: 400px;
  border: 2px solid rgba(139, 92, 246, 0.06);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: cs-float 18s ease-in-out infinite alternate;
}

.case-studies-section::after {
  content: "";
  position: absolute;
  bottom: 8%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(108, 43, 217, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: cs-float 14s ease-in-out infinite alternate-reverse;
}

@keyframes cs-float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(20px, -15px) scale(1.08);
  }
}

.case-studies-section>.container {
  position: relative;
  z-index: 1;
}

/* Floating SVG decorations */
.cs-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.cs-deco-1 {
  top: 8%;
  right: 4%;
  animation: cs-spin 60s linear infinite;
}

.cs-deco-2 {
  bottom: 12%;
  left: 2%;
  animation: cs-spin 80s linear infinite reverse;
}

.cs-deco-3 {
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  animation: cs-spin 70s linear infinite;
}

@keyframes cs-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Hero card — full width, horizontal split */
.cs-hero {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cs-hero .cs-visual {
  border-radius: 20px 0 0 20px;
  min-height: 340px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cs-hero .cs-content {
  padding: 40px 36px;
}

/* Card */
.cs-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-light);
}

a.cs-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.cs-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(108, 43, 217, 0.12), 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* Gradient visual block — top of each card */
.cs-visual {
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
}

.cs-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Featured badge */
.cs-badge {
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 14px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

/* Big stat number */
.cs-hero-stat {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
}

.cs-hero .cs-hero-stat {
  font-size: 5.5rem;
}

.cs-hero-stat small {
  font-size: 0.5em;
  opacity: 0.6;
  font-weight: 700;
}

.cs-hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  font-weight: 500;
}

/* Content block */
.cs-content {
  padding: 24px 24px 28px;
}

.cs-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.cs-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.cs-hero h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.cs-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.cs-hero p {
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* Metrics row */
.cs-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cs-metrics div {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.cs-metrics strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2px;
}

.cs-hero .cs-metrics strong {
  font-size: 1.4rem;
}

.cs-hero .cs-metrics {
  gap: 28px;
}

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

  .cs-hero {
    grid-template-columns: 1fr;
  }

  .cs-hero .cs-visual {
    border-radius: 20px 20px 0 0;
    min-height: 220px;
  }
}

@media (max-width: 768px) {
  .cs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cs-hero-stat {
    font-size: 3rem;
  }

  .cs-hero .cs-hero-stat {
    font-size: 4rem;
  }

  .cs-visual {
    min-height: 150px;
  }

  .cs-hero .cs-metrics {
    gap: 16px;
  }
}

/* ── Tech Stack ── */
.tech-section {
  background: #0B0414;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Animated grid lines */
.tech-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
  animation: grid-shift 20s linear infinite;
  z-index: 0;
}

/* Glowing nodes */
.tech-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(139, 92, 246, 0.2) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 50% 40% at 50% 50%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 50% 40% at 50% 50%, #000 20%, transparent 70%);
  pointer-events: none;
  animation: grid-shift 20s linear infinite;
  z-index: 0;
}

@keyframes grid-shift {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(64px, 64px);
  }
}

/* Floating orbs — same as Why Us */
.tech-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.tech-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.tech-orb:nth-child(1) {
  width: 450px;
  height: 450px;
  top: -15%;
  left: 5%;
  background: rgba(108, 43, 217, 0.3);
  animation: orb-move-1 14s ease-in-out infinite alternate;
}

.tech-orb:nth-child(2) {
  width: 350px;
  height: 350px;
  bottom: -10%;
  right: 0;
  background: rgba(139, 92, 246, 0.2);
  animation: orb-move-2 18s ease-in-out infinite alternate;
}

.tech-orb:nth-child(3) {
  width: 280px;
  height: 280px;
  top: 30%;
  right: 20%;
  background: rgba(167, 139, 250, 0.15);
  animation: orb-move-3 16s ease-in-out infinite alternate;
}

.tech-section>.container {
  position: relative;
  z-index: 1;
}

.tech-section .section-tag {
  color: var(--accent-light);
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
}

.tech-section .section-title {
  color: #fff;
}

.tech-section .section-desc {
  color: rgba(255, 255, 255, 0.5);
}

/* Category labels */
.tech-categories {
  margin-bottom: 20px;
}

.tech-cat {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tech-cat-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  white-space: nowrap;
}

.tech-cat-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.3), transparent);
}

/* Marquee container */
.tech-scroll-container {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  margin-bottom: 32px;
}

.tech-scroll-track {
  display: flex;
  gap: 14px;
  animation: scroll-tech 45s linear infinite;
  width: max-content;
}

.tech-scroll-container.reverse .tech-scroll-track {
  animation-direction: reverse;
  animation-duration: 50s;
}

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

/* Tech pill */
.tech-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.35s var(--ease-out);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.tech-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  filter: none;
  opacity: 1;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.tech-item span {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.35s ease;
}

.tech-item:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(108, 43, 217, 0.2);
}

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

.tech-item:hover span {
  color: #fff;
}

@keyframes scroll-tech {
  0% {
    transform: translateX(0);
  }

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

/* ── Testimonials ── */
/* ── Testimonials — video + text grid ── */
/* ── Testimonials ── */
.testimonials-section {
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(196, 181, 253, 0.12) 40%,
      rgba(167, 139, 250, 0.08) 70%,
      rgba(255, 255, 255, 0.5) 100%),
    #fff;
}

/* Split layout — sticky left, scroll right */
.tm-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: start;
}

/* Left — sticky intro */
.tm-left {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.tm-lead {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Score block */
.tm-score {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.tm-score-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.tm-score-number small {
  font-size: 0.4em;
  color: var(--text-muted);
  font-weight: 600;
}

.tm-score-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
}

.tm-score-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Right — scrollable testimonial cards */
.tm-scroll {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tm-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s var(--ease-out);
  box-shadow: var(--shadow-sm);
}

.tm-item:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

/* Result pills at top */
.tm-item-top {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.tm-item-result {
  padding: 10px 16px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.tm-item-result span {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 2px;
}

.tm-item blockquote {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 3px solid var(--border-accent);
}

/* Author */
.tm-item-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tm-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.72rem;
  color: #fff;
  flex-shrink: 0;
}

.tm-item-author strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.tm-item-author span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .tm-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tm-left {
    position: static;
    text-align: center;
  }

  .tm-left .section-title {
    text-align: center !important;
  }

  .tm-lead {
    max-width: 500px;
    margin: 0 auto 24px;
  }

  .tm-score {
    justify-content: center;
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .tm-item {
    padding: 24px;
  }

  .tm-item blockquote {
    font-size: 0.9rem;
  }

  .tm-item-result span {
    font-size: 1rem;
  }
}

/* ── Process ── */
/* ── Process / How We Deliver ── */
.process-section {
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.6) 0%,
      rgba(237, 233, 254, 0.2) 25%,
      rgba(221, 214, 254, 0.15) 50%,
      rgba(237, 233, 254, 0.2) 75%,
      rgba(255, 255, 255, 0.6) 100%),
    #FAFAFE;
  position: relative;
  overflow: hidden;
}

/* Top-right: concentric circles */
.process-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background:
    radial-gradient(circle, transparent 30%, rgba(139, 92, 246, 0.04) 31%, rgba(139, 92, 246, 0.04) 32%, transparent 33%),
    radial-gradient(circle, transparent 45%, rgba(139, 92, 246, 0.03) 46%, rgba(139, 92, 246, 0.03) 47%, transparent 48%),
    radial-gradient(circle, transparent 60%, rgba(139, 92, 246, 0.025) 61%, rgba(139, 92, 246, 0.025) 62%, transparent 63%),
    radial-gradient(circle, transparent 75%, rgba(139, 92, 246, 0.02) 76%, rgba(139, 92, 246, 0.02) 77%, transparent 78%);
  pointer-events: none;
  z-index: 0;
}

/* Bottom-left: diagonal lines pattern */
.process-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: repeating-linear-gradient(45deg,
      transparent,
      transparent 20px,
      rgba(108, 43, 217, 0.02) 20px,
      rgba(108, 43, 217, 0.02) 21px);
  pointer-events: none;
  z-index: 0;
}

.process-section>.container {
  position: relative;
  z-index: 1;
}

/* Floating SVG decorations */
.proc-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.proc-deco-1 {
  top: 12%;
  left: 5%;
  animation: proc-float 25s ease-in-out infinite alternate;
}

.proc-deco-2 {
  bottom: 15%;
  right: 4%;
  animation: proc-float 20s ease-in-out infinite alternate-reverse;
}

.proc-deco-3 {
  top: 30%;
  right: 12%;
  animation: proc-float 30s ease-in-out infinite alternate;
}

@keyframes proc-float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(10px, -8px) rotate(3deg);
  }

  100% {
    transform: translate(-5px, 12px) rotate(-2deg);
  }
}

/* Zigzag timeline — center line, cards alternate L/R */
.dl-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Center vertical line */
.dl-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--accent-light), var(--border));
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Each stage — 3 col grid: left | center dot | right */
.dl-stage {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: start;
  padding-bottom: 24px;
}

.dl-stage:last-child {
  padding-bottom: 0;
}

/* Odd stages — card on LEFT */
.dl-stage:nth-child(odd) .dl-card {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

.dl-stage:nth-child(odd) .dl-marker {
  grid-column: 2;
  grid-row: 1;
}

.dl-stage:nth-child(odd) .dl-list li {
  text-align: right;
  padding-left: 0;
  padding-right: 16px;
}

.dl-stage:nth-child(odd) .dl-list li::before {
  left: auto;
  right: 0;
}

.dl-stage:nth-child(odd) .dl-deliverable {
  float: right;
}

/* Even stages — card on RIGHT */
.dl-stage:nth-child(even) .dl-card {
  grid-column: 3;
  grid-row: 1;
}

.dl-stage:nth-child(even) .dl-marker {
  grid-column: 2;
  grid-row: 1;
}

/* Center marker */
.dl-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  justify-self: center;
}

.dl-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.4s var(--ease-out);
  box-shadow: var(--shadow-sm);
}

.dl-dot span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
}

.dl-stage:hover .dl-dot {
  background: var(--gradient-primary);
  border-color: var(--primary);
  box-shadow: var(--glow-md);
  transform: scale(1.12);
}

.dl-stage:hover .dl-dot span {
  color: #fff;
}

.dl-dot-pulse {
  animation: dot-glow 2s ease-in-out infinite alternate;
}

@keyframes dot-glow {
  0% {
    box-shadow: var(--shadow-sm);
  }

  100% {
    box-shadow: 0 0 20px 4px rgba(139, 92, 246, 0.2);
  }
}

.dl-duration {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  white-space: nowrap;
}

/* Card */
.dl-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 22px 18px;
  transition: all 0.4s var(--ease-out);
  box-shadow: var(--shadow-sm);
}

.dl-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.dl-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.dl-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 10px;
}

.dl-list {
  margin-bottom: 12px;
}

.dl-list li {
  font-size: 0.7rem;
  color: var(--text-muted);
  padding: 2px 0 2px 16px;
  position: relative;
  line-height: 1.5;
}

.dl-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
}

.dl-deliverable {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--primary);
  padding: 5px 12px;
  background: var(--primary-008);
  border: 1px solid var(--accent-015);
  border-radius: 100px;
}

.dl-deliverable svg {
  flex-shrink: 0;
  stroke: var(--primary);
  width: 13px;
  height: 13px;
}

/* Responsive — stack vertically on mobile */
@media (max-width: 768px) {
  .dl-timeline {
    padding-left: 32px;
  }

  .dl-line {
    left: 16px;
    transform: none;
  }

  .dl-stage {
    display: flex;
    gap: 16px;
    padding-bottom: 24px;
  }

  .dl-marker {
    position: absolute;
    left: -32px;
  }

  .dl-dot {
    width: 32px;
    height: 32px;
    border-width: 2px;
  }

  .dl-dot span {
    font-size: 0.7rem;
  }

  .dl-duration {
    display: none;
  }

  .dl-stage:nth-child(odd) .dl-card,
  .dl-stage:nth-child(even) .dl-card {
    text-align: left;
  }

  .dl-stage:nth-child(odd) .dl-list li {
    text-align: left;
    padding-left: 16px;
    padding-right: 0;
  }

  .dl-stage:nth-child(odd) .dl-list li::before {
    left: 0;
    right: auto;
  }

  .dl-stage:nth-child(odd) .dl-deliverable {
    float: none;
  }

  .dl-card {
    padding: 18px 16px;
  }
}

/* ── Insights ── */
.insights-section {
  background: var(--gradient-section-blue);
  position: relative;
  overflow: hidden;
}

/* Decorative — dot grid with connections */
.insights-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: -5%;
  width: 60%;
  height: 100%;
  background: url("assets/deco-dots.svg") no-repeat center;
  background-size: contain;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.insights-section>.container {
  position: relative;
  z-index: 1;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.insight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  box-shadow: var(--shadow-card);
}

a.insight-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.insight-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card-hover);
}

.insight-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start;
  padding: 20px;
  position: relative;
  transition: all 0.5s var(--ease-out);
}

.insight-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 4, 20, 0.3) 0%, rgba(11, 4, 20, 0.6) 100%);
  transition: opacity 0.4s ease;
}

.insight-card:hover .insight-image {
  transform: scale(1.05);
}

.insight-card:hover .insight-image::before {
  opacity: 0.8;
}

.insight-category {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
  z-index: 1;
}

.insight-body {
  padding: 28px;
}

.insight-body time {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
}

.insight-body h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.insight-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.insight-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.3s ease;
}

.insight-link:hover {
  color: var(--primary-dark);
}

/* ── Certifications ── */
.certifications-section {
  background: var(--bg-warm);
  padding-bottom: 0;
}

.certs-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s var(--ease-out);
  min-width: 140px;
  box-shadow: var(--shadow-card);
}

.cert-item:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.cert-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  font-family: var(--font-heading);
  box-shadow: var(--glow-btn);
}

.cert-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
}

/* ── CTA Section ── */
.cta-section {
  background: #0B0414;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Animated grid lines — same as Tech Stack */
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 75%);
  pointer-events: none;
  animation: grid-shift 20s linear infinite;
  z-index: 0;
}

/* Glowing nodes at intersections */
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(139, 92, 246, 0.15) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 50% 40% at 50% 50%, #000 15%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse 50% 40% at 50% 50%, #000 15%, transparent 65%);
  pointer-events: none;
  animation: grid-shift 20s linear infinite;
  z-index: 0;
}

/* Orbs — reuse why-section animations */
.cta-bg-animation {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.cta-bg-animation::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -20%;
  left: 10%;
  border-radius: 50%;
  background: rgba(108, 43, 217, 0.25);
  filter: blur(100px);
  animation: orb-move-1 14s ease-in-out infinite alternate;
}

.cta-bg-animation::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -15%;
  right: 5%;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.2);
  filter: blur(80px);
  animation: orb-move-2 18s ease-in-out infinite alternate;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  color: #fff;
}

.cta-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
}

.cta-form-wrapper {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  position: relative;
}

.form-group.full {
  grid-column: 1 / -1;
}

.cta-form input,
.cta-form textarea,
.cta-form select {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
  backdrop-filter: blur(8px);
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.cta-form select {
  appearance: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.4);
}

.cta-form select option {
  background: var(--bg-dark-lighter);
  color: #fff;
}

.cta-form input:focus,
.cta-form textarea:focus,
.cta-form select:focus {
  border-color: var(--primary-light);
  box-shadow: var(--ring-focus);
}

.cta-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* ── Global Presence ── */
/* ── Global Presence ── */
.global-section {
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(237, 233, 254, 0.2) 40%,
      rgba(221, 214, 254, 0.15) 70%,
      rgba(255, 255, 255, 0.5) 100%),
    #fff;
}

/* Split layout — globe left, offices right */
.globe-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Globe visual */
.globe-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 3D Earth Globe */
.earth-container {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.earth {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.earth-sphere {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(167, 139, 250, 0.25), transparent 50%),
    radial-gradient(circle at 65% 65%, rgba(108, 43, 217, 0.1), transparent 50%),
    conic-gradient(from 0deg at 50% 50%,
      #1E0A3C 0deg,
      #2D1240 40deg,
      #1E0A3C 80deg,
      #3B0764 120deg,
      #1E0A3C 160deg,
      #2D1240 200deg,
      #3B0764 240deg,
      #1E0A3C 280deg,
      #2D1240 320deg,
      #1E0A3C 360deg);
  box-shadow:
    inset -30px -20px 60px rgba(0, 0, 0, 0.5),
    inset 20px 15px 40px rgba(139, 92, 246, 0.15);
  animation: earth-spin 60s linear infinite;
  position: relative;
}

/* Grid lines on globe */
.earth-sphere::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 18%, rgba(139, 92, 246, 0.08) 18%, rgba(139, 92, 246, 0.08) 18.5%, transparent 18.5%),
    repeating-linear-gradient(90deg, transparent, transparent 18%, rgba(139, 92, 246, 0.06) 18%, rgba(139, 92, 246, 0.06) 18.5%, transparent 18.5%);
  animation: earth-spin 60s linear infinite reverse;
}

/* Atmosphere highlight */
.earth-sphere::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(167, 139, 250, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

@keyframes earth-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Orbit ring around globe */
.earth-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 115%;
  height: 35%;
  border: 1.5px solid rgba(139, 92, 246, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(70deg);
  pointer-events: none;
}

.earth-orbit::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 20%;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(108, 43, 217, 0.6);
  animation: orbit-dot 8s linear infinite;
}

@keyframes orbit-dot {
  0% {
    transform: rotate(0deg) translateX(50%);
  }

  100% {
    transform: rotate(360deg) translateX(50%);
  }
}

/* Glow behind globe */
.earth-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(108, 43, 217, 0.15) 0%, rgba(139, 92, 246, 0.05) 40%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

/* Location pins on globe */
.earth-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  z-index: 3;
  cursor: pointer;
}

.earth-pin::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #8B5CF6;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
}

.earth-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.4);
  animation: ping 2s ease-out infinite;
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

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

.earth-label {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.earth-pin:hover .earth-label {
  opacity: 1;
}

/* Office cards */
.globe-offices {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.go-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.35s var(--ease-out);
  box-shadow: var(--shadow-sm);
}

.go-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card-hover);
  transform: translateX(4px);
}

.go-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-008);
  border: 1px solid var(--accent-015);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.35s var(--ease-out);
}

.go-card:hover .go-icon {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--glow-sm);
}

.go-info h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.go-badge {
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.go-role {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 4px;
}

.go-address {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .globe-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .globe-container {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .globe-container {
    max-width: 260px;
  }

  .go-card {
    padding: 16px 18px;
  }
}

/* ── Footer ── */
.footer {
  background:
    linear-gradient(135deg, #2f1162 0%, #000000 100%),
    url('https://images.unsplash.com/photo-1639322537228-f710d846310a?w=1600&q=40') center top/cover no-repeat;
  color: #ffffff;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

/* Animated grid lines — same as tech stack */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, #000 20%, transparent 70%);
  pointer-events: none;
  animation: grid-shift 20s linear infinite;
  z-index: 0;
}

/* Glowing orbs */
.footer::after {
  content: "";
  position: absolute;
  top: -80px;
  left: 20%;
  width: 500px;
  height: 400px;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(108, 43, 217, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Floating orbs */
.footer-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.footer-orb:nth-child(1) {
  width: 350px;
  height: 350px;
  bottom: -10%;
  right: 5%;
  background: rgba(108, 43, 217, 0.15);
  animation: orb-move-2 16s ease-in-out infinite alternate;
}

.footer-orb:nth-child(2) {
  width: 280px;
  height: 280px;
  top: 20%;
  left: -5%;
  background: rgba(139, 92, 246, 0.1);
  animation: orb-move-3 20s ease-in-out infinite alternate;
}

.footer>.container {
  position: relative;
  z-index: 1;
}

.footer h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.footer-contact-col {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 768px) {
  .footer-contact-col {
    padding-left: 0 !important;
    border-left: none; /* optional, remove line also */
  }
}

.footer-top {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, minmax(0, 1fr)) 1.15fr;
  gap: 28px 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  height: 100px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
  background: var(--primary-010);
}

.footer-links-group {
  display: contents;
}

.footer-col ul li a {
  display: block;
  padding: 5px 0;
  font-size: 0.85rem;
  color: #ffffff;
  transition: all 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 0.85rem;
  color: #ffffff;
}

.footer-contact svg {
  flex-shrink: 0;
  opacity: 1;
  color: #ffffff;
}

.footer-newsletter p {
  font-size: 0.85rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input::placeholder {
  color: #ffffff;
}

.newsletter-form input:focus {
  border-color: var(--primary-light);
}

.newsletter-form .btn {
  padding: 12px 20px;
  font-size: 0.85rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: #ffffff;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: #ffffff;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary-light);
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.4s var(--ease-out);
  box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Scroll Reveal — CSS driven, JS toggles class ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

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

/* Stagger children */
.reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.reveal:nth-child(5) {
  transition-delay: 0.32s;
}

.reveal:nth-child(6) {
  transition-delay: 0.4s;
}

/* GSAP magnetic button hint */
.btn-primary,
.btn-outline {
  will-change: transform;
}

/* ── GSAP Awwwards-level effects ── */

/* Card 3D tilt perspective container */
.solution-card,
.why-card,
.industry-card,
.insight-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* 3. Process timeline — animated fill line */
.timeline-progress-fill {
  position: absolute;
  left: 40px;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--gradient-brand);
  border-radius: 2px;
  transform-origin: top center;
  transform: scaleY(0);
  z-index: 2;
}

/* 4. Cursor glow follower */
.cursor-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-004) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: normal;
}

/* 5. Section tag initial state for bounce */
.section-tag {
  transform-origin: center;
}

/* 6. Footer links initial offset for stagger */
.footer-col ul li {
  transform: translateX(-8px);
  transition: transform 0.3s ease;
}

/* ══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════ */

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

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

  .mega-menu {
    width: 700px;
  }
}

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

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

  .why-intro {
    text-align: center;
  }

  .why-intro .section-title {
    text-align: center;
  }

  .why-lead {
    max-width: 100%;
    margin: 0 auto;
  }

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

  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .btn-header {
    display: none;
  }

  .logo-img {
    height: 69px;
    width: auto;
  }

  .services-tabs {
    flex-direction: column;
  }

  .services-tab-nav {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .services-tab-nav::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 10px 16px;
    font-size: 0.85rem;
  }

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



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

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
    --header-height: 76px;
  }

  .partner-card {
    padding: 6px 14px;
  }

  .partner-card svg,
  .partner-card .partner-logo-img {
    width: 22px;
    height: 22px;
  }

  .marquee-track {
    animation-duration: 28s;
  }

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

  .stat-card {
    padding: 28px 16px;
  }

  /* On 2-col, add bottom divider for top row */
  .stat-card:nth-child(-n + 2)::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
  }

  /* Remove right divider from 2nd and 4th items */
  .stat-card:nth-child(2)::after,
  .stat-card:nth-child(4)::after {
    display: none;
  }

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

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

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

  .why-top {
    gap: 32px;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .why-highlights {
    max-width: 400px;
    margin: 0 auto;
  }

  .wh-number {
    font-size: 2.2rem;
  }

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

  .certs-grid {
    gap: 16px;
  }

  .cert-item {
    min-width: 100px;
    padding: 20px 16px;
  }

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

  .cta-form-wrapper {
    padding: 24px;
  }

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

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

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


  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .trust-logos {
    gap: 20px;
  }

  .trust-logo-item {
    font-size: 0.7rem;
    gap: 6px;
  }

  .trust-logo-item svg {
    width: 16px;
    height: 16px;
  }

}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: clamp(2.1rem, 9vw, 2.6rem);
    max-width: 100%;
    line-height: 1.12;
  }

  .hero-title-accent {
    margin-top: 0.16em;
  }

  .section-title {
    font-size: 1.6rem;
  }

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

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

  .footer-links-group {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

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

}

/* ── Print styles ── */
@media print {

  .header,
  .back-to-top,
  .hero-video-wrapper,
  .cta-bg-animation,
  #preloader {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section {
    padding: 32px 0;
  }
}