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

/* ── TOKENS ── */
:root {
  --blue: #0b2157;
  --blue-mid: #1a3a80;
  --blue-light: rgba(11, 33, 87, 0.08);
  --text: #0f172a;
  --text-muted: #64748b;
  --border: rgba(0, 0, 0, 0.08);
}

html,
body {
  height: 100%;
  font-family: "Inter", sans-serif;
  background: #f0f2f5;
  overflow-x: hidden;
}

/* ════════════════════════════════════
   NAV
════════════════════════════════════ */
.site-nav {
  position: relative;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--border);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  overflow: visible;
}

/* Logo */
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
}

.nav-divider {
  width: 1px;
  height: 28px;
  background: rgba(0, 0, 0, 0.15);
  margin: 0 14px;
  flex-shrink: 0;
}

.parent-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.parent-link:hover {
  opacity: 1;
}
.parent-link img {
  height: 18px;
  width: auto;
  display: block;
}
.parent-label {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  position: relative;
  overflow: visible;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text);
}

.nav-links .has-arrow::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 3L4 5.5L6.5 3' stroke='%2364748b' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.22s ease;
}
.nav-item:hover > a.has-arrow::after {
  transform: rotate(-180deg);
}

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  color: #fff !important;
  background: var(--blue);
  padding: 8px 18px;
  border-radius: 6px;
  letter-spacing: -0.01em;
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: var(--blue-mid) !important;
  color: #fff !important;
}

/* ════════════════════════════════════
   MEGA MENU
════════════════════════════════════ */
.nav-item {
  position: relative;
  list-style: none;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 30%;
  transform: translateX(-50%) translateY(-6px);
  width: 60vw;
  min-width: 480px;
  max-width: 900px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: 200;
}
.nav-item:hover .mega-menu,
.mega-menu:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Bridge gap between link and menu */
.nav-item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 20px;
}

.mega-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.mega-header h3 {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

.mega-learn {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}
.mega-learn:hover {
  color: var(--blue);
}

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

.mega-card {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  background: #fafafa;
  display: block;
}
.mega-card:hover {
  border-color: rgba(11, 33, 87, 0.2);
  box-shadow: 0 4px 16px rgba(11, 33, 87, 0.1);
  transform: translateY(-2px);
}

.mega-card-preview {
  width: 100%;
  height: 110px;
  position: relative;
  overflow: hidden;
  background: #e5e9f0;
}
.mega-card-preview video,
.cs-card-preview video,
.ind-mega-icon video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mock {
  width: 80%;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  padding: 8px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.mock-bar {
  height: 6px;
  border-radius: 3px;
  margin-bottom: 5px;
  background: rgba(11, 33, 87, 0.15);
}
.mock-bar.short {
  width: 55%;
}
.mock-bar.med {
  width: 75%;
}
.mock-bar.full {
  width: 100%;
}
.mock-bar.tiny {
  width: 40%;
  height: 4px;
  background: rgba(11, 33, 87, 0.08);
}
.mock-row {
  display: flex;
  gap: 5px;
  margin-top: 6px;
}
.mock-chip {
  height: 14px;
  border-radius: 3px;
  background: rgba(11, 33, 87, 0.1);
}

.mega-card-body {
  padding: 12px 14px 14px;
}
.mega-card-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}
.mega-card-desc {
  font-size: 11.5px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: -0.005em;
}

/* Case Studies mega menu */
.cs-mega-menu {
  width: 44vw;
  min-width: 500px;
  max-width: 720px;
  left: auto;
  right: 0;
  transform: translateY(-6px);
}
.nav-item:hover .cs-mega-menu,
.cs-mega-menu:hover {
  transform: translateY(0) !important;
  opacity: 1;
  pointer-events: auto;
}

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

.cs-card {
  display: block;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  overflow: hidden;
  background: #fafafa;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.cs-card:hover {
  border-color: rgba(11, 33, 87, 0.2);
  box-shadow: 0 4px 16px rgba(11, 33, 87, 0.1);
  transform: translateY(-2px);
}

.cs-card-preview {
  height: 96px;
  position: relative;
  overflow: hidden;
  background: #e5e9f0;
  display: flex;
  align-items: flex-end;
  padding: 12px 14px;
}
.cs-stat {
  position: relative;
  z-index: 1;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}
.cs-stat span {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
  display: block;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
}

.cs-card-body {
  padding: 11px 14px 13px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.cs-card-industry {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 3px;
  opacity: 0.7;
}
.cs-card-name {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* ════════════════════════════════════
   INDUSTRIES MEGA MENU
════════════════════════════════════ */
/* Products mega menu */
.products-mega-menu {
  width: 340px;
  min-width: 300px;
  max-width: 380px;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
}
.nav-item:hover .products-mega-menu,
.products-mega-menu:hover {
  transform: translateX(-50%) translateY(0) !important;
  opacity: 1;
  pointer-events: auto;
}

.product-mega-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition:
    background 0.18s,
    border-color 0.18s;
  margin-top: 4px;
}
.product-mega-item:hover {
  background: #f5f7fa;
  border-color: rgba(11, 33, 87, 0.12);
}
.product-mega-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.product-mega-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}
.product-mega-desc {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.45;
  letter-spacing: -0.005em;
}
.product-mega-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
  margin-left: auto;
  opacity: 0;
  transition:
    opacity 0.18s,
    transform 0.18s;
}
.product-mega-item:hover .product-mega-arrow {
  opacity: 1;
  transform: translateX(3px);
}

.ind-mega-menu {
  width: 38vw;
  min-width: 400px;
  max-width: 560px;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
}
.nav-item:hover .ind-mega-menu,
.ind-mega-menu:hover {
  transform: translateX(-50%) translateY(0) !important;
  opacity: 1;
  pointer-events: auto;
}

.ind-mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.ind-mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  text-decoration: none;
  background: #fafafa;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s;
}
.ind-mega-item:hover {
  border-color: rgba(11, 33, 87, 0.2);
  background: rgba(11, 33, 87, 0.03);
  transform: translateY(-1px);
}

.ind-mega-icon {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e5e9f0;
  position: relative;
}
.ind-mega-name {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.ind-mega-desc {
  font-size: 11px;
  color: var(--text-muted);
}

/* ════════════════════════════════════
   MOBILE HAMBURGER BUTTON
════════════════════════════════════ */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.mobile-menu-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}
.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    width 0.3s ease;
  transform-origin: center;
}
.mobile-menu-btn.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-btn.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ════════════════════════════════════
   MOBILE DRAWER
════════════════════════════════════ */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 300;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-overlay.visible {
  display: block;
}
.mobile-overlay.active {
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 90vw);
  background: #fff;
  z-index: 400;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-drawer-logo img {
  height: 36px;
  width: auto;
}

.mobile-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  cursor: pointer;
  color: var(--text);
  transition: background 0.2s;
}
.mobile-close-btn:hover {
  background: rgba(0, 0, 0, 0.1);
}

.mobile-nav {
  flex: 1;
  padding: 8px 0;
  overflow-y: auto;
}

/* Flat link */
.mobile-nav-link {
  display: block;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition:
    background 0.15s,
    color 0.15s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.mobile-nav-link:hover {
  background: rgba(11, 33, 87, 0.04);
  color: var(--blue);
}

/* Accordion item */
.mobile-accordion {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.mobile-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
  text-align: left;
  transition:
    background 0.15s,
    color 0.15s;
}
.mobile-accordion-trigger:hover {
  background: rgba(11, 33, 87, 0.04);
  color: var(--blue);
}

.mobile-accordion-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--text-muted);
}
.mobile-accordion.open .mobile-accordion-icon {
  transform: rotate(180deg);
}

.mobile-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f8fafc;
}
.mobile-accordion.open .mobile-accordion-body {
  max-height: 600px;
}

.mobile-sub-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 12px 28px;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: background 0.15s;
}
.mobile-sub-item:last-child {
  border-bottom: none;
}
.mobile-sub-item:hover {
  background: rgba(11, 33, 87, 0.06);
}

.mobile-product-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.mobile-sub-text {
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
}
.mobile-sub-desc {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}

/* Drawer footer CTA */
.mobile-drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-cta-btn {
  display: block;
  width: 100%;
  padding: 13px;
  background: var(--blue);
  color: #fff;
  text-align: center;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-cta-btn:hover {
  background: var(--blue-mid);
}

/* ════════════════════════════════════
   HERO WRAPPER
════════════════════════════════════ */
.hero-wrap {
  padding: 16px 20px 24px;
}

.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 60px - 40px);
  min-height: 560px;
  border-radius: 16px;
  overflow: hidden;
  background: #0a1020;
}

/* ── Gradient Hero Background (replaces video on service pages) ── */
.gradient-bg-hero {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 90% at 75% 50%,
      rgba(37, 74, 220, 0.9) 0%,
      rgba(18, 40, 130, 0.6) 35%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 50% 60% at 95% 20%,
      rgba(80, 110, 255, 0.5) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 40% 50% at 60% 80%,
      rgba(10, 30, 100, 0.6) 0%,
      transparent 55%
    ),
    linear-gradient(135deg, #04090f 0%, #060e1c 30%, #0b1530 60%, #0a1228 100%);
}

/* ── Video Backgrounds ── */
.video-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}
.video-bg.active {
  opacity: 1;
}
.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Overlays ── */
.overlay-main {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      110deg,
      rgba(8, 15, 40, 0.92) 28%,
      rgba(8, 15, 40, 0.55) 60%,
      rgba(8, 15, 40, 0.18) 100%
    ),
    linear-gradient(to top, rgba(8, 15, 40, 0.85) 0%, transparent 38%);
  z-index: 2;
}
.overlay-blue {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at -10% 50%,
    rgba(11, 33, 87, 0.35) 0%,
    transparent 65%
  );
  z-index: 3;
}

/* ── Ghost Number ── */
.ghost-num {
  position: absolute;
  right: 4vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Inter", sans-serif;
  font-size: clamp(160px, 17vw, 300px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
  user-select: none;
  z-index: 4;
  transition: opacity 0.3s;
}

/* ── Slide Content ── */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 0 52px 130px;
}

.slides-wrap {
  position: relative;
  width: 100%;
  max-width: 640px;
  height: 420px;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(56px);
  transition:
    opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.slide.exit {
  opacity: 0;
  transform: translateX(-56px);
}

.s-label {
  display: none;
}

.s-heading {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
}
.s-heading em {
  font-style: normal;
  color: #6fa3ff;
}

.s-desc {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 460px;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.s-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}
.s-points li {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
  cursor: default;
}
.s-points li:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.s-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  background: var(--blue);
  border: 1px solid rgba(78, 139, 255, 0.3);
  padding: 11px 22px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition:
    background 0.3s,
    border-color 0.3s;
  width: fit-content;
}
.s-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(78, 139, 255, 0.2), transparent);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.s-cta:hover {
  background: var(--blue-mid);
  border-color: rgba(78, 139, 255, 0.5);
}
.s-cta:hover::before {
  transform: translateX(0);
}
.s-cta .arr {
  transition: transform 0.25s;
}
.s-cta:hover .arr {
  transform: translateX(3px);
}

/* ── Tabs ── */
.tabs-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 0 20px 20px;
}
.tabs-inner {
  display: flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 6px;
}

.tab-btn {
  flex: 1;
  padding: 14px 18px 12px;
  text-align: left;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  position: relative;
  outline: none;
  background: transparent;
  transition:
    background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.tab-btn.active {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.15),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}
.tab-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
}

.tab-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: auto;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--blue), #2563eb);
  border-radius: 0 0 8px 8px;
  transition: none;
}

.tab-num {
  display: block;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 5px;
  transition: color 0.3s;
}
.tab-btn.active .tab-num {
  color: var(--blue);
}

.tab-label {
  display: block;
  font-size: clamp(11px, 1.05vw, 13px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s;
}
.tab-btn.active .tab-label {
  color: var(--text);
}
.tab-btn:hover:not(.active) .tab-label {
  color: rgba(255, 255, 255, 0.65);
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 768px) {
  .site-nav {
    padding: 0 16px 0 16px;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }

  .hero-wrap {
    padding: 12px 12px 16px;
  }
  .hero {
    height: calc(100svh - 60px - 24px);
    min-height: 500px;
  }
  .hero-content {
    padding: 0 24px 180px;
  }

  .s-heading {
    font-size: 30px;
  }
  .s-desc {
    font-size: 15px;
  }
  .ghost-num {
    display: none;
  }

  .tabs-wrap {
    padding: 0 12px 12px;
  }
  .tab-btn {
    padding: 10px 10px 9px;
  }
  .tab-num {
    font-size: 8.5px;
  }
  .slides-wrap {
    height: 440px;
  }
}

@media (max-width: 480px) {
  .s-heading {
    font-size: 26px;
  }
  .tab-label {
    font-size: 10px;
  }
  .s-desc {
    font-size: 14px;
  }
}

::-webkit-scrollbar {
  display: none;
}

/* ════════════════════════════════════
   INDUSTRIES SECTION
════════════════════════════════════ */
.industries-section {
  background: #fff;
  border-top: 1px solid var(--border);
}

.ind-header {
  padding: 44px 52px 24px;
}

.ind-tabs-wrap {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.ind-eyebrow {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  opacity: 0.7;
}

.ind-header h2 {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.ind-tabs-inner {
  padding: 0 52px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.ind-tab {
  background: none;
  border: none;
  padding: 14px 22px;
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: color 0.25s;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.ind-tab::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.ind-tab.active {
  color: var(--text);
  font-weight: 500;
}
.ind-tab.active::after {
  transform: scaleX(1);
}
.ind-tab:hover:not(.active) {
  color: var(--text);
}

.ind-panels-wrap {
  padding: 0 52px 100px;
}

.ind-panel {
  display: flex;
  gap: 80px;
  align-items: center;
  min-height: 85vh;
  padding: 80px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 0.45;
  transition: opacity 0.6s ease;
  scroll-margin-top: 160px;
}
.ind-panel:last-child {
  border-bottom: none;
}
.ind-panel.active {
  opacity: 1;
}

.ind-left {
  flex: 1;
  min-width: 0;
}

.ind-left h3 {
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.ind-left p {
  font-size: 15.5px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 500px;
  letter-spacing: -0.005em;
}

.ind-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.ind-tags li {
  font-size: 12px;
  font-weight: 400;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid rgba(11, 33, 87, 0.12);
  border-radius: 999px;
  padding: 6px 14px;
}

.ind-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: var(--blue);
  padding: 11px 22px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.2s;
}
.ind-cta:hover {
  background: var(--blue-mid);
}
.ind-cta .arr {
  transition: transform 0.25s;
}
.ind-cta:hover .arr {
  transform: translateX(3px);
}

.ind-right {
  flex-shrink: 0;
  width: clamp(280px, 44%, 560px);
}

.ind-video-wrap {
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #e5e9f0;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}
.ind-video-wrap video,
.ind-video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Glassmorphic label on video */
.ind-video-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

@media (max-width: 900px) {
  .ind-header {
    padding: 36px 24px 20px;
  }
  .ind-tabs-inner {
    padding: 0 24px;
    flex-wrap: wrap;
    overflow-x: visible;
  }
  .ind-tab {
    white-space: normal;
    text-align: left;
  }
  .ind-panels-wrap {
    padding: 0 24px 60px;
  }
  .ind-panel {
    flex-direction: column !important;
    gap: 40px;
    min-height: auto;
    padding: 56px 0;
  }
  .ind-right {
    width: 100%;
  }
  .ind-video-wrap {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 480px) {
  .ind-header h2 {
    font-size: 24px;
  }
  .ind-left h3 {
    font-size: 22px;
  }
  .ind-tab {
    padding: 12px 14px;
    font-size: 12.5px;
  }
}

/* ════════════════════════════════════
   CASE STUDIES SECTION
════════════════════════════════════ */
.cs-section {
  padding: 100px 52px 80px;
  background: #fff;
}

.cs-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.cs-section-eyebrow {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  opacity: 0.7;
}

.cs-section-heading {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.cs-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
  padding: 10px 20px;
  border: 1.5px solid rgba(11, 33, 87, 0.2);
  border-radius: 100px;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.cs-view-all:hover {
  background: rgba(11, 33, 87, 0.05);
  border-color: var(--blue);
}

.cs-grid-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cs-big-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/10;
  display: block;
  text-decoration: none;
  background: #0b1a2e;
}

.cs-big-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.cs-big-card:hover video {
  transform: scale(1.04);
}

.cs-big-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 10, 25, 0.92) 0%,
    rgba(5, 10, 25, 0.45) 50%,
    rgba(5, 10, 25, 0.1) 100%
  );
}

.cs-big-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 36px;
}

.cs-big-client {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}

.cs-big-title {
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 10px;
}

.cs-big-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 480px;
}

.cs-big-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  opacity: 0.85;
  transition:
    opacity 0.2s,
    gap 0.2s;
}
.cs-big-card:hover .cs-big-cta {
  opacity: 1;
  gap: 10px;
}

.cs-big-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cs-big-tags span {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 4px 12px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(6px);
}

@media (max-width: 900px) {
  .cs-section {
    padding: 60px 24px 60px;
  }
  .cs-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .cs-grid-main {
    grid-template-columns: 1fr;
  }
  .cs-big-card {
    aspect-ratio: 16/9;
  }
  .cs-big-body {
    padding: 24px;
  }
}

/* ════════════════════════════════════
   COMPANY MEGA MENU
════════════════════════════════════ */
.company-mega-menu {
  width: 300px;
  min-width: 280px;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
}
.nav-item:hover .company-mega-menu,
.company-mega-menu:hover {
  transform: translateX(-50%) translateY(0) !important;
  opacity: 1;
  pointer-events: auto;
}
.company-mega-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
}
.company-mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}
.company-mega-item:hover {
  background: #f5f7fa;
}
.company-mega-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(11, 33, 87, 0.06);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.company-mega-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.company-mega-desc {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* ════════════════════════════════════
   BLOGS SECTION
════════════════════════════════════ */
.blog-section {
  padding: 100px 52px 100px;
  background: #f8fafc;
}
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
}
.blog-eyebrow {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  opacity: 0.7;
}
.blog-heading {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.blog-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}
.blog-card-img {
  overflow: hidden;
  aspect-ratio: 16/10;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.blog-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(11, 33, 87, 0.07);
  padding: 4px 11px;
  border-radius: 100px;
}
.blog-date {
  font-size: 11.5px;
  color: var(--text-muted);
}
.blog-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin-bottom: 12px;
}
.blog-excerpt {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.blog-author {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
}
.blog-read {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .blog-section {
    padding: 60px 24px;
  }
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════
   VIDEO TESTIMONIALS
════════════════════════════════════ */
.testimonials-section {
  padding: 100px 0 80px;
  background: #fff;
  overflow: hidden;
}

.testi-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 52px 40px;
}

.testi-eyebrow {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  opacity: 0.7;
}

.testi-heading {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.testi-nav {
  display: none;
}

.testi-track-wrap {
  padding: 0 52px;
}

.testi-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.testi-card {
  width: 100%;
}

.testi-thumb {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #e5e9f0;
  cursor: pointer;
}

.testi-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.testi-card:hover .testi-thumb img {
  transform: scale(1.04);
}

.testi-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}

.testi-play svg {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  padding: 16px;
  color: #fff;
  transition:
    background 0.2s,
    transform 0.2s;
}

.testi-card:hover .testi-play svg {
  background: rgba(255, 255, 255, 0.32);
  transform: scale(1.08);
}

.testi-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 4px 0;
}

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
}

.testi-name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

.testi-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: -0.005em;
}

@media (max-width: 900px) {
  .testi-header {
    padding: 0 24px 32px;
  }
  .testi-track-wrap {
    padding: 0 24px;
  }
  .testi-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .testi-heading {
    font-size: 24px;
  }
  .testi-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: #fff;
  color: #374151;
  padding: 72px 0 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  /* max-width: 1304px;
  margin: 0 auto; */
  padding: 0 52px;
}

/* Brand row — logo/tagline/socials left, nav cols right */
.footer-brand-row {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  flex-shrink: 0;
  width: 280px;
}

.footer-logo {
  display: block;
  text-decoration: none;
  margin-bottom: 14px;
}

.footer-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #f9fafb;
  color: #374151;
  font-size: 13px;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}

.footer-social-btn:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #2563eb;
}

/* Nav columns */
.footer-nav-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  flex: 1;
}

.footer-nav-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111827;
  margin-bottom: 16px;
}

.footer-nav-col a {
  display: block;
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.18s;
}

.footer-nav-col a:hover {
  color: #111827;
}

/* Location cards */
.footer-locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.footer-location-card {
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
}

.footer-location-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border-color: #bfdbfe;
}

.footer-loc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.footer-loc-head h5 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
}

.footer-loc-flag {
  font-size: 30px;
  line-height: 1;
}

.footer-loc-addr {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 18px;
}

.footer-loc-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.footer-loc-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  transition: color 0.18s;
}

.footer-loc-contact:hover {
  color: #2563eb;
}
.footer-loc-contact svg {
  flex-shrink: 0;
  color: #6b7280;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  color: #9ca3af;
}

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

.footer-bottom-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.18s;
}

.footer-bottom-links a:hover {
  color: #374151;
}

/* Footer responsive */
@media (max-width: 1024px) {
  .footer-inner {
    padding: 0 32px;
  }
  .footer-brand-row {
    gap: 48px;
  }
  .footer-nav-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 48px 0 0;
  }
  .footer-inner {
    padding: 0 20px;
  }
  .footer-brand-row {
    flex-direction: column;
    gap: 32px;
  }
  .footer-brand {
    width: 100%;
  }
  .footer-nav-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .footer-locations {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 36px 0;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-bottom-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════
   COMPOSABLE CMS PAGE
══════════════════════════════════════════ */
.cms-page {
  background: #fff;
}

.cms-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 52px;
}

.cms-section {
  padding: 96px 0;
}

/* ── What We Build: sticky right image layout ── */
.cwb-section {
  overflow: hidden;
}

.cwb-intro {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 52px 64px;
}

.cwb-intro .ind-eyebrow {
  margin-bottom: 14px;
}

.cwb-intro h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.2;
}

/* Each block is a full-width row with 2 columns */
.cwb-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 52px;
  gap: 0;
}

.cwb-light {
  background: #fff;
}
.cwb-dark {
  background: #080f1e;
}

/* Left: tall enough to trigger sticky scroll */
.cwb-left {
  padding: 100px 64px 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}

.cwb-dark .cwb-left {
  color: #e2e8f0;
}

.cwb-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 20px;
}

.cwb-dark .cwb-num {
  color: #60a5fa;
}

.cwb-left h3 {
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin-bottom: 20px;
  color: #0f172a;
}

.cwb-dark .cwb-left h3 {
  color: #f1f5f9;
}

.cwb-left h3 em {
  font-style: normal;
  color: #2563eb;
}

.cwb-dark .cwb-left h3 em {
  color: #60a5fa;
}

.cwb-left p {
  font-size: 16px;
  line-height: 1.75;
  color: #475569;
  max-width: 460px;
  margin-bottom: 32px;
}

.cwb-dark .cwb-left p {
  color: #94a3b8;
}

.cwb-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cwb-tags li {
  font-size: 13px;
  font-weight: 500;
  color: #334155;
  background: #f1f5f9;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  padding: 6px 16px;
}

.cwb-dark .cwb-tags li {
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Right: sticky image — align-self:start is REQUIRED for sticky in grid */
.cwb-right {
  position: sticky;
  top: 110px; /* 60px nav + ~50px tabs */
  height: calc(100vh - 130px);
  align-self: start;
  display: flex;
  align-items: stretch;
  padding: 24px 0 24px 48px;
}

.cwb-sticky-img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.cwb-sticky-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Stats section — light bg, matches site border/token style */
.cms-stats-section {
  background: #f8fafc;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}

.cms-stats-inner {
  padding: 0 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cms-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  text-align: center;
}

.cms-stat-num {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.045em;
  color: var(--text);
  line-height: 1;
}

.cms-stat-suffix {
  font-size: 32px;
  font-weight: 300;
  color: var(--blue);
}

.cms-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}

.cms-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* Process section */
.cms-process-section {
  background: #fff;
  padding: 80px 0 52px;
}

.cms-process-inner {
  padding: 0 52px;
}

.cms-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cms-step-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px 32px;
  transition:
    box-shadow 0.2s,
    border-color 0.2s,
    transform 0.2s;
}

.cms-step-card:hover {
  box-shadow: 0 6px 24px rgba(11, 33, 87, 0.08);
  border-color: rgba(11, 33, 87, 0.18);
  transform: translateY(-3px);
}

.cms-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.cms-step-card h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.cms-step-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* CTA section */
.cms-cta-section {
  background: #f8fafc;
  border-top: 1px solid var(--border);
  padding: 80px 0 96px;
}

.cms-cta-inner {
  padding: 0 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cms-cta-text .ind-eyebrow {
  margin-bottom: 14px;
}

.cms-cta-text h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.cms-cta-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 440px;
}

.cms-cta-actions {
  flex-shrink: 0;
}

/* CMS page responsive */
@media (max-width: 1024px) {
  .cms-section-inner {
    padding: 0 32px;
  }
  .cwb-intro {
    padding: 60px 32px 48px;
  }
  .cwb-block {
    padding: 0 32px;
  }
  .cwb-right {
    top: 100px;
    height: calc(100vh - 120px);
    padding-left: 32px;
  }
  .cms-stats-inner {
    padding: 0 32px;
  }
  .cms-process-inner {
    padding: 0 32px;
  }
  .cms-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cms-cta-inner {
    padding: 0 32px;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .cms-section {
    padding: 64px 0;
  }
  .cms-section-inner {
    padding: 0 20px;
  }
  .cwb-intro {
    padding: 48px 20px 36px;
  }

  .cwb-block {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0 20px 60px;
  }

  .cwb-left {
    padding: 60px 0 40px;
    min-height: auto;
  }

  .cwb-right {
    position: relative;
    top: 0;
    height: 280px;
    padding: 0;
  }

  .cms-stats-inner {
    flex-direction: column;
    gap: 28px;
    padding: 0 24px;
  }
  .cms-stat-divider {
    width: 60px;
    height: 1px;
  }
  .cms-process-inner {
    padding: 0 24px;
  }
  .cms-steps-grid {
    grid-template-columns: 1fr;
  }
  .cms-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px;
    gap: 28px;
  }
  .cms-cta-sub {
    max-width: 100%;
  }
}

/* ============================================
   ACCELARONIX — CONTACT FORM 7 STYLES
   Paste this entire block into styles.css
   ============================================ */

/* ── Form wrapper card ── */
.ct-form-wrap {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 48px 44px;
}
.ct-form-heading {
  font-size: 22px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.ct-form-subtext {
  font-size: 13.5px;
  font-weight: 300;
  color: #64748b;
  margin: 0 0 28px;
}

/* ── CF7 form element wrapper ── */
.ct-form-wrap .wpcf7-form,
.ct-form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Row + column layout ── */
.ct-form-wrap .cf7-row {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.ct-form-wrap .cf7-full {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.ct-form-wrap .cf7-half {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
}

/* ── Labels ── */
.ct-form-wrap label,
.ct-form-wrap .cf7-full > label,
.ct-form-wrap .cf7-half > label {
  display: block !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #475569 !important;
  margin-bottom: 7px !important;
  line-height: 1 !important;
}

/* ── CF7 control-wrap span (wraps each field) ── */
.ct-form-wrap .wpcf7-form-control-wrap {
  display: block !important;
  width: 100% !important;
}

/* ── Text / Email / Tel inputs ── */
.ct-form-wrap input[type="text"],
.ct-form-wrap input[type="email"],
.ct-form-wrap input[type="tel"],
.ct-form-wrap input[type="url"] {
  width: 100% !important;
  height: 50px !important;
  padding: 0 16px !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  font-family: inherit !important;
  font-weight: 400 !important;
  color: #0f172a !important;
  background: #ffffff !important;
  box-sizing: border-box !important;
  transition:
    border-color 0.18s,
    box-shadow 0.18s !important;
  outline: none !important;
  display: block !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  line-height: 50px !important;
}

/* ── Select / Dropdown ── */
.ct-form-wrap select,
.ct-form-wrap .wpcf7-select {
  width: 100% !important;
  height: 50px !important;
  padding: 0 44px 0 16px !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  font-family: inherit !important;
  font-weight: 400 !important;
  color: #0f172a !important;
  background-color: #ffffff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 6l4.5 4.5L12.5 6' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 16px 16px !important;
  box-sizing: border-box !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  outline: none !important;
  cursor: pointer !important;
  transition:
    border-color 0.18s,
    box-shadow 0.18s !important;
  display: block !important;
  line-height: 50px !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  vertical-align: middle !important;
}

/* Fix select text clipping in Firefox */
.ct-form-wrap select option {
  padding: 8px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

/* ── Textarea ── */
.ct-form-wrap textarea,
.ct-form-wrap .wpcf7-textarea {
  width: 100% !important;
  min-height: 140px !important;
  padding: 14px 16px !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  font-family: inherit !important;
  font-weight: 400 !important;
  color: #0f172a !important;
  background: #ffffff !important;
  box-sizing: border-box !important;
  resize: vertical !important;
  transition:
    border-color 0.18s,
    box-shadow 0.18s !important;
  outline: none !important;
  display: block !important;
  line-height: 1.6 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

/* ── Focus state ── */
.ct-form-wrap input[type="text"]:focus,
.ct-form-wrap input[type="email"]:focus,
.ct-form-wrap input[type="tel"]:focus,
.ct-form-wrap input[type="url"]:focus,
.ct-form-wrap select:focus,
.ct-form-wrap textarea:focus {
  border-color: #0b2157 !important;
  box-shadow: 0 0 0 3px rgba(11, 33, 87, 0.08) !important;
  background: #ffffff !important;
  outline: none !important;
}

/* ── Placeholder color ── */
.ct-form-wrap input::placeholder,
.ct-form-wrap textarea::placeholder {
  color: #94a3b8 !important;
  font-weight: 400 !important;
  opacity: 1 !important;
}
.ct-form-wrap input::-webkit-input-placeholder,
.ct-form-wrap textarea::-webkit-input-placeholder {
  color: #94a3b8 !important;
}
.ct-form-wrap input::-moz-placeholder,
.ct-form-wrap textarea::-moz-placeholder {
  color: #94a3b8 !important;
  opacity: 1 !important;
}

/* ── Submit button ── */
.ct-form-wrap input[type="submit"],
.ct-form-wrap .wpcf7-submit,
.ct-form-wrap button[type="submit"] {
  background: #0b2157 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 0 32px !important;
  height: 52px !important;
  line-height: 52px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  cursor: pointer !important;
  width: 100% !important;
  margin-top: 10px !important;
  font-family: inherit !important;
  transition:
    background 0.2s,
    transform 0.2s !important;
  display: block !important;
  text-align: center !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.ct-form-wrap input[type="submit"]:hover,
.ct-form-wrap .wpcf7-submit:hover,
.ct-form-wrap button[type="submit"]:hover {
  background: #0f2d6e !important;
  transform: translateY(-1px) !important;
}

/* ── Acceptance / Privacy checkbox ── */
.ct-form-wrap .wpcf7-acceptance {
  margin-bottom: 4px !important;
}
.ct-form-wrap .wpcf7-acceptance .wpcf7-list-item {
  margin: 0 !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  padding: 0 !important;
}
.ct-form-wrap .wpcf7-acceptance .wpcf7-list-item label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: #64748b !important;
  cursor: pointer !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}
.ct-form-wrap .wpcf7-acceptance input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  margin: 2px 0 0 !important;
  flex-shrink: 0 !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  accent-color: #0b2157 !important;
  -webkit-appearance: checkbox !important;
  appearance: checkbox !important;
}
.ct-form-wrap .wpcf7-acceptance a {
  color: #0b2157 !important;
  text-decoration: underline !important;
}

/* ── Validation errors (red border) ── */
.ct-form-wrap .wpcf7-not-valid-tip {
  font-size: 11.5px !important;
  color: #dc2626 !important;
  margin-top: 5px !important;
  display: block !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
}
.ct-form-wrap .wpcf7-form-control.wpcf7-not-valid,
.ct-form-wrap input.wpcf7-not-valid,
.ct-form-wrap select.wpcf7-not-valid,
.ct-form-wrap textarea.wpcf7-not-valid {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08) !important;
}

/* ── Response output messages ── */
.ct-form-wrap .wpcf7-response-output {
  border-radius: 10px !important;
  padding: 12px 18px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  margin: 12px 0 0 !important;
  border-width: 1px !important;
  border-style: solid !important;
}
.ct-form-wrap .wpcf7-mail-sent-ok {
  background: #f0fdf4 !important;
  border-color: #86efac !important;
  color: #166534 !important;
}
.ct-form-wrap .wpcf7-validation-errors,
.ct-form-wrap .wpcf7-mail-sent-ng,
.ct-form-wrap .wpcf7-spam-blocked {
  background: #fef2f2 !important;
  border-color: #fca5a5 !important;
  color: #991b1b !important;
}

/* ── Loading spinner ── */
.ct-form-wrap .wpcf7-spinner {
  display: inline-block !important;
  margin-left: 8px !important;
  vertical-align: middle !important;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .ct-form-wrap {
    padding: 32px 24px !important;
  }
  .ct-form-wrap .cf7-row {
    flex-direction: column !important;
    gap: 0 !important;
  }
  .ct-form-wrap .cf7-half {
    min-width: 0 !important;
  }
}
