/* =====================================================
   BITNEKA ENTERPRISE CSS
   Premium enterprise-grade design system
   Sections: Nav · Hero · Trust · Services · Tech ·
   Industries · Scale · Process · Testimonials ·
   Team · CTA · Footer
   ===================================================== */

/* ── Design Tokens ─────────────────────────────────── */
:root {
  --ent-navy:        #000000;
  --ent-navy-2:      #0E0E0E;
  --ent-blue:        #4f6ef7;
  --ent-blue-soft:   rgba(79, 110, 247, 0.08);
  --ent-blue-border: rgba(79, 110, 247, 0.18);
  --ent-white:       #ffffff;
  --ent-off:         #0E0E0E;
  --ent-line:        rgba(255, 255, 255, 0.07);
  --ent-text:        #ffffff;
  --ent-muted:       rgba(255, 255, 255, 0.35);
  --ent-surface:     #111111;
  --ent-radius:      12px;
  --ent-radius-lg:   16px;
  --ent-ease:        cubic-bezier(.22, 1, .36, 1);
  --section-v:       clamp(72px, 8vw, 120px);
  --section-v-sm:    clamp(48px, 5vw, 80px);
  --container:       1200px;
}

/* ── Shared Utility ────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ent-blue);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--ent-blue);
  border-radius: 2px;
}
.eyebrow--light { color: rgba(255,255,255,0.7); }
.eyebrow--light::before { background: rgba(255,255,255,0.5); }

/* ── Skip Link ─────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--ent-blue);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

/* ═══════════════════════════════════════════════════
   NAVIGATION OVERRIDES
═══════════════════════════════════════════════════ */

/* Clean up nav — remove social icons display handled by hiding .social-links */
.social-links { display: none !important; }

/* Nav hamburger — enterprise style */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--ent-line);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: border-color .2s ease, background .2s ease;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ent-text);
  border-radius: 2px;
  transition: transform .3s var(--ent-ease), opacity .3s ease;
}
.nav-hamburger:hover {
  border-color: var(--ent-blue);
  background: var(--ent-blue-soft);
}
[data-theme="dark"] .nav-hamburger span { background: #c8d4f0; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Nav CTA button override */
.nav-cta-btn {
  padding: 10px 20px !important;
  font-size: 13.5px !important;
  white-space: nowrap;
}

/* Desktop nav mega panel */
.nav-mega-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: min(840px, 92vw);
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  box-shadow: 0 32px 80px -16px rgba(0, 0, 0, 0.85);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(12px);
  transition: opacity .22s ease, visibility .22s ease, transform .22s var(--ent-ease);
  z-index: 200;
}
.nav-mega-wrap.open .nav-mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
[data-theme="dark"] .nav-mega-panel {
  background: #0d0d0d;
  border-color: rgba(255,255,255,0.09);
  box-shadow: 0 24px 64px -16px rgba(0,0,0,0.72);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.mega-col {
  padding: 0 20px;
  border-right: 1px solid var(--ent-line);
}
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child { border-right: none; padding-right: 0; }
[data-theme="dark"] .mega-col { border-color: rgba(99,130,255,0.1); }

.mega-col-label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ent-muted);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ent-line);
}
[data-theme="dark"] .mega-col-label { border-color: rgba(99,130,255,0.1); }

.mega-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .15s ease;
  margin: 2px 0;
}
.mega-link:hover { background: var(--ent-blue-soft); }
.mega-link-icon {
  font-size: 17px;
  line-height: 1;
  margin-top: 1px;
  flex-shrink: 0;
}
.mega-link div { display: flex; flex-direction: column; gap: 1px; }
.mega-link strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--ent-text);
  line-height: 1.3;
}
.mega-link span {
  font-size: 11.5px;
  color: var(--ent-muted);
  line-height: 1.3;
}
[data-theme="dark"] .mega-link strong { color: #d0daf5; }

/* Mobile menu enterprise ─────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #000000;
  z-index: 300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .38s var(--ent-ease), visibility .38s ease;
  pointer-events: none;
  visibility: hidden;
  overflow-y: auto;
}
[data-theme="dark"] .mobile-menu { background: #050505; }
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  visibility: visible;
}
.mm-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--ent-line);
  flex-shrink: 0;
}
[data-theme="dark"] .mm-top { border-color: rgba(99,130,255,0.1); }
.mm-close-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  border: 1px solid var(--ent-line);
  background: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--ent-text);
  transition: background .2s ease, border-color .2s ease;
  flex-shrink: 0;
}
.mm-close-btn:hover { background: var(--ent-surface); }
[data-theme="dark"] .mm-close-btn { color: #c8d4f0; border-color: rgba(99,130,255,0.2); }
.mm-nav {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  flex: 1;
}
.mm-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 11px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ent-text);
  border-bottom: 1px solid var(--ent-line);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  text-align: left;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
  font-family: inherit;
  border-radius: 10px;
  width: 100%;
}
.mm-link:hover { color: var(--ent-blue); background: var(--ent-blue-soft); }
[data-theme="dark"] .mm-link {
  color: #c8d4f0;
  border-color: rgba(99,130,255,0.08);
}
.mm-accordion-body {
  display: none;
}
.mm-accordion-body.open {
  display: block;
}

.mm-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--ent-line);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
[data-theme="dark"] .mm-footer { border-color: rgba(99,130,255,0.1); }
.mm-footer .btn { width: 100%; justify-content: center; }
.mm-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mm-contact-info a {
  font-size: 13px;
  color: var(--ent-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-bottom: none;
}
.mm-contact-info a:hover { color: var(--ent-blue); }
[data-theme="dark"] .mm-contact-info a { color: #5a6a8a; }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */

.hero { padding-top: 68px; } /* offset for fixed nav */

.hero-content { max-width: 620px; }

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 10px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 22px;
}

.hero-br { display: block; }

.hero-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.72;
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

.btn-hero {
  padding: 13px 28px !important;
  font-size: 14.5px !important;
  background: #ffffff !important;
  color: #000000 !important;
  box-shadow: 0 4px 20px rgba(255,255,255,0.12) !important;
  border-radius: 999px !important;
}
.btn-hero:hover {
  background: #f0f5ff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.2) !important;
  color: var(--ent-blue) !important;
}
.btn-hero svg { color: var(--ent-blue) !important; }

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  transition: border-color .25s ease, background .25s ease, color .25s ease, transform .25s ease;
}
.btn-hero-ghost:hover {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.08);
  color: #fff;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.hstat {
  display: flex;
  flex-direction: column;
  padding: 0 28px 0 0;
}
.hstat:first-child { padding-left: 0; }
.hstat b {
  font-size: clamp(22px, 2.5vw, 28px);
  font-family: Manrope, sans-serif;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hstat span {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hstat-div {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.18);
  margin: 0 28px 0 0;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   02 TRUST / PARTNERS
═══════════════════════════════════════════════════ */

.trust-section {
  padding: 48px 0;
  border-top: 1px solid var(--ent-line);
  border-bottom: 1px solid var(--ent-line);
  background: var(--ent-white);
}
[data-theme="dark"] .trust-section {
  background: var(--ent-navy-2);
  border-color: rgba(99,130,255,0.08);
}

.trust-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ent-muted);
  margin-bottom: 28px;
}

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

.trust-logo img {
  height: 30px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.62);
  transition: filter .25s ease, transform .25s ease;
}
.trust-logo:hover img {
  filter: grayscale(0) opacity(1);
  transform: translateY(-2px);
}
[data-theme="dark"] .trust-logo img { filter: grayscale(1) invert(1) opacity(0.5); }
[data-theme="dark"] .trust-logo:hover img { filter: grayscale(0) invert(0) opacity(1); }

/* ═══════════════════════════════════════════════════
   03 SERVICES
═══════════════════════════════════════════════════ */

.services-section {
  padding: var(--section-v) 0;
  background: var(--ent-white);
}
[data-theme="dark"] .services-section { background: var(--ent-navy); }

.srv-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}
.srv-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-top: 8px;
  margin-bottom: 0;
}

.srv-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ent-blue);
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--ent-blue);
  transition: gap .2s ease;
  flex-shrink: 0;
  margin-bottom: 12px;
}
.srv-view-all:hover { gap: 10px; }

/* Service Card Grid */
.srv-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.srv-card {
  position: relative;
  border-radius: var(--ent-radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  display: block;
  transition: transform .4s var(--ent-ease), box-shadow .4s var(--ent-ease);
}
.srv-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 56px -16px rgba(8,12,26,0.28);
}
.srv-card:focus-visible {
  outline: 3px solid var(--ent-blue);
  outline-offset: 3px;
}

.srv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(4,8,20,0.25) 0%, rgba(4,8,20,0.85) 100%);
  transition: background .4s ease;
}
.srv-card:hover .srv-overlay {
  background: linear-gradient(170deg, rgba(4,8,20,0.35) 0%, rgba(4,8,20,0.92) 100%);
}

.srv-content {
  position: relative;
  z-index: 1;
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.srv-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 4px 10px;
  border-radius: 999px;
  width: fit-content;
}

.srv-content h3 {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.srv-content p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: auto;
}

.srv-arrow {
  display: inline-block;
  margin-top: 20px;
  font-size: 20px;
  color: rgba(255,255,255,0.5);
  transition: color .25s ease, transform .25s var(--ent-ease);
}
.srv-card:hover .srv-arrow {
  color: #fff;
  transform: translateX(6px);
}

/* Explicit placement via nth-child */
.srv-grid > .srv-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
  min-height: 480px;
}
.srv-grid > .srv-card:nth-child(1) .srv-content h3 {
  font-size: clamp(18px, 2vw, 24px);
}
.srv-grid > .srv-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  min-height: 220px;
}
.srv-grid > .srv-card:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
  min-height: 220px;
}
.srv-grid > .srv-card:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
  min-height: 200px;
}
.srv-grid > .srv-card:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
  min-height: 200px;
}
.srv-grid > .srv-card:nth-child(6) {
  grid-column: 3;
  grid-row: 2;
  min-height: 200px;
}

.srv-more {
  margin-top: 20px;
  text-align: center;
}
.srv-more p {
  font-size: 13.5px;
  color: var(--ent-muted);
}
.srv-more a {
  color: var(--ent-blue);
  font-weight: 600;
  transition: opacity .2s ease;
}
.srv-more a:hover { opacity: 0.7; }

/* ═══════════════════════════════════════════════════
   04 TECHNOLOGY MARQUEE
═══════════════════════════════════════════════════ */

.tech-marquee-section {
  padding: var(--section-v-sm) 0;
  background: var(--ent-off);
  overflow: hidden;
}
[data-theme="dark"] .tech-marquee-section { background: var(--ent-navy-2); }

.tech-marquee-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ent-muted);
  margin-bottom: 24px;
}

.tech-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.tech-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.tech-track span {
  padding: 10px 24px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ent-muted);
  white-space: nowrap;
  border-right: 1px solid var(--ent-line);
  transition: color .2s ease;
}
.tech-track span:hover { color: var(--ent-blue); }
[data-theme="dark"] .tech-track span {
  color: #5a6a8a;
  border-color: rgba(99,130,255,0.08);
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .tech-track { animation: none; }
}

/* ═══════════════════════════════════════════════════
   05 INDUSTRIES
═══════════════════════════════════════════════════ */

.industries-section {
  padding: var(--section-v) 0;
  background: var(--ent-white);
}
[data-theme="dark"] .industries-section { background: var(--ent-navy); }

.industries-section > .wrap > h2,
.industries-section > .wrap > h2#industriesHeading {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.028em;
  margin-bottom: 52px;
}

.industries-panel {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border: 1px solid var(--ent-line);
  border-radius: 20px;
  overflow: hidden;
}
[data-theme="dark"] .industries-panel { border-color: rgba(99,130,255,0.1); }

.industries-tabs {
  display: flex;
  flex-direction: column;
  background: var(--ent-off);
  border-right: 1px solid var(--ent-line);
}
[data-theme="dark"] .industries-tabs {
  background: #0d1220;
  border-color: rgba(99,130,255,0.1);
}

.ind-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--ent-line);
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  font-family: inherit;
  color: var(--ent-muted);
  text-align: left;
  transition: background .2s ease, color .2s ease;
  position: relative;
}
.ind-tab:last-child { border-bottom: none; }
.ind-tab:hover { background: rgba(21,87,240,0.04); color: var(--ent-blue); }
.ind-tab--active {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 700;
}
.ind-tab--active::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--ent-blue);
  border-radius: 3px 0 0 3px;
}
[data-theme="dark"] .ind-tab--active {
  background: #111a2e;
  color: #7fa8ff;
}
[data-theme="dark"] .ind-tab {
  border-color: rgba(99,130,255,0.08);
  color: #5a6a8a;
}
[data-theme="dark"] .ind-tab:hover { background: rgba(99,130,255,0.06); color: #7fa8ff; }

.ind-num {
  font-size: 10.5px;
  font-weight: 700;
  color: inherit;
  opacity: 0.5;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.industries-content { position: relative; background: #000000; }
[data-theme="dark"] .industries-content { background: #000000; }

.ind-panel {
  padding: 48px;
  display: none;
}
.ind-panel--active {
  display: block;
}

.ind-panel-body { max-width: 580px; }

.ind-panel-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ent-blue);
  margin-bottom: 14px;
}

.ind-panel h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--ent-text);
}
[data-theme="dark"] .ind-panel h3 { color: #e0e8ff; }

.ind-panel p {
  font-size: 15px;
  line-height: 1.72;
  color: var(--ent-muted);
  margin-bottom: 24px;
}

.ind-caps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-bottom: 28px;
}
.ind-caps li {
  padding: 6px 14px;
  background: var(--ent-off);
  border: 1px solid var(--ent-line);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ent-text);
}
[data-theme="dark"] .ind-caps li {
  background: #111827;
  border-color: rgba(99,130,255,0.12);
  color: #c8d4f0;
}

.ind-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ent-blue);
  border-bottom: 1.5px solid var(--ent-blue);
  padding-bottom: 2px;
  transition: gap .2s ease, opacity .2s ease;
}
.ind-cta:hover { gap: 10px; opacity: 0.75; }

/* ═══════════════════════════════════════════════════
   06 SCALE / PROOF
═══════════════════════════════════════════════════ */

.scale-section {
  padding: var(--section-v) 0;
  background: var(--ent-navy);
  position: relative;
  overflow: hidden;
}
.scale-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(21,87,240,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.scale-header {
  text-align: center;
  margin-bottom: 64px;
}
.scale-header h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  margin-top: 8px;
}
.scale-header .eyebrow { color: rgba(255,255,255,0.5); }
.scale-header .eyebrow::before { background: rgba(255,255,255,0.3); }

.scale-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.scale-stat {
  text-align: center;
  padding: 48px 32px;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.scale-stat:last-child { border-right: none; }

.scale-num {
  font-size: clamp(3rem, 5vw, 5rem);
  font-family: Manrope, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, rgba(180,200,255,0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.scale-stat p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  max-width: 160px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════
   07 PROCESS
═══════════════════════════════════════════════════ */

.process-section {
  padding: var(--section-v) 0;
  background: var(--ent-off);
}
[data-theme="dark"] .process-section { background: var(--ent-navy-2); }

.process-header {
  margin-bottom: 64px;
}
.process-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.process-intro {
  font-size: 15px;
  color: var(--ent-muted);
  max-width: 400px;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow: visible;
}

.process-step {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.process-step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--ent-blue);
  font-family: Manrope, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--ent-blue-soft);
  border: 1px solid var(--ent-blue-border);
}

.process-step h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ent-text);
  margin: 0;
}
[data-theme="dark"] .process-step h3 { color: #d0daf5; }

.process-step p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ent-muted);
  margin: 0;
}

.process-connector {
  flex-shrink: 0;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--ent-blue-border), var(--ent-line));
  margin-top: 20px;
  align-self: flex-start;
}
[data-theme="dark"] .process-connector { background: rgba(99,130,255,0.15); }

/* ═══════════════════════════════════════════════════
   08 TESTIMONIALS — Premium Redesign
═══════════════════════════════════════════════════ */

/* ── Section wrapper ── */
.testimonials-section {
  padding: var(--section-v) 0;
  background: var(--ent-white);
  position: relative;
}
[data-theme="dark"] .testimonials-section {
  background: var(--ent-navy);
}

/* ── Header block ── */
.testi-header {
  margin-bottom: 48px;
}
.testi-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.testi-subtitle {
  font-size: 15px;
  color: var(--ent-muted);
  margin: 0;
}

/* ── FEATURED card — two-column split ── */
.testi-featured {
  background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
  border: 1px solid rgba(99,130,255,0.18);
  border-radius: 24px;
  padding: 0;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(99,130,255,0.08), 0 1px 4px rgba(0,0,0,0.04);
}
[data-theme="dark"] .testi-featured {
  background: linear-gradient(135deg, #0d1220 0%, #111827 100%);
  border-color: rgba(99,130,255,0.15);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.testi-featured-inner {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 0;
  min-height: 240px;
}

.testi-featured-left {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testi-featured-right {
  background: rgba(99,130,255,0.06);
  border-left: 1px solid rgba(99,130,255,0.14);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  border-radius: 0 24px 24px 0;
}
[data-theme="dark"] .testi-featured-right {
  background: rgba(99,130,255,0.04);
  border-left-color: rgba(99,130,255,0.1);
}

/* ── Verified badge ── */
.testi-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4f6ef7;
  background: rgba(79,110,247,0.1);
  border: 1px solid rgba(79,110,247,0.2);
  border-radius: 100px;
  padding: 4px 10px;
  margin-bottom: 16px;
  width: fit-content;
}
[data-theme="dark"] .testi-verified-badge {
  color: #8ca4ff;
  background: rgba(99,130,255,0.12);
  border-color: rgba(99,130,255,0.2);
}

/* ── Stars ── */
.testi-stars {
  font-size: 14px;
  color: #f59e0b;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}
.testi-stars-lg {
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

/* ── Featured quote ── */
.testi-quote {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 500;
  line-height: 1.7;
  color: var(--ent-text);
  font-style: italic;
  margin-bottom: 28px;
  max-width: 640px;
}
[data-theme="dark"] .testi-quote { color: #d4deff; }

/* ── Author (in featured) ── */
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testi-author strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ent-text);
  display: block;
}
.testi-author span {
  font-size: 12px;
  color: var(--ent-muted);
}
[data-theme="dark"] .testi-author strong { color: #d0daf5; }


/* ════════════════════════════════════
   TESTIMONIALS — Auto Slider
════════════════════════════════════ */

/* Outer wrapper — clips overflow */
.testi-slider-wrap {
  position: relative;
  overflow: hidden;
  margin: 0 -8px;
  padding: 8px 8px 16px;
}

/* Sliding track — flex row */
.testi-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Each slide — fixed width showing 3 at once */
.testi-slide {
  min-width: calc(33.333% - 24px);
  margin: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  padding: 0 8px;
}

/* Circular photo */
.testi-photo-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
  flex-shrink: 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  border: 3px solid rgba(99,130,255,0.18);
  transition: box-shadow .3s ease, border-color .3s ease;
}
.testi-slide:hover .testi-photo-wrap {
  box-shadow: 0 10px 36px rgba(99,130,255,0.22);
  border-color: rgba(99,130,255,0.4);
}
.testi-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Stars */
.testi-stars {
  font-size: 14px;
  color: #f59e0b;
  letter-spacing: 3px;
  margin-bottom: 10px;
  display: block;
}

/* Bold name */
.testi-name {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--ent-text);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
[data-theme="dark"] .testi-name { color: #e8edff; }

/* Role / company */
.testi-role {
  display: block;
  font-size: 12px;
  color: var(--ent-muted);
  margin-bottom: 14px;
  font-weight: 500;
}

/* Quote text */
.testi-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ent-muted);
  font-style: italic;
  margin: 0;
  max-width: 300px;
}
[data-theme="dark"] .testi-text { color: rgba(200,212,240,0.82); }

/* ── Prev / Next arrows ── */
.testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--ent-line);
  background: var(--ent-white);
  color: var(--ent-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background .2s, border-color .2s, box-shadow .2s, transform .2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.testi-arrow:hover {
  background: #4f6ef7;
  border-color: #4f6ef7;
  color: #fff;
  box-shadow: 0 4px 20px rgba(79,110,247,0.25);
  transform: translateY(-50%) scale(1.08);
}
[data-theme="dark"] .testi-arrow {
  background: #0d1220;
  border-color: rgba(99,130,255,0.15);
  color: #c8d4f0;
}
[data-theme="dark"] .testi-arrow:hover {
  background: #4f6ef7;
  border-color: #4f6ef7;
  color: #fff;
}
.testi-arrow-prev { left: 0; }
.testi-arrow-next { right: 0; }

/* ── Dot indicators ── */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 28px;
}
.testi-dot {
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.testi-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(99,130,255,0.25);
  transition: background .25s, transform .25s, width .25s, border-radius .25s;
}
.testi-dot.active::before {
  background: #4f6ef7;
  width: 24px;
  border-radius: 4px;
}
[data-theme="dark"] .testi-dot::before { background: rgba(99,130,255,0.25); }
[data-theme="dark"] .testi-dot.active::before { background: #4f6ef7; }


/* ═══════════════════════════════════════════════════
   09 TEAM
═══════════════════════════════════════════════════ */

.team-section {
  padding: var(--section-v) 0;
  background: var(--ent-off);
}
[data-theme="dark"] .team-section { background: var(--ent-navy-2); }

.team-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.team-copy h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.team-copy p {
  font-size: 15px;
  line-height: 1.72;
  color: var(--ent-muted);
  margin-bottom: 28px;
  max-width: 460px;
}

.team-caps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-bottom: 36px;
}
.team-caps li {
  padding: 6px 14px;
  background: var(--ent-white);
  border: 1px solid var(--ent-line);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ent-text);
}
[data-theme="dark"] .team-caps li {
  background: #111827;
  border-color: rgba(99,130,255,0.12);
  color: #c8d4f0;
}

.team-metrics {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.team-metric { display: flex; flex-direction: column; gap: 3px; }
.team-metric strong {
  font-size: clamp(22px, 2vw, 28px);
  font-family: Manrope, sans-serif;
  font-weight: 800;
  color: var(--ent-text);
  letter-spacing: -0.02em;
}
.team-metric span {
  font-size: 12px;
  color: var(--ent-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
[data-theme="dark"] .team-metric strong { color: #d0daf5; }

.team-visual { position: relative; }

.team-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  filter: grayscale(0.15);
  transition: filter .3s ease, transform .3s ease;
}
.team-photo:hover {
  filter: grayscale(0);
  transform: scale(1.02);
}

.team-visual-card {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ent-navy);
  color: #fff;
  border-radius: 14px;
  padding: 14px 24px;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 12px 40px -12px rgba(0,0,0,0.4);
  z-index: 2;
}
.team-visual-card span {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
}
.team-visual-sub {
  font-size: 11px !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.5) !important;
}

/* ═══════════════════════════════════════════════════
   10 CTA SECTION
═══════════════════════════════════════════════════ */

.cta-section {
  position: relative;
  padding: var(--section-v) 0;
  background: var(--ent-navy);
  overflow: hidden;
}

/* Subtle animated dot grid */
.cta-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.cta-grid-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(21,87,240,0.22) 0%, transparent 70%);
}

.cta-inner { position: relative; z-index: 1; }

.cta-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #ffffff;
  color: #000000 !important;
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 4px 20px rgba(255,255,255,0.12);
}
.btn-cta-primary:hover {
  background: #f0f0f0;
  color: #000000 !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -8px rgba(0,0,0,0.3);
}

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  transition: border-color .25s ease, background .25s ease, color .25s ease;
}
.btn-cta-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.07);
  color: #fff;
}

/* ═══════════════════════════════════════════════════

/* ═══════════════════════════════════════════════════
   FOCUS / ACCESSIBILITY
═══════════════════════════════════════════════════ */

:focus-visible {
  outline: 2.5px solid var(--ent-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.ind-tab:focus-visible,
.mm-link:focus-visible {
  outline-offset: -2px;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET 768–1024px
═══════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 32px;
  }
  .footer-brand { max-width: 100%; }

  .team-layout { gap: 48px; }

  .scale-grid { grid-template-columns: repeat(2, 1fr); }
  .scale-stat { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .scale-stat:nth-child(2) { border-right: none; }
  .scale-stat:nth-child(3) { border-bottom: none; }
  .scale-stat:last-child { border-right: none; border-bottom: none; }

  .industries-panel { grid-template-columns: 220px 1fr; }
  .ind-panel { padding: 36px; }

  .testi-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 32px; }
  .testi-person + .testi-person:nth-child(3) { border-left: none; padding-left: 0; }

  .srv-grid {
    grid-template-columns: 1fr 1fr;
  }
  .srv-grid > .srv-card:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 300px;
  }
  .srv-grid > .srv-card:nth-child(2),
  .srv-grid > .srv-card:nth-child(3),
  .srv-grid > .srv-card:nth-child(4),
  .srv-grid > .srv-card:nth-child(5),
  .srv-grid > .srv-card:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .process-steps { flex-wrap: wrap; }
  .process-connector { width: 32px; }
}

@media (max-width: 900px) {
  .team-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .team-visual-card { white-space: normal; text-align: center; }

  .nav-desktop { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta-btn { display: none; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE < 640px
═══════════════════════════════════════════════════ */

@media (max-width: 640px) {
  :root {
    --section-v: clamp(56px, 10vw, 80px);
    --section-v-sm: clamp(40px, 8vw, 64px);
  }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-mockup { display: none; }
  .hero-eyebrow { font-size: 10px; }
  .hero h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .hero-sub { font-size: 14.5px; }
  .hero-br { display: none; }
  .hero-stats { gap: 16px; }
  .hstat b { font-size: 22px; }
  .hstat-div { display: none; }

  .trust-logos { gap: 24px; }
  .trust-logo img { height: 22px; }

  .srv-header { flex-direction: column; align-items: flex-start; }
  .srv-grid { grid-template-columns: 1fr; }
  .srv-grid > .srv-card {
    grid-column: 1 !important;
    grid-row: auto !important;
    min-height: 220px !important;
  }
  .srv-grid > .srv-card:nth-child(1) { min-height: 280px !important; }

  .industries-panel { grid-template-columns: 1fr; }
  .industries-tabs {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--ent-line);
    -webkit-overflow-scrolling: touch;
  }
  .ind-tab {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
    padding: 14px 16px;
    font-size: 12px;
    border-bottom: none;
    border-right: 1px solid var(--ent-line);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .ind-tab--active::after {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    height: 3px;
    border-radius: 3px 3px 0 0;
  }
  .ind-panel { padding: 24px; position: relative; }
  .ind-panel[hidden] { display: none; }
  .ind-panel--active { position: relative; }

  .scale-grid { grid-template-columns: 1fr 1fr; }
  .scale-stat { padding: 32px 16px; }
  .scale-num { font-size: clamp(2rem, 8vw, 3rem); }

  .process-steps { flex-direction: column; gap: 32px; }
  .process-connector {
    width: 1px;
    height: 24px;
    margin: 0 0 0 19px;
    background: linear-gradient(180deg, var(--ent-blue-border), var(--ent-line));
  }

  .testi-grid { grid-template-columns: 1fr; gap: 40px 0; }
  .testi-person + .testi-person { border-left: none; padding-left: 0; border-top: 1px solid var(--ent-line); padding-top: 40px; }
  .testi-photo-wrap { width: 96px; height: 96px; }

  .cta-content h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .btn-cta-primary, .btn-cta-ghost { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  .tech-track { animation: none !important; }
  .srv-card, .testi-card, .trust-logo img { transition: none !important; }
  .blob { animation: none !important; }
  .cta-sweep { animation: none !important; }
  .process-line-fill { transition: none !important; }
}

/* ═══════════════════════════════════════════════════
   SECOND-PASS REFINEMENTS
   Typography · Spacing · Selected Work · Process
   Timeline · CTA Sweep · Trust · Micro-polish
═══════════════════════════════════════════════════ */

/* ── Token upgrades ─────────────────────────────── */
:root {
  --section-v:    clamp(96px, 9vw, 140px);
  --section-v-sm: clamp(64px, 6vw, 100px);
}

/* ── Hero refinements ───────────────────────────── */
.hero-eyebrow {
  font-size: 10.5px !important;
  letter-spacing: 0.22em !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.45) !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  margin-bottom: 22px !important;
}

.hero h1 {
  font-size: clamp(2.6rem, 4.8vw, 4.2rem) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.035em !important;
  margin-bottom: 24px !important;
}

.hero-sub {
  font-size: clamp(15px, 1.4vw, 17px) !important;
  line-height: 1.78 !important;
  max-width: 500px !important;
  color: rgba(255,255,255,0.72) !important;
  margin-bottom: 36px !important;
}

.hero-ctas { margin-bottom: 52px !important; }

/* ── Trust refinements ──────────────────────────── */
.trust-section { padding: 56px 0 !important; }
.trust-label {
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
  margin-bottom: 32px !important;
}
.trust-logos { gap: 56px !important; }
.trust-logo img { height: 26px !important; }

/* ── Services refinements ───────────────────────── */
.srv-header { margin-bottom: 48px !important; }
.srv-grid { gap: 12px !important; }

/* Bottom row cards — more height for readability */
.srv-grid > .srv-card:nth-child(4),
.srv-grid > .srv-card:nth-child(5),
.srv-grid > .srv-card:nth-child(6) { min-height: 240px !important; }

/* Reduce excessive hover transform */
.srv-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 20px 48px -14px rgba(8,12,26,0.24) !important;
}

/* Service card body text slightly larger */
.srv-content p { font-size: 13.5px !important; }

/* ── Scale section refinements ──────────────────── */
.scale-stat p { color: rgba(255,255,255,0.58) !important; font-size: 14px !important; }
.scale-stat { border-color: rgba(255,255,255,0.09) !important; }

/* ── Process timeline ───────────────────────────── */
.process-timeline {
  position: relative;
  margin-bottom: 32px;
  padding: 0;
  display: none; /* hidden on mobile, shown desktop */
}

.process-line {
  height: 2px;
  background: var(--ent-line);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
[data-theme="dark"] .process-line { background: rgba(99,130,255,0.12); }

.process-line-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: var(--ent-blue);
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(.22,1,.36,1);
}

.process-step-num {
  transition: background .3s ease, color .3s ease, border-color .3s ease !important;
}
.process-step--active .process-step-num {
  background: var(--ent-blue) !important;
  color: #fff !important;
  border-color: var(--ent-blue) !important;
}
.process-step--active h3 { color: var(--ent-blue) !important; }
[data-theme="dark"] .process-step--active h3 { color: #7fa8ff !important; }

/* Process step body text */
.process-step p { font-size: 13.5px !important; line-height: 1.68 !important; }

/* ── Testimonials refinements ───────────────────── */
.testi-featured::before { display: none !important; } /* remove theatrical quote mark */
.testi-featured { padding: 48px 56px !important; }

.testi-quote {
  font-size: clamp(17px, 1.6vw, 20px) !important;
  line-height: 1.7 !important;
  max-width: 760px !important;
  font-style: italic !important;
  font-weight: 400 !important;
}

/* Stars — slightly smaller, more restrained */
.testi-stars { font-size: 14px !important; letter-spacing: 3px !important; margin-bottom: 16px !important; }
.testi-featured .testi-stars { margin-bottom: 22px !important; }

/* ── CTA refinements ────────────────────────────── */
/* Replace dot grid with gentle sweep */
.cta-grid-bg { display: none !important; }

.cta-sweep {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(21,87,240,0.22) 0%, transparent 70%);
  pointer-events: none;
  animation: ctaSweep 8s ease-in-out infinite alternate;
}
@keyframes ctaSweep {
  0%   { opacity: 0.6; transform: scale(1) translateY(0); }
  100% { opacity: 1;   transform: scale(1.08) translateY(-20px); }
}

.cta-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem) !important;
  letter-spacing: -0.032em !important;
  margin-bottom: 14px !important;
}
.cta-content p {
  font-size: 16px !important;
  color: rgba(255,255,255,0.55) !important;
  margin-bottom: 40px !important;
}

/* ═══════════════════════════════════════════════════
   SELECTED WORK SECTION
═══════════════════════════════════════════════════ */

.work-section {
  padding: var(--section-v) 0;
  background: var(--ent-navy);
  position: relative;
}
[data-theme="dark"] .work-section { background: var(--ent-navy); }

.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
.work-header h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.028em;
  color: #fff;
  margin-top: 8px;
  margin-bottom: 0;
}
.work-header .eyebrow { color: rgba(255,255,255,0.5); }
.work-header .eyebrow::before { background: rgba(255,255,255,0.3); }
.work-header .srv-view-all { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.3); }
.work-header .srv-view-all:hover { color: #fff; border-color: rgba(255,255,255,0.6); }

.work-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
}

.work-card {
  background: #0b1020;
  display: flex;
  flex-direction: column;
  transition: background .3s ease;
  text-decoration: none;
}
.work-card:hover { background: #0d1428; }

.work-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  position: relative;
}
.work-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,13,26,0.1) 0%, rgba(8,13,26,0.6) 100%);
}

.work-card--featured .work-card-image { aspect-ratio: 16/12; }

.work-card-body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.work-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.work-type {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ent-blue);
  background: var(--ent-blue-soft);
  border: 1px solid var(--ent-blue-border);
  padding: 4px 10px;
  border-radius: 999px;
}

.work-industry {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

.work-card h3 {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.work-card--featured h3 {
  font-size: clamp(18px, 1.8vw, 22px);
}

.work-card p {
  font-size: 13.5px;
  line-height: 1.68;
  color: rgba(255,255,255,0.5);
  margin-bottom: auto;
  flex: 1;
}

.work-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-top: 24px;
  transition: color .2s ease, gap .2s ease;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 2px;
  width: fit-content;
}
.work-card:hover .work-cta {
  color: #fff;
  gap: 10px;
  border-color: rgba(255,255,255,0.35);
}

/* ── Work grid responsive ───────────────────────── */
@media (max-width: 1100px) {
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-card--featured { grid-column: 1 / -1; }
  .work-card--featured .work-card-image { aspect-ratio: 16/8; }
}

@media (max-width: 640px) {
  .work-header { flex-direction: column; align-items: flex-start; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card--featured { grid-column: 1; }
  .work-card-image { aspect-ratio: 4/3; }
  .work-card-body { padding: 22px 22px 28px; }
  .work-card h3 { font-size: 16px; }
}

/* ═══════════════════════════════════════════════════
   LEGACY CONFLICT OVERRIDES
═══════════════════════════════════════════════════ */

.services-section {
  padding: var(--section-v) 0 !important;
  background: var(--ent-white) !important;
}
[data-theme="dark"] .services-section { background: var(--ent-navy) !important; }

.services-grid   { display: none !important; }
.services-heading { display: none !important; }
.service-tag     { display: none !important; }
.partners-section  { display: none !important; }
.achievement-grid  { display: none !important; }
.team-performance  { display: none !important; }
.noise-overlay { display: none !important; }
.cursor-glow   { display: none !important; }
.blob-1 { opacity: 0.16 !important; }
.blob-2 { opacity: 0.10 !important; }
.blob-3 { display: none !important; }
main { padding-top: 68px !important; }

.tech-marquee-section { background: var(--ent-off) !important; }
[data-theme="dark"] .tech-marquee-section { background: var(--ent-navy-2) !important; }
.tech-marquee-head { display: none !important; }

.footer-main, .footer-cta-strip, .footer-bottom-bar,
.footer-brand-col, .footer-nav-col, .footer-badges,
.footer-socials, .footer-newsletter, .footer-links,
.footer-contact-items, .footer-contact-icon,
.footer-contact-label, .footer-contact-value,
.footer-main-grid { display: none !important; }

.scroll-progress { display: block !important; }
.testimonial-grid { display: none !important; }


/* ═══════════════════════════════════════════════════
   LEGACY CONFLICT OVERRIDES
   Neutralise old style.css / premium.css rules that
   conflict with the enterprise redesign on index.html
═══════════════════════════════════════════════════ */

/* Services section — override old gradient */
.services-section {
  padding: var(--section-v) 0 !important;
  background: var(--ent-white) !important;
}
[data-theme="dark"] .services-section {
  background: var(--ent-navy) !important;
}

/* Kill old services grid, heading, tag */
.services-grid   { display: none !important; }
.services-heading { display: none !important; }
.service-tag     { display: none !important; }

/* Kill old partners section — replaced by trust-section */
.partners-section  { display: none !important; }

/* Kill old achievements / team-performance / cta sections
   that still have markup in other pages but NOT on homepage */
/* (these only apply if the old markup existed — it doesn't
    on index.html any more, so these are belt-and-suspenders) */
.achievement-grid  { display: none !important; }
.team-performance  { display: none !important; }

/* Noise overlay — remove decorative noise texture on homepage */
.noise-overlay {
  display: none !important;
}

/* Cursor glow — remove (too decorative) */
.cursor-glow {
  display: none !important;
}

/* Hero blobs — reduce opacity for restraint */
.blob-1 { opacity: 0.18 !important; }
.blob-2 { opacity: 0.12 !important; }
.blob-3 { display: none !important; }

/* Ensure main padding is correct for fixed nav height */
main { padding-top: 68px !important; }

/* Eyebrow override — ensure enterprise style wins */
.eyebrow {
  display: inline-flex !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: var(--ent-blue) !important;
  margin-bottom: 14px !important;
}
.eyebrow::before {
  content: "" !important;
  width: 20px !important;
  height: 2px !important;
  background: var(--ent-blue) !important;
  border-radius: 2px !important;
}

/* Tech marquee section — override old white bg */
.tech-marquee-section {
  background: var(--ent-off) !important;
}
[data-theme="dark"] .tech-marquee-section {
  background: var(--ent-navy-2) !important;
}
/* Old tech marquee heading override */
.tech-marquee-head { display: none !important; }

/* Footer — override footer.css legacy styles */
.footer-main,
.footer-cta-strip,
.footer-bottom-bar,
.footer-brand-col,
.footer-nav-col,
.footer-badges,
.footer-socials,
.footer-newsletter,
.footer-links,
.footer-contact-items,
.footer-contact-icon,
.footer-contact-label,
.footer-contact-value,
.footer-main-grid { display: none !important; }

/* Override footer-column link chevrons from navigation.js old markup */
.footer-links a i.fas.fa-chevron-right { display: none !important; }

/* Scroll progress bar — keep visible */
.scroll-progress { display: block !important; }

/* Testimonial old section — suppress old cards if they appear */
.testimonial-grid { display: none !important; }
.testimonials .center { display: none !important; }

/* ═══════════════════════════════════════════════════
   FINAL PREMIUM REFINEMENT PASS (v3)
   Navigation · Typography · Visual Rhythm · Team
   Scale · Process · Testimonials · Footer · Mobile
═══════════════════════════════════════════════════ */

/* ── NAV height, link style, hover underline ── */
.site-header { height: 68px !important; }
.nav-inner { height: 68px !important; align-items: center !important; }
.nav-desktop { gap: 30px !important; }
.nav-link {
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: -0.005em !important;
  padding: 6px 0 !important;
  position: relative !important;
  transition: color .2s ease !important;
}
.nav-link::after {
  content: '' !important;
  position: absolute !important;
  bottom: -1px !important; left: 0 !important; right: 0 !important;
  height: 2px !important;
  background: var(--ent-blue) !important;
  border-radius: 2px !important;
  transform: scaleX(0) !important;
  transform-origin: left !important;
  transition: transform .22s cubic-bezier(.22,1,.36,1) !important;
}
.nav-link:hover::after,
.nav-link[aria-current="page"]::after { transform: scaleX(1) !important; }
.nav-link:hover { color: var(--ent-blue) !important; }
[data-theme="dark"] .nav-link { color: rgba(200,212,240,0.75) !important; }
[data-theme="dark"] .nav-link:hover { color: #7fa8ff !important; }
.nav-cta-btn {
  padding: 10px 22px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  border-radius: 9px !important;
}
/* Scrolled nav — subtle frosted surface */
.site-header.scrolled,
.site-header.nav-scrolled {
  background: rgba(8,13,26,0.9) !important;
  backdrop-filter: blur(16px) saturate(1.5) !important;
  -webkit-backdrop-filter: blur(16px) saturate(1.5) !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.04) !important;
}

/* ── SECTION H2 SCALING ── */
.srv-header h2,
#servicesHeading { font-size: clamp(2rem, 3.6vw, 3.2rem) !important; }
.industries-section > .wrap > h2,
#industriesHeading { font-size: clamp(2rem, 3.6vw, 3.2rem) !important; }
.scale-header h2 { font-size: clamp(2.2rem, 3.8vw, 3.4rem) !important; }
.process-header h2 { font-size: clamp(2rem, 3.6vw, 3.2rem) !important; }
.testimonials-section > .wrap > h2,
#testimonialsHeading { font-size: clamp(2rem, 3.2vw, 3rem) !important; }
.team-copy h2 { font-size: clamp(2rem, 3vw, 2.8rem) !important; }
.work-header h2 { font-size: clamp(2rem, 3.4vw, 3rem) !important; }

/* ── HERO content width ── */
.hero-content { max-width: 640px !important; }

/* ── PROCESS step refinements ── */
.process-header { margin-bottom: 56px !important; }
.process-step h3 { font-size: 17px !important; font-weight: 700 !important; letter-spacing: -0.01em !important; }
.process-step { gap: 16px !important; }
.process-intro { font-size: 16px !important; max-width: 440px !important; }
.process-connector { width: 40px !important; flex-shrink: 0 !important; }

/* ── SCALE STAT — wider description ── */
.scale-stat { padding: 52px 36px !important; }
.scale-stat p {
  max-width: 200px !important;
  font-size: 14px !important;
  color: rgba(255,255,255,0.6) !important;
  line-height: 1.56 !important;
}

/* ── VISUAL RHYTHM — section alternation ── */
.industries-section { background: #000000 !important; }
[data-theme="dark"] .industries-section { background: #000000 !important; }
.testimonials-section { background: #000000 !important; }
[data-theme="dark"] .testimonials-section { background: #000000 !important; }
.team-section { background: #060606 !important; }
[data-theme="dark"] .team-section { background: #060606 !important; }

/* ── TEAM refinements ── */
.team-photo { border-radius: 16px !important; filter: grayscale(0.1) !important; }
.team-photo:hover { filter: grayscale(0) !important; transform: scale(1.025) !important; }
.team-photo-grid { gap: 12px !important; }
.team-copy p { font-size: 16px !important; line-height: 1.74 !important; }
.team-caps li { font-size: 13px !important; padding: 5px 13px !important; transition: border-color .2s ease, color .2s ease !important; }
.team-caps li:hover { border-color: var(--ent-blue-border) !important; color: var(--ent-blue) !important; }
.team-metrics { gap: 40px !important; }
.team-metric strong { font-size: clamp(24px, 2.2vw, 30px) !important; }
.team-metric span { font-size: 11.5px !important; }

/* ── TESTIMONIALS ── */
.testi-quote { font-size: clamp(17px, 1.7vw, 20px) !important; max-width: 800px !important; line-height: 1.72 !important; }
[data-theme="dark"] .testi-quote { color: #d4deff !important; }
.testi-author strong { font-size: 14.5px !important; }
.testi-author span { font-size: 13px !important; }
.testi-card p { font-size: 14.5px !important; line-height: 1.7 !important; }
.testi-card footer strong { font-size: 13.5px !important; }
.testi-supporting { gap: 20px !important; }
.testi-featured::before { display: none !important; }

/* ── FOOTER — contrast and spacing ── */
.footer { padding: 80px 0 0 !important; }
.footer-grid { gap: 56px !important; }
.footer-column h4 { font-size: 11px !important; letter-spacing: 0.14em !important; color: rgba(255,255,255,0.65) !important; margin-bottom: 18px !important; }
.footer-column a { font-size: 14px !important; color: rgba(255,255,255,0.48) !important; padding: 5px 0 !important; }
.footer-column a:hover { color: rgba(255,255,255,0.9) !important; }
.footer-contact-item { font-size: 14px !important; color: rgba(255,255,255,0.5) !important; padding: 7px 0 !important; gap: 12px !important; }
.footer-contact-item:hover { color: rgba(255,255,255,0.85) !important; }
.footer-brand p { font-size: 14px !important; line-height: 1.75 !important; color: rgba(255,255,255,0.44) !important; }
.footer-bottom p { font-size: 13px !important; }
.footer-bottom { padding: 24px 0 !important; }

/* ── SERVICES ── */
.srv-content p { font-size: 14px !important; color: rgba(255,255,255,0.7) !important; line-height: 1.62 !important; }
.srv-grid > .srv-card:nth-child(1) .srv-content h3 { font-size: clamp(20px, 2.2vw, 26px) !important; line-height: 1.22 !important; }

/* ── INDUSTRIES ── */
.ind-panel h3 { font-size: clamp(1.5rem, 2.2vw, 2.1rem) !important; }
.ind-panel p { font-size: 15.5px !important; line-height: 1.74 !important; }
.ind-tab { font-size: 14px !important; padding: 20px 24px !important; }

/* ── GLOBAL ── */
body { font-size: 16px !important; }
.eyebrow { margin-bottom: 12px !important; }
.whatsapp-float { width: 52px !important; height: 52px !important; font-size: 24px !important; bottom: 28px !important; right: 28px !important; }

/* ── CTA — remove stale dot-grid ── */
.cta-section .cta-grid-bg { display: none !important; }

/* ── MOBILE QA FIXES (<640px) ── */
@media (max-width: 640px) {
  .hero-sub { font-size: 15.5px !important; max-width: 100% !important; }
  .srv-grid > .srv-card { min-height: 240px !important; }
  .srv-grid > .srv-card:nth-child(1) { min-height: 300px !important; }
  .srv-content h3 { font-size: 16px !important; }
  .scale-stat { padding: 36px 20px !important; }
  .scale-stat p { max-width: 140px !important; font-size: 13px !important; }
  .process-step h3 { font-size: 16px !important; }
  .process-step p { font-size: 14px !important; }
  .testi-card p { font-size: 14px !important; }
  .testi-featured { padding: 32px !important; }
  .testi-quote { font-size: 16.5px !important; }
  .team-metrics { gap: 28px !important; }
  .team-metric strong { font-size: 26px !important; }
  .ind-tab { font-size: 12.5px !important; padding: 14px 14px !important; }
  .ind-panel { padding: 28px !important; }
  .ind-panel h3 { font-size: 1.3rem !important; }
  .footer-contact-item { font-size: 15px !important; }
  .footer-column a { font-size: 14.5px !important; }
  .cta-content h2 { font-size: clamp(1.8rem, 7vw, 2.5rem) !important; }
  .nav-hamburger { width: 44px !important; height: 44px !important; }
  .whatsapp-float { width: 48px !important; height: 48px !important; bottom: 20px !important; right: 16px !important; }
}

/* ── TABLET QA FIXES (641–1100px) ── */
@media (max-width: 1100px) and (min-width: 641px) {
  .srv-grid > .srv-card { min-height: 260px !important; }
  .team-layout { gap: 56px !important; }
  .industries-panel { grid-template-columns: 200px 1fr !important; }
  .ind-panel { padding: 40px !important; }
  .scale-stat { padding: 40px 24px !important; }
  .testi-featured { padding: 40px 48px !important; }
}

/* ── LARGE SCREEN (1600px+) — prevent stretching ── */
@media (min-width: 1600px) {
  .wrap { max-width: 1320px !important; }
  .hero h1 { font-size: 4.4rem !important; }
}

/* ═══════════════════════════════════════════════════
   V4 FINAL PREMIUM ADDITIONS
   Technology groups · Why Bitneka · Case study
   story treatment · Nav chevron · Performance
═══════════════════════════════════════════════════ */

/* ── NAV CHEVRON SVG ── */
.nav-chevron-svg {
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
  margin-top: -1px;
  transition: transform .22s cubic-bezier(.22,1,.36,1);
  flex-shrink: 0;
}
.nav-mega-wrap.open .nav-chevron-svg {
  transform: rotate(180deg);
}

/* ── TECHNOLOGY GROUPS SECTION ── */
.tech-section {
  padding: var(--section-v-sm) 0;
  background: var(--ent-white);
}
[data-theme="dark"] .tech-section { background: var(--ent-navy); }

.tech-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
.tech-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 8px 0 0;
  white-space: pre-line;
}

.tech-groups {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--ent-line);
  border-radius: 20px;
  overflow: hidden;
}
[data-theme="dark"] .tech-groups { border-color: rgba(99,130,255,0.1); }

.tech-group {
  padding: 32px 28px 36px;
  border-right: 1px solid var(--ent-line);
  transition: background .25s ease;
}
.tech-group:last-child { border-right: none; }
[data-theme="dark"] .tech-group { border-color: rgba(99,130,255,0.1); }
.tech-group:hover { background: var(--ent-off); }
[data-theme="dark"] .tech-group:hover { background: #0c1120; }

.tech-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ent-blue);
  margin-bottom: 16px;
  display: block;
}

.tech-pills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tech-pills li {
  font-size: 14px;
  font-weight: 500;
  color: var(--ent-text);
  padding: 6px 0;
  border-bottom: 1px solid var(--ent-line);
  transition: color .2s ease;
  line-height: 1.4;
}
.tech-pills li:last-child { border-bottom: none; }
[data-theme="dark"] .tech-pills li {
  color: rgba(200,212,240,0.8);
  border-color: rgba(99,130,255,0.08);
}
.tech-group:hover .tech-pills li { color: var(--ent-blue); }
[data-theme="dark"] .tech-group:hover .tech-pills li { color: #7fa8ff; }

/* Tech groups responsive */
@media (max-width: 1100px) {
  .tech-groups { grid-template-columns: 1fr 1fr; }
  .tech-group:nth-child(2) { border-right: none; }
  .tech-group:nth-child(1),
  .tech-group:nth-child(2) { border-bottom: 1px solid var(--ent-line); }
  [data-theme="dark"] .tech-group:nth-child(1),
  [data-theme="dark"] .tech-group:nth-child(2) { border-color: rgba(99,130,255,0.1); }
}
@media (max-width: 640px) {
  .tech-groups { grid-template-columns: 1fr; }
  .tech-group { border-right: none !important; border-bottom: 1px solid var(--ent-line) !important; }
  .tech-group:last-child { border-bottom: none !important; }
  .tech-header { flex-direction: column; align-items: flex-start; }
  .tech-group { padding: 24px 20px 28px; }
}

/* ── WORK CARD STORY TREATMENT ── */
.work-card-story {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0;
  flex: 1;
}
.work-story-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.work-story-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ent-blue);
  opacity: 0.8;
  display: block;
}
.work-card-story p {
  font-size: 13.5px;
  line-height: 1.66;
  color: rgba(255,255,255,0.52);
  margin: 0;
  flex: none;
}
.work-card--featured .work-card-story { gap: 20px; }
.work-card--featured .work-card-story p { font-size: 14px; }

/* ── WHY BITNEKA SECTION ── */
.why-section {
  padding: var(--section-v) 0;
  background: var(--ent-off);
  position: relative;
}
[data-theme="dark"] .why-section { background: var(--ent-navy-2); }

.why-header {
  margin-bottom: 56px;
}
.why-header h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.028em;
  margin-top: 8px;
  white-space: pre-line;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ent-line);
}
[data-theme="dark"] .why-grid { border-color: rgba(99,130,255,0.1); }

.why-item {
  padding: 40px 36px 40px 0;
  border-right: 1px solid var(--ent-line);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-item:first-child { padding-left: 0; }
.why-item:last-child { border-right: none; padding-right: 0; }
[data-theme="dark"] .why-item { border-color: rgba(99,130,255,0.1); }

.why-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-family: Manrope, sans-serif;
  color: var(--ent-blue);
  opacity: 0.6;
  flex-shrink: 0;
  padding-top: 3px;
}

.why-body { flex: 1; min-width: 0; }

.why-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ent-text);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
[data-theme="dark"] .why-body h3 { color: #d0daf5; }

.why-body p {
  font-size: 14px;
  line-height: 1.68;
  color: var(--ent-muted);
  margin: 0;
}

/* Why section responsive */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-item {
    padding: 36px 24px 36px 0;
    border-bottom: 1px solid var(--ent-line);
  }
  [data-theme="dark"] .why-item { border-color: rgba(99,130,255,0.1); }
  .why-item:nth-child(2) { border-right: none; padding-right: 0; }
  .why-item:nth-child(3) { border-bottom: none; }
  .why-item:nth-child(4) { border-right: none; border-bottom: none; padding-right: 0; }
}
@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-item {
    padding: 28px 0 !important;
    border-right: none !important;
    border-bottom: 1px solid var(--ent-line) !important;
  }
  [data-theme="dark"] .why-item { border-color: rgba(99,130,255,0.1) !important; }
  .why-item:last-child { border-bottom: none !important; }
  .why-body h3 { font-size: 15px; }
  .why-header { margin-bottom: 40px; }
}

/* ── CTA SWEEP — GPU OPTIMIZE ── */
.cta-sweep {
  will-change: transform, opacity;
}

/* ── TECH SECTION — override old marquee suppression ── */
.tech-section { display: block !important; }
.tech-marquee-section { display: none !important; }

/* ═══════════════════════════════════════════════════
   V5 — FINAL PRECISION POLISH
   Work story specificity · Why num · Trust · Hero ·
   Services row fix · Mobile stats · Micro-polish
═══════════════════════════════════════════════════ */

/* ── Hero H1 — final override (above all) ── */
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.035em !important;
}

/* ── Hero content — slightly wider ── */
.hero-content { max-width: 640px !important; }

/* ── Hero sub — better readability ── */
.hero-sub {
  font-size: clamp(15.5px, 1.45vw, 17.5px) !important;
  line-height: 1.76 !important;
  max-width: 530px !important;
  color: rgba(255,255,255,0.80) !important;
}

/* ── Trust strip — 15-20% more visible ── */
.trust-section {
  padding: 56px 0 !important;
}
.trust-logos {
  gap: 56px !important;
}
.trust-logo img {
  height: 44px !important;
  max-width: 160px !important;
  filter: none !important;
  opacity: 0.95 !important;
}
.trust-label {
  font-size: 11.5px !important;
  letter-spacing: 0.12em !important;
  margin-bottom: 32px !important;
  color: rgba(100,110,130,0.9) !important;
}
[data-theme="dark"] .trust-label { color: rgba(120,140,180,0.7) !important; }

/* ── Services grid — correct row layout ── */
.srv-grid {
  grid-template-rows: 1fr 1fr !important;
  gap: 14px !important;
}
/* Featured spans both rows correctly */
.srv-grid > .srv-card:nth-child(1) {
  grid-row: 1 / 3 !important;
  min-height: 440px !important;
}
/* Row 1: cards 2+3 */
.srv-grid > .srv-card:nth-child(2) {
  grid-column: 2 !important;
  grid-row: 1 !important;
  min-height: 210px !important;
}
.srv-grid > .srv-card:nth-child(3) {
  grid-column: 3 !important;
  grid-row: 1 !important;
  min-height: 210px !important;
}
/* Row 2: cards 4+5+6 — span full width */
.srv-grid > .srv-card:nth-child(4) {
  grid-column: 1 !important;
  grid-row: 2 !important;
  min-height: 210px !important;
}
.srv-grid > .srv-card:nth-child(5) {
  grid-column: 2 !important;
  grid-row: 2 !important;
  min-height: 210px !important;
}
.srv-grid > .srv-card:nth-child(6) {
  grid-column: 3 !important;
  grid-row: 2 !important;
  min-height: 210px !important;
}

/* ── Work card story — specificity fix ── */
.work-card .work-card-story p {
  font-size: 13.5px !important;
  line-height: 1.66 !important;
  color: rgba(255,255,255,0.55) !important;
  margin-bottom: 0 !important;
  flex: none !important;
}
.work-card--featured .work-card-story p {
  font-size: 14px !important;
  color: rgba(255,255,255,0.58) !important;
}
.work-card-body {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}
.work-card .work-card-story {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  margin-bottom: 0 !important;
}
/* Regular work-card p (without story) stays flex */
.work-card p:not(.work-card-story p) {
  flex: 1 !important;
  margin-bottom: auto !important;
}

/* ── Why-num — stronger, more visible ── */
.why-num {
  opacity: 1 !important;
  color: var(--ent-blue) !important;
  font-size: 11px !important;
  background: var(--ent-blue-soft) !important;
  border: 1px solid var(--ent-blue-border) !important;
  border-radius: 8px !important;
  width: 32px !important;
  height: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}
[data-theme="dark"] .why-num {
  background: rgba(99,130,255,0.1) !important;
  border-color: rgba(99,130,255,0.2) !important;
  color: #7fa8ff !important;
}

/* ── Why-body h3 — more enterprise ── */
.why-body h3 {
  font-size: 17px !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  margin-bottom: 10px !important;
  line-height: 1.3 !important;
}

/* ── Industries heading — final override ── */
.industries-section > .wrap > h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem) !important;
  letter-spacing: -0.028em !important;
  line-height: 1.1 !important;
  margin-bottom: 52px !important;
}

/* ── Tech section h2 — remove pre-line whitespace dependency ── */
.tech-header h2 { white-space: normal !important; }

/* ── Why header h2 — remove pre-line whitespace dependency ── */
.why-header h2 { white-space: normal !important; }

/* ── Process connectors — proportional at all sizes ── */
.process-connector {
  min-width: 24px !important;
  max-width: 48px !important;
  flex: 0 1 48px !important;
}

/* ── Ind-panel body text slightly larger ── */
.ind-panel p {
  font-size: 15.5px !important;
  line-height: 1.74 !important;
}

/* ── Scale stat — number gradient brighter ── */
.scale-num {
  font-size: clamp(3.2rem, 5.5vw, 5.5rem) !important;
}

/* ── CTA content — more spacious ── */
.cta-content {
  max-width: 680px !important;
}
.cta-content p {
  font-size: 16.5px !important;
  max-width: 540px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ── Hero stats — mobile gap fix ── */
@media (max-width: 640px) {
  .hero-stats {
    gap: 20px !important;
    flex-wrap: wrap !important;
  }
  .hstat { padding: 0 !important; }
  .hstat-div { display: none !important; }
  .hstat b { font-size: 22px !important; }
  .hstat span { font-size: 11.5px !important; }
  .hero-sub { max-width: 100% !important; }
  .hero h1 { font-size: clamp(2.2rem, 7.5vw, 2.8rem) !important; }
}

/* ── Services responsive — tablet ── */
@media (max-width: 1100px) {
  .srv-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto !important;
  }
  .srv-grid > .srv-card:nth-child(1) {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
    min-height: 320px !important;
  }
  .srv-grid > .srv-card:nth-child(2),
  .srv-grid > .srv-card:nth-child(3),
  .srv-grid > .srv-card:nth-child(4),
  .srv-grid > .srv-card:nth-child(5),
  .srv-grid > .srv-card:nth-child(6) {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 220px !important;
  }
}

/* ── Trust logos — mobile ── */
@media (max-width: 640px) {
  .trust-logos { gap: 28px !important; }
  .trust-logo img { height: 34px !important; max-width: 120px !important; opacity: 0.95 !important; }
  .trust-section { padding: 40px 0 !important; }
}

/* ── Footer social icon size ── */
.footer-social a {
  width: 38px !important;
  height: 38px !important;
}

/* ── Testi featured — slightly taller on desktop ── */
.testi-featured {
  padding: 52px 60px !important;
}
@media (max-width: 900px) {
  .testi-featured { padding: 40px 40px !important; }
}
@media (max-width: 640px) {
  .testi-featured { padding: 30px 28px !important; }
}

/* ═══════════════════════════════════════════════════
   V6 — FINAL PRODUCTION PASS
   Mobile accordion · Overflow · Work grid · Hero
   mobile · Scale labels · Process vertical · Footer
═══════════════════════════════════════════════════ */

/* ── Global overflow guard ── */
html, body { overflow-x: hidden; max-width: 100%; }
* { box-sizing: border-box; }

/* ── CSS version bump ── */
/* enterprise.css v=20260913f */

/* ── INDUSTRIES — MOBILE ACCORDION ── */
@media (max-width: 767px) {
  .ind-accordion-mode .industries-panel {
    display: block !important;
    border: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }
  .ind-accordion-mode .industries-tabs {
    display: flex !important;
    flex-direction: column !important;
    overflow: visible !important;
    border-bottom: none !important;
    border-right: none !important;
    background: transparent !important;
  }
  .ind-accordion-mode .ind-tab {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: left !important;
    gap: 12px !important;
    padding: 16px 20px !important;
    font-size: 14px !important;
    border: 1px solid var(--ent-line) !important;
    border-radius: 12px !important;
    margin-bottom: 6px !important;
    white-space: normal !important;
    background: var(--ent-white) !important;
    min-height: 52px !important;
  }
  [data-theme="dark"] .ind-accordion-mode .ind-tab {
    background: #0d1220 !important;
    border-color: rgba(99,130,255,0.1) !important;
  }
  .ind-accordion-mode .ind-tab::after {
    content: '+' !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    font-size: 18px !important;
    font-weight: 300 !important;
    color: var(--ent-muted) !important;
    border-radius: 0 !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
  }
  .ind-accordion-mode .ind-tab--active::after {
    content: '−' !important;
    color: var(--ent-blue) !important;
  }
  .ind-accordion-mode .industries-content {
    background: transparent !important;
  }
  .ind-accordion-mode .ind-panel {
    padding: 20px !important;
    border: 1px solid var(--ent-line) !important;
    border-radius: 12px !important;
    margin-bottom: 8px !important;
    background: var(--ent-off) !important;
  }
  [data-theme="dark"] .ind-accordion-mode .ind-panel {
    background: #0c1120 !important;
    border-color: rgba(99,130,255,0.1) !important;
  }
  .ind-accordion-mode .ind-panel-body { max-width: 100% !important; }
  .ind-accordion-mode .ind-panel h3 { font-size: 1.15rem !important; }
  .ind-accordion-mode .ind-panel p { font-size: 14px !important; }
}

/* ── WORK GRID — MOBILE ── */
@media (max-width: 767px) {
  .work-grid {
    grid-template-columns: 1fr !important;
    gap: 1px !important;
  }
  .work-card-image {
    aspect-ratio: 16/9 !important;
  }
  .work-card--featured .work-card-image {
    aspect-ratio: 16/10 !important;
  }
  .work-card-body {
    padding: 24px !important;
  }
  .work-card-body h3 { font-size: 17px !important; }
  .work-header { flex-direction: column !important; align-items: flex-start !important; }
}

/* ── SCALE STAT — label readability ── */
.scale-stat p {
  max-width: 180px !important;
  font-size: 13.5px !important;
  color: rgba(255,255,255,0.55) !important;
  line-height: 1.5 !important;
}
@media (max-width: 640px) {
  .scale-stat p {
    max-width: 100% !important;
    font-size: 13px !important;
  }
  .scale-stat { padding: 32px 20px !important; }
  .scale-num { font-size: clamp(2.4rem, 9vw, 3.2rem) !important; }
  .scale-header { margin-bottom: 48px !important; }
  .scale-header h2 { font-size: clamp(1.7rem, 7vw, 2.4rem) !important; }
}

/* ── HERO MOBILE — final definitive ── */
@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(2.1rem, 8vw, 2.8rem) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.025em !important;
  }
  .hero-sub {
    font-size: 15px !important;
    line-height: 1.7 !important;
    max-width: 100% !important;
    margin-bottom: 28px !important;
    color: rgba(255,255,255,0.75) !important;
  }
  .hero-ctas {
    flex-direction: column !important;
    gap: 10px !important;
    margin-bottom: 36px !important;
  }
  .btn-hero, .btn-hero-ghost {
    width: 100% !important;
    justify-content: center !important;
    min-height: 48px !important;
    padding: 14px 24px !important;
  }
  .hero-stats {
    gap: 16px 24px !important;
    flex-wrap: wrap !important;
  }
  .hstat { padding: 0 !important; }
  .hstat b { font-size: 24px !important; }
  .hstat span { font-size: 11px !important; letter-spacing: 0.05em !important; }
}

/* ── PROCESS — MOBILE VERTICAL (grid, no wrapper needed) ── */
@media (max-width: 640px) {
  .process-steps {
    flex-direction: column !important;
    gap: 0 !important;
    overflow: visible !important;
  }
  .process-step {
    display: grid !important;
    grid-template-columns: 40px 1fr !important;
    grid-template-rows: auto auto !important;
    column-gap: 16px !important;
    row-gap: 6px !important;
    padding-bottom: 32px !important;
    flex: none !important;
    width: 100% !important;
    position: relative !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
  .process-step-num {
    grid-column: 1 !important;
    grid-row: 1 / 3 !important;
    align-self: start !important;
    position: relative !important;
    z-index: 1 !important;
    flex-shrink: 0 !important;
  }
  .process-step h3 {
    grid-column: 2 !important;
    grid-row: 1 !important;
    margin: 0 !important;
    padding-top: 8px !important;
  }
  .process-step p {
    grid-column: 2 !important;
    grid-row: 2 !important;
    margin: 0 !important;
  }
  .process-connector { display: none !important; }
  /* Vertical connector line drawn from the num chip downward */
  .process-step:not(:last-child)::before {
    content: '' !important;
    position: absolute !important;
    left: 19px !important;
    top: 40px !important;
    bottom: 0 !important;
    width: 1px !important;
    background: var(--ent-line) !important;
    z-index: 0 !important;
  }
  [data-theme="dark"] .process-step:not(:last-child)::before {
    background: rgba(99,130,255,0.15) !important;
  }
  .process-header { margin-bottom: 40px !important; }
  .process-header h2 { font-size: clamp(1.7rem, 7vw, 2.2rem) !important; }
  .process-intro { font-size: 14px !important; }
  .process-timeline { display: none !important; }
}


/* ── TEAM — MOBILE ── */
@media (max-width: 640px) {
  .team-layout {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .team-photo-grid { gap: 8px !important; }
  .team-photo { border-radius: 10px !important; }
  .team-visual-card {
    position: static !important;
    transform: none !important;
    margin-top: 16px !important;
    white-space: normal !important;
    text-align: center !important;
  }
  .team-copy h2 { font-size: clamp(1.7rem, 7vw, 2.2rem) !important; }
  .team-copy p { font-size: 14.5px !important; }
  .team-metrics { gap: 20px !important; }
  .team-metric strong { font-size: 22px !important; }
}

/* ── WHY BITNEKA — MOBILE ── */
@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr !important;
  }
  .why-item {
    padding: 24px 0 !important;
    border-right: none !important;
    border-bottom: 1px solid var(--ent-line) !important;
    gap: 16px !important;
  }
  [data-theme="dark"] .why-item { border-color: rgba(99,130,255,0.1) !important; }
  .why-item:last-child { border-bottom: none !important; }
  .why-body h3 { font-size: 16px !important; }
  .why-body p { font-size: 14px !important; }
  .why-header h2 { font-size: clamp(1.7rem, 7vw, 2.2rem) !important; }
  .why-header { margin-bottom: 36px !important; }
}

/* ── TECH GROUPS — MOBILE ── */
@media (max-width: 640px) {
  .tech-groups {
    grid-template-columns: 1fr !important;
    border-radius: 16px !important;
  }
  .tech-group {
    border-right: none !important;
    border-bottom: 1px solid var(--ent-line) !important;
    padding: 24px 20px !important;
  }
  [data-theme="dark"] .tech-group { border-color: rgba(99,130,255,0.1) !important; }
  .tech-group:last-child { border-bottom: none !important; }
  .tech-header h2 { font-size: clamp(1.6rem, 6.5vw, 2rem) !important; }
}

/* ── FOOTER ACCORDION — MOBILE ── */
@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
  }
  .footer-brand {
    padding: 32px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
    max-width: 100% !important;
  }
  .footer-column {
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
    padding: 0 !important;
  }
  .footer-column h4 {
    padding: 16px 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    font-size: 12px !important;
  }
  .footer-column h4::after {
    content: '+' !important;
    font-size: 16px !important;
    font-weight: 300 !important;
    color: rgba(255,255,255,0.35) !important;
    transition: transform .25s ease !important;
  }
  .footer-column h4.footer-col-open::after {
    content: '−' !important;
    color: rgba(255,255,255,0.6) !important;
  }
  .footer-col-body {
    padding-bottom: 16px !important;
  }
  .footer-contact-col {
    padding-top: 0 !important;
  }
  .footer-contact-col h4 {
    padding: 16px 0 !important;
  }
  /* Contact column stays visible */
  .footer-contact-col .footer-col-body {
    display: block !important;
  }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07) !important;
    padding: 20px 0 !important;
    margin-top: 0 !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 8px !important;
  }
  .footer { padding: 40px 0 0 !important; }
}

/* ── INDUSTRIES SECTION MOBILE — no horizontal scroll ── */
@media (max-width: 767px) {
  .industries-section > .wrap > h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem) !important;
    margin-bottom: 32px !important;
  }
  /* Hide horizontal scrollable tab when accordion is active */
  .ind-accordion-mode .industries-tabs {
    overflow: hidden !important;
    -webkit-overflow-scrolling: auto !important;
  }
  .ind-accordion-mode .ind-tab:last-child {
    margin-bottom: 0 !important;
  }
}

/* ── TRUST STRIP — MOBILE ── */
@media (max-width: 480px) {
  .trust-logos {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px 16px !important;
    justify-items: center !important;
  }
  .trust-logo img { height: 32px !important; opacity: 0.95 !important; }
}

/* ── SERVICES MOBILE — no horizontal overflow ── */
@media (max-width: 640px) {
  .srv-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .srv-grid > .srv-card {
    grid-column: 1 !important;
    grid-row: auto !important;
    min-height: 200px !important;
  }
  .srv-grid > .srv-card:nth-child(1) {
    min-height: 260px !important;
  }
  .srv-content { padding: 22px !important; }
  .srv-content h3 { font-size: 16px !important; }
  .srv-content p { font-size: 13px !important; }
  .srv-more p { font-size: 13px !important; }
}

/* ── NAVIGATION MOBILE ── */
@media (max-width: 640px) {
  .nav-inner { padding: 0 18px !important; }
  .nav-logo img { height: 30px !important; }
  .nav-hamburger {
    min-width: 44px !important;
    min-height: 44px !important;
  }
}

/* ── CTA — MOBILE ── */
@media (max-width: 640px) {
  .cta-content h2 {
    font-size: clamp(1.7rem, 7vw, 2.4rem) !important;
    letter-spacing: -0.025em !important;
  }
  .cta-content p {
    font-size: 15px !important;
    max-width: 100% !important;
  }
  .cta-actions { flex-direction: column !important; gap: 10px !important; }
  .btn-cta-primary, .btn-cta-ghost {
    width: 100% !important;
    justify-content: center !important;
    min-height: 50px !important;
    font-size: 15px !important;
  }
}

/* ── WORK SECTION — MOBILE ── */
@media (max-width: 640px) {
  .work-header h2 { font-size: clamp(1.7rem, 7vw, 2.2rem) !important; }
  .work-section { padding: var(--section-v) 0 !important; }
}

/* ── TESTIMONIALS — MOBILE ── */
@media (max-width: 640px) {
  .testimonials-section > .wrap > h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem) !important;
    margin-bottom: 32px !important;
  }
  .testi-supporting { grid-template-columns: 1fr !important; gap: 10px !important; }
  .testi-card { padding: 22px 20px !important; }
  .testi-card p { font-size: 13.5px !important; }
}

/* ── EYEBROW — MOBILE ── */
@media (max-width: 640px) {
  .eyebrow { font-size: 10px !important; letter-spacing: 0.14em !important; }
}

/* ── PREFERS REDUCED MOTION — extended ── */
@media (prefers-reduced-motion: reduce) {
  .cta-sweep { animation: none !important; }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .process-step, .why-item, .tech-group { transition: none !important; }
}

/* ── LARGE SCREENS ── */
@media (min-width: 1600px) {
  .wrap { max-width: 1320px !important; }
  .hero h1 { font-size: 4.4rem !important; }
}
@media (min-width: 1920px) {
  .wrap { max-width: 1400px !important; }
}

/* ═══════════════════════════════════════════════════
   V7 — FINAL MICRO-POLISH
   Tablet 768–1024 · Nav 44px · Work card · Borders
   Testi tablet · Scale 2x2 borders · Footer contact
═══════════════════════════════════════════════════ */

/* ── NAV HAMBURGER — guaranteed 44px on mobile & tablet, hidden on desktop ── */
@media (max-width: 900px) {
  .nav-hamburger {
    min-width: 44px !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}
@media (min-width: 901px) {
  .nav-hamburger {
    display: none !important;
  }
}

/* ── WORK CARD — body padding ── */
.work-card-body {
  padding: 32px !important;
}
.work-card--featured .work-card-body {
  padding: 36px !important;
}
@media (max-width: 767px) {
  .work-card-body { padding: 22px !important; }
  .work-card--featured .work-card-body { padding: 24px !important; }
}

/* ── WORK CTA LINK — touch target ── */
.work-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  min-height: 36px !important;
  padding: 4px 0 !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,0.6) !important;
  border-bottom: 1px solid rgba(255,255,255,0.2) !important;
  transition: color .2s ease, border-color .2s ease, gap .2s ease !important;
}
.work-cta:hover {
  color: #fff !important;
  border-color: rgba(255,255,255,0.5) !important;
  gap: 10px !important;
}

/* ── WORK CARD H3 ── */
.work-card-body h3 {
  font-size: clamp(16px, 1.5vw, 20px) !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.015em !important;
  color: #fff !important;
  margin-bottom: 16px !important;
  margin-top: 0 !important;
}

/* ── WORK CARD META ── */
.work-card-meta {
  display: flex !important;
  gap: 8px !important;
  margin-bottom: 14px !important;
  flex-wrap: wrap !important;
}
.work-type, .work-industry {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.45) !important;
}
.work-type::after {
  content: '·' !important;
  margin-left: 8px !important;
  opacity: 0.5 !important;
}

/* ── SCALE — 2x2 border fix ── */
@media (max-width: 767px) {
  .scale-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
  }
  .scale-stat {
    border-right: 1px solid rgba(255,255,255,0.06) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  }
  .scale-stat:nth-child(2n) { border-right: none !important; }
  .scale-stat:nth-child(3),
  .scale-stat:nth-child(4) { border-bottom: none !important; }
}

/* ── TABLET 768–1024 — general ── */
@media (min-width: 641px) and (max-width: 1024px) {
  /* Hero */
  .hero h1 { font-size: clamp(2.4rem, 5.5vw, 3.4rem) !important; }
  .hero-sub { font-size: clamp(15px, 2vw, 16.5px) !important; }

  /* Services */
  .srv-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto !important;
  }
  .srv-grid > .srv-card:nth-child(1) {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    min-height: 320px !important;
  }
  .srv-grid > .srv-card:nth-child(2),
  .srv-grid > .srv-card:nth-child(3),
  .srv-grid > .srv-card:nth-child(4),
  .srv-grid > .srv-card:nth-child(5),
  .srv-grid > .srv-card:nth-child(6) {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 200px !important;
  }

  /* Industries */
  .industries-panel { grid-template-columns: 200px 1fr !important; }
  .ind-panel { padding: 32px !important; }
  .ind-tab { padding: 16px 18px !important; font-size: 13px !important; }

  /* Work grid */
  .work-grid { grid-template-columns: 1fr 1fr !important; }
  .work-card--featured { grid-column: 1 / -1 !important; }

  /* Scale */
  .scale-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .scale-stat:nth-child(2) { border-right: none !important; }
  .scale-stat:nth-child(3) { border-bottom: none !important; }
  .scale-stat:last-child { border-right: none !important; border-bottom: none !important; }

  /* Process */
  .process-steps { flex-wrap: wrap !important; gap: 0 !important; }
  .process-step { flex: 1 1 calc(50% - 24px) !important; min-width: 180px !important; }
  .process-connector { width: 24px !important; }

  /* Team */
  .team-layout { grid-template-columns: 1fr !important; gap: 40px !important; }
  .team-copy { max-width: 600px !important; }

  /* Testimonials */
  .testi-supporting { grid-template-columns: 1fr !important; }
  .testi-featured { padding: 40px 44px !important; }

  /* Why */
  .why-grid { grid-template-columns: 1fr 1fr !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }

  /* CTA */
  .cta-content h2 { font-size: clamp(2rem, 4.5vw, 3rem) !important; }
}

/* ── TABLET WORK 768–1024 — featured card top ── */
@media (min-width: 641px) and (max-width: 1024px) {
  .work-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1px !important;
  }
  .work-card--featured {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
  }
}

/* ── FOOTER CONTACT — always expanded on mobile ── */
@media (max-width: 767px) {
  .footer-contact-col .footer-col-body { display: block !important; }
  .footer-contact-col h4::after { display: none !important; }
  .footer-contact-col h4 { cursor: default !important; }
}

/* ── SCALE HEADER — dark theme eyebrow ── */
[data-theme="dark"] .scale-header .eyebrow {
  color: rgba(150,170,220,0.5) !important;
}

/* ── INDUSTRY TABS — min touch height ── */
.ind-tab { min-height: 48px !important; }

/* ── EYEBROW BEFORE — dark theme ── */
[data-theme="dark"] .eyebrow::before { background: rgba(99,130,255,0.4) !important; }

/* ── WORK SECTION EYEBROW ── */
.work-header .eyebrow::before { background: rgba(255,255,255,0.3) !important; }

/* ── MOBILE — section h2 consistent scale ── */
@media (max-width: 640px) {
  .services-section h2,
  .tech-header h2,
  .scale-header h2,
  .process-header h2,
  .testimonials-section > .wrap > h2,
  .team-copy h2,
  .why-header h2,
  .cta-content h2 {
    font-size: clamp(1.7rem, 7.5vw, 2.2rem) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.025em !important;
  }
  .work-header h2,
  .industries-section > .wrap > h2 {
    font-size: clamp(1.7rem, 7.5vw, 2.2rem) !important;
  }
}

/* ── REDUCE motion: no layout shift ── */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .cta-sweep { animation: none !important; opacity: 0.8 !important; }
}

/* ═══════════════════════════════════════════════════
   V8 — FINAL PRODUCTION AUDIT
   Tab/accordion fix · Wrap padding · Touch targets ·
   Hero mobile · Overflow guard · Image safety
═══════════════════════════════════════════════════ */

/* ── Wrap — guaranteed horizontal padding on all sizes ── */
.wrap {
  padding-left: clamp(16px, 4vw, 40px) !important;
  padding-right: clamp(16px, 4vw, 40px) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* ── Global image overflow guard ── */
img, video, svg {
  max-width: 100%;
  height: auto;
}
.hero-mockup img,
.team-photo,
.work-card-image {
  max-width: 100% !important;
}


/* ── Mobile menu — dark theme text fix ── */
[data-theme="dark"] .mobile-menu { background: #050505 !important; }
[data-theme="dark"] .mm-link { color: #c8d4f0 !important; }
[data-theme="dark"] .mm-footer { background: #050505 !important; }

/* ── Hero — mobile content width ── */
@media (max-width: 640px) {
  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }
  .hero-sub { max-width: 100% !important; }
  /* Remove hero mockup completely on tiny screens */
  .hero-mockup { display: none !important; }
  /* Hero grid: single column */
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
}

/* ── Prevent any fixed-width child causing overflow ── */
@media (max-width: 480px) {
  [style*="width:"], [style*="min-width:"] {
    max-width: 100% !important;
  }
  .hero-mockup-card,
  .hero-dashboard,
  .hero-stat-card {
    max-width: calc(100vw - 32px) !important;
    overflow: hidden !important;
  }
}

/* ── Industries accordion — first panel open by default on mobile ── */
@media (max-width: 767px) {
  /* Ensure first tab is active visual on mobile */
  .ind-accordion-mode .ind-tab:first-child {
    border-radius: 12px !important;
  }
  /* Accordion panels take full width */
  .ind-accordion-mode .industries-content {
    width: 100% !important;
  }
}

/* ── Work card image — no overflow ── */
.work-card-image {
  overflow: hidden !important;
  flex-shrink: 0 !important;
}

/* ── Scale stat — no overflow ── */
.scale-num {
  overflow: hidden !important;
  text-overflow: clip !important;
  white-space: nowrap !important;
}

/* ── Process connector — hide on tablet to prevent overflow ── */
@media (max-width: 900px) {
  .process-connector { display: none !important; }
  .process-steps {
    flex-wrap: wrap !important;
    gap: 32px 16px !important;
  }
  .process-step {
    flex: 1 1 140px !important;
    min-width: 140px !important;
    max-width: 220px !important;
  }
}

/* ── Footer — no overflow on any size ── */
.footer {
  overflow-x: hidden !important;
}
.footer-grid {
  min-width: 0 !important;
}
.footer-column {
  min-width: 0 !important;
  overflow: hidden !important;
}
.footer-column a {
  min-width: 0 !important;
  word-break: break-word !important;
}

/* ── Nav inner — no overflow (keeps mega menu visible) ── */
.nav-inner {
  flex-wrap: nowrap !important;
  min-width: 0 !important;
  position: relative !important;
}
.nav-logo {
  flex-shrink: 0 !important;
}
.nav-desktop {
  flex: 1 !important;
  min-width: 0 !important;
  position: relative !important;
}
.nav-actions {
  flex-shrink: 0 !important;
}

/* ── IND-PANEL — no overflow inside ── */
.ind-panel-body {
  overflow: hidden !important;
  word-break: break-word !important;
}
.ind-caps {
  overflow: hidden !important;
}

/* ── Mobile: section padding consistency ── */
@media (max-width: 640px) {
  .hero { padding-top: 68px !important; }
  .trust-section { padding: 40px 0 !important; }
  .services-section,
  .tech-section,
  .industries-section,
  .work-section,
  .scale-section,
  .process-section,
  .testimonials-section,
  .team-section,
  .why-section,
  .cta-section {
    padding-top: clamp(56px, 10vw, 80px) !important;
    padding-bottom: clamp(56px, 10vw, 80px) !important;
  }
}

/* ── IND TAB — no text overflow on mobile accordion ── */
@media (max-width: 767px) {
  .ind-accordion-mode .ind-tab {
    white-space: normal !important;
    word-break: break-word !important;
  }
}

/* ── Trust logos flex wrap safety ── */
.trust-logos {
  flex-wrap: wrap !important;
}

/* ── Why item — flex safety ── */
.why-item {
  min-width: 0 !important;
}
.why-body {
  min-width: 0 !important;
}

/* ═══════════════════════════════════════════════════
   V9 — FINAL CORRECTIONS
   Reverts clipping regressions · WhatsApp 44px ·
   Social icons 44px · srv-more wrap · Process tablet ·
   Footer col-spacer · ind-panel visible
═══════════════════════════════════════════════════ */

/* ── IND PANEL — overflow must be visible for content ── */
.ind-panel-body {
  overflow: visible !important;
  word-break: break-word !important;
}
.ind-caps {
  overflow: visible !important;
}

/* ── Footer column — overflow must be visible (accordion expands) ── */
.footer-column {
  min-width: 0 !important;
  overflow: visible !important;
}

/* ── Footer col-spacer h4 — style the Legal sub-header inside accordion ── */
.footer-col-spacer {
  margin-top: 20px !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  font-size: 10.5px !important;
  letter-spacing: 0.12em !important;
  color: rgba(255,255,255,0.35) !important;
}


/* ── WhatsApp float button — 44px guaranteed ── */
.whatsapp-float {
  width: 52px !important;
  height: 52px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  position: fixed !important;
  bottom: 24px !important;
  right: 20px !important;
  z-index: 500 !important;
  font-size: 22px !important;
  background: #25D366 !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35) !important;
  transition: transform .2s ease, box-shadow .2s ease !important;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.06) !important;
  box-shadow: 0 8px 28px rgba(37,211,102,0.5) !important;
}

/* ── Footer social icons — 44px touch target ── */
.footer-social a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  border-radius: 10px !important;
  transition: background .2s ease, transform .2s ease !important;
}
.footer-social a:hover {
  background: rgba(255,255,255,0.1) !important;
  transform: translateY(-2px) !important;
}
.footer-social {
  display: flex !important;
  gap: 4px !important;
  margin-top: 16px !important;
}

/* ── srv-more — proper wrapping on mobile ── */
.srv-more {
  margin-top: 28px !important;
  padding-top: 24px !important;
  border-top: 1px solid var(--ent-line) !important;
}
[data-theme="dark"] .srv-more { border-color: rgba(99,130,255,0.1) !important; }
.srv-more p {
  font-size: 13px !important;
  line-height: 2 !important;
  color: var(--ent-muted) !important;
  flex-wrap: wrap !important;
  white-space: normal !important;
  word-break: break-word !important;
}
.srv-more a {
  color: var(--ent-blue) !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  transition: opacity .15s ease !important;
}
.srv-more a:hover { opacity: 0.75 !important; }

/* ── Process — tablet (641–900px) ── */
@media (min-width: 641px) and (max-width: 900px) {
  .process-steps {
    flex-wrap: wrap !important;
    gap: 32px !important;
  }
  .process-step {
    flex: 1 1 calc(50% - 20px) !important;
    min-width: 160px !important;
    max-width: calc(50% - 16px) !important;
  }
  .process-connector { display: none !important; }
}

/* ── Hero video — reduce on mobile for battery/performance ── */
@media (max-width: 640px) {
  .hero-video { opacity: 0.5 !important; }
}

/* ── Hero grid — correct class ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - 68px);
  padding: clamp(48px, 7vw, 88px) 0;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    min-height: auto !important;
    padding: clamp(40px, 6vw, 64px) 0 !important;
  }
  .hero-mockup { display: none !important; }
  .hero-content { max-width: 100% !important; }
  .hero-sub { max-width: 100% !important; }
}

/* ── Hero stats — mobile wrap ── */
@media (max-width: 640px) {
  .hero-stats {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 16px 28px !important;
  }
  .hstat-div { display: none !important; }
  .hstat { padding: 0 !important; }
  .hstat b { font-size: 26px !important; }
  .hstat span { font-size: 11px !important; }
}

/* ── Testi author — proper layout ── */
.testi-author {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  margin-top: 20px !important;
}
.testi-author strong {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--ent-text) !important;
}
[data-theme="dark"] .testi-author strong { color: #d0daf5 !important; }
.testi-author span {
  font-size: 13px !important;
  color: var(--ent-muted) !important;
}

/* ── Testi card footer ── */
.testi-card footer {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  margin-top: 16px !important;
}
.testi-card footer strong { font-size: 14px !important; font-weight: 700 !important; }
.testi-card footer span { font-size: 12px !important; color: var(--ent-muted) !important; }

/* ── Team caps list — wrap properly ── */
.team-caps {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 20px 0 !important;
}
.team-caps li {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--ent-muted) !important;
  background: var(--ent-surface) !important;
  padding: 5px 12px !important;
  border-radius: 20px !important;
  white-space: nowrap !important;
}
[data-theme="dark"] .team-caps li {
  background: rgba(99,130,255,0.1) !important;
  color: rgba(200,212,240,0.75) !important;
}

/* ── Team metrics — correct row ── */
.team-metrics {
  display: flex !important;
  gap: 32px !important;
  margin-top: 28px !important;
  flex-wrap: wrap !important;
}
.team-metric strong {
  display: block !important;
  font-size: clamp(24px, 3vw, 32px) !important;
  font-weight: 800 !important;
  color: var(--ent-blue) !important;
  line-height: 1 !important;
  font-family: Manrope, sans-serif !important;
  letter-spacing: -0.02em !important;
}
.team-metric span {
  font-size: 12.5px !important;
  color: var(--ent-muted) !important;
  margin-top: 4px !important;
  display: block !important;
  letter-spacing: 0.03em !important;
}

/* ── Mobile: remove section overflow that clips content ── */
@media (max-width: 640px) {
  .industries-section,
  .process-section,
  .why-section,
  .tech-section { overflow: visible !important; }
}

/* ═══════════════════════════════════════════════════════════
   V10 — SINGLE AUTHORITATIVE OVERRIDE BLOCK
   Resolves all conflicts from V1–V9 versions.
   These rules are FINAL and WIN over all previous rules.
   ════════════════════════════════════════════════════════════
   Rule: last !important declaration in source order wins.
   This block is at the END of enterprise.css — it always wins.
═══════════════════════════════════════════════════════════ */

/* ── HERO H1 — single canonical clamp ── */
.hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 4.4rem) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.035em !important;
  color: #fff !important;
  margin-bottom: 22px !important;
}

/* ── HERO SUB — single canonical rule ── */
.hero-sub {
  font-size: clamp(15px, 1.4vw, 17px) !important;
  line-height: 1.72 !important;
  color: rgba(255,255,255,0.78) !important;
  margin-bottom: 32px !important;
  max-width: 520px !important;
}

/* ── HERO GRID — single canonical desktop rule ── */
.hero-grid {
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: 48px !important;
  align-items: center !important;
  position: relative !important;
  z-index: 1 !important;
  padding: clamp(40px, 6vw, 80px) 0 !important;
}

/* ── HERO — tablet ≤1024px ── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 0.8fr !important;
    gap: 32px !important;
  }
}

/* ── HERO — mobile ≤768px ── */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: clamp(36px, 8vw, 56px) 0 clamp(48px, 10vw, 72px) 0 !important;
    min-height: auto !important;
  }
  .hero-mockup { display: none !important; }
  .hero-content { max-width: 100% !important; }
  .hero h1 {
    font-size: clamp(2.3rem, 8vw, 3rem) !important;
    margin-bottom: 16px !important;
  }
  .hero-sub {
    font-size: 15.5px !important;
    max-width: 100% !important;
    margin-bottom: 28px !important;
    line-height: 1.65 !important;
  }
  .hero-ctas {
    flex-direction: column !important;
    gap: 12px !important;
    margin-bottom: 36px !important;
  }
  .hero-ctas .btn-hero,
  .hero-ctas .btn-hero-ghost {
    width: 100% !important;
    justify-content: center !important;
    min-height: 50px !important;
    text-align: center !important;
  }
  .hero-stats {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px 32px !important;
  }
  .hstat-div { display: none !important; }
  .hstat { padding: 0 !important; }
  .hstat b { font-size: 26px !important; }
  .hstat span { font-size: 11.5px !important; }
}

/* ── HERO — small mobile ≤480px ── */
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(2.1rem, 9vw, 2.6rem) !important; }
  .hero-sub { font-size: 15px !important; }
}

/* ── HERO H1 — large desktop 1600px+ ── */
@media (min-width: 1600px) {
  .hero h1 { font-size: 4.8rem !important; }
}

/* ── WHY GRID — mobile canonical stack ── */
@media (max-width: 767px) {
  .why-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }
  .why-item {
    display: flex !important;
    gap: 20px !important;
    padding: 28px 0 !important;
    border-bottom: 1px solid var(--ent-line) !important;
    flex-direction: row !important;
    align-items: flex-start !important;
  }
  [data-theme="dark"] .why-item { border-color: rgba(99,130,255,0.1) !important; }
  .why-item:last-child { border-bottom: none !important; }
  .why-num {
    font-size: 11px !important;
    font-weight: 800 !important;
    color: var(--ent-blue) !important;
    letter-spacing: 0.08em !important;
    flex-shrink: 0 !important;
    padding-top: 3px !important;
    min-width: 28px !important;
  }
  .why-body h3 { font-size: 17px !important; margin-bottom: 8px !important; }
  .why-body p { font-size: 14px !important; line-height: 1.65 !important; }
}

/* ── TECH GROUPS — desktop 4-col canonical ── */
.tech-groups {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1px !important;
  background: var(--ent-line) !important;
  border: 1px solid var(--ent-line) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
}
[data-theme="dark"] .tech-groups {
  background: rgba(99,130,255,0.1) !important;
  border-color: rgba(99,130,255,0.1) !important;
}
.tech-group {
  background: #111111 !important;
  padding: 32px 28px !important;
  transition: background .2s ease !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-radius: 12px !important;
}
[data-theme="dark"] .tech-group { background: #111111 !important; }
.tech-group:hover { background: #1A1A1A !important; border-color: rgba(255,255,255,0.12) !important; }
[data-theme="dark"] .tech-group:hover { background: var(--ent-navy-2) !important; }

/* ── TECH GROUPS — tablet ≤1024px ── */
@media (max-width: 1024px) {
  .tech-groups {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ── TECH GROUPS — mobile ≤640px ── */
@media (max-width: 640px) {
  .tech-groups {
    grid-template-columns: 1fr !important;
    border-radius: 12px !important;
  }
  .tech-group { padding: 24px 20px !important; }
  .tech-group-label {
    font-size: 11px !important;
    margin-bottom: 12px !important;
  }
  .tech-pills li { padding: 5px 0 !important; font-size: 14px !important; }
}

/* ── TESTIMONIALS — quote canonical size ── */
.testi-quote {
  font-size: clamp(16px, 1.5vw, 19px) !important;
  line-height: 1.7 !important;
  font-style: italic !important;
  color: var(--ent-text) !important;
  margin-bottom: 0 !important;
}
[data-theme="dark"] .testi-quote { color: rgba(200,212,240,0.9) !important; }

@media (max-width: 640px) {
  .testi-quote { font-size: 16px !important; }
  .testi-featured { padding: 32px 28px !important; }
  .testi-supporting {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-top: 16px !important;
  }
  .testi-card { padding: 24px !important; }
}

/* ── CTA ACTIONS — mobile stack ── */
@media (max-width: 640px) {
  .cta-actions {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: stretch !important;
  }
  .cta-actions .btn-cta-primary,
  .cta-actions .btn-cta-ghost {
    width: 100% !important;
    justify-content: center !important;
    min-height: 50px !important;
    text-align: center !important;
  }
  .cta-content h2 {
    font-size: clamp(1.8rem, 7vw, 2.4rem) !important;
    line-height: 1.1 !important;
  }
  .cta-content p {
    font-size: 15px !important;
    max-width: 100% !important;
  }
}

/* ── PROCESS — mobile vertical final ── */
@media (max-width: 640px) {
  .process-section { padding: 64px 0 !important; }
  .process-steps {
    flex-direction: column !important;
    gap: 0 !important;
    flex-wrap: nowrap !important;
  }
  .process-connector { display: none !important; }
  .process-step {
    display: grid !important;
    grid-template-columns: 36px 1fr !important;
    column-gap: 16px !important;
    row-gap: 6px !important;
    padding-bottom: 28px !important;
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    position: relative !important;
  }
  .process-step-num {
    grid-column: 1 !important;
    grid-row: 1 / 3 !important;
    align-self: start !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 11px !important;
    position: relative !important;
    z-index: 1 !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .process-step h3 {
    grid-column: 2 !important;
    grid-row: 1 !important;
    margin: 0 !important;
    font-size: 17px !important;
    padding-top: 6px !important;
  }
  .process-step p {
    grid-column: 2 !important;
    grid-row: 2 !important;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: var(--ent-muted) !important;
  }
  .process-step:not(:last-child)::after {
    content: '' !important;
    position: absolute !important;
    left: 17px !important;
    top: 40px !important;
    bottom: 0 !important;
    width: 2px !important;
    background: var(--ent-line) !important;
    z-index: 0 !important;
  }
  [data-theme="dark"] .process-step:not(:last-child)::after {
    background: rgba(99,130,255,0.15) !important;
  }
}

/* ── WRAP — final canonical padding ── */
.wrap {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding-left: clamp(20px, 4vw, 40px) !important;
  padding-right: clamp(20px, 4vw, 40px) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* ── GLOBAL overflow prevention (underlying causes fixed above) ── */
html { overflow-x: hidden !important; }
body { overflow-x: hidden !important; max-width: 100vw !important; }

/* enterprise.css — FINAL version 20260913j — V10 canonical */

/* ═══════════════════════════════════════════════════════════
   V11 — INLINE ACCORDION · FOOTER TRANSITION · MOBILE FINAL
═══════════════════════════════════════════════════════════ */

/* ── Industries inline panel (panel moved into tabsNav by JS) ── */
@media (max-width: 767px) {
  /* When panel is inline, it should look like accordion content */
  .ind-accordion-mode .industries-tabs .ind-panel {
    border-radius: 0 0 12px 12px !important;
    margin-top: -6px !important;
    margin-bottom: 8px !important;
    border-top: none !important;
  }
  /* Active tab when panel is below: bottom radius flattened */
  .ind-accordion-mode .ind-tab--active {
    border-radius: 12px 12px 0 0 !important;
    border-bottom-color: transparent !important;
    background: var(--ent-blue-soft) !important;
    color: var(--ent-blue) !important;
  }
  [data-theme="dark"] .ind-accordion-mode .ind-tab--active {
    background: rgba(99,130,255,0.12) !important;
    color: #7fa8ff !important;
  }
  /* IND NUM in accordion tabs */
  .ind-accordion-mode .ind-num {
    font-size: 10px !important;
    color: var(--ent-blue) !important;
    opacity: 0.7 !important;
    margin-right: 4px !important;
    flex-shrink: 0 !important;
  }
  /* Industries content becomes hidden when no active panel (all inline) */
  .ind-accordion-mode .industries-content {
    display: none !important;
  }
  /* But if content still has active panel (e.g. before JS moves it), show it */
  .ind-accordion-mode .industries-content:has(.ind-panel--active) {
    display: block !important;
  }
}

/* ── Footer col-body transition ── */
.footer-col-body {
  transition: opacity 0.25s ease !important;
}
.footer-col-body[style*="display: none"] { opacity: 0 !important; }
.footer-col-body[style*="display: block"] { opacity: 1 !important; }

/* ── Footer h4 accordion indicator ── */
@media (max-width: 767px) {
  .footer-column h4 {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  .footer-column h4:not(.footer-col-spacer)::after {
    content: '+' !important;
    font-size: 18px !important;
    font-weight: 300 !important;
    color: rgba(255,255,255,0.4) !important;
    flex-shrink: 0 !important;
    transition: transform 0.25s ease !important;
  }
  .footer-column h4.footer-col-open:not(.footer-col-spacer)::after {
    content: '−' !important;
    color: rgba(99,130,255,0.7) !important;
  }
}

/* ── Service grid mobile — proper stack ── */
@media (max-width: 640px) {
  .srv-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
  }
  .srv-card {
    width: 100% !important;
    min-height: 220px !important;
    grid-column: unset !important;
    grid-row: unset !important;
  }
  .srv-grid > .srv-card:nth-child(1) {
    min-height: 260px !important;
  }
  .srv-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .srv-view-all { margin-bottom: 0 !important; }
  .srv-more p { font-size: 13px !important; line-height: 2.2 !important; }
}

/* ── Work section mobile — full stack ── */
@media (max-width: 640px) {
  .work-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
  }
  .work-card { width: 100% !important; }
  .work-card--featured .work-card-image {
    aspect-ratio: 16/9 !important;
    min-height: 200px !important;
  }
  .work-card:not(.work-card--featured) .work-card-image {
    aspect-ratio: 16/9 !important;
    min-height: 160px !important;
  }
  .work-card-body { padding: 20px !important; }
  .work-card-body h3 { font-size: 17px !important; }
  .work-story-item p { font-size: 13.5px !important; line-height: 1.6 !important; }
  .work-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
}

/* ── Scale section — mobile 2x2 canonical ── */
@media (max-width: 640px) {
  .scale-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
  }
  .scale-stat {
    padding: 32px 20px !important;
    border-right: 1px solid rgba(255,255,255,0.08) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    text-align: left !important;
  }
  .scale-stat:nth-child(2n) { border-right: none !important; }
  .scale-stat:nth-child(n+3) { border-bottom: none !important; }
  .scale-num {
    font-size: clamp(2.4rem, 10vw, 3.2rem) !important;
    letter-spacing: -0.03em !important;
  }
  .scale-stat p {
    font-size: 12px !important;
    line-height: 1.4 !important;
    max-width: 100% !important;
    margin-top: 6px !important;
  }
}

/* ── Trust section mobile ── */
@media (max-width: 640px) {
  .trust-logos {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px 16px !important;
    justify-items: center !important;
  }
  .trust-logo img { height: 34px !important; opacity: 0.95 !important; }
  .trust-label { font-size: 11px !important; margin-bottom: 20px !important; }
}

/* ── Focus-visible on all interactive elements ── */
button:focus-visible,
a:focus-visible,
[role="tab"]:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid var(--ent-blue) !important;
  outline-offset: 3px !important;
  border-radius: 4px !important;
}

/* ── Smooth transition on footer col body ── */
.footer-col-body {
  overflow: hidden;
}

/* enterprise.css — FINAL version 20260913k — V11 inline accordion */

/* ═══════════════════════════════════════════════════════════
   V12 — PLATFORMS ACCORDION · FOOTER MAX-HEIGHT · FINAL
═══════════════════════════════════════════════════════════ */

/* ── Tech groups accordion mode (mobile) ── */
@media (max-width: 767px) {
  .tech-accordion-mode {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }

  .tech-accordion-mode .tech-group {
    padding: 0 !important;
    background: transparent !important;
    border-bottom: 1px solid var(--ent-line) !important;
    border-radius: 0 !important;
  }
  [data-theme="dark"] .tech-accordion-mode .tech-group {
    border-color: rgba(99,130,255,0.12) !important;
  }
  .tech-accordion-mode .tech-group:first-child {
    border-top: 1px solid var(--ent-line) !important;
  }
  [data-theme="dark"] .tech-accordion-mode .tech-group:first-child {
    border-color: rgba(99,130,255,0.12) !important;
  }

  /* Label becomes accordion trigger */
  .tech-accordion-mode .tech-group-label {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 18px 0 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    color: var(--ent-text) !important;
    user-select: none !important;
    margin-bottom: 0 !important;
    border-bottom: none !important;
    background: none !important;
    min-height: 52px !important;
  }
  [data-theme="dark"] .tech-accordion-mode .tech-group-label {
    color: rgba(200,212,240,0.9) !important;
  }

  /* +/- indicator */
  .tech-accordion-mode .tech-group-label::after {
    content: '+' !important;
    font-size: 20px !important;
    font-weight: 300 !important;
    color: var(--ent-muted) !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
    transition: transform 0.25s ease, color 0.2s ease !important;
  }
  .tech-accordion-mode .tech-group--open .tech-group-label {
    color: var(--ent-blue) !important;
  }
  [data-theme="dark"] .tech-accordion-mode .tech-group--open .tech-group-label {
    color: #7fa8ff !important;
  }
  .tech-accordion-mode .tech-group--open .tech-group-label::after {
    content: '−' !important;
    color: var(--ent-blue) !important;
    transform: none !important;
  }

  /* Pills list inside accordion */
  .tech-accordion-mode .tech-pills {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding-bottom: 16px !important;
    border-bottom: none !important;
    list-style: none !important;
    margin: 0 !important;
  }
  .tech-accordion-mode .tech-pills li {
    font-size: 15px !important;
    color: var(--ent-text) !important;
    padding: 9px 0 !important;
    border-bottom: 1px solid var(--ent-line) !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
  }
  [data-theme="dark"] .tech-accordion-mode .tech-pills li {
    color: rgba(200,212,240,0.75) !important;
    border-color: rgba(99,130,255,0.08) !important;
  }
  .tech-accordion-mode .tech-pills li:last-child {
    border-bottom: none !important;
  }
}

/* ── Footer col body — max-height animation cleanup ── */
/* JS now uses max-height:0 → scrollHeight, so remove display:none rules */
.footer-col-body {
  /* Override any old display:none/block inline styles via cascade */
  overflow: hidden !important;
  /* Do NOT set display here — JS manages it */
}

/* ── Footer contact col — never accordion on any size ── */
.footer-contact-col h4 {
  cursor: default !important;
  pointer-events: none !important;
}
.footer-contact-col h4::after { display: none !important; }
@media (max-width: 767px) {
  .footer-contact-col .footer-col-body {
    max-height: none !important;
    opacity: 1 !important;
    overflow: visible !important;
  }
}

/* ── Tech section title ── */
.tech-header {
  margin-bottom: 40px !important;
}
.tech-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.025em !important;
}
@media (max-width: 767px) {
  .tech-header { margin-bottom: 0 !important; }
  .tech-header h2 { font-size: clamp(1.7rem, 6vw, 2rem) !important; margin-bottom: 24px !important; }
}

/* enterprise.css — FINAL version 20260913l — V12 platforms accordion */

/* ═══════════════════════════════════════════════════════════
   V13 — FOOTER CONTACT FIX · PROCESS LINE · FINAL AUDIT
═══════════════════════════════════════════════════════════ */

/* ── CRITICAL: footer contact col never accordion ── */
/* JS skips this col but add CSS safety net anyway */
.footer-contact-col .footer-col-body {
  max-height: none !important;
  opacity: 1 !important;
  overflow: visible !important;
  transition: none !important;
}
/* Always show contact CTA button */
.footer-contact-col .btn,
.footer-contact-col .footer-cta-btn,
.footer-contact-col .footer-whatsapp {
  display: inline-flex !important;
}

/* ── Footer mobile layout — single column with proper spacing ── */
@media (max-width: 767px) {
  .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding-bottom: 32px !important;
  }
  .footer-brand {
    padding-bottom: 32px !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    margin-bottom: 8px !important;
  }
  .footer-column {
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  }
  .footer-contact-col {
    border-bottom: none !important;
    padding-top: 24px !important;
  }
  /* Footer column h4 heading */
  .footer-column h4 {
    font-size: 12px !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.55) !important;
    padding: 16px 0 !important;
    margin: 0 !important;
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  /* Contact column h4 — not a trigger */
  .footer-contact-col h4 {
    cursor: default !important;
    pointer-events: none !important;
    min-height: auto !important;
    padding: 0 0 16px 0 !important;
    margin: 0 !important;
  }
  /* Footer body links inside accordion */
  .footer-col-body a {
    display: block !important;
    font-size: 14px !important;
    padding: 9px 0 !important;
    color: rgba(255,255,255,0.55) !important;
    border-bottom: none !important;
    min-height: 40px !important;
    display: flex !important;
    align-items: center !important;
  }
  .footer-col-body a:hover {
    color: rgba(255,255,255,0.9) !important;
  }
  /* Legal h4 inside accordion body */
  .footer-col-body .footer-col-spacer {
    margin-top: 12px !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
  }
  /* Footer CTA button — full-width on mobile */
  .footer-cta-btn {
    width: 100% !important;
    justify-content: center !important;
    margin-top: 16px !important;
    min-height: 50px !important;
  }
  /* Footer contact items */
  .footer-contact-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 14px !important;
    padding: 10px 0 !important;
    min-height: 44px !important;
    color: rgba(255,255,255,0.6) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  }
  .footer-contact-item:last-of-type { border-bottom: none !important; }
  .footer-contact-item i {
    width: 18px !important;
    text-align: center !important;
    color: var(--ent-blue) !important;
    font-size: 14px !important;
    flex-shrink: 0 !important;
  }
  /* Footer bottom */
  .footer-bottom {
    flex-direction: column !important;
    gap: 6px !important;
    text-align: center !important;
    padding: 20px 0 !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    margin-top: 8px !important;
  }
  .footer-bottom p { font-size: 12px !important; }
  .footer-bottom-right { font-size: 11px !important; opacity: 0.5 !important; }
}

/* ── Process section — desktop line ── */
.process-line {
  position: relative !important;
  height: 2px !important;
  background: var(--ent-line) !important;
  margin-bottom: 32px !important;
  border-radius: 2px !important;
  overflow: hidden !important;
}
[data-theme="dark"] .process-line {
  background: rgba(99,130,255,0.12) !important;
}
.process-line-fill {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  height: 100% !important;
  background: linear-gradient(90deg, #1557f0 0%, #6d9aff 100%) !important;
  border-radius: 4px !important;
  box-shadow: 0 0 10px rgba(21, 87, 240, 0.5) !important;
  transition: width 0.4s ease !important;
}
.process-timeline {
  padding: 0 !important;
  margin-bottom: 0 !important;
}

/* ── Process steps desktop — alignment fix ── */
.process-steps {
  display: flex !important;
  gap: 0 !important;
  align-items: flex-start !important;
}
.process-step {
  flex: 1 !important;
  padding: 0 20px 0 0 !important;
}
.process-step:last-child { padding-right: 0 !important; }

/* ── Work card image — proper aspect ratio ── */
.work-card-image {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.work-card--featured .work-card-image {
  min-height: 340px !important;
}
@media (max-width: 1024px) {
  .work-card--featured .work-card-image { min-height: 260px !important; }
}

/* ── Scale/metrics section desktop ── */
.scale-section { position: relative; }
.scale-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
}
.scale-stat {
  padding: 48px 32px !important;
  border-right: 1px solid var(--ent-line) !important;
  position: relative !important;
}
[data-theme="dark"] .scale-stat { border-color: rgba(99,130,255,0.1) !important; }
.scale-stat:last-child { border-right: none !important; }
.scale-stat p {
  font-size: 14px !important;
  line-height: 1.45 !important;
  color: var(--ent-muted) !important;
  max-width: 180px !important;
  margin-top: 8px !important;
}
@media (max-width: 1024px) {
  .scale-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .scale-stat:nth-child(2) { border-right: none !important; }
  .scale-stat:nth-child(3) { border-top: 1px solid var(--ent-line) !important; }
  [data-theme="dark"] .scale-stat:nth-child(3) { border-color: rgba(99,130,255,0.1) !important; }
}

/* ── Team photo grid desktop ── */
.team-photo-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  width: 100% !important;
}
.team-photo {
  width: 100% !important;
  aspect-ratio: 1 / 1.15 !important;
  object-fit: cover !important;
  object-position: top center !important;
  border-radius: 12px !important;
  display: block !important;
}
@media (max-width: 767px) {
  .team-layout {
    flex-direction: column !important;
    display: flex !important;
    gap: 32px !important;
  }
  .team-photo-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    max-width: 400px !important;
    margin: 0 auto !important;
  }
  .team-photo {
    aspect-ratio: 3/4 !important;
    border-radius: 10px !important;
  }
  .team-visual-card {
    text-align: center !important;
    margin-top: 8px !important;
  }
}

/* ── Eyebrow — consistent everywhere ── */
.eyebrow {
  display: inline-block !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--ent-blue) !important;
  margin-bottom: 14px !important;
  opacity: 0.9 !important;
}
.eyebrow--light { color: rgba(255,255,255,0.5) !important; }

/* ── Section section spacing — canonical ── */
.services-section,
.tech-section,
.industries-section,
.work-section,
.scale-section,
.process-section,
.testimonials-section,
.team-section,
.why-section,
.cta-section {
  padding: clamp(64px, 8vw, 120px) 0 !important;
}
.trust-section { padding: 40px 0 !important; }

@media (max-width: 767px) {
  .services-section,
  .tech-section,
  .industries-section,
  .work-section,
  .scale-section,
  .process-section,
  .testimonials-section,
  .team-section,
  .why-section,
  .cta-section {
    padding: clamp(56px, 12vw, 80px) 0 !important;
  }
  .trust-section { padding: 32px 0 !important; }
}

/* ── Testimonials featured — larger on desktop ── */
.testi-featured {
  background: var(--ent-off) !important;
  border: 1px solid var(--ent-line) !important;
  border-radius: 20px !important;
  padding: 48px !important;
  margin-bottom: 20px !important;
}
[data-theme="dark"] .testi-featured {
  background: rgba(99,130,255,0.05) !important;
  border-color: rgba(99,130,255,0.12) !important;
}
.testi-stars {
  color: #f59e0b !important;
  font-size: 16px !important;
  letter-spacing: 3px !important;
  margin-bottom: 16px !important;
  display: block !important;
}
.testi-supporting {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px !important;
}
.testi-card {
  background: var(--ent-off) !important;
  border: 1px solid var(--ent-line) !important;
  border-radius: 16px !important;
  padding: 32px !important;
}
[data-theme="dark"] .testi-card {
  background: rgba(99,130,255,0.04) !important;
  border-color: rgba(99,130,255,0.1) !important;
}

/* ── Buttons — premium consistent style ── */
.btn-cta-primary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 13px 28px !important;
  background: #ffffff !important;
  color: #000000 !important;
  font-weight: 700 !important;
  font-size: 14.5px !important;
  border-radius: 999px !important;
  border: none !important;
  cursor: pointer !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease !important;
  text-decoration: none !important;
  min-height: 48px !important;
  box-shadow: 0 4px 20px rgba(255,255,255,0.12) !important;
}
.btn-cta-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(255,255,255,0.22) !important;
  background: #f0f0f0 !important;
  color: #000000 !important;
}
.btn-cta-ghost {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 16px 28px !important;
  background: transparent !important;
  color: rgba(255,255,255,0.8) !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  border-radius: 10px !important;
  border: 1.5px solid rgba(255,255,255,0.25) !important;
  cursor: pointer !important;
  transition: border-color .2s ease, color .2s ease, transform .2s ease !important;
  text-decoration: none !important;
  min-height: 50px !important;
}
.btn-cta-ghost:hover {
  border-color: rgba(255,255,255,0.5) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
}

/* enterprise.css — FINAL version 20260913m — V13 production */

/* ═══════════════════════════════════════════════════════════
   V14 — FINAL PRODUCTION POLISH
   Comprehensive QA fixes: dark-mode timeline, accordion clip,
   hero eyebrow, process desktop, testimonials, team, headings,
   card hovers, footer, WhatsApp, mobile menu, CTA, 320px,
   tablet, trust section.
═══════════════════════════════════════════════════════════ */

/* ── 1. PROCESS VERTICAL TIMELINE — dark mode visibility ── */
[data-theme="dark"] .process-step:not(:last-child)::after {
  background: rgba(99,130,255,0.22) !important;
}

/* ── 2. TECH ACCORDION — prevent clip ── */
@media (max-width: 767px) {
  .tech-accordion-mode {
    overflow: visible !important;
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
  }
  .tech-accordion-mode .tech-group {
    overflow: visible !important;
  }
}

/* ── 3. HERO EYEBROW — canonical ── */
.hero-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.55) !important;
  margin-bottom: 18px !important;
}
.hero-eyebrow::before {
  content: '' !important;
  width: 20px !important;
  height: 2px !important;
  background: var(--ent-blue) !important;
  border-radius: 2px !important;
}

/* ── 4. PROCESS DESKTOP — connector between steps ── */
@media (min-width: 641px) {
  .process-connector {
    display: none !important;
  }
  .process-steps {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 0 !important;
    align-items: start !important;
  }
  .process-step {
    padding: 0 24px 0 0 !important;
    flex: none !important;
    border-right: 1px solid var(--ent-line) !important;
  }
  [data-theme="dark"] .process-step {
    border-color: rgba(99,130,255,0.12) !important;
  }
  .process-step:last-child {
    border-right: none !important;
    padding-right: 0 !important;
  }
  .process-step-num {
    font-size: 12px !important;
    font-weight: 800 !important;
    color: var(--ent-blue) !important;
    letter-spacing: 0.06em !important;
    margin-bottom: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    background: var(--ent-blue-soft) !important;
    border-radius: 10px !important;
  }
  [data-theme="dark"] .process-step-num {
    background: rgba(99,130,255,0.12) !important;
  }
  .process-step h3 {
    font-size: clamp(17px, 1.3vw, 20px) !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
  }
  .process-step p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: var(--ent-muted) !important;
    margin: 0 !important;
  }
  .process-timeline {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    margin-bottom: 40px !important;
  }
}

/* ── 5. SECTION HEADINGS — canonical typography ── */
.services-section h2,
.tech-section h2,
.industries-section h2,
.work-section h2,
.scale-section h2,
.process-section h2,
.testimonials-section h2,
.team-section h2,
.why-section h2,
.cta-section h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.025em !important;
  font-weight: 800 !important;
}
@media (max-width: 767px) {
  .services-section h2,
  .tech-section h2,
  .industries-section h2,
  .work-section h2,
  .scale-section h2,
  .process-section h2,
  .testimonials-section h2,
  .team-section h2,
  .why-section h2 {
    font-size: clamp(1.6rem, 6.5vw, 2rem) !important;
    margin-bottom: 24px !important;
  }
}

/* ── 6. TESTIMONIALS — featured mobile ── */
@media (max-width: 767px) {
  .testi-featured {
    padding: 28px 24px !important;
    border-radius: 16px !important;
    margin-bottom: 16px !important;
  }
  .testi-author {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    margin-top: 16px !important;
  }
  .testi-author strong { font-size: 14px !important; }
  .testi-author span { font-size: 12px !important; color: var(--ent-muted) !important; }
  .testi-card p { font-size: 14.5px !important; line-height: 1.6 !important; }
  .testi-card footer { margin-top: 14px !important; }
  .testi-card footer strong { font-size: 13px !important; }
  .testi-card footer span { font-size: 11.5px !important; }
}

/* ── 7. TEAM SECTION — mobile caps ── */
@media (max-width: 767px) {
  .team-caps {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 !important;
  }
  .team-caps li {
    font-size: 12px !important;
    padding: 6px 14px !important;
    background: var(--ent-blue-soft) !important;
    border-radius: 100px !important;
    white-space: nowrap !important;
    color: var(--ent-blue) !important;
    font-weight: 600 !important;
  }
  [data-theme="dark"] .team-caps li {
    background: rgba(99,130,255,0.12) !important;
    color: #7fa8ff !important;
  }
  .team-copy p {
    font-size: 15px !important;
    line-height: 1.65 !important;
    margin-bottom: 20px !important;
  }
  .team-metrics {
    display: flex !important;
    gap: 24px !important;
    flex-wrap: wrap !important;
    margin-top: 20px !important;
    margin-bottom: 28px !important;
  }
  .team-metric strong {
    font-size: 24px !important;
    font-weight: 800 !important;
    display: block !important;
  }
  .team-metric span {
    font-size: 12px !important;
    color: var(--ent-muted) !important;
  }
}

/* ── 8. CARD HOVER — unified ── */
.srv-card {
  transition: transform .35s var(--ent-ease), box-shadow .35s var(--ent-ease) !important;
}
.srv-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 20px 60px -12px rgba(0,0,0,0.2) !important;
}
.work-card {
  transition: transform .3s var(--ent-ease) !important;
}
.work-card:hover {
  transform: translateY(-2px) !important;
}
@media (pointer: coarse) {
  .srv-card:hover,
  .work-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }
}

/* ── 9. FOOTER DESKTOP — refined grid ── */
@media (min-width: 768px) {
  .footer-grid {
    display: grid !important;
    grid-template-columns: 1.4fr 1fr 0.8fr 1fr !important;
    gap: 48px !important;
    align-items: start !important;
  }
  .footer-brand p {
    font-size: 14px !important;
    line-height: 1.65 !important;
    color: rgba(255,255,255,0.55) !important;
    max-width: 280px !important;
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .footer-column h4 {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.45) !important;
    margin-bottom: 20px !important;
  }
  .footer-column a {
    display: block !important;
    font-size: 14px !important;
    color: rgba(255,255,255,0.6) !important;
    padding: 5px 0 !important;
    transition: color .2s ease !important;
    text-decoration: none !important;
  }
  .footer-column a:hover {
    color: rgba(255,255,255,0.95) !important;
  }
  .footer-bottom {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 24px 0 !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    margin-top: 48px !important;
    font-size: 13px !important;
    color: rgba(255,255,255,0.35) !important;
  }
  .footer-location {
    font-size: 13px !important;
    color: rgba(255,255,255,0.4) !important;
    margin-bottom: 16px !important;
  }
  .footer-social {
    display: flex !important;
    gap: 12px !important;
  }
  .footer-social a {
    width: 36px !important;
    height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 10px !important;
    color: rgba(255,255,255,0.5) !important;
    font-size: 14px !important;
    transition: border-color .2s ease, color .2s ease, background .2s ease !important;
    padding: 0 !important;
  }
  .footer-social a:hover {
    border-color: rgba(255,255,255,0.3) !important;
    color: #fff !important;
    background: rgba(255,255,255,0.05) !important;
  }
  .footer-contact-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 6px 0 !important;
  }
  .footer-contact-item i {
    color: var(--ent-blue) !important;
    width: 16px !important;
    text-align: center !important;
    font-size: 13px !important;
  }
  .footer-cta-btn {
    margin-top: 16px !important;
    font-size: 13px !important;
    padding: 10px 22px !important;
    min-height: 40px !important;
  }
  .footer-col-spacer {
    margin-top: 24px !important;
    padding-top: 0 !important;
    border-top: none !important;
  }
}

/* ── 10. WHATSAPP FLOAT — position and sizing ── */
.whatsapp-float {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 999 !important;
  width: 52px !important;
  height: 52px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #25D366 !important;
  color: #fff !important;
  border-radius: 50% !important;
  font-size: 24px !important;
  box-shadow: 0 4px 16px -4px rgba(37,211,102,0.4) !important;
  transition: transform .2s ease, box-shadow .2s ease !important;
  text-decoration: none !important;
}
.whatsapp-float:hover {
  transform: scale(1.08) !important;
  box-shadow: 0 6px 24px -4px rgba(37,211,102,0.5) !important;
}
@media (max-width: 767px) {
  .whatsapp-float {
    bottom: 16px !important;
    right: 16px !important;
    width: 48px !important;
    height: 48px !important;
    font-size: 22px !important;
  }
}

/* ── 11. MOBILE MENU — backdrop and spacing ── */
.mobile-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 9998 !important;
  background: var(--ent-navy) !important;
  transform: translateX(100%) !important;
  transition: transform .3s var(--ent-ease), visibility .3s ease !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  padding: 0 clamp(20px, 4vw, 40px) !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.mobile-menu:not(.open) {
  display: none !important;
}
.mobile-menu.open {
  display: flex !important;
  transform: translateX(0) !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
.mm-top {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 16px 0 !important;
  min-height: 64px !important;
}
.mm-close-btn {
  width: 44px !important;
  height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: none !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 10px !important;
  color: #fff !important;
  cursor: pointer !important;
  transition: border-color .2s ease !important;
}
.mm-close-btn:hover { border-color: rgba(255,255,255,0.3) !important; }

.mm-nav {
  padding: 20px 0 !important;
}
.mm-link {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  font-size: 16.5px !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.92) !important;
  padding: 12px 16px !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  background: rgba(255,255,255,0.03) !important;
  text-decoration: none !important;
  min-height: 52px !important;
  box-sizing: border-box !important;
  width: 100% !important;
  text-align: left !important;
  cursor: pointer !important;
  border-radius: 12px !important;
  transition: all 0.2s ease !important;
}
.mm-link:hover {
  background: rgba(99,130,255,0.1) !important;
  border-color: rgba(99,130,255,0.25) !important;
  color: #fff !important;
}
.mm-link:last-child { border-bottom: 1px solid rgba(255,255,255,0.06) !important; }

.mm-accordion-trigger {
  color: rgba(255,255,255,0.85) !important;
}
.mm-link-icon {
  width: 38px !important;
  height: 38px !important;
  border-radius: 10px !important;
  background: rgba(99,130,255,0.12) !important;
  border: 1px solid rgba(99,130,255,0.22) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 15px !important;
  color: #7fa8ff !important;
  flex-shrink: 0 !important;
  transition: all 0.2s ease !important;
}
.mm-link:hover .mm-link-icon {
  background: rgba(99,130,255,0.22) !important;
  border-color: rgba(99,130,255,0.4) !important;
  color: #fff !important;
}

.mm-link > span:nth-child(2) {
  flex: 1 !important;
  text-align: left !important;
  letter-spacing: -0.01em !important;
}

.mm-link-arrow,
.mm-acc-chevron {
  margin-left: auto !important;
  color: rgba(255,255,255,0.35) !important;
  flex-shrink: 0 !important;
  transition: transform 0.22s ease, color 0.2s ease !important;
}
.mm-link:hover .mm-link-arrow {
  color: #7fa8ff !important;
  transform: translateX(3px) !important;
}
.mm-accordion-trigger.open .mm-acc-chevron {
  color: #7fa8ff !important;
  transform: rotate(180deg) !important;
}

.mm-accordion-body {
  display: none !important;
}
.mm-accordion-body.open {
  display: block !important;
}


/* Services single-column list */
.mm-acc-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  padding: 8px 4px 12px !important;
}
.mm-acc-item {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 9px 12px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.75) !important;
  text-decoration: none !important;
  background: rgba(99,130,255,0.06) !important;
  border: 1px solid rgba(99,130,255,0.1) !important;
  transition: all .16s ease !important;
  min-height: unset !important;
}
.mm-acc-item i {
  font-size: 12px !important;
  color: #7fa8ff !important;
  width: 16px !important;
  text-align: center !important;
  flex-shrink: 0 !important;
}
.mm-acc-item:hover {
  background: rgba(99,130,255,0.15) !important;
  color: #fff !important;
}

/* mm-footer layout — centered column */
.mm-footer {
  padding: 14px 16px 18px !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  align-items: center !important;
  gap: 12px !important;
}

/* mm-footer-meta: centered column */
.mm-footer-meta {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100% !important;
}
.mm-contact-info {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 5px !important;
  width: 100% !important;
}
.mm-contact-info a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  font-size: 12.5px !important;
  color: rgba(255,255,255,0.5) !important;
  text-decoration: none !important;
  min-height: unset !important;
  padding: 0 !important;
}
.mm-contact-info a i {
  color: #7fa8ff !important;
  font-size: 11px !important;
  width: 14px !important;
  text-align: center !important;
}
.mm-contact-info a:hover { color: #fff !important; }
.mm-socials {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  align-items: center !important;
}
.mm-socials a {
  width: 32px !important;
  height: 32px !important;
  border-radius: 8px !important;
  background: rgba(99,130,255,0.08) !important;
  border: 1px solid rgba(99,130,255,0.15) !important;
  color: rgba(255,255,255,0.45) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
  text-decoration: none !important;
  transition: all .2s ease !important;
  min-height: unset !important;
  padding: 0 !important;
}
.mm-socials a:hover {
  background: #4f6ef7 !important;
  border-color: transparent !important;
  color: #fff !important;
}


/* ── 12. CTA SECTION — background treatment ── */
.cta-section {
  background: #000000 !important;
  background-image: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(79, 110, 247, 0.08) 0%, transparent 70%) !important;
  position: relative !important;
  overflow: hidden !important;
}
.cta-sweep {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: radial-gradient(ellipse at 50% 0%, rgba(21,87,240,0.08) 0%, transparent 60%) !important;
  pointer-events: none !important;
}
.cta-content {
  text-align: center !important;
  max-width: 640px !important;
  margin: 0 auto !important;
  position: relative !important;
  z-index: 1 !important;
}
.cta-content .eyebrow--light { margin-bottom: 16px !important; }
.cta-content h2 {
  color: #fff !important;
  margin-bottom: 16px !important;
}
.cta-content p {
  color: rgba(255,255,255,0.65) !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
  margin-bottom: 32px !important;
  max-width: 480px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.cta-actions {
  display: flex !important;
  gap: 14px !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
}

/* ── 13. 320px GUARD — smallest mobile ── */
@media (max-width: 360px) {
  .hero h1 { font-size: 2rem !important; }
  .hero-sub { font-size: 14.5px !important; }
  .hstat b { font-size: 22px !important; }
  .hstat span { font-size: 10.5px !important; }
  .process-step h3 { font-size: 15px !important; }
  .process-step p { font-size: 13px !important; }
  .why-body h3 { font-size: 15px !important; }
  .why-body p { font-size: 13px !important; }
  .scale-num { font-size: 2.2rem !important; }
  .testi-quote { font-size: 15px !important; }
  .work-card-body h3 { font-size: 15px !important; }
  .ind-accordion-mode .ind-tab { font-size: 13px !important; padding: 14px 16px !important; }
  .cta-content h2 { font-size: 1.6rem !important; }
  .srv-content h3 { font-size: 16px !important; }
}

/* ── 14. TABLET GUARD — industries sidebar ── */
@media (min-width: 768px) and (max-width: 1024px) {
  .industries-panel {
    grid-template-columns: 200px 1fr !important;
    gap: 0 !important;
  }
  .ind-tab {
    font-size: 13px !important;
    padding: 12px 16px !important;
    min-height: 44px !important;
  }
  .ind-panel-body h3 { font-size: 18px !important; }
  .ind-panel-body p { font-size: 14px !important; line-height: 1.6 !important; }
}

/* ── 15. TRUST SECTION — Transparent PNG logos with original colors ── */
.trust-logos {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 48px !important;
  flex-wrap: wrap !important;
}

.trust-logo {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 8px 16px !important;
  min-width: auto !important;
  height: auto !important;
  box-shadow: none !important;
  transition: transform 0.25s ease !important;
}

.trust-logo:hover {
  transform: translateY(-3px) scale(1.06) !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.trust-logo img {
  height: 44px !important;
  width: auto !important;
  max-width: 160px !important;
  object-fit: contain !important;
  filter: none !important;
  opacity: 1 !important;
  transition: transform 0.25s ease !important;
}

.trust-logo:hover img {
  filter: none !important;
  opacity: 1 !important;
}

[data-theme="dark"] .trust-logo {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

[data-theme="dark"] .trust-logo img {
  filter: none !important;
  opacity: 1 !important;
}

/* Make shopify black text white in dark mode while keeping green bag green */
[data-theme="dark"] .trust-logo img[src*="shopify"],
.trust-logo img[src*="shopify"] {
  filter: invert(1) hue-rotate(180deg) !important;
  opacity: 1 !important;
}

[data-theme="dark"] .trust-logo:hover img {
  transform: translateY(-2px) scale(1.05) !important;
}

[data-theme="dark"] .trust-label {
  color: rgba(255, 255, 255, 0.7) !important;
}

@media (max-width: 640px) {
  .trust-logos {
    gap: 24px !important;
  }
  .trust-logo {
    padding: 6px 10px !important;
  }
  .trust-logo img {
    height: 32px !important;
    max-width: 120px !important;
    filter: none !important;
    opacity: 1 !important;
  }
}
.trust-label {
  text-align: center !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--ent-muted) !important;
  margin-bottom: 28px !important;
}

/* ── 16. HERO GRADIENT TEXT — visible blue gradient ── */
.gradient-text {
  background: linear-gradient(135deg, var(--ent-blue) 0%, #6d9aff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* ── 17. HERO STATS — desktop alignment ── */
.hero-stats {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  margin-top: 36px !important;
}
.hstat {
  flex: 1 !important;
  text-align: center !important;
  padding: 0 !important;
}
.hstat b {
  display: block !important;
  font-size: clamp(26px, 2.2vw, 34px) !important;
  font-weight: 800 !important;
  color: #fff !important;
  letter-spacing: -0.02em !important;
}
.hstat span {
  display: block !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.5) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  margin-top: 4px !important;
}
.hstat-div {
  width: 1px !important;
  height: 32px !important;
  background: rgba(255,255,255,0.15) !important;
  flex-shrink: 0 !important;
}

/* ── 18. HERO BUTTONS — consistent ── */
.btn-hero {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 16px 32px !important;
  background: var(--ent-blue) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  border-radius: 12px !important;
  border: none !important;
  cursor: pointer !important;
  text-decoration: none !important;
  min-height: 52px !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease !important;
}
.btn-hero:hover {
  background: #1a62f7 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px -8px rgba(21,87,240,0.4) !important;
}
.btn-hero .btn-arrow {
  transition: transform .2s ease !important;
}
.btn-hero:hover .btn-arrow {
  transform: translateX(3px) !important;
}
.btn-hero-ghost {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 16px 28px !important;
  background: transparent !important;
  color: rgba(255,255,255,0.8) !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  border-radius: 12px !important;
  border: 1.5px solid rgba(255,255,255,0.2) !important;
  cursor: pointer !important;
  text-decoration: none !important;
  min-height: 52px !important;
  transition: border-color .2s ease, color .2s ease, transform .2s ease !important;
}
.btn-hero-ghost:hover {
  border-color: rgba(255,255,255,0.45) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
}
.hero-ctas {
  display: flex !important;
  gap: 14px !important;
  align-items: center !important;
  flex-wrap: wrap !important;
}

/* ── 19. SCROLL PROGRESS — subtle top bar ── */
.scroll-progress {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  height: 2px !important;
  width: 0 !important;
  background: var(--ent-blue) !important;
  z-index: 10000 !important;
  transition: none !important;
}

/* ── 20. NOISE OVERLAY — subtle texture ── */
.noise-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  pointer-events: none !important;
  z-index: 9997 !important;
  opacity: 0.018 !important;
  mix-blend-mode: overlay !important;
}

/* ── 21. PAGE TRANSITION — overlay ── */
.page-transition {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: var(--ent-navy) !important;
  z-index: 99999 !important;
  pointer-events: none !important;
  transform: translateY(-100%) !important;
}

/* ── 22. INDUSTRY SECTION — desktop content ── */
@media (min-width: 768px) {
  .ind-panel-body {
    padding: 32px 36px !important;
  }
  .ind-panel-body h3 {
    font-size: clamp(18px, 1.6vw, 24px) !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    line-height: 1.25 !important;
  }
  .ind-panel-body p {
    font-size: 15px !important;
    line-height: 1.65 !important;
    color: var(--ent-muted) !important;
    margin-bottom: 20px !important;
  }
  .ind-caps {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 20px 0 !important;
  }
  .ind-caps li {
    font-size: 12px !important;
    padding: 5px 14px !important;
    background: var(--ent-blue-soft) !important;
    border-radius: 100px !important;
    color: var(--ent-blue) !important;
    font-weight: 600 !important;
  }
  [data-theme="dark"] .ind-caps li {
    background: rgba(99,130,255,0.1) !important;
    color: #7fa8ff !important;
  }
  .ind-cta {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--ent-blue) !important;
    text-decoration: none !important;
    transition: gap .2s ease !important;
  }
  .ind-cta:hover { gap: 10px !important; }
}

/* ── 23. WHY SECTION — desktop grid ── */
@media (min-width: 768px) {
  .why-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0 !important;
  }
  .why-item {
    padding: 0 28px !important;
    border-right: 1px solid var(--ent-line) !important;
  }
  [data-theme="dark"] .why-item {
    border-color: rgba(99,130,255,0.1) !important;
  }
  .why-item:first-child { padding-left: 0 !important; }
  .why-item:last-child { padding-right: 0 !important; border-right: none !important; }
  .why-num {
    font-size: 12px !important;
    font-weight: 800 !important;
    color: var(--ent-blue) !important;
    letter-spacing: 0.06em !important;
    margin-bottom: 16px !important;
  }
  .why-body h3 {
    font-size: clamp(16px, 1.2vw, 19px) !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
  }
  .why-body p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: var(--ent-muted) !important;
    margin: 0 !important;
  }
}
/* ── 24. HERO SECTION — desktop layout offset adjustment ── */
@media (min-width: 992px) {
  .hero {
    padding-top: 60px !important;
  }
  .hero-grid {
    padding: 6px 0 24px 0 !important;
    margin-top: -20px !important;
  }
  .hero-eyebrow {
    margin-bottom: 14px !important;
    padding-bottom: 6px !important;
  }
  .hero h1 {
    margin-bottom: 16px !important;
  }
  .hero-sub {
    margin-bottom: 24px !important;
  }
  .hero-ctas {
    margin-bottom: 28px !important;
  }
}
/* ── 25. SERVICES & TECH SECTIONS — Desktop alignment & spacing fix ── */
@media (min-width: 992px) {
  .services-section {
    padding-bottom: 36px !important;
  }
  .srv-more {
    margin-top: 28px !important;
    padding-top: 24px !important;
  }
  .tech-section {
    padding-top: 36px !important;
    padding-bottom: 72px !important;
  }
  .tech-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    margin-bottom: 36px !important;
  }
  .tech-header .eyebrow {
    display: inline-block !important;
    margin-bottom: 2px !important;
  }
  .tech-header h2 {
    margin-top: 0 !important;
    font-size: clamp(2rem, 3.2vw, 3rem) !important;
    line-height: 1.15 !important;
  }
}
/* ── 26. PROCESS SECTION — Scroll Progress Animated Line ── */
@media (min-width: 641px) {
  .process-timeline {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    margin-bottom: 36px !important;
    padding: 0 !important;
  }
  .process-line {
    position: relative !important;
    height: 4px !important;
    background: rgba(99, 130, 255, 0.15) !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    width: 100% !important;
    margin-bottom: 0 !important;
  }
  [data-theme="dark"] .process-line {
    background: rgba(99, 130, 255, 0.15) !important;
  }
  .process-line-fill {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    height: 100% !important;
    background: linear-gradient(90deg, #1557f0 0%, #6d9aff 100%) !important;
    border-radius: 4px !important;
    box-shadow: 0 0 14px rgba(21, 87, 240, 0.7) !important;
    transition: width 0.4s ease-out !important;
  }
  .process-step-num {
    transition: all 0.3s ease !important;
  }
  .process-step--active .process-step-num {
    background: var(--ent-blue) !important;
    color: #ffffff !important;
    box-shadow: 0 0 16px rgba(21, 87, 240, 0.5) !important;
  }
  [data-theme="dark"] .process-step--active .process-step-num {
    background: #1557f0 !important;
    color: #ffffff !important;
  }
  .process-step--active h3 {
    color: var(--ent-blue) !important;
  }
  [data-theme="dark"] .process-step--active h3 {
    color: #7fa8ff !important;
  }
}
/* ── 27. FOOTER DESKTOP — Ultra-compact height & tight spacing ── */
.footer-links-grid {
  display: flex !important;
  gap: 16px !important;
}

.footer-links-col {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

@media (min-width: 992px) {
  .footer {
    padding: 20px 0 12px 0 !important;
  }
  .footer-grid {
    display: grid !important;
    grid-template-columns: 1.1fr 1.6fr 0.8fr 1fr !important;
    gap: 24px !important;
    align-items: start !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
    border-top: none !important;
  }
  .footer-brand p {
    font-size: 12.5px !important;
    line-height: 1.45 !important;
    max-width: 250px !important;
    margin-top: 4px !important;
    margin-bottom: 6px !important;
  }
  .footer-location {
    font-size: 12px !important;
    margin-bottom: 6px !important;
  }
  .footer-social {
    gap: 8px !important;
  }
  .footer-social a {
    width: 30px !important;
    height: 30px !important;
    font-size: 12px !important;
  }
  .footer-column h4 {
    font-size: 11px !important;
    letter-spacing: 0.12em !important;
    margin-bottom: 6px !important;
  }
  .footer-column a,
  .footer-links-col a,
  .footer-column > a {
    display: block !important;
    font-size: 13px !important;
    padding: 0 !important;
    margin: 0 0 5px 0 !important;
    line-height: 1.3 !important;
  }
  .footer-col-spacer {
    margin-top: 8px !important;
  }
  .footer-contact-item {
    padding: 2px 0 !important;
    font-size: 12.5px !important;
    gap: 8px !important;
  }
  .footer-cta-btn {
    margin-top: 8px !important;
    font-size: 12px !important;
    padding: 5px 14px !important;
    min-height: 32px !important;
  }
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin-top: 10px !important;
    padding: 10px 0 0 0 !important;
    font-size: 11.5px !important;
  }
}

/* enterprise.css — FINAL version 20260913n — V14 production */

/* ══════════════════════════════════════════════════════
   NEW FOOTER ISOLATION — suppress ALL old .footer rules
   New footer uses .ft class (footer.css)
══════════════════════════════════════════════════════ */
.footer { display: none !important; }

/* ══════════════════════════════════════════════════════
   FAQ SECTION — Card Pill Style
══════════════════════════════════════════════════════ */
.faq-section {
  padding: 96px 0 !important;
  background: #070b1a !important;
  border-top: 1px solid rgba(255,255,255,0.05) !important;
}
.faq-wrap {
  max-width: 860px !important;
  margin: 0 auto !important;
}
.faq-eyebrow {
  display: block !important;
  margin-bottom: 14px !important;
  color: #4f6ef7 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}
.faq-title {
  font-size: clamp(32px, 5vw, 54px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
  line-height: 1.05 !important;
  color: rgba(255,255,255,0.95) !important;
  margin: 0 0 48px !important;
}
.faq-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}
/* Each card */
.faq-item {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  transition: border-color .2s, background .2s !important;
}
.faq-item:hover {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.12) !important;
}
.faq-q[aria-expanded="true"] ~ .faq-item,
.faq-item:has(.faq-q[aria-expanded="true"]) {
  border-color: rgba(79,110,247,0.3) !important;
  background: rgba(79,110,247,0.05) !important;
}
/* Question button */
.faq-q {
  width: 100% !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  padding: 20px 22px !important;
  text-align: left !important;
  font-family: inherit !important;
  outline: none !important;
}
.faq-q-text {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.5 !important;
  flex: 1 !important;
  transition: color .2s !important;
}
.faq-q:hover .faq-q-text { color: #fff !important; }
.faq-q[aria-expanded="true"] .faq-q-text { color: #fff !important; }

/* Plus/Minus icon */
.faq-icon-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  background: rgba(255,255,255,0.05) !important;
  color: rgba(255,255,255,0.6) !important;
  transition: background .2s, border-color .2s, color .2s !important;
}
.faq-q[aria-expanded="true"] .faq-icon-wrap {
  background: #4f6ef7 !important;
  border-color: #4f6ef7 !important;
  color: #fff !important;
}
.faq-plus { display: block !important; }
.faq-minus { display: none !important; }
.faq-q[aria-expanded="true"] .faq-plus { display: none !important; }
.faq-q[aria-expanded="true"] .faq-minus { display: block !important; }

/* Answer panel */
.faq-a {
  overflow: hidden !important;
  max-height: 0 !important;
  opacity: 0 !important;
  transition: max-height .4s cubic-bezier(.22,1,.36,1), opacity .3s ease !important;
}
.faq-a.open {
  max-height: 400px !important;
  opacity: 1 !important;
}
.faq-a p {
  font-size: 14px !important;
  line-height: 1.75 !important;
  color: rgba(255,255,255,0.55) !important;
  margin: 0 !important;
  padding: 0 22px 20px !important;
}

/* Responsive */
@media (max-width: 640px) {
  .faq-section { padding: 64px 0 !important; }
  .faq-title { margin-bottom: 32px !important; }
  .faq-q { padding: 16px 16px !important; }
  .faq-q-text { font-size: 14px !important; }
  .faq-a p { padding: 0 16px 18px !important; font-size: 13.5px !important; }
}


/* ══════════════════════════════════════════════════════
   SCROLL TO TOP BUTTON
══════════════════════════════════════════════════════ */
.scroll-top-btn {
  position: fixed !important;
  bottom: 44px !important;
  right: 24px !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  background: rgba(15,20,40,0.9) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: rgba(255,255,255,0.75) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 400 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(12px) !important;
  transition: opacity .3s ease, transform .3s ease, background .2s, border-color .2s, box-shadow .2s !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35) !important;
}
.scroll-top-btn.visible {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}
.scroll-top-btn:hover {
  background: #4f6ef7 !important;
  border-color: #4f6ef7 !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(79,110,247,0.45) !important;
  transform: translateY(-2px) !important;
}

@media (max-width: 640px) {
  .faq-section { padding: 64px 0 !important; }
  .faq-q { font-size: 14px !important; padding: 20px 0 !important; }
  .faq-a p { font-size: 13.5px !important; }
  .scroll-top-btn {
    bottom: 20px !important;
    right: 16px !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
  }
}

/* ══════════════════════════════════════════════════════
   FAQ — fq- namespace (card pill, reference style)
══════════════════════════════════════════════════════ */
.fq-section { padding: 96px 0; background: #07091c; border-top: 1px solid rgba(255,255,255,0.06); }
.fq-section .wrap { max-width: 820px; margin-left: auto; margin-right: auto; }
.fq-eyebrow { display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #4f6ef7; margin: 0 0 14px; }
.fq-title { font-size: clamp(32px,5vw,52px); font-weight: 900; letter-spacing: -0.04em; line-height: 1.05; color: #fff; margin: 0 0 48px; }
.fq-list { display: flex; flex-direction: column; gap: 10px; }
.fq-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; overflow: hidden; transition: border-color .2s, background .2s; }
.fq-card:hover { background: rgba(255,255,255,0.065); border-color: rgba(255,255,255,0.14); }
.fq-btn {
  width: 100%;
  display: flex;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 22px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.fq-btn:hover { color: #fff; }
.fq-btn[aria-expanded="true"] { color: #fff; }
.fq-ico {
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  background: rgba(255,255,255,0.06) !important;
  color: rgba(255,255,255,0.7) !important;
  font-size: 20px !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  transition: background .2s, border-color .2s, color .2s;
}
.fq-btn[aria-expanded="true"] .fq-ico {
  background: #4f6ef7 !important;
  border-color: #4f6ef7 !important;
  color: #fff !important;
}
.fq-ans { overflow: hidden; max-height: 0; opacity: 0; transition: max-height .38s cubic-bezier(.22,1,.36,1), opacity .28s ease; }
.fq-ans.open { max-height: 300px; opacity: 1; }
.fq-ans p { margin: 0; padding: 0 22px 20px; font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.55); }
@media (max-width: 640px) {
  .fq-section { padding: 64px 0; }
  .fq-title { margin-bottom: 32px; }
  .fq-btn { padding: 16px; font-size: 14px; }
  .fq-ans p { padding: 0 16px 18px; }
}


/* ══════════════════════════════════════════════════════════
   MOBILE PROFESSIONAL IMPROVEMENTS
   max-width: 768px  →  phones
   max-width: 480px  →  small phones
══════════════════════════════════════════════════════════ */

/* ── Global container padding on mobile ── */
@media (max-width: 768px) {
  .wrap,
  [class*="wrap"],
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Section vertical rhythm */
  section,
  .section-pad,
  .fq-section,
  .cta-section,
  .services-section,
  .achievements-section,
  .partners-section,
  .testimonials,
  .tech-marquee-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  /* Section headings: center + scale */
  .eyebrow,
  [class*="eyebrow"] {
    text-align: center !important;
    display: block !important;
  }
  .section-heading,
  .services-heading,
  .partners-heading,
  .testimonials .center {
    text-align: center !important;
  }

  /* ── Hero ── */
  .hero {
    padding-top: 44px !important;
    align-items: flex-start !important;
    min-height: 100svh !important;
  }
  .hero-grid {
    padding-top: 6px !important;
    padding-bottom: 16px !important;
    gap: 0 !important;
  }
  .hero h1 {
    font-size: clamp(22px, 7vw, 30px) !important;
    text-align: center !important;
    margin-bottom: 8px !important;
    line-height: 1.18 !important;
  }
  .hero-sub {
    text-align: center !important;
    font-size: 13px !important;
    max-width: 100% !important;
    line-height: 1.55 !important;
    margin-bottom: 14px !important;
  }

  /* Center background video on mobile */
  .hero-video {
    object-position: center center !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    min-width: 100% !important;
    position: absolute !important;
  }

  /* Compact stylish CTA button — pill shape, not oversized (in home hero) */
  .hero-ctas .btn-hero,
  .hero-ctas a.btn-hero,
  .hero-ctas .btn.btn-primary.btn-hero {
    background: linear-gradient(135deg, #4f6ef7 0%, #7c3aed 100%) !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 11px 28px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(79,110,247,0.45) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    width: auto !important;
    min-width: 160px !important;
    max-width: 220px !important;
  }

  /* Ghost "See our work" button in home hero — compact */
  .hero-ctas .btn-hero-ghost,
  .hero-ctas a.btn-hero-ghost {
    border-radius: 999px !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    background: rgba(255,255,255,0.05) !important;
    color: rgba(255,255,255,0.8) !important;
    padding: 11px 24px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    width: auto !important;
    min-width: 130px !important;
    max-width: 180px !important;
    text-align: center !important;
    display: inline-flex !important;
    justify-content: center !important;
  }

  /* CTA row — side by side on mobile, small gap */
  .hero-ctas {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    margin-bottom: 14px !important;
  }

  /* Stats — compact, visible on first screen */
  .hero-stats {
    justify-content: center !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .hstat { align-items: center !important; text-align: center !important; }
  .hstat b { font-size: 18px !important; }
  .hstat span { font-size: 10px !important; }
  .social-proof-bar {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 8px !important;
  }


  /* ── Services grid: 2-col on phone ── */
  .services-grid { grid-template-columns: repeat(2,1fr) !important; gap: 10px !important; }
  .services-heading h2 { font-size: clamp(22px,6vw,30px) !important; }

  /* ── Achievements ── */
  .achievement-grid { grid-template-columns: 1fr !important; gap: 28px !important; text-align: center !important; }
  .achievement-content { align-items: center !important; }
  .achievement-content h2 { font-size: clamp(22px,6vw,30px) !important; }
  .achievement-content p { max-width: 100% !important; }
  .achievement-stats { grid-template-columns: 1fr 1fr !important; gap: 12px !important; max-width: 100% !important; }
  .stat-box { padding: 20px 12px !important; }
  .stat-box h3 { font-size: 30px !important; }
  .stat-box p { font-size: 12px !important; }

  /* ── Partners ── */
  .partners-grid { grid-template-columns: repeat(2,1fr) !important; gap: 10px !important; }
  .partners-heading h2 { font-size: clamp(22px,6vw,30px) !important; }
  .partner-card { padding: 16px 12px !important; min-height: 64px !important; }
  .partner-card img { max-height: 28px !important; max-width: 80px !important; }

  /* ── Testimonials ── */
  .testimonial-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .testimonials .center h2 { font-size: clamp(22px,6vw,30px) !important; }
  .testimonial-card { padding: 18px !important; }
  .testimonial-text { font-size: 13px !important; }

  /* ── CTA Section ── */
  .cta-section { text-align: center !important; }
  .cta-inner { flex-direction: column !important; align-items: center !important; }
  .cta-content { align-items: center !important; }
  .cta-content h2 { font-size: clamp(26px,7vw,40px) !important; text-align: center !important; }
  .cta-content p { text-align: center !important; max-width: 100% !important; }
  .cta-actions {
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    gap: 10px !important;
  }
  .cta-actions a,
  .btn-cta-primary,
  .btn-cta-ghost {
    width: 100% !important;
    max-width: 280px !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* ── FAQ (fq-) ── */
  .fq-section { padding: 56px 0 !important; }
  .fq-h { font-size: clamp(26px,7vw,36px) !important; margin-bottom: 28px !important; text-align: center !important; }
  .fq-eyebrow-tag { text-align: center !important; }
  .fq-btn { padding: 16px 18px !important; font-size: 14px !important; }
  .fq-ans p { padding: 0 18px 16px !important; font-size: 13.5px !important; }

  /* ── Footer statement ── */
  .ft-statement { padding: 40px 0 32px !important; }
  .ft-headline { font-size: clamp(30px,9vw,42px) !important; }
  .ft-statement-actions { flex-direction: column !important; align-items: center !important; gap: 10px !important; }
  .ft-main-cta { width: 100% !important; max-width: 280px !important; justify-content: center !important; }
  .ft-pills { gap: 8px !important; }

  /* ── Footer nav — single column stacked ── */
  .ft-nav-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }
  .ft-nav-group { padding: 20px 24px !important; border-top: 1px solid rgba(255,255,255,0.06) !important; }
  .ft-contact-group { grid-column: unset !important; }
  .ft-nav-group:last-child { grid-column: unset !important; }
  .ft-mini-stats { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
}

/* ── Small phones (≤480px) ── */
@media (max-width: 480px) {
  .wrap,
  [class*="wrap"],
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Single column partners on tiny screens */
  .partners-grid { grid-template-columns: repeat(2,1fr) !important; }

  /* Hero */
  .hero h1 { font-size: clamp(22px,8vw,30px) !important; }

  /* Services: single col on tiny */
  .services-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  .service-card { aspect-ratio: 1.2/1 !important; border-radius: 10px !important; }
  .service-card h3 { font-size: 11px !important; bottom: 8px !important; left: 8px !important; right: 8px !important; }

  /* Footer nav on tiny phones: maintain 2-col for services/company, stack contact and why */
  .ft-nav-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px 14px !important;
  }
  .ft-contact-group { grid-column: 1 / -1 !important; }
  .ft-nav-group:last-child { grid-column: 1 / -1 !important; }
  .ft-mini-stats { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
}
/* ══════════════════════════════════════════════════════
   ENTERPRISE SERVICE PAGES DESIGN SYSTEM (.sp-*)
   Polished Component Architecture & Mobile Hardening
══════════════════════════════════════════════════════ */

/* ── Global Viewport & Mobile Overflow Guard ── */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: border-box;
}

/* ── Service Page Hero ── */
.sp-hero {
  position: relative;
  padding: clamp(130px, 13vw, 160px) 0 clamp(48px, 6vw, 76px);
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(79,110,247,0.15) 0%, rgba(7,11,25,0.98) 75%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.sp-hero-inner {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: clamp(36px, 4.5vw, 64px);
  align-items: center;
}
.sp-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.sp-breadcrumb a {
  color: #7c9aff;
  text-decoration: none;
  transition: color .2s ease;
}

.sp-breadcrumb a:hover { text-decoration: underline; color: #fff; }
.sp-breadcrumb-sep { opacity: 0.4; }

.sp-hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 14px 0 20px;
}

.sp-hero-title .accent {
  background: linear-gradient(135deg, #4f6ef7 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sp-hero-desc {
  font-size: clamp(15px, 1.1vw, 17.5px);
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin-bottom: 32px;
  max-width: 640px;
}


.sp-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

/* 4-Column Balanced Stats Grid */
.sp-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.sp-hero-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 12px 14px;
  border-radius: 12px;
  text-align: left;
  transition: background .2s, border-color .2s;
}

.sp-hero-stat:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(79,110,247,0.35);
}
.sp-hero-stat strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 800;
  color: #7c9aff;
  line-height: 1.15;
  margin-bottom: 4px;
}

.sp-hero-stat span {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255,255,255,0.6);
  display: block;
}


/* Hero Visual Architecture Card */
.sp-hero-card {
  position: relative;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px 26px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 100%;
}

.sp-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}

.sp-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #10b981;
  background: rgba(16,185,129,0.08);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(16,185,129,0.2);
}
.sp-card-tag::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}
.sp-spec-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sp-spec-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  min-height: 42px;
}

.sp-spec-item span:first-child {
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  flex-shrink: 0;
}

.sp-spec-item span:last-child {
  font-weight: 700;
  color: #fff;
  text-align: right;
  line-height: 1.35;
  word-break: break-word;
}


/* ── Generic Section Structure ── */
.sp-section {
  padding: clamp(68px, 8vw, 100px) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sp-section--alt {
  background: rgba(255,255,255,0.015);
}

.sp-section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(40px, 5vw, 60px);
}
.sp-section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 14px 0;
}

.sp-section-sub {
  font-size: clamp(15px, 1.1vw, 17.5px);
  line-height: 1.68;
  color: rgba(255,255,255,0.68);
  margin: 0 auto;
  max-width: 680px;
}


/* ── Section 2: Overview ── */
.sp-overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(36px, 4.5vw, 64px);
  align-items: start;
}
.sp-overview-text h3 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(22px, 2.2vw, 26px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.sp-overview-text p {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin-bottom: 16px;
}


/* Dedicated Tech Stack Tags */
.sp-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sp-tech-tag {
  display: inline-flex;
  align-items: center;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 6px 13px;
  transition: all .2s ease;
  letter-spacing: 0.01em;
}

.sp-tech-tag:hover {
  color: #7c9aff;
  background: rgba(79,110,247,0.12);
  border-color: rgba(79,110,247,0.3);
}


.sp-highlight-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sp-highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all .25s ease;
}

.sp-highlight-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(79,110,247,0.35);
  transform: translateY(-2px);
}
.sp-highlight-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 12px;
  background: rgba(79,110,247,0.12);
  border: 1px solid rgba(79,110,247,0.25);
  color: #7c9aff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.sp-highlight-info h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 16.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.sp-highlight-info p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin: 0;
}


/* ── Section 3: Benefits ── */
.sp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sp-benefit-card {
  padding: 30px 26px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sp-benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79,110,247,0.4);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.sp-card-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 12px;
  background: rgba(79,110,247,0.12);
  border: 1px solid rgba(79,110,247,0.25);
  color: #7c9aff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.sp-benefit-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.35;
}

.sp-benefit-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  flex: 1;
  margin-bottom: 20px;
}

.sp-card-pill {
  align-self: flex-start;
  margin-top: auto;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(79,110,247,0.12);
  border: 1px solid rgba(79,110,247,0.25);
  color: #7c9aff;
}


/* ── Section 4: Capabilities ── */
.sp-caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sp-cap-card {
  padding: 32px 28px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all .25s ease;
}

.sp-cap-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(79,110,247,0.4);
  transform: translateY(-3px);
}
.sp-cap-num {
  font-family: 'Manrope', sans-serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #4f6ef7;
  margin-bottom: 16px;
  display: inline-block;
  line-height: 1;
}
.sp-cap-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 18.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.35;
}

.sp-cap-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin-bottom: 22px;
}

.sp-cap-list {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
}

.sp-cap-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
}

.sp-cap-list li i {
  color: #4f6ef7;
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ── Section 5: Process ── */
.sp-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.sp-process-step {
  padding: 26px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all .25s ease;
}

.sp-process-step:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(79,110,247,0.35);
  transform: translateY(-3px);
}
.sp-step-num {
  width: 36px; height: 36px; min-width: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f6ef7, #7c3aed);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.sp-process-step h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.35;
}

.sp-process-step p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  flex: 1;
  margin-bottom: 16px;
}

.sp-step-tag {
  margin-top: auto;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  text-align: left;
}


/* ── Section 6: Deliverables ── */
.sp-deliv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sp-deliv-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 22px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all .25s ease;
}

.sp-deliv-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(79,110,247,0.35);
  transform: translateY(-2px);
}
.sp-deliv-icon {
  width: 42px; height: 42px; min-width: 42px;
  border-radius: 10px;
  background: rgba(79,110,247,0.12);
  border: 1px solid rgba(79,110,247,0.22);
  color: #7c9aff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.sp-deliv-info h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.35;
}

.sp-deliv-info p {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.62);
  margin: 0;
}


/* ── Section 7: Why Bitneka ── */
.sp-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sp-why-card {
  padding: 28px 24px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all .25s ease;
}

.sp-why-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(79,110,247,0.35);
  transform: translateY(-3px);
}
.sp-why-icon {
  width: 46px; height: 46px; min-width: 46px;
  border-radius: 12px;
  background: rgba(79,110,247,0.12);
  color: #7c9aff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 18px;
}

.sp-why-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.35;
}

.sp-why-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.62);
  margin: 0;
}


/* ── Section 8: Use Cases (2x2 Balanced Grid for 4 Items) ── */
.sp-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.sp-case-card {
  padding: 32px 28px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all .25s ease;
}

.sp-case-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(79,110,247,0.4);
  transform: translateY(-3px);
}
.sp-case-industry {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7c9aff;
  margin-bottom: 12px;
  display: block;
}

.sp-case-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.35;
}

.sp-case-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.68);
  margin-bottom: 22px;
  flex: 1;
}

.sp-case-result {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #10b981;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.22);
  padding: 8px 16px;
  border-radius: 8px;
  max-width: 100%;
  word-break: break-word;
}

/* ── Section 9: Outcomes / ROI Metrics ── */
.sp-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.sp-outcome-card {
  padding: 32px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all .25s ease;
}

.sp-outcome-card:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(79,110,247,0.35);
  transform: translateY(-2px);
}
.sp-outcome-val {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(34px, 3.8vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #4f6ef7, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sp-outcome-label {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.sp-outcome-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.45;
}


/* ── Section 10: FAQ Accordion (Clean & Polish) ── */
.sp-faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sp-faq-item {
  border-radius: 14px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: all .25s ease;
}

.sp-faq-item:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(79,110,247,0.35);
}
.sp-faq-item[open] {
  border-color: rgba(79,110,247,0.5);
  background: rgba(79,110,247,0.04);
}
.sp-faq-q {
  padding: 20px 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  user-select: none;
  line-height: 1.45;
  outline: none;
  word-break: break-word;
}
.sp-faq-q::-webkit-details-marker { display: none; }


.sp-faq-q::after {
  content: '+';
  width: 28px; height: 28px; min-width: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: #7c9aff;
  line-height: 1;
  transition: all .25s ease;
}

.sp-faq-item[open] .sp-faq-q::after {
  content: '−';
  background: #4f6ef7;
  border-color: #4f6ef7;
  color: #fff;
  transform: rotate(180deg);
}
.sp-faq-a {
  padding: 0 24px 22px;
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.68);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
  word-break: break-word;
}


/* ── Section 11: Service CTA Banner ── */
.sp-cta-box {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;
  padding: clamp(48px, 6vw, 72px) clamp(24px, 5vw, 60px);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.sp-cta-box h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin: 14px 0 16px;
}

.sp-cta-box p {
  font-size: clamp(15.5px, 1.2vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  max-width: 660px;
  margin: 0 auto 32px;
}

.sp-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.sp-cta-actions a.btn-hero-ghost {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  transition: all 0.25s ease;
}
.sp-cta-actions a.btn-hero-ghost:hover {
  background: rgba(37, 211, 102, 0.16);
  border-color: rgba(37, 211, 102, 0.6);
  transform: translateY(-2px);
}
.sp-cta-actions a.btn-hero-ghost i {
  font-size: 18px;
  color: #25d366;
  margin: 0;
  display: inline-flex;
  align-items: center;
}

/* ══════════════════════════════════════════════════════
   ENTERPRISE ABOUT PAGE SYSTEM (.ab-*)
══════════════════════════════════════════════════════ */
.ab-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.ab-story-text h3 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.25;
}

.ab-story-text p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin-bottom: 18px;
}

.ab-story-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(79,110,247,0.12);
  border: 1px solid rgba(79,110,247,0.3);
  color: #7c9aff;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.ab-story-card {
  position: relative;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.ab-story-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ab-story-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.ab-story-point i {
  color: #4f6ef7;
  font-size: 18px;
  margin-top: 2px;
}
.ab-story-point h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.ab-story-point p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin: 0;
}


/* Pillars / Values */
.ab-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ab-value-card {
  padding: 32px 28px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all .25s ease;
}

.ab-value-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(79,110,247,0.4);
  transform: translateY(-3px);
}
.ab-value-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 14px;
  background: rgba(79,110,247,0.12);
  border: 1px solid rgba(79,110,247,0.25);
  color: #7c9aff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.ab-value-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 18.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.35;
}

.ab-value-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.68);
  margin: 0;
}


/* Global Delivery Footprint */
.ab-footprint-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}
.ab-hub-card {
  padding: 32px 28px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}

.ab-hub-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ab-hub-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.68);
  margin: 0;
}


/* Leadership & Executive Architecture */
.ab-leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.ab-leader-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all .25s ease;
}

.ab-leader-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79,110,247,0.35);
  background: rgba(255,255,255,0.055);
}
.ab-leader-avatar-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.ab-leader-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.ab-leader-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ab-leader-name {
  font-family: 'Manrope', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.ab-leader-role {
  font-size: 12px;
  font-weight: 700;
  color: #7c9aff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.ab-leader-bio {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  flex: 1;
}

.ab-leader-tag {
  align-self: flex-start;
  margin-top: auto;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}


/* Standards Grid */
.ab-standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ab-standard-card {
  padding: 24px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ab-standard-card i {
  color: #10b981;
  font-size: 22px;
  margin-bottom: 14px;
}
.ab-standard-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.ab-standard-card p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.62);
  margin: 0;
}


/* ══════════════════════════════════════════════════════
   MOBILE & RESPONSIVE POLISH (TABLET & SMARTPHONES)
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .sp-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .sp-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-caps-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-process-grid { grid-template-columns: repeat(3, 1fr); }
  .sp-deliv-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-why-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-cases-grid { grid-template-columns: 1fr; }
  .sp-outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-story-grid { grid-template-columns: 1fr; gap: 36px; }
  .ab-values-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-footprint-grid { grid-template-columns: 1fr; }
  .ab-leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-standards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .sp-section { padding: 48px 0 !important; }
  .sp-section-head { margin: 0 auto 28px !important; text-align: center !important; }
  .sp-section-title { font-size: clamp(22px, 6vw, 30px) !important; line-height: 1.22 !important; }
  .sp-section-sub { font-size: 14px !important; line-height: 1.6 !important; max-width: 100% !important; }

  .sp-overview-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .sp-benefits-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .sp-caps-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .sp-process-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .sp-deliv-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .sp-why-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .sp-hero-stats { grid-template-columns: 1fr 1fr !important; gap: 8px !important; padding-top: 20px !important; }
  .sp-outcomes-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }

  .ab-values-grid { grid-template-columns: 1fr !important; }
  .ab-leadership-grid { grid-template-columns: 1fr !important; }
  .ab-standards-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 640px) {
  /* Prevent horizontal blowout from hero card spec rows */
  .sp-hero-card {
    padding: 20px 16px !important;
    border-radius: 16px !important;
  }
  .sp-card-header {
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
  .sp-spec-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
    padding: 10px 12px !important;
    min-height: unset !important;
  }
  .sp-spec-item span:first-child {
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    color: rgba(255,255,255,0.55) !important;
  }
  .sp-spec-item span:last-child {
    font-size: 13px !important;
    font-weight: 700 !important;
    text-align: left !important;
    color: #fff !important;
    word-break: break-word !important;
  }

  /* Spacing and typography */
  .sp-hero {
    padding: clamp(96px, 12vw, 120px) 0 36px !important;
  }
  .sp-hero-title {
    font-size: clamp(24px, 7vw, 34px) !important;
    line-height: 1.18 !important;
    text-align: left !important;
    margin: 12px 0 16px !important;
  }
  .sp-hero-desc {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    text-align: left !important;
    margin-bottom: 24px !important;
  }
  .sp-hero-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
    margin-bottom: 24px !important;
  }
  .sp-hero-actions .btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Cards Mobile Padding & Alignment */
  .sp-benefit-card,
  .sp-cap-card,
  .sp-process-step,
  .sp-why-card,
  .sp-case-card,
  .ab-value-card,
  .ab-leader-card {
    padding: 20px 16px !important;
    border-radius: 16px !important;
  }
  .sp-deliv-card {
    padding: 16px 14px !important;
    gap: 12px !important;
  }

  /* Closing CTA Box */
  .sp-cta-box {
    padding: 32px 18px !important;
    border-radius: 18px !important;
    text-align: center !important;
  }
  .sp-cta-box h2 {
    font-size: clamp(22px, 5.5vw, 28px) !important;
    line-height: 1.25 !important;
    margin: 10px 0 12px !important;
  }
  .sp-cta-box p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 22px !important;
  }
  .sp-cta-actions {
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    gap: 12px !important;
  }
  .sp-cta-actions .btn,
  .sp-cta-actions a.btn-hero,
  .sp-cta-actions a.btn-hero-ghost {
    width: 100% !important;
    max-width: 380px !important;
    min-width: unset !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 13px 24px !important;
    font-size: 14px !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    text-align: center !important;
    gap: 10px !important;
    border-radius: 999px !important;
  }
  .sp-cta-actions a.btn-hero-ghost {
    background: rgba(37, 211, 102, 0.08) !important;
    border: 1px solid rgba(37, 211, 102, 0.35) !important;
    color: #fff !important;
    font-weight: 700 !important;
  }
  .sp-cta-actions a.btn-hero-ghost:hover {
    background: rgba(37, 211, 102, 0.16) !important;
    border-color: rgba(37, 211, 102, 0.6) !important;
  }
  .sp-cta-actions a.btn-hero-ghost i {
    font-size: 19px !important;
    color: #25d366 !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }

  /* FAQ Accordion Mobile */
  .sp-faq-list { gap: 10px !important; }
  .sp-faq-item { border-radius: 12px !important; }
  .sp-faq-q {
    padding: 15px 16px !important;
    font-size: 14.5px !important;
    text-align: left !important;
    gap: 12px !important;
  }
  .sp-faq-q::after {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    font-size: 16px !important;
  }
  .sp-faq-a {
    padding: 0 16px 16px !important;
    font-size: 13.5px !important;
    text-align: left !important;
  }

  /* ══════════════════════════════════════════════════════
     UNIFIED FOOTER MOBILE ARCHITECTURE (MATCHING INDEX.HTML)
  ══════════════════════════════════════════════════════ */
  .ft-statement {
    padding: 40px 0 28px !important;
    text-align: center !important;
  }
  .ft-headline {
    font-size: clamp(28px, 8.5vw, 38px) !important;
    margin-bottom: 18px !important;
    text-align: center !important;
  }
  .ft-statement-actions {
    flex-direction: column !important;
    width: 100% !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
  }
  .ft-main-cta {
    width: 100% !important;
    max-width: 320px !important;
    justify-content: center !important;
    padding: 14px 20px !important;
    font-size: 14px !important;
  }
  .ft-pills {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
  }
  .ft-pill {
    width: auto !important;
    max-width: 280px !important;
    justify-content: center !important;
    font-size: 12px !important;
    padding: 7px 14px !important;
  }

  /* Footer Links Row: Clean, compact 2-column grid matching index.html */
  .ft-nav {
    padding: 32px 0 24px !important;
    background: #02040a !important;
  }
  .ft-nav-inner {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 28px 14px !important;
    width: 100% !important;
  }
  .ft-nav-group {
    padding: 0 !important;
    border: none !important;
    width: 100% !important;
  }
  .ft-nav-sep { display: none !important; }
  .ft-contact-group { grid-column: 1 / -1 !important; }
  .ft-nav-group:last-child { grid-column: 1 / -1 !important; }

  .ft-mini-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    margin-bottom: 16px !important;
  }
  .ft-tech-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
  }
  .ft-tag {
    font-size: 11.5px !important;
    padding: 5px 10px !important;
    border-radius: 6px !important;
  }

  /* Bottom Bar */
  .ft-bottom {
    padding: 16px 0 8px !important;
  }
  .ft-bottom-inner {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 10px !important;
  }
  .ft-socials {
    order: -1 !important;
    margin-bottom: 4px !important;
  }
}

@media (max-width: 480px) {
  .wrap, [class*="wrap"], .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .sp-section {
    padding: 40px 0 !important;
  }
  .sp-hero-stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  .sp-hero-stat strong {
    font-size: 19px !important;
  }
  .sp-hero-stat span {
    font-size: 10.5px !important;
  }
  .sp-outcomes-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  .sp-outcome-card {
    padding: 16px 10px !important;
  }
  .sp-outcome-val {
    font-size: 24px !important;
  }
  .sp-outcome-label {
    font-size: 12.5px !important;
  }
  .sp-outcome-sub {
    font-size: 10.5px !important;
  }
}

/* ==========================================================================
   ENTERPRISE SUITE OVERHAUL: BENTO BOX, MASSIVE METRICS & EDITORIAL LISTS
   ========================================================================== */

/* ── 1. Desktop Bento Box Engine (Homepage Services) ── */
@media (min-width: 992px) {
  .srv-grid {
    display: grid !important;
    grid-template-columns: repeat(12, 1fr) !important;
    grid-template-rows: auto auto auto !important;
    gap: 22px !important;
  }
  .srv-grid > .srv-card:nth-child(1) {
    grid-column: 1 / span 7 !important;
    grid-row: 1 !important;
    min-height: 380px !important;
    background: #0d0d0d !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: none !important;
  }
  .srv-grid > .srv-card:nth-child(2) {
    grid-column: 8 / span 5 !important;
    grid-row: 1 !important;
    min-height: 380px !important;
    background: #0d0d0d !important;
  }
  .srv-grid > .srv-card:nth-child(3) {
    grid-column: 1 / span 4 !important;
    grid-row: 2 !important;
    min-height: 290px !important;
  }
  .srv-grid > .srv-card:nth-child(4) {
    grid-column: 5 / span 4 !important;
    grid-row: 2 !important;
    min-height: 290px !important;
  }
  .srv-grid > .srv-card:nth-child(5) {
    grid-column: 9 / span 4 !important;
    grid-row: 2 !important;
    min-height: 290px !important;
  }
  .srv-grid > .srv-card:nth-child(6) {
    grid-column: 1 / span 12 !important;
    grid-row: 3 !important;
    min-height: 180px !important;
    display: flex !important;
    align-items: center !important;
  }
  .srv-grid > .srv-card:nth-child(6) .srv-content {
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
    gap: 32px !important;
    width: 100% !important;
  }
  .srv-grid > .srv-card:nth-child(6) .srv-content h3 {
    margin-bottom: 0 !important;
    white-space: nowrap !important;
  }
  .srv-grid > .srv-card:nth-child(6) .srv-content p {
    margin-bottom: 0 !important;
  }
}

/* ── 2. Massive Typographic Metrics (Homepage Track Record) ── */
.scale-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 32px !important;
  padding: 20px 0 !important;
}

.scale-stat {
  background: transparent !important;
  border: none !important;
  border-left: 2px solid rgba(79, 134, 255, 0.4) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 8px 0 8px 24px !important;
  text-align: left !important;
  transition: border-color 0.25s ease !important;
}

.scale-stat:hover {
  border-left-color: #4f86ff !important;
}

.scale-num,
.scale-num span {
  font-family: 'Manrope', -apple-system, sans-serif !important;
  font-size: clamp(3.2rem, 5vw, 4.8rem) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: -0.04em !important;
  background: linear-gradient(135deg, #ffffff 30%, #4f86ff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin-bottom: 12px !important;
  display: block !important;
}

.scale-stat p {
  font-size: 14.5px !important;
  line-height: 1.5 !important;
  color: #94a3b8 !important;
  margin: 0 !important;
  max-width: 240px !important;
}

@media (max-width: 900px) {
  .scale-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
}

/* ── 3. Staggered Editorial Process List (Homepage) ── */
@media (min-width: 992px) {
  .process-timeline,
  .process-connector {
    display: none !important;
  }
  .process-steps {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    max-width: 1060px !important;
    margin: 40px auto 0 !important;
  }
  .process-step {
    display: grid !important;
    grid-template-columns: 80px 220px 1fr !important;
    align-items: baseline !important;
    gap: 32px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 0 !important;
    padding: 28px 0 !important;
    width: 100% !important;
    text-align: left !important;
    transition: border-color 0.2s ease !important;
  }
  .process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  }
  .process-step:hover {
    border-bottom-color: rgba(79, 134, 255, 0.35) !important;
  }
  .process-step-num {
    font-size: clamp(2.4rem, 3.5vw, 3.2rem) !important;
    font-weight: 900 !important;
    color: #4f86ff !important;
    font-family: monospace !important;
    line-height: 1 !important;
    margin: 0 !important;
    background: none !important;
    width: auto !important;
    height: auto !important;
    border: none !important;
  }
  .process-step h3 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
  }
  .process-step p {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #94a3b8 !important;
    margin: 0 !important;
    max-width: 620px !important;
  }
}

/* ── 4. Balanced 3x2 Grid for Service Capabilities (.sp-caps-grid) ── */
@media (min-width: 992px) {
  .sp-caps-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .sp-caps-grid > .sp-cap-card {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: auto !important;
    background: #0d0d0d !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 18px !important;
    padding: 26px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .sp-caps-grid > .sp-cap-card:hover {
    border-color: rgba(255, 255, 255, 0.2) !important;
    background: #111111 !important;
    transform: translateY(-3px) !important;
  }
  .sp-caps-grid > .sp-cap-card .sp-cap-num {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #38bdf8 !important;
    margin-bottom: 12px !important;
    display: block !important;
  }
  .sp-caps-grid > .sp-cap-card h3 {
    font-family: 'Manrope', sans-serif !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 10px !important;
    line-height: 1.3 !important;
  }
  .sp-caps-grid > .sp-cap-card p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #94a3b8 !important;
    margin: 0 0 18px !important;
  }
  .sp-caps-grid > .sp-cap-card .sp-cap-list {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 9px !important;
  }
  .sp-caps-grid > .sp-cap-card .sp-cap-list li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
    font-size: 13px !important;
    color: #cbd5e1 !important;
    line-height: 1.5 !important;
  }
  .sp-caps-grid > .sp-cap-card .sp-cap-list li i {
    color: #38bdf8 !important;
    font-size: 11px !important;
    margin-top: 4px !important;
    flex-shrink: 0 !important;
  }
}

/* ── 5. Editorial Numbered Process on Service Pages (.sp-process-grid) ── */
@media (min-width: 992px) {
  .sp-process-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    max-width: 1060px !important;
    margin: 40px auto 0 !important;
  }
  .sp-process-step {
    display: grid !important;
    grid-template-columns: 70px 240px 1fr auto !important;
    align-items: center !important;
    gap: 28px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 0 !important;
    padding: 26px 0 !important;
    width: 100% !important;
    text-align: left !important;
    transition: border-color 0.2s ease !important;
  }
  .sp-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  }
  .sp-process-step:hover {
    border-bottom-color: rgba(79, 134, 255, 0.35) !important;
  }
  .sp-step-num {
    font-size: clamp(2rem, 3vw, 2.6rem) !important;
    font-weight: 900 !important;
    color: #4f86ff !important;
    font-family: monospace !important;
    line-height: 1 !important;
    margin: 0 !important;
    background: none !important;
    width: auto !important;
    height: auto !important;
    border: none !important;
    border-radius: 0 !important;
  }
  .sp-process-step h4 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
  }
  .sp-process-step p {
    font-size: 14.5px !important;
    line-height: 1.65 !important;
    color: #94a3b8 !important;
    margin: 0 !important;
    max-width: 580px !important;
  }
  .sp-step-tag {
    margin: 0 !important;
    align-self: center !important;
  }
}

/* ── 6. Massive Typographic Metrics on Service Pages (.sp-outcomes-grid) ── */
.sp-outcomes-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  text-align: left !important;
  padding: 10px 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.sp-outcome-card {
  background: #0d0d0d !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 18px !important;
  padding: 24px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  position: relative !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  animation: outcomeCardIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease !important;
}

.sp-outcomes-grid > .sp-outcome-card:nth-child(1) { animation-delay: 0.08s; }
.sp-outcomes-grid > .sp-outcome-card:nth-child(2) { animation-delay: 0.16s; }
.sp-outcomes-grid > .sp-outcome-card:nth-child(3) { animation-delay: 0.24s; }
.sp-outcomes-grid > .sp-outcome-card:nth-child(4) { animation-delay: 0.32s; }

.sp-outcome-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.sp-outcome-card:hover::before {
  opacity: 1;
}

.sp-outcome-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(56, 189, 248, 0.35) !important;
  background: #131313 !important;
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.6), 0 0 20px -4px rgba(56, 189, 248, 0.1) !important;
}

.sp-outcome-card:hover .sp-outcome-val {
  transform: scale(1.04);
  transition: transform 0.25s ease;
}

.sp-outcome-val {
  font-family: 'Manrope', -apple-system, sans-serif !important;
  font-size: clamp(34px, 2.5vw, 42px) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 12px !important;
  display: block !important;
  transition: transform 0.25s ease !important;
}

.sp-outcome-label {
  font-family: 'Manrope', sans-serif !important;
  font-size: 15.5px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 6px !important;
  line-height: 1.35 !important;
}

.sp-outcome-sub {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  color: #94a3b8 !important;
  margin: 0 !important;
}

/* ── 7. Balanced 3x2 Grid on About Page (.ab-values-grid) ── */
@media (min-width: 992px) {
  .ab-values-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .ab-values-grid > .ab-value-card {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: auto !important;
    background: #0d0d0d !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 18px !important;
    padding: 26px !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .ab-values-grid > .ab-value-card:hover {
    border-color: rgba(255, 255, 255, 0.2) !important;
    background: #111111 !important;
    transform: translateY(-3px) !important;
  }
  .ab-values-grid > .ab-value-card .ab-value-icon {
    margin-bottom: 16px !important;
  }
  .ab-values-grid > .ab-value-card h3 {
    font-family: 'Manrope', sans-serif !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 10px !important;
  }
  .ab-values-grid > .ab-value-card p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #94a3b8 !important;
    margin: 0 !important;
  }
}

/* ── 8. Full-Width Surface Shifts ── */
.sp-section--alt {
  background: #060606 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.scale-section {
  background: #000000 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* ── 9. Service Page Hero Density & Spacing Refinement ── */
.sp-hero {
  padding: clamp(140px, 14vw, 175px) 0 clamp(56px, 7vw, 84px) !important;
}

.sp-breadcrumb {
  display: flex !important;
  width: 100% !important;
  align-items: center !important;
  margin-bottom: 16px !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}

.sp-hero-content > .price-badge,
.sp-hero-content > span.price-badge {
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 0 20px 0 !important;
  align-self: flex-start !important;
  line-height: 1 !important;
}

.sp-badge-wrap {
  margin-bottom: 22px !important;
  gap: 12px !important;
}

.sp-hero-title {
  font-size: clamp(32px, 4.2vw, 54px) !important;
  line-height: 1.22 !important; /* Increased line-height as requested */
  letter-spacing: -0.025em !important;
  margin: 18px 0 24px !important; /* Breathing room */
}

.sp-hero-desc {
  font-size: clamp(15.5px, 1.15vw, 18px) !important;
  line-height: 1.75 !important;
  margin-bottom: 38px !important; /* Breathing room */
  max-width: 660px !important;
}

.sp-hero-actions {
  gap: 16px !important;
  margin-bottom: 42px !important;
}

.sp-hero-stats {
  padding-top: 28px !important;
  gap: 16px !important;
}

@media (max-width: 768px) {
  .sp-hero {
    padding: 105px 0 44px !important;
  }
  .sp-hero-title {
    font-size: clamp(26px, 7.5vw, 36px) !important;
    line-height: 1.22 !important;
    margin: 16px 0 20px !important;
  }
  .sp-hero-desc {
    margin-bottom: 26px !important;
    line-height: 1.65 !important;
  }
  .sp-hero-actions {
    margin-bottom: 28px !important;
  }
}

/* ── 10. Balanced 3x2 Grid for Benefits (.sp-benefits-grid) ── */
@media (min-width: 992px) {
  .sp-benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .sp-benefits-grid > .sp-benefit-card {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: auto !important;
    background: #0d0d0d !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 18px !important;
    padding: 26px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .sp-benefits-grid > .sp-benefit-card:hover {
    border-color: rgba(255, 255, 255, 0.2) !important;
    background: #111111 !important;
    transform: translateY(-3px) !important;
  }
  .sp-benefits-grid > .sp-benefit-card .sp-card-icon {
    margin-bottom: 16px !important;
  }
  .sp-benefits-grid > .sp-benefit-card h3 {
    font-family: 'Manrope', sans-serif !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 10px !important;
    line-height: 1.3 !important;
  }
  .sp-benefits-grid > .sp-benefit-card p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #94a3b8 !important;
    margin: 0 0 18px !important;
    flex: 1 !important;
  }
  .sp-benefits-grid > .sp-benefit-card .sp-card-pill {
    align-self: flex-start !important;
    margin: 0 !important;
  }
}

