/* ============================================================
   FUTURIX — Vanilla CSS faithful to the original React design
   Colors: futurix-blue #2563eb | futurix-purple #8b5cf6 | futurix-cyan #38bdf8
   Dark bg: #060608 / #070a13 / #09090b | Light bg: #f8fafc / #ffffff
   Fonts: Inter (sans), Space Grotesk (display), JetBrains Mono (mono)
   ============================================================ */

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

:root {
  --blue: #2563eb;
  --purple: #8b5cf6;
  --cyan: #38bdf8;
  --dark-bg: #060608;
  --dark-bg2: #070a13;
  --dark-bg3: #09090b;
  --dark-footer: #050507;
  --font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

html { scroll-behavior: smooth; }

/* Offset anchor scrolling to account for sticky header & sub-nav */
#about,
#clients,
#case-studies,
#advantages,
#awards,
#insights,
#team,
#contact {
  scroll-margin-top: 118px;
}
@media (min-width: 1024px) {
  #about,
  #clients,
  #case-studies,
  #advantages,
  #awards,
  #insights,
  #team,
  #contact {
    scroll-margin-top: 130px;
  }
}


body {
  font-family: var(--font-sans);
  background: #fff;
  color: #09090b;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Utilities ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 48px; } }

.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.gradient-text-purple {
  background: linear-gradient(135deg, #60a5fa 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff; font-weight: 600; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 8px;
  transition: all 0.3s; box-shadow: 0 20px 40px rgba(37,99,235,0.15);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--purple), var(--blue)); box-shadow: 0 20px 40px rgba(139,92,246,0.2); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #cbd5e1; font-weight: 600; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 8px; transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.2); }

/* ================================================================
   AVERINT-STYLE HEADER & NAVIGATION SYSTEM
   ================================================================ */
#site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 18px 0;
  background: rgba(8, 11, 20, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
#site-header.scrolled {
  padding: 12px 0;
  background: rgba(6, 9, 16, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
  max-width: 1360px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 768px) { .header-inner { padding: 0 40px; } }

/* Logo */
.logo-link { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-box {
  width: 36px; height: 36px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,99,235,0.25);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.logo-link:hover .logo-box { transform: scale(1.06); }
.logo-box span { font-family: var(--font-mono); color: #fff; font-size: 14px; font-weight: 700; }
.logo-name { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: #fff; letter-spacing: -0.02em; }
.logo-name .dot { color: var(--cyan); }

/* Desktop Nav (Classic Uppercase with Averint refinement) */
.nav-desktop { display: none; align-items: center; gap: 24px; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.nav-link {
  font-size: 12.5px; font-weight: 600; color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em; text-transform: uppercase;
  position: relative; transition: all 0.2s ease; padding: 8px 0;
  text-decoration: none;
}
.nav-link:hover { color: var(--cyan); }

/* Services Dropdown (Averint Light / Ivory Theme matching reference) */
.nav-services-wrap { position: relative; padding: 6px 0; }
.nav-services-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s ease; padding: 4px 0;
  position: relative; background: none; border: none; font-family: inherit;
}
.nav-services-btn:hover { color: var(--cyan); }
.nav-services-btn .chevron {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: rgba(255, 255, 255, 0.6);
}
.nav-services-wrap:hover .nav-services-btn { color: var(--cyan); }
.nav-services-wrap:hover .nav-services-btn .chevron {
  transform: rotate(180deg);
  color: var(--cyan);
}

.services-dropdown {
  position: absolute; top: calc(100% + 4px); left: 50%;
  transform: translateX(-50%) translateY(10px) scale(0.98);
  width: 900px; max-width: 95vw;
  background: #f7f6f2;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px; padding: 32px 36px 24px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35), 0 10px 25px rgba(0, 0, 0, 0.15);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
  z-index: 1000;
}
/* Invisible hover bridge to prevent menu from closing when moving mouse from button to dropdown */
.services-dropdown::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 24px;
  background: transparent;
  display: block;
}
.nav-services-wrap:hover .services-dropdown,
.services-dropdown:hover {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.services-dropdown-grid {
  display: grid; grid-template-columns: 1.15fr 1.15fr 1fr; gap: 32px;
}
.dropdown-col {
  display: flex; flex-direction: column;
}
.dropdown-col-title {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: #111827; margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.dropdown-link-list {
  display: flex; flex-direction: column; gap: 10px;
}
.dropdown-link-item {
  font-size: 14px; font-weight: 500; color: #4b5563;
  text-decoration: none; transition: all 0.2s ease;
  padding: 4px 0; display: inline-block;
  line-height: 1.4;
}
.dropdown-link-item:hover {
  color: #000000;
  font-weight: 600;
  transform: translateX(4px);
}

/* Dark Bottom Tag Banner inside Light Dropdown (Averint Style) */
.dropdown-bottom-banner {
  margin-top: 24px; padding: 14px 20px;
  border-radius: 14px;
  background: #11141d;
  color: #ffffff;
  display: flex; align-items: center; justify-content: space-between;
  text-decoration: none; transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.dropdown-bottom-banner:hover {
  background: #080b12;
}
.dropdown-banner-text {
  font-size: 13px; color: #f1f5f9; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.dropdown-banner-btn-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: #ffffff; color: #11141d;
  padding: 6px 8px 6px 16px;
  border-radius: 9999px;
  font-size: 12.5px; font-weight: 700;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.dropdown-bottom-banner:hover .dropdown-banner-btn-pill {
  background: var(--cyan); color: #070a13;
}
.dropdown-banner-arrow {
  width: 22px; height: 22px; border-radius: 50%;
  background: #11141d; color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease;
}
.dropdown-bottom-banner:hover .dropdown-banner-arrow {
  transform: rotate(45deg);
}

/* Header Actions & Social (Averint Style) */
.header-actions { display: none; align-items: center; gap: 20px; }
@media (min-width: 1024px) { .header-actions { display: flex; } }

.nav-social-links {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
}
.nav-social-link {
  color: #94a3b8; text-decoration: none; transition: color 0.2s ease;
}
.nav-social-link:hover { color: #ffffff; }
.nav-social-divider { color: rgba(255, 255, 255, 0.2); }

/* Averint Rolling Text CTA Button (Matching All Case Studies Purple-Blue Gradient) */
.rt-button-v1 {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #ffffff;
  padding: 6px 6px 6px 18px;
  border-radius: 9999px; text-decoration: none;
  font-weight: 600; font-size: 13.5px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
.rt-button-v1:hover {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.45);
}
.rt-button-text-wrapper {
  overflow: hidden; height: 18px;
  position: relative; display: flex; flex-direction: column;
}
.rt-button-text {
  display: block; line-height: 18px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  color: #ffffff;
}
.rt-button-text.rt-text-two {
  position: absolute; top: 100%; left: 0;
}
.rt-button-v1:hover .rt-text-one { transform: translateY(-100%); }
.rt-button-v1:hover .rt-text-two { transform: translateY(-100%); }

.rt-button-v1-arrow-wrap {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.rt-button-v1:hover .rt-button-v1-arrow-wrap {
  background: #ffffff;
  color: var(--blue);
  transform: rotate(45deg);
}

/* Mobile Controls & Hamburger (Averint Style 3-Line Animation) */
.mobile-controls { display: flex; align-items: center; gap: 14px; }
@media (min-width: 1024px) { .mobile-controls { display: none; } }

.rt-menu-button-main {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}
.rt-menu-button-main:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}
.rt-nave-button-line {
  width: 18px; height: 1.5px;
  background-color: #ffffff; border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.rt-menu-button-main.active .rt-top-line {
  transform: translateY(6.5px) rotate(45deg);
}
.rt-menu-button-main.active .rt-middle-line {
  opacity: 0; transform: scaleX(0);
}
.rt-menu-button-main.active .rt-bottom-line {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu Drawer (Averint Style) */
.mobile-drawer {
  display: none; position: absolute; top: 100%; left: 0; width: 100%;
  background: rgba(8, 11, 20, 0.98);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px 24px 36px; flex-direction: column; gap: 20px;
  max-height: 85vh; overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  animation: averintSlideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes averintSlideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-drawer.open { display: flex; }

.mobile-nav-item-row {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 14px;
}
.mobile-nav-link {
  font-size: 20px; font-weight: 600; color: #ffffff;
  letter-spacing: -0.02em; text-decoration: none;
  transition: color 0.2s ease;
}
.mobile-nav-link:hover { color: var(--cyan); }

.mobile-nav-services-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; font-size: 20px; font-weight: 600; color: #ffffff;
  letter-spacing: -0.02em; padding: 0;
  transition: color 0.2s ease; background: none; border: none; cursor: pointer;
}
.mobile-nav-services-btn:hover { color: var(--cyan); }
.mobile-nav-services-btn .chevron {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: #94a3b8;
}
.mobile-nav-services-btn.open .chevron { transform: rotate(180deg); color: var(--cyan); }

.mobile-submenu {
  border-left: 2px solid rgba(56, 189, 248, 0.3);
  margin-left: 8px; padding-left: 16px; margin-top: 14px;
  display: none; flex-direction: column; gap: 12px;
}
.mobile-submenu.open { display: flex; }
.mobile-submenu-item {
  font-size: 15px; font-weight: 500;
  color: #94a3b8; transition: all 0.2s ease; text-decoration: none;
  padding: 4px 0; display: block;
}
.mobile-submenu-item:hover { color: var(--cyan); transform: translateX(4px); }

/* Mobile Drawer Bottom */
.mobile-drawer-bottom {
  margin-top: 10px; display: flex; flex-direction: column; gap: 20px;
}
.mobile-social-wrap {
  display: flex; align-items: center; gap: 16px;
  font-size: 13px; font-family: var(--font-mono); color: #94a3b8;
}
.mobile-social-wrap a { color: #cbd5e1; text-decoration: none; }
.mobile-social-wrap a:hover { color: #ffffff; }
.mobile-contact-lines {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; color: #64748b;
}
.mobile-contact-lines a { color: #94a3b8; text-decoration: none; }
.mobile-contact-lines a:hover { color: var(--cyan); }

/* ================================================================
   HERO SECTION
   ================================================================ */
#hero {
  position: relative; min-height: 100vh; background: var(--dark-bg);
  color: #fff; padding-top: 96px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
@media (min-width: 1024px) { #hero { padding-top: 128px; } }

.hero-bg-layer {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 0.8s ease-in-out;
  pointer-events: none; user-select: none;
}
.hero-bg-img.active { opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 6, 8, 0.72) 0%, rgba(6, 6, 8, 0.42) 42%, rgba(6, 6, 8, 0.08) 72%, rgba(6, 6, 8, 0.2) 100%),
    linear-gradient(to top, var(--dark-bg) 0%, rgba(6, 6, 8, 0.12) 25%, transparent 65%, rgba(6, 6, 8, 0.45) 100%);
}
.hero-glow {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at 30% 25%, rgba(56,189,248,0.12) 0%, transparent 65%);
  pointer-events: none;
}

/* Hero main content */
.hero-content-wrap {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 64px 24px 80px;
  display: flex; align-items: center; width: 100%; flex-grow: 1;
}
@media (min-width: 768px) { .hero-content-wrap { padding: 64px 48px 80px; } }

.hero-slide { display: none; flex-direction: column; align-items: flex-start; max-width: 800px; }
.hero-slide.active { display: flex; animation: slideInLeft 0.7s ease forwards; }

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.slide-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(56,189,248,0.45);
  background: rgba(6, 10, 20, 0.65);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 6px 16px; border-radius: 999px; margin-bottom: 24px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 800;
  letter-spacing: 0.25em; color: var(--cyan); text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.slide-badge svg { animation: pulse 2s infinite; }

.hero-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(32px, 5vw, 60px); line-height: 1.08;
  letter-spacing: -0.02em; color: #ffffff; margin-bottom: 24px;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.85));
}
.hero-title .sub-line {
  display: block; margin-top: 8px; color: #f8fafc; font-family: var(--font-sans); font-weight: 600;
}

.hero-desc {
  font-size: clamp(15px, 1.5vw, 18px); color: #f1f5f9; line-height: 1.7;
  letter-spacing: 0.01em; max-width: 640px; margin-bottom: 40px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* Vertical tabs (right side) */
.hero-tabs {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  z-index: 30; display: flex; flex-direction: column; gap: 8px;
  background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.1);
  padding: 8px; border-radius: 12px;
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.8);
}
@media (min-width: 768px) { .hero-tabs { right: 24px; } }
@media (min-width: 1024px) { .hero-tabs { right: 32px; } }

.hero-tab-btn {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  cursor: pointer; padding: 4px 6px; background: none; border: none;
}
.hero-tab-num {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em;
  font-weight: 700; color: #64748b; transition: color 0.3s;
}
.hero-tab-btn.active .hero-tab-num { color: var(--cyan); }
.hero-tab-btn:hover .hero-tab-num { color: #cbd5e1; }

.hero-tab-bar { width: 3px; height: 20px; background: rgba(30,30,30,0.85); border-radius: 999px; overflow: hidden; position: relative; }
.hero-tab-progress { width: 100%; position: absolute; left: 0; bottom: 0; border-radius: 999px; background: linear-gradient(to top, var(--blue), var(--cyan)); transition: height 0.3s; height: 0; }
.hero-tab-btn.active .hero-tab-progress { height: 100%; }

/* Expertise footer overlay (Single Line 6-Column Layout matching reference) */
.hero-expertise {
  position: relative; z-index: 20;
  background: rgba(0,0,0,0.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0 18px;
}
.hero-expertise-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .hero-expertise-inner { padding: 0 36px; } }

.expertise-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em;
  color: #9ca3af; font-weight: 800; text-transform: uppercase; margin-bottom: 12px;
}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
}
@media (min-width: 640px) {
  .expertise-grid { grid-template-columns: repeat(3, 1fr); gap: 14px 20px; }
}
@media (min-width: 1024px) {
  .expertise-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
  }
}

.expertise-card {
  display: flex; align-items: flex-start; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.14); padding: 10px 0 4px;
  cursor: pointer; transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1); text-decoration: none;
  gap: 8px;
}
.expertise-card:hover, .expertise-card.active {
  border-top-color: var(--cyan);
  transform: translateY(-2px);
}
.expertise-card-title {
  font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 700; color: #f1f5f9;
  letter-spacing: 0.04em; transition: color 0.2s; line-height: 1.35;
  text-transform: uppercase;
}
.expertise-card:hover .expertise-card-title,
.expertise-card.active .expertise-card-title {
  color: var(--cyan);
}
.expertise-card-icon {
  color: #64748b; flex-shrink: 0; width: 13px; height: 13px; margin-top: 1px;
  transition: all 0.2s;
}
.expertise-card:hover .expertise-card-icon,
.expertise-card.active .expertise-card-icon {
  color: var(--cyan);
  transform: translateX(2px) translateY(-1px);
}

/* ================================================================
   SUB-NAV BAR
   ================================================================ */
#sub-nav {
  background: rgba(7,10,19,0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  padding: 18px 0;
  position: sticky; top: 60px; z-index: 40;
}
@media (min-width: 1024px) { #sub-nav { top: 72px; } }

.sub-nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 12px 32px;
}
@media (min-width: 768px) { .sub-nav-inner { padding: 0 48px; gap: 12px 48px; } }

.sub-nav-link {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 500;
  font-size: 11px; letter-spacing: 0.15em; color: #d1d5db;
  text-transform: uppercase; text-decoration: none; transition: color 0.2s;
  position: relative;
}
.sub-nav-link:hover { color: var(--cyan); }
.sub-nav-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple); opacity: 0; transition: all 0.2s; }
.sub-nav-link:hover .sub-nav-dot { opacity: 1; background: var(--cyan); }
.sub-nav-arrow { font-size: 10px; color: #64748b; transition: color 0.2s; }
.sub-nav-link:hover .sub-nav-arrow { color: var(--cyan); }

/* ================================================================
   CLIENT LOGOS
   ================================================================ */
#clients { background: #fff; padding: 80px 0; border-bottom: 1px solid #f1f5f9; }
.clients-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(24px, 3vw, 38px); color: #111827;
  text-align: center; margin-bottom: 64px; letter-spacing: -0.01em;
}
.logos-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 48px;
  align-items: center; justify-items: center;
}
@media (min-width: 640px) { .logos-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .logos-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .logos-grid { grid-template-columns: repeat(5, 1fr); } }

.logo-cell {
  width: 100%; height: 64px; display: flex; align-items: center; justify-content: center;
  filter: grayscale(1); opacity: 0.6; transition: all 0.3s;
}
.logo-cell:hover { filter: grayscale(0); opacity: 1; }
.logo-cell .logo-text { font-size: 17px; font-weight: 600; color: #374151; transition: transform 0.2s; }
.logo-cell:hover .logo-text { transform: scale(1.05); }

/* ================================================================
   CASE STUDIES
   ================================================================ */
#case-studies { background: #f8fafc; padding: 96px 0; border-bottom: 1px solid #f1f5f9; }
.case-studies-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 4vw, 44px); color: #111827; text-align: center;
  margin-bottom: 16px;
}
.case-studies-subtitle { font-size: 15px; color: #6b7280; text-align: center; max-width: 680px; margin: 0 auto 64px; line-height: 1.7; }

/* Main card with fixed height to prevent layout shifts across tabs */
.case-main-card {
  background: #fff; border-radius: 16px;
  box-shadow: 0 20px 40px rgba(156,163,175,0.35);
  border: 1px solid #f1f5f9; overflow: hidden; margin-bottom: 36px;
  display: grid; grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .case-main-card {
    grid-template-columns: 6fr 6fr;
    height: 520px;
    min-height: 520px;
    max-height: 520px;
  }
}

.case-card-text {
  padding: 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  height: 100%; box-sizing: border-box;
}
@media (min-width: 768px) { .case-card-text { padding: 44px 48px; } }

.case-card-top {
  display: flex; flex-direction: column;
}
.case-tag-pill {
  display: inline-block; font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  color: #fff; background: linear-gradient(135deg, var(--blue), var(--purple));
  padding: 5px 14px; border-radius: 6px; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 16px; align-self: flex-start;
}
.case-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(20px, 2.2vw, 28px); color: #111827; line-height: 1.28;
  margin-bottom: 12px;
  min-height: 64px;
}
.case-desc-text {
  font-size: 13.5px; color: #6b7280; line-height: 1.65;
  margin-bottom: 16px;
  min-height: 66px;
}

.case-stats {
  border-top: 1px solid #f1f5f9; padding-top: 20px; margin-top: auto;
}
.case-stat-row { display: grid; grid-template-columns: 85px 1fr; gap: 20px; align-items: center; min-height: 64px; }
.case-stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(32px, 3.5vw, 44px); color: #09090b; line-height: 1; }
.case-stat-items { display: flex; flex-direction: column; gap: 8px; }
.case-stat-item { display: flex; align-items: flex-start; gap: 10px; }
.case-check { color: #10b981; flex-shrink: 0; margin-top: 2px; }
.case-stat-text { font-size: 12px; color: #6b7280; font-weight: 500; line-height: 1.35; min-height: 16px; }
.case-read-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); transition: color 0.2s;
}
.case-read-link:hover { color: var(--purple); }
.case-read-link:hover svg { transform: translateX(3px); }
.case-read-link svg { transition: transform 0.2s; }

.case-card-image { height: 300px; position: relative; background: #111827; overflow: hidden; }
@media (min-width: 1024px) { .case-card-image { height: 100%; } }
.case-card-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; transition: transform 0.7s; }
.case-card-image:hover img { transform: scale(1.04); }
.case-card-image::after { content: ''; position: absolute; inset-inline: 0; bottom: 0; height: 120px; background: linear-gradient(to top, rgba(0,0,0,0.4), transparent); pointer-events: none; }

/* Tab selectors with fixed uniform height and non-shifting active border */
.case-tabs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
@media (min-width: 768px) { .case-tabs-grid { grid-template-columns: repeat(5, 1fr); gap: 14px; } }

.case-tab-btn {
  text-align: left; padding: 16px 18px; border-radius: 10px;
  border: 2px solid #e5e7eb; background: #f9fafb;
  transition: all 0.25s ease; cursor: pointer;
  display: flex; flex-direction: column; justify-content: flex-start;
  min-height: 88px; height: 100%; box-sizing: border-box;
}
.case-tab-btn.active {
  background: #fff; border-color: var(--purple);
  box-shadow: 0 6px 18px rgba(99,102,241,0.15);
}
.case-tab-btn:not(.active):hover { background: #f3f4f6; border-color: #d1d5db; }
.case-tab-cat { font-family: var(--font-mono); font-size: 9.5px; font-weight: 700; color: #9ca3af; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 6px; display: block; }
.case-tab-title { font-size: 11.5px; font-weight: 700; color: #1f2937; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.case-studies-cta { text-align: center; margin-top: 36px; }

/* ================================================================
   CTA BANNER
   ================================================================ */
#cta-banner { background: #000; padding: 64px 0; }
.cta-box {
  position: relative; border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, #1e1b4b, #4c1d95, #312e81);
  border: 1px solid rgba(99,102,241,0.35);
  padding: 56px 32px;
  box-shadow: 0 25px 50px rgba(99,102,241,0.1);
}
@media (min-width: 768px) { .cta-box { padding: 64px 56px; } }

.cta-svg-lines { position: absolute; inset: 0; z-index: 0; opacity: 0.4; mix-blend-mode: screen; pointer-events: none; }
.cta-glow-1 { position: absolute; top: 50%; left: 25%; transform: translateY(-50%); width: 288px; height: 288px; background: rgba(168,85,247,0.1); border-radius: 50%; filter: blur(48px); pointer-events: none; }
.cta-glow-2 { position: absolute; bottom: 0; right: 25%; width: 320px; height: 320px; background: rgba(99,102,241,0.1); border-radius: 50%; filter: blur(48px); pointer-events: none; }
.cta-content-grid { position: relative; z-index: 10; display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 1024px) { .cta-content-grid { grid-template-columns: 8fr 4fr; } }
.cta-content h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 3.5vw, 42px); color: #fff; line-height: 1.2; }
.cta-content p { font-size: 14px; color: #d1d5db; max-width: 640px; line-height: 1.7; margin-top: 20px; }
.cta-actions { display: flex; }
@media (min-width: 1024px) { .cta-actions { justify-content: flex-end; } }

.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff; font-weight: 600; font-size: 13px;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 18px 32px; border-radius: 8px; white-space: nowrap;
  transition: all 0.3s; box-shadow: 0 20px 40px rgba(37,99,235,0.15);
  text-decoration: none;
}
.btn-cta:hover { background: linear-gradient(135deg, var(--purple), var(--blue)); box-shadow: 0 20px 40px rgba(139,92,246,0.2); }
.btn-cta svg { transition: transform 0.2s; }
.btn-cta:hover svg { transform: translate(2px, -2px); }

/* ================================================================
   DIFFERENCE / ADVANTAGES SECTION
   ================================================================ */
#advantages { background: #fff; padding: 96px 0; border-bottom: 1px solid #f1f5f9; }
.difference-header { text-align: center; max-width: 768px; margin: 0 auto 80px; }
.difference-header h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 4vw, 44px); color: #111827; margin-bottom: 16px; }
.difference-header p { font-size: 14px; color: #6b7280; line-height: 1.7; }
.difference-grid { display: grid; grid-template-columns: 1fr; gap: 48px; margin-bottom: 80px; }
@media (min-width: 768px) { .difference-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .difference-grid { grid-template-columns: repeat(3, 1fr); gap: 48px; } }

.diff-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.diff-icon { width: 64px; height: 64px; border-radius: 50%; border: 1px solid #e5e7eb; background: #f9fafb; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: all 0.3s; }
.diff-card:hover .diff-icon { background: var(--blue); border-color: var(--blue); }
.diff-icon svg { color: #374151; transition: color 0.3s; }
.diff-card:hover .diff-icon svg { color: #fff; }
.diff-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.15em; color: #09090b; margin-bottom: 12px; text-transform: uppercase; }
.diff-card p { font-size: 13px; color: #6b7280; line-height: 1.7; max-width: 320px; }
.difference-footer { display: flex; flex-direction: column; align-items: center; justify-content: center; padding-top: 32px; }
.difference-line { width: 1px; height: 48px; background: #e5e7eb; margin-bottom: 16px; }
.difference-text { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em; font-weight: 700; color: #9ca3af; }

/* ================================================================
   TRUSTED & PROVEN / STATS & CREDIBILITY SECTION
   ================================================================ */
#awards {
  background: linear-gradient(135deg, #1e1b4b 0%, #2e1065 30%, #4c1d95 65%, #312e81 100%);
  padding: 110px 0 100px;
  color: #fff;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(99, 102, 241, 0.35);
  border-bottom: 1px solid rgba(99, 102, 241, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.awards-svg-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.38;
  mix-blend-mode: screen;
  pointer-events: none;
}
.awards-glow-1 {
  position: absolute;
  top: 20%;
  left: 8%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  background: rgba(168, 85, 247, 0.16);
  border-radius: 50%;
  filter: blur(56px);
  pointer-events: none;
  z-index: 1;
}
.awards-glow-2 {
  position: absolute;
  bottom: 10%;
  right: 8%;
  width: 420px;
  height: 420px;
  background: rgba(99, 102, 241, 0.2);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.awards-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 10;
}
.awards-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.awards-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}
.awards-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 50px);
  color: #fff;
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.awards-subheadline {
  font-size: clamp(15px, 1.8vw, 17px);
  color: #94a3b8;
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto;
}

/* 6-Card Stat Grid (3x2) */
.awards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  position: relative;
  z-index: 10;
  margin-bottom: 32px;
}
@media (min-width: 640px) {
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .awards-grid { grid-template-columns: repeat(3, 1fr); }
}

.award-stat-card {
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.75), rgba(11, 15, 25, 0.85));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.award-stat-card:hover {
  background: linear-gradient(145deg, rgba(22, 30, 49, 0.9), rgba(14, 20, 34, 0.95));
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(56, 189, 248, 0.12);
}
.award-stat-card-glow {
  position: absolute;
  top: 0; right: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.14), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.award-stat-card:hover .award-stat-card-glow { opacity: 1; }

.award-stat-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}
.award-stat-icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.award-stat-card:hover .award-stat-icon-badge {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.3);
  color: var(--cyan);
  transform: scale(1.05);
}

.award-stat-metric {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 40%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.award-stat-metric.text-gradient-purple {
  background: linear-gradient(135deg, #ffffff 40%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.award-stat-metric.text-gradient-blue {
  background: linear-gradient(135deg, #ffffff 40%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.award-stat-title {
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.award-stat-desc {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.5;
}
.award-card-hover-line {
  position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.award-stat-card:hover .award-card-hover-line { transform: scaleX(1); }

/* Credibility & Technology Ecosystem Strips */
.credibility-strip-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
  position: relative;
  z-index: 10;
}

.strip-icon-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.strip-icon-circle.tech-circle {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.3);
  color: #c084fc;
}

.industry-focus-strip {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.65), rgba(10, 15, 26, 0.8));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
@media (min-width: 992px) {
  .industry-focus-strip {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 16px;
  }
}
.industry-strip-title {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.industry-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (min-width: 992px) {
  .industry-pills-wrap {
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
}
.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 12px;
  border-radius: 9999px;
  transition: all 0.25s ease;
}
.industry-pill-icon {
  color: #64748b;
  flex-shrink: 0;
  transition: color 0.2s;
}
.industry-pill:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.35);
  color: #ffffff;
  transform: translateY(-1px);
}
.industry-pill:hover .industry-pill-icon {
  color: var(--cyan);
}

.tech-ecosystem-strip {
  background: linear-gradient(135deg, rgba(13, 19, 33, 0.85), rgba(7, 11, 20, 0.95));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
@media (min-width: 992px) {
  .tech-ecosystem-strip {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.tech-ecosystem-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tech-stack-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.tech-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: #f1f5f9;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}
.tech-badge-logo {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.tech-badge-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(56, 189, 248, 0.4);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), 0 0 15px rgba(56, 189, 248, 0.15);
}
.tech-badge-item:hover .tech-badge-logo {
  transform: scale(1.1);
}

.awards-cta {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 10;
}

/* ================================================================
   INSIGHTS
   ================================================================ */
#insights { background: #f8fafc; padding: 96px 0; border-bottom: 1px solid #f1f5f9; }
.insights-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 4vw, 44px); color: #111827; margin-bottom: 56px; letter-spacing: -0.01em; }
.insights-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
@media (min-width: 768px) { .insights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .insights-grid { grid-template-columns: repeat(3, 1fr); } }

.insight-card { cursor: pointer; }
.insight-img-box { position: relative; height: 340px; border-radius: 12px; overflow: hidden; background: #000; margin-bottom: 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.insight-img-box img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; transition: all 0.5s; }
.insight-card:hover .insight-img-box img { transform: scale(1.05); opacity: 0.6; }
.insight-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.2) 100%); }
.insight-overlay { position: absolute; inset: 0; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; z-index: 10; }
.insight-futurix-badge { display: inline-block; font-family: var(--font-mono); font-size: 10px; font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--blue), var(--purple)); padding: 4px 12px; border-radius: 4px; letter-spacing: 0.1em; text-transform: uppercase; width: fit-content; }
.insight-card-bottom {}
.insight-top-text { font-size: 13px; color: #d1d5db; margin-bottom: 6px; font-weight: 500; }
.insight-card-title { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: #fff; line-height: 1.3; margin-bottom: 8px; opacity: 0.95; transition: opacity 0.2s; }
.insight-card:hover .insight-card-title { opacity: 1; }
.insight-card-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 18px; }
.insight-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--cyan); font-weight: 700; text-transform: uppercase; }
.insight-arrow { color: #fff; transition: transform 0.2s; }
.insight-card:hover .insight-arrow { transform: translateX(6px); }
.insight-under-text { font-weight: 700; font-size: 13px; color: #1f2937; line-height: 1.4; transition: color 0.2s; }
.insight-card:hover .insight-under-text { color: var(--cyan); }
.insights-dots { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 48px; }
.insight-dot { width: 10px; height: 10px; border-radius: 999px; background: #d1d5db; transition: all 0.3s; border: none; cursor: pointer; padding: 0; }
.insight-dot.active { width: 32px; background: var(--blue); }

/* ================================================================
   ACCELERATE BANNER
   ================================================================ */
#accelerate-banner {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff; padding: 56px 0; position: relative; overflow: hidden;
  box-shadow: 0 20px 40px rgba(37,99,235,0.2);
}
.accelerate-bg-text { position: absolute; right: 0; top: 0; bottom: 0; opacity: 0.1; display: flex; align-items: center; padding-right: 32px; pointer-events: none; user-select: none; }
.accelerate-bg-text span { font-family: var(--font-display); font-size: 96px; font-weight: 800; letter-spacing: 0.15em; color: #fff; }
.accelerate-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; flex-direction: column; gap: 32px; position: relative; z-index: 10; }
@media (min-width: 768px) { .accelerate-inner { flex-direction: row; align-items: center; justify-content: space-between; padding: 0 48px; } }
.accelerate-text {}
.accelerate-label { font-size: 17px; font-weight: 500; color: rgba(255,255,255,0.8); letter-spacing: 0.05em; margin-bottom: 4px; }
.accelerate-heading { font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px); font-weight: 900; letter-spacing: -0.02em; color: #fff; text-transform: uppercase; }
.btn-accelerate {
  display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0;
  background: #fff; color: #000; font-weight: 700; font-size: 13px;
  letter-spacing: 0.15em; text-transform: uppercase; padding: 20px 32px;
  border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: all 0.3s; text-decoration: none;
}
.btn-accelerate:hover { background: var(--dark-bg3); color: #fff; }

/* ================================================================
   TEAM SECTION
   ================================================================ */
#team { background: var(--dark-bg3); padding: 96px 0; border-bottom: 1px solid rgba(255,255,255,0.05); color: #fff; position: relative; overflow: hidden; }
.team-glow { position: absolute; top: 30%; left: 20%; width: 500px; height: 500px; background: rgba(37,99,235,0.05); border-radius: 50%; filter: blur(48px); pointer-events: none; }
.team-header { text-align: center; max-width: 768px; margin: 0 auto 64px; position: relative; z-index: 10; }
.team-header h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 4vw, 44px); color: #fff; line-height: 1.2; margin-bottom: 16px; }
.team-header p { font-size: 14px; color: #9ca3af; line-height: 1.7; }
.team-photos { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 80px; position: relative; z-index: 10; }
@media (min-width: 768px) { .team-photos { grid-template-columns: repeat(2, 1fr); } }
.team-photo { border-radius: 12px; overflow: hidden; aspect-ratio: 16/10; background: #1f2937; border: 1px solid rgba(255,255,255,0.1); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: all 0.5s; }
.team-photo:hover img { opacity: 1; transform: scale(1.02); }

.team-stats-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; position: relative; z-index: 10; }
@media (min-width: 1024px) { .team-stats-grid { grid-template-columns: 7fr 5fr; } }

/* Animated World Map */
.world-map-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.world-map-canvas-container {
  position: relative;
  width: 100%;
  aspect-ratio: 672/315;
  background: #0c0f1d;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(37, 99, 235, 0.1);
}
.world-map-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#1e293b 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 1;
}
.world-map-radiance {
  position: absolute;
  top: 20%;
  left: 45%;
  width: 40%;
  height: 40%;
  background: rgba(37, 99, 235, 0.12);
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
  z-index: 1;
}
.world-map-svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  user-select: none;
}
.continent-path {
  fill: rgba(30, 41, 59, 0.45);
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 0.5px;
  transition: fill 0.3s, stroke 0.3s;
}
.continent-path:hover {
  fill: rgba(71, 85, 105, 0.7);
  stroke: rgba(255, 255, 255, 0.15);
}

/* Flight paths & tracers */
.flight-path {
  fill: none;
  stroke: url(#arcGradient);
  stroke-width: 1.2px;
  stroke-dasharray: 4 4;
  opacity: 0.45;
}
.flight-tracer {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.8px;
  stroke-dasharray: 30 150;
  stroke-dashoffset: 0;
  animation: flight-trace-anim 4s infinite linear;
}
@keyframes flight-trace-anim {
  to {
    stroke-dashoffset: -180;
  }
}

/* City markers */
.city-marker {
  cursor: pointer;
}
.city-pulse-ring {
  fill: url(#ringPulse);
  transform-origin: center;
  transform-box: fill-box;
  animation: pulse-ring-anim 2s infinite ease-in-out;
}
@keyframes pulse-ring-anim {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.8);
  }
}
.city-core-dot {
  transition: all 0.3s;
  fill: #8b5cf6;
  stroke: #ffffff;
  stroke-width: 1px;
}
.city-marker.active .city-core-dot {
  fill: var(--cyan);
  stroke-width: 1.5px;
  r: 5px;
}
.city-marker:not(.active) .city-core-dot {
  r: 3.5px;
}
.city-ping-circle {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 0.8px;
  opacity: 0.4;
  transform-origin: center;
  transform-box: fill-box;
}
.city-marker.active .city-ping-circle {
  opacity: 1;
  animation: ping-anim 2s infinite ease-out;
}
@keyframes ping-anim {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* City labels */
.city-label-g {
  pointer-events: none;
}
.city-label-rect {
  fill: rgba(9, 9, 11, 0.85);
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 0.5px;
  transition: stroke 0.3s;
}
.city-marker.active .city-label-rect {
  stroke: rgba(56, 189, 248, 0.5);
}
.city-label-text {
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.05em;
  fill: #d1d5db;
  transition: fill 0.3s;
}
.city-marker.active .city-label-text {
  fill: var(--cyan);
}

/* Floating instructions overlay */
.map-instructions {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: #94a3b8;
  pointer-events: none;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.map-instructions-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: flash-pulse 2s infinite;
}
@keyframes flash-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Dynamic details card */
.map-details-card {
  background: rgba(12, 16, 32, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur-12px;
  -webkit-backdrop-filter: blur-12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s, transform 0.3s;
}
.map-details-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--purple));
}
.details-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
@media (min-width: 640px) {
  .details-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
}
.details-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.details-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}
.details-city-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.details-country-badge {
  font-size: 11px;
  font-family: var(--font-mono);
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.2);
  color: #c084fc;
  border: 1px solid rgba(139, 92, 246, 0.3);
  text-transform: uppercase;
}
.details-timezone {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.details-members-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(9, 9, 11, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #cbd5e1;
  width: fit-content;
}
.details-members-box svg {
  color: var(--purple);
}
.details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .details-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.details-info-block {
  padding: 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.details-info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cyan);
  display: block;
  margin-bottom: 6px;
}
.details-info-block.purple .details-info-label {
  color: var(--purple);
}
.details-info-value {
  font-size: 14px;
  font-weight: 500;
  color: #f1f5f9;
  line-height: 1.5;
}

.team-stats { display: flex; flex-direction: column; gap: 32px; }
.stat-item { border-left: 3px solid var(--blue); padding: 4px 0 4px 20px; }
.stat-item.purple { border-left-color: var(--purple); }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(32px, 4vw, 48px); color: #fff; }
.stat-label { font-size: 13px; color: #9ca3af; font-weight: 500; margin-top: 4px; }

.offices-strip { border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 32px 0; margin-top: 64px; position: relative; z-index: 10; overflow: hidden; }
.offices-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
@media (min-width: 768px) { .offices-inner { flex-wrap: nowrap; } }
.office-item { display: flex; align-items: center; gap: 8px; }
.office-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }
.office-name { font-size: 12px; font-weight: 700; color: #d1d5db; letter-spacing: 0.2em; font-family: var(--font-sans); }
.office-sep { color: #374151; font-weight: 300; display: none; }
@media (min-width: 768px) { .office-sep { display: block; } }

/* ================================================================
   LET'S TALK / CONTACT
   ================================================================ */
#contact { background: #fff; padding: 96px 0; }
.letstalk-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 4vw, 44px); color: #111827; margin-bottom: 64px; letter-spacing: -0.01em; }

.letstalk-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .letstalk-grid { grid-template-columns: 5fr 7fr; } }

.contact-image { position: relative; aspect-ratio: 4/5; border-radius: 16px; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.12); border: 1px solid #f1f5f9; background: #f9fafb; }
.contact-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.contact-image-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.25), transparent); pointer-events: none; }

.steps-list { position: relative; display: flex; flex-direction: column; gap: 32px; }
.steps-line { position: absolute; left: 24px; top: 24px; bottom: 24px; width: 2px; background: #f1f5f9; display: none; }
@media (min-width: 640px) { .steps-line { display: block; } }

.step-item { display: flex; align-items: flex-start; gap: 24px; position: relative; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid #e5e7eb; background: #f9fafb;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: var(--font-display); font-weight: 800; font-size: 13px; color: #09090b;
  transition: all 0.3s; z-index: 10; box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.step-item:hover .step-num { background: linear-gradient(135deg, var(--blue), var(--purple)); color: #fff; border-color: var(--blue); }
.step-content h3 { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: #111827; margin-bottom: 8px; }
.step-content p { font-size: 13px; color: #6b7280; line-height: 1.7; }

.letstalk-btn-wrap { margin-top: 16px; padding-left: 0; }
@media (min-width: 768px) { .letstalk-btn-wrap { padding-left: 72px; } }

/* Modal */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 100; align-items: center; justify-content: center; padding: 16px; }
.modal-overlay.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(4px); }
.modal-box { position: relative; width: 100%; max-width: 480px; background: #fff; border-radius: 12px; box-shadow: 0 25px 60px rgba(0,0,0,0.3); overflow: hidden; z-index: 10; border: 1px solid #f1f5f9; padding: 32px; animation: modalIn 0.25s ease; }
@media (min-width: 640px) { .modal-box { padding: 40px; } }
@keyframes modalIn { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-close { position: absolute; top: 24px; right: 24px; color: #9ca3af; background: none; border: none; cursor: pointer; transition: color 0.2s; }
.modal-close:hover { color: #000; }
.modal-title { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: #111827; margin-bottom: 4px; }
.modal-sub { font-size: 12px; color: #6b7280; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: #6b7280; font-weight: 700; margin-bottom: 6px; }
.form-input { width: 100%; background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 4px; padding: 12px 16px; font-size: 13px; font-family: var(--font-sans); outline: none; transition: all 0.2s; }
.form-input:focus { border-color: #09090b; box-shadow: 0 0 0 1px #09090b; }
.btn-form-submit { width: 100%; background: linear-gradient(135deg, var(--blue), var(--purple)); color: #fff; display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 13px; padding: 16px; border-radius: 4px; border: none; cursor: pointer; transition: filter 0.2s; box-shadow: 0 4px 16px rgba(37,99,235,0.3); }
.btn-form-submit:hover { filter: brightness(1.1); }
.form-success { padding: 56px 0; text-align: center; }
.form-success-icon { width: 64px; height: 64px; border-radius: 50%; background: #ecfdf5; color: #10b981; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 32px; }
.form-success h3 { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: #111827; margin-bottom: 8px; }
.form-success p { font-size: 13px; color: #6b7280; }

/* ================================================================
   FOOTER
   ================================================================ */
#site-footer { background: var(--dark-footer); color: #9ca3af; padding: 80px 0 40px; border-top: 1px solid rgba(255,255,255,0.05); position: relative; z-index: 10; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.05); }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 4fr 8fr; } }

.footer-brand { display: flex; flex-direction: column; gap: 32px; }
.footer-desc { font-size: 13px; color: #6b7280; line-height: 1.7; font-weight: 300; max-width: 340px; }
.footer-contacts { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #d1d5db; font-weight: 500; transition: color 0.2s; text-decoration: none; }
.footer-contact-item:hover { color: var(--cyan); }
.footer-contact-item svg { color: var(--cyan); }
.footer-social { display: flex; gap: 16px; }
.social-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.02); display: flex; align-items: center; justify-content: center; color: #9ca3af; transition: all 0.3s; text-decoration: none; }
.social-btn:hover { border-color: var(--blue); background: var(--blue); color: #fff; }

.footer-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (min-width: 768px) { .footer-links-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-col h3 { font-family: var(--font-display); font-weight: 500; font-size: 11px; letter-spacing: 0.2em; color: #fff; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col li a { font-size: 12px; color: #6b7280; transition: color 0.2s; text-decoration: none; display: block; line-height: 1.5; }
.footer-col li a:hover { color: var(--cyan); }

.footer-bottom { display: flex; flex-direction: column; gap: 16px; padding-top: 40px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: #374151; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-bottom a { color: #374151; transition: color 0.2s; text-decoration: none; }
.footer-bottom a:hover { color: var(--cyan); }

/* ================================================================
   INTERNATIONAL PRIVACY & COOKIE CONSENT BANNER (GDPR / CCPA / ePrivacy)
   ================================================================ */
.cookie-banner {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  left: 24px !important;
  max-width: 480px !important;
  margin-left: auto !important;
  background: rgba(10, 14, 26, 0.95) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 20px !important;
  padding: 22px 24px !important;
  z-index: 100000 !important;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.05) !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  color: #ffffff !important;
  display: block !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s !important;
  box-sizing: border-box !important;
}

@media (max-width: 540px) {
  .cookie-banner {
    left: 16px !important;
    right: 16px !important;
    bottom: 16px !important;
    padding: 18px !important;
  }
}

.cookie-banner.hidden {
  opacity: 0 !important;
  transform: translateY(24px) scale(0.97) !important;
  pointer-events: none !important;
  visibility: hidden !important;
  display: none !important;
}

.cookie-banner-header {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 12px !important;
}

.cookie-banner-icon {
  width: 32px !important;
  height: 32px !important;
  border-radius: 9px !important;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(139, 92, 246, 0.25)) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #38bdf8 !important;
  flex-shrink: 0 !important;
}

.cookie-banner-tag {
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #38bdf8 !important;
  font-family: 'Space Grotesk', -apple-system, sans-serif !important;
  line-height: 1.2 !important;
}

.cookie-banner-title {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 2px 0 0 0 !important;
  line-height: 1.3 !important;
  font-family: 'Space Grotesk', -apple-system, sans-serif !important;
}

.cookie-banner-text {
  font-size: 12.5px !important;
  line-height: 1.6 !important;
  color: #94a3b8 !important;
  margin: 0 0 14px 0 !important;
}

.cookie-banner-links {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 12px !important;
  margin-bottom: 16px !important;
  flex-wrap: wrap !important;
}

.cookie-banner-links a.cookie-link {
  color: #38bdf8 !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  transition: color 0.2s !important;
}

.cookie-banner-links a.cookie-link:hover {
  color: #7dd3fc !important;
  text-decoration: underline !important;
}

.cookie-banner-links-dot {
  color: #475569 !important;
}

.btn-cookie-manage {
  background: none !important;
  border: none !important;
  color: #cbd5e1 !important;
  cursor: pointer !important;
  padding: 0 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-decoration: underline !important;
  font-family: inherit !important;
  transition: color 0.2s !important;
}

.btn-cookie-manage:hover {
  color: #ffffff !important;
}

/* Preferences Accordion / Panel */
.cookie-preferences-panel {
  display: none;
  flex-direction: column !important;
  gap: 12px !important;
  background: rgba(0, 0, 0, 0.35) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 14px !important;
  padding: 14px 16px !important;
  margin-bottom: 16px !important;
  max-height: 320px !important;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
  overflow-y: auto !important;
}

.cookie-preferences-panel.open {
  display: flex !important;
  animation: cookieDrawerIn 0.3s ease !important;
}

@keyframes cookieDrawerIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-pref-item {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.cookie-pref-item:last-child {
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

.cookie-pref-top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.cookie-pref-name {
  font-size: 12.5px !important;
  font-weight: 600 !important;
  color: #f1f5f9 !important;
}

.cookie-badge-active {
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 3px 8px !important;
  border-radius: 9999px !important;
  background: rgba(16, 185, 129, 0.15) !important;
  color: #34d399 !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
}

.cookie-pref-desc {
  font-size: 11px !important;
  line-height: 1.45 !important;
  color: #64748b !important;
  margin: 0 !important;
}

/* Modern iOS-style toggle switch */
.cookie-switch {
  position: relative !important;
  display: inline-block !important;
  width: 38px !important;
  height: 22px !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
}

.cookie-switch input {
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
}

.cookie-slider {
  position: absolute !important;
  cursor: pointer !important;
  top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
  background-color: rgba(255, 255, 255, 0.16) !important;
  transition: 0.25s !important;
  border-radius: 22px !important;
}

.cookie-slider:before {
  position: absolute !important;
  content: "" !important;
  height: 16px !important;
  width: 16px !important;
  left: 3px !important;
  bottom: 3px !important;
  background-color: white !important;
  transition: 0.25s !important;
  border-radius: 50% !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) !important;
}

.cookie-switch input:checked + .cookie-slider {
  background: linear-gradient(135deg, #2563eb, #8b5cf6) !important;
}

.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(16px) !important;
}

/* Action Buttons */
.cookie-banner-actions {
  display: flex !important;
  gap: 10px !important;
  align-items: center !important;
  flex-wrap: wrap !important;
}

.btn-cookie-accept {
  flex: 1 1 140px !important;
  background: linear-gradient(135deg, #2563eb, #8b5cf6) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 11px 18px !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35) !important;
  text-align: center !important;
  white-space: nowrap !important;
}

.btn-cookie-accept:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.45) !important;
  opacity: 0.95 !important;
}

.btn-cookie-decline {
  flex: 1 1 140px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #cbd5e1 !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 10px !important;
  padding: 11px 18px !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  text-align: center !important;
  white-space: nowrap !important;
}

.btn-cookie-decline:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.btn-cookie-save {
  width: 100% !important;
  margin-top: 6px !important;
  background: rgba(37, 99, 235, 0.15) !important;
  color: #60a5fa !important;
  border: 1px solid rgba(37, 99, 235, 0.35) !important;
  border-radius: 10px !important;
  padding: 9px 16px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  text-align: center !important;
}

.btn-cookie-save:hover {
  background: rgba(37, 99, 235, 0.25) !important;
  color: #93c5fd !important;
  border-color: rgba(37, 99, 235, 0.55) !important;
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Scroll-triggered fade in */
.fade-in { opacity: 0; transform: translateY(15px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   SERVICE DETAIL PAGES
   ================================================================ */
.service-hero {
  position: relative;
  background: var(--dark-bg2);
  padding: 140px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.service-hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(139, 92, 246, 0.08) 50%, transparent 100%);
  filter: blur(80px);
  pointer-events: none;
}
.badge-neon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  background: rgba(56, 189, 248, 0.06);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.service-title-main {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .service-title-main { font-size: 52px; }
}
.service-desc-main {
  max-width: 720px;
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.7;
  font-weight: 350;
}

.service-details-section {
  background: var(--dark-bg3);
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.service-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .service-content-grid {
    grid-template-columns: 7fr 5fr;
    gap: 64px;
  }
}

.capabilities-list-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
}
@media (min-width: 640px) {
  .capabilities-list-box { padding: 40px; }
}
.capabilities-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  margin-bottom: 28px;
  font-weight: 700;
}
.capabilities-grid-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.capability-item-visual {
  display: flex;
  align-items: start;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.capability-item-visual:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.capability-check-box {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}
.capability-text-visual {
  font-size: 14.5px;
  color: #d1d5db;
  line-height: 1.5;
}

.tech-stack-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
  align-self: start;
}
.tech-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 700;
}
.tech-badges-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tech-badge-pill {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.25s;
  cursor: default;
}
.tech-badge-pill:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(56, 189, 248, 0.05);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.1);
}

/* Service inner pages contact form */
.contact-section {
  background: var(--dark-bg);
  padding: 96px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.contact-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
@media (min-width: 640px) {
  .contact-form { padding: 48px; }
}
.contact-form .form-input,
.contact-form .form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13.5px;
  color: #fff;
  font-family: var(--font-sans);
  outline: none;
  transition: all 0.25s;
}
.contact-form .form-textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form .form-input::placeholder,
.contact-form .form-textarea::placeholder {
  color: #4b5563;
}
.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 1px var(--cyan);
}
.contact-form .btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  padding: 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(37,99,235,0.2);
}
.contact-form .btn-submit:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 20px rgba(37,99,235,0.3);
}

/* ================================================================
   HERO METRICS
   ================================================================ */
.hero-slide-metrics {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 24px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.slide-metric-item {
  display: flex;
  flex-direction: column;
}

.s-metric-label {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.1em;
}

.s-metric-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--cyan);
  margin-top: 2px;
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */
#about {
  background: #f8fafc;
  padding: 96px 0;
  border-bottom: 1px solid #f1f5f9;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 7fr 5fr;
    gap: 64px;
  }
}

.about-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  color: #111827;
  line-height: 1.2;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.about-card-glass {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.about-mission {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 24px;
}

.about-mission strong {
  color: #0f172a;
}

.about-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 24px 0;
}

.about-llm-text {
  font-size: 14px;
  line-height: 1.75;
  color: #475569;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-metrics-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.about-metrics-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 24px;
  font-weight: 700;
}

.about-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.about-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}

.metric-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--blue);
}

.metric-lbl {
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-flags-box h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.flags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.flag-item {
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.about-leadership h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 20px;
  font-weight: 700;
}

.leader-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.leader-card {
  display: flex;
  gap: 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.leader-avatar {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.leader-info {
  flex-grow: 1;
}

.leader-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.leader-name-row h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.linkedin-link {
  color: #64748b;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
}

.linkedin-link:hover {
  color: #0077b5;
  background: #e0f2fe;
  border-color: #bae6fd;
}

.leader-title {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  margin-top: 2px;
}

.leader-bio {
  font-size: 12.5px;
  line-height: 1.5;
  color: #475569;
  margin-top: 8px;
}

/* ================================================================
   SERVICES PAGES STYLING (NEW ELEMENTS)
   ================================================================ */
.service-intro-section {
  background: var(--dark-bg3);
  padding: 60px 0 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.service-intro-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--cyan);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.service-intro-desc {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  color: #cbd5e1;
}

/* Capabilities Grid */
.capabilities-section {
  background: var(--dark-bg3);
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.capabilities-section-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -0.01em;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.capability-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.capability-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--cyan);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.capability-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 24px;
  transition: all 0.3s;
}

.capability-card:hover .capability-icon-box {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-color: var(--blue);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.capability-card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.capability-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #94a3b8;
}

/* Process Section */
.process-section {
  background: var(--dark-bg3);
  padding: 96px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.process-section-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
}

.process-section-desc {
  font-size: 14px;
  color: #94a3b8;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}

.process-card:hover {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.process-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.process-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 700;
}

.process-card p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
}

/* Simulated Demo Section */
.service-demo-section {
  background: var(--dark-bg3);
  padding: 96px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.demo-section-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
}

.demo-section-desc {
  font-size: 14px;
  color: #94a3b8;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .demo-grid {
    grid-template-columns: 6fr 6fr;
    gap: 64px;
  }
}

.demo-image-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, border-color 0.3s ease;
  background: #020204;
}

.demo-image-container:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
}

.demo-mockup-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.demo-image-container:hover .demo-mockup-image {
  opacity: 1;
}

.demo-dashboard {
  background: #020204;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.dashboard-header {
  background: #0b0b0f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-dots {
  display: flex;
  gap: 6px;
}

.dot-red, .dot-yellow, .dot-green {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.dashboard-title-text {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #94a3b8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dashboard-console {
  padding: 24px;
  height: 280px;
  overflow-y: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.6;
  color: #10b981;
}

.console-line {
  margin-bottom: 8px;
  word-break: break-all;
}

.console-line.input {
  color: #cbd5e1;
}

.console-line.info {
  color: var(--cyan);
}

.console-line.warn {
  color: #fbbf24;
}

.console-line.success {
  color: #34d399;
}

.demo-metrics-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.demo-metrics-list h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
}

.demo-metric-item {
  display: flex;
  align-items: start;
  gap: 16px;
}

.demo-metric-check {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

.demo-metric-content h4 {
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 4px;
}

.demo-metric-content p {
  font-size: 12.5px;
  color: #94a3b8;
  line-height: 1.5;
}

/* FAQ Accordion */
.faq-section {
  background: var(--dark-bg3);
  padding: 96px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-section-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 56px;
}

.faq-accordion {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

.faq-header {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-header h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #f1f5f9;
  padding-right: 20px;
}

.faq-item.open .faq-header h3 {
  color: var(--cyan);
}

.faq-chevron {
  color: #64748b;
  transition: transform 0.3s, color 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--cyan);
}

.faq-body {
  max-height: 0;
  transition: max-height 0.3s ease-out, padding 0.3s;
  padding: 0 28px;
  overflow: hidden;
}

.faq-item.open .faq-body {
  max-height: 500px;
  padding-bottom: 24px;
}

.faq-body p {
  font-size: 13.5px;
  line-height: 1.65;
  color: #94a3b8;
}

/* Tech Stack Container update */
.tech-stack-box-redesign {
  background: var(--dark-bg3);
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-stack-redesign-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
}

.tech-stack-redesign-subtitle {
  font-size: 14px;
  color: #94a3b8;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ================================================================
   TABBED SERVICES & CAPABILITIES LAYOUT (REACT MATCH)
   ================================================================ */
.tabbed-services-section {
  background: #070a13;
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tabbed-services-header {
  text-align: center;
  max-width: 3xl;
  margin: 0 auto 64px;
}

.tabbed-services-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(56, 189, 248, 0.4);
  background: rgba(56, 189, 248, 0.1);
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 16px;
}

.tabbed-services-badge span {
  font-size: 10px;
  font-family: var(--font-mono);
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--cyan);
  text-transform: uppercase;
}

.tabbed-services-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.tabbed-services-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  color: #94a3b8;
  max-width: 768px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Desktop Grid Layout */
.tabbed-services-grid {
  display: none;
}

@media (min-width: 1024px) {
  .tabbed-services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
    align-items: stretch;
  }
}

.tabbed-sidebar {
  grid-column: span 4;
  display: flex;
  flex-direction: col;
  flex-direction: column;
  gap: 12px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.tabbed-sidebar-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: #94a3b8;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.tabbed-sidebar-btn:hover {
  background: rgba(255, 255, 255, 0.02);
  color: #f1f5f9;
}

.tabbed-sidebar-btn.active {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.tabbed-btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: all 0.3s;
  flex-shrink: 0;
}

.tabbed-sidebar-btn:hover .tabbed-btn-icon {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.tabbed-sidebar-btn.active .tabbed-btn-icon {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.35);
  color: var(--cyan);
}

/* Accents colors for buttons */
.tabbed-sidebar-btn.active.blue-theme .tabbed-btn-icon {
  background: rgba(96, 165, 250, 0.1);
  border-color: rgba(96, 165, 250, 0.35);
  color: #60a5fa;
}

.tabbed-sidebar-btn.active.orange-theme .tabbed-btn-icon {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.35);
  color: #fbbf24;
}

.tabbed-sidebar-btn.active.purple-theme .tabbed-btn-icon {
  background: rgba(129, 140, 248, 0.1);
  border-color: rgba(129, 140, 248, 0.35);
  color: #818cf8;
}

.tabbed-sidebar-btn.active.green-theme .tabbed-btn-icon {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.35);
  color: #10b981;
}

.tabbed-sidebar-btn.active.pink-theme .tabbed-btn-icon {
  background: rgba(236, 72, 153, 0.1);
  border-color: rgba(236, 72, 153, 0.35);
  color: #ec4899;
}

.tabbed-btn-content {
  flex-grow: 1;
  min-width: 0;
}

.tabbed-btn-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tabbed-btn-title {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tabbed-btn-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.tabbed-sidebar-btn.blue-theme .tabbed-btn-dot { background: #60a5fa; }
.tabbed-sidebar-btn.orange-theme .tabbed-btn-dot { background: #fbbf24; }
.tabbed-sidebar-btn.purple-theme .tabbed-btn-dot { background: #818cf8; }
.tabbed-sidebar-btn.green-theme .tabbed-btn-dot { background: #10b981; }
.tabbed-sidebar-btn.pink-theme .tabbed-btn-dot { background: #ec4899; }

.tabbed-btn-desc {
  font-size: 11px;
  color: #64748b;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tabbed-sidebar-btn:hover .tabbed-btn-desc {
  color: #94a3b8;
}

/* Detail Panel */
.tabbed-detail-panel {
  grid-column: span 8;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tabbed-panel-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 256px;
  height: 256px;
  background: rgba(56, 189, 248, 0.05);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.tabbed-panel-header {
  display: flex;
  align-items: center;
  gap: 16px;
  border-b: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.tabbed-panel-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 20px rgba(56, 189, 248, 0.2);
}

.blue-theme .tabbed-panel-icon {
  background: linear-gradient(135deg, #60a5fa, #2563eb);
  box-shadow: 0 10px 20px rgba(96, 165, 250, 0.2);
}

.orange-theme .tabbed-panel-icon {
  background: linear-gradient(135deg, #fbbf24, #d97706);
  box-shadow: 0 10px 20px rgba(251, 191, 36, 0.2);
}

.purple-theme .tabbed-panel-icon {
  background: linear-gradient(135deg, #818cf8, #4f46e5);
  box-shadow: 0 10px 20px rgba(129, 140, 248, 0.2);
}

.green-theme .tabbed-panel-icon {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.pink-theme .tabbed-panel-icon {
  background: linear-gradient(135deg, #ec4899, #db2777);
  box-shadow: 0 10px 20px rgba(236, 72, 153, 0.2);
}

.tabbed-panel-title-group h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.tabbed-panel-subtitle {
  font-size: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--cyan);
  text-transform: uppercase;
}

.blue-theme .tabbed-panel-subtitle { color: #60a5fa; }
.orange-theme .tabbed-panel-subtitle { color: #fbbf24; }
.purple-theme .tabbed-panel-subtitle { color: #818cf8; }
.green-theme .tabbed-panel-subtitle { color: #10b981; }
.pink-theme .tabbed-panel-subtitle { color: #ec4899; }

.tabbed-panel-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 32px;
}

.tabbed-panel-subheading {
  font-size: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.tabbed-capabilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .tabbed-capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: x-8 gap-y-4;
    column-gap: 24px;
    row-gap: 16px;
  }
}

.tabbed-capability-item {
  display: flex;
  align-items: start;
  gap: 12px;
}

.tabbed-capability-check {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

.tabbed-capability-text {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.4;
}

.tabbed-tech-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  margin-top: 12px;
}

.tabbed-tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tabbed-tech-badge {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.3s;
  cursor: default;
}

.tabbed-tech-badge:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(56, 189, 248, 0.05);
}

.blue-theme .tabbed-tech-badge:hover {
  border-color: #60a5fa;
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.05);
}

.orange-theme .tabbed-tech-badge:hover {
  border-color: #fbbf24;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.05);
}

.purple-theme .tabbed-tech-badge:hover {
  border-color: #818cf8;
  color: #818cf8;
  background: rgba(129, 140, 248, 0.05);
}

/* Mobile Accordion Layout */
.tabbed-mobile-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 1024px) {
  .tabbed-mobile-accordion {
    display: none;
  }
}

.tabbed-acc-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.tabbed-acc-item.active {
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.05);
}

.tabbed-acc-item.active.blue-theme {
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 10px 30px rgba(96, 165, 250, 0.05);
}

.tabbed-acc-item.active.orange-theme {
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.05);
}

.tabbed-acc-item.active.purple-theme {
  border-color: rgba(129, 140, 248, 0.4);
  box-shadow: 0 10px 30px rgba(129, 140, 248, 0.05);
}

.tabbed-acc-item.active.green-theme {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.05);
}

.tabbed-acc-item.active.pink-theme {
  border-color: rgba(236, 72, 153, 0.4);
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.05);
}

.tabbed-acc-header {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  text-align: left;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}

.tabbed-acc-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tabbed-acc-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: all 0.3s;
}

.tabbed-acc-item.active .tabbed-acc-icon {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.35);
  color: var(--cyan);
}

.tabbed-acc-item.active.blue-theme .tabbed-acc-icon {
  background: rgba(96, 165, 250, 0.15);
  border-color: rgba(96, 165, 250, 0.35);
  color: #60a5fa;
}

.tabbed-acc-item.active.orange-theme .tabbed-acc-icon {
  background: rgba(251, 191, 36, 0.15);
  border-color: rgba(251, 191, 36, 0.35);
  color: #fbbf24;
}

.tabbed-acc-item.active.purple-theme .tabbed-acc-icon {
  background: rgba(129, 140, 248, 0.15);
  border-color: rgba(129, 140, 248, 0.35);
  color: #818cf8;
}

.tabbed-acc-item.active.green-theme .tabbed-acc-icon {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.35);
  color: #10b981;
}

.tabbed-acc-item.active.pink-theme .tabbed-acc-icon {
  background: rgba(236, 72, 153, 0.15);
  border-color: rgba(236, 72, 153, 0.35);
  color: #ec4899;
}

.tabbed-acc-title {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.tabbed-acc-chevron {
  color: #64748b;
  transition: transform 0.3s;
}

.tabbed-acc-item.active .tabbed-acc-chevron {
  transform: rotate(180deg);
  color: #fff;
}

.tabbed-acc-body {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 20px;
  background: rgba(0, 0, 0, 0.15);
}

.tabbed-panel-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

@media (min-width: 1024px) {
  .tabbed-panel-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
  
  .tabbed-panel-info {
    flex: 1;
    min-width: 0;
  }
  
  .tabbed-panel-graphic {
    width: 340px;
    flex-shrink: 0;
  }
}

.tabbed-panel-graphic img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tabbed-panel-graphic img:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--cyan);
  box-shadow: 0 20px 40px rgba(56, 189, 248, 0.2);
}

.blue-theme .tabbed-panel-graphic img:hover {
  border-color: #60a5fa;
  box-shadow: 0 20px 40px rgba(96, 165, 250, 0.2);
}

.orange-theme .tabbed-panel-graphic img:hover {
  border-color: #fbbf24;
  box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2);
}

.purple-theme .tabbed-panel-graphic img:hover {
  border-color: #818cf8;
  box-shadow: 0 20px 40px rgba(129, 140, 248, 0.2);
}

/* General Layout spacing rules */
.service-subpage-section {
  padding-bottom: 96px;
}

/* ============================================================
   SERVICES LANDING PAGE (10Pearls Clone Structure)
   ============================================================ */

/* Hero Section */
.service-hero {
  padding: 180px 0 100px;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.service-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  max-width: 900px;
  margin: 0 auto 24px;
}
.service-hero p.subtitle {
  font-size: 1.125rem;
  color: #a1a1aa;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.service-hero-highlight {
  color: var(--blue);
}
.service-hero-orange-highlight {
  color: #f97316;
}

/* Trusted By Banner */
.trusted-by-banner {
  background: #fff;
  padding: 60px 0;
  border-bottom: 1px solid #f1f5f9;
  text-align: center;
}
.trusted-by-banner h2 {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 30px;
  font-weight: 500;
}
.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.trusted-logos img {
  height: 30px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}
.trusted-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Section Headings */
.service-section {
  padding: 100px 0;
}
.service-section.bg-light {
  background: #f8fafc;
}
.service-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #09090b;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Capabilities Grid */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.capability-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 40px;
  transition: all 0.3s ease;
  height: 100%;
}
.capability-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  border-color: var(--blue);
}
.capability-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.capability-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #09090b;
}
.capability-card p {
  color: #64748b;
  line-height: 1.7;
}

/* Advantages Grid */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
.advantage-item {
  display: flex;
  gap: 20px;
}
.advantage-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantage-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #09090b;
}
.advantage-content p {
  color: #64748b;
  line-height: 1.6;
}

/* Tech Stack Grid */
.tech-stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.tech-stack-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}
.tech-stack-item:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}

/* Case Studies */
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.case-study-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.case-study-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.case-study-content {
  padding: 30px;
}
.case-study-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #09090b;
}
.case-study-content p {
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.6;
}
.case-study-stats {
  display: flex;
  gap: 20px;
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
}
.stat-box h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
}
.stat-box span {
  font-size: 0.875rem;
  color: #64748b;
}

/* FAQ Accordion (Reusing existing or adding clean variant) */
.services-faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.service-faq-item {
  border-bottom: 1px solid #e2e8f0;
}
.service-faq-header {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: #09090b;
}
.service-faq-body {
  padding-bottom: 24px;
  color: #64748b;
  line-height: 1.7;
  display: none; /* toggled via JS */
}
.service-faq-item.active .service-faq-body {
  display: block;
}
.service-faq-item.active .service-faq-header {
  color: var(--blue);
}

/* CTA Footer */
.service-cta {
  background: var(--dark-bg);
  padding: 120px 0;
  text-align: center;
}
.service-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 30px;
}

/* Zig-Zag Sections (10Pearls Clone) */
.zigzag-section {
  padding: 100px 0;
  background: var(--dark-bg);
}
.zigzag-section.bg-light {
  background: #f8fafc;
}
.zigzag-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  margin-bottom: 120px;
}
.zigzag-row:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .zigzag-row {
    flex-direction: row;
    justify-content: space-between;
  }
  .zigzag-row.reverse {
    flex-direction: row-reverse;
  }
  .zigzag-content, .zigzag-image {
    width: 48%;
  }
}
.zigzag-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: #09090b;
  font-weight: 700;
  margin-bottom: 24px;
}
.zigzag-section.bg-dark .zigzag-content h2 {
  color: #fff;
}
.zigzag-content p {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 32px;
}
.zigzag-section.bg-dark .zigzag-content p {
  color: #a1a1aa;
}
.zigzag-features {
  list-style: none;
  padding: 0;
}
.zigzag-features li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: #334155;
}
.zigzag-section.bg-dark .zigzag-features li {
  color: #e2e8f0;
}
.zigzag-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: bold;
}
.zigzag-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  display: block;
}
