/* =====================================================================
   v2.css — Appther New Design System
   Dark-first theme matching the React site exactly
   ===================================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  --primary: #0080ff;
  --primary-dark: #0066cc;
  --primary-glow: rgba(0, 128, 255, 0.3);
  --bg-dark: #0b0e14;
  --bg-dark2: #0d1117;
  --bg-dark3: #161b22;
  --bg-card: rgba(255,255,255,0.04);
  --border-dark: rgba(255,255,255,0.07);
  --border-dark2: rgba(255,255,255,0.10);
  --text-white: #ffffff;
  --text-slate-300: #cbd5e1;
  --text-slate-400: #94a3b8;
  --text-slate-500: #64748b;
  --text-slate-900: #0f172a;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-primary: 0 10px 40px rgba(0,128,255,0.25);
  --container-max: 1280px;
  --container-pad: clamp(16px, 4vw, 64px);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Dark page base ── */
.v2-dark-page {
  background: var(--bg-dark);
  color: var(--text-white);
}
.v2-light-page {
  background: #ffffff;
  color: var(--text-slate-900);
}

/* ── Skip link ── */
.v2-skip {
  position: absolute;
  left: -9999px;
  top: 16px;
  z-index: 9999;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
}
.v2-skip:focus { left: 16px; }

/* ══════════════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════════════ */
.v2-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}
.v2-dark-page .v2-header { background: transparent; }
.v2-light-page .v2-header { background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(0,0,0,0.08); }
.v2-header.v2-header-scrolled { background: rgba(255,255,255,0.97) !important; backdrop-filter: blur(16px); box-shadow: 0 2px 20px rgba(0,0,0,0.12) !important; }
.v2-header.v2-header-scrolled .v2-nav-btn,
.v2-header.v2-header-scrolled .v2-nav-link { color: #0f172a !important; }
.v2-header.v2-header-scrolled .v2-cta-btn { background: var(--primary) !important; color: #fff !important; border-color: var(--primary) !important; }

.v2-nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  height: 72px;
  gap: 16px;
  position: relative;
}
.v2-logo { display: flex; align-items: center; flex-shrink: 0; }
.v2-logo img { height: 36px; width: auto; transition: opacity 0.2s; }

.v2-nav-links {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: 16px;
}
@media (min-width: 1024px) { .v2-nav-links { display: flex; } }

/* Nav buttons */
.v2-nav-btn, .v2-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-white);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.2s;
  white-space: nowrap;
}
.v2-dark-page .v2-nav-btn, .v2-dark-page .v2-nav-link { color: #fff; }
.v2-light-page .v2-nav-btn, .v2-light-page .v2-nav-link { color: #0f172a; }
.v2-nav-btn:hover, .v2-nav-link:hover { color: var(--primary) !important; }
.v2-chevron { transition: transform 0.2s; flex-shrink: 0; }
.v2-mega-open + * .v2-chevron,
[aria-expanded="true"] .v2-chevron { transform: rotate(180deg); }

/* AI pill */
.v2-ai-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  position: relative;
  padding: 6px 14px 6px 12px;
  margin-right: 8px;
  border-radius: 100px;
  background: #0b0b1a;
  border: 1px solid rgba(168,85,247,0.4);
  box-shadow: 0 0 20px rgba(168,85,247,0.35);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.v2-ai-pill:hover { box-shadow: 0 0 28px rgba(168,85,247,0.55); border-color: rgba(168,85,247,0.7); }
.v2-ai-halo {
  position: absolute;
  inset: -3px;
  border-radius: 100px;
  background: linear-gradient(90deg, rgba(168,85,247,0.55), rgba(217,70,239,0.45), rgba(99,102,241,0.55));
  opacity: 0.7;
  filter: blur(8px);
  pointer-events: none;
}
.v2-ai-grad {
  background: linear-gradient(90deg, #a78bfa, #22d3ee, #e879f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CTA button */
.v2-cta-btn {
  display: none;
  padding: 9px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 8px;
  border: 1.5px solid;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}
@media (min-width: 1024px) { .v2-cta-btn { display: inline-flex; align-items: center; } }
.v2-dark-page .v2-cta-btn:not(.v2-cta-solid) {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.v2-dark-page .v2-cta-btn:not(.v2-cta-solid):hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.v2-cta-solid, .v2-light-page .v2-cta-btn, .v2-header-scrolled .v2-cta-btn {
  background: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
}
.v2-cta-solid:hover, .v2-light-page .v2-cta-btn:hover { background: var(--primary-dark) !important; }

/* ── Mega menus ── */
.v2-mega-wrap { position: static; }
.v2-mega {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-8px);
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.22s;
  z-index: 999;
}
.v2-mega.v2-mega-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Services mega — 75vw centered */
.v2-services-mega {
  position: fixed !important;
  top: 72px;
  left: 50% !important;
  right: auto;
  width: 75vw !important;
  max-width: 1200px;
  border-radius: 0 0 16px 16px;
  transform: translateX(-50%) translateY(-10px);
}
.v2-services-mega.v2-mega-open { transform: translateX(-50%) translateY(0); }
.v2-mega-layout { display: flex; }

/* Left sidebar */
.v2-mega-cats {
  width: 240px;
  background: #f8fafc;
  border-right: 1px solid rgba(0,0,0,0.07);
  padding: 16px 12px;
  flex-shrink: 0;
  border-radius: 0 0 0 16px;
}
.v2-mega-title {
  font-size: 9px;
  font-weight: 700;
  color: #3b82f6;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.v2-mega-title::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 2px;
  background: linear-gradient(90deg,#3b82f6,#8b5cf6);
  border-radius: 2px;
  flex-shrink: 0;
}
.v2-cat-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: none;
  cursor: pointer;
  text-align: left;
  color: #475569;
  font-size: 12.5px;
  font-weight: 500;
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
  margin-bottom: 2px;
  line-height: 1.3;
  position: relative;
}
.v2-cat-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #64748b;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.v2-cat-label { flex: 1; }
.v2-cat-chev { color: #cbd5e1; flex-shrink: 0; transition: color 0.18s, transform 0.18s; }
.v2-cat-btn:hover,
.v2-cat-active {
  background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, rgba(99,102,241,0.07) 100%) !important;
  color: #1e40af !important;
  border-color: rgba(59,130,246,0.2) !important;
  box-shadow: 0 2px 10px rgba(59,130,246,0.08);
}
.v2-cat-active {
  border-left: 2px solid #3b82f6 !important;
  padding-left: 8px;
}
.v2-cat-btn:hover .v2-cat-icon,
.v2-cat-active .v2-cat-icon {
  background: rgba(59,130,246,0.1);
  border-color: rgba(59,130,246,0.2);
  color: #3b82f6;
}
.v2-cat-btn:hover .v2-cat-chev,
.v2-cat-active .v2-cat-chev { color: #3b82f6; transform: translateX(2px); }

/* Right content panel */
.v2-mega-services {
  flex: 1;
  padding: 16px 24px 14px;
  min-width: 0;
  overflow: hidden;
}

/* Panel header */
.v2-mega-panel-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.v2-mega-panel-hdr-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.v2-mega-panel-cat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  flex-shrink: 0;
}
.v2-mega-panel-hdr h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 2px;
  letter-spacing: -0.01em;
}
.v2-mega-panel-hdr p {
  font-size: 11.5px;
  color: #64748b;
  margin: 0;
}
.v2-mega-panel-deco {
  flex-shrink: 0;
  pointer-events: none;
}

/* 3-col grid */
.v2-mega-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 20px;
}

/* Group column */
.v2-mega-group-hdr {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.v2-mega-group-hdr-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.v2-mega-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}
.v2-mega-group-bar {
  height: 2px;
  border-radius: 1px;
  margin-bottom: 10px;
  width: 100%;
}

/* Service cards */
.v2-svc-card {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 11px;
  border-radius: 9px;
  border: 1px solid rgba(0,0,0,0.07);
  background: #fff;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, transform 0.18s, box-shadow 0.18s;
  margin-bottom: 5px;
}
.v2-svc-card:last-child { margin-bottom: 0; }
.v2-svc-card:hover {
  background: #f0f6ff;
  border-color: rgba(59,130,246,0.3);
  transform: translateX(3px);
  box-shadow: 0 2px 12px rgba(59,130,246,0.1);
}
.v2-svc-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.v2-svc-card-name {
  font-size: 12.5px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 2px;
}
.v2-svc-card-desc {
  font-size: 11px;
  color: #64748b;
  line-height: 1.35;
}

/* Bottom CTA bar */
.v2-mega-cta-bar {
  background: linear-gradient(90deg, #002fa3 0%, #0051E5 50%, #1d4ed8 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-radius: 0 0 16px 16px;
  padding: 11px 22px;
}
.v2-mega-cta-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.v2-mega-cta-rocket {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.v2-mega-cta-spark {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  flex-shrink: 0;
}
.v2-mega-cta-inner p {
  flex: 1;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.v2-mega-cta-inner strong { color: #fff; }
.v2-mega-cta-btn {
  flex-shrink: 0;
  background: #fff;
  color: #0051E5;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 7px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.v2-mega-cta-btn:hover { background: rgba(255,255,255,0.88); }

/* Keep these for any pages still referencing old helper classes */
.v2-btn-ghost-sm {
  padding: 6px 14px; border-radius: 6px; background: rgba(255,255,255,0.08);
  color: #fff; font-size: 12px; font-weight: 600; border: none; cursor: pointer;
  transition: background 0.2s; display: inline-block;
}
.v2-btn-ghost-sm:hover { background: rgba(255,255,255,0.14); }
.v2-btn-primary-sm {
  padding: 6px 16px; border-radius: 6px; background: var(--primary);
  color: #fff; font-size: 12px; font-weight: 600; border: none; cursor: pointer;
  transition: background 0.2s; display: inline-block;
}
.v2-btn-primary-sm:hover { background: var(--primary-dark); }

/* Industries mega — 30% wider */
.v2-industries-mega {
  width: min(90vw, 1120px);
  left: 0;
  border-radius: 0 0 12px 12px;
  padding: 24px 32px;
}
.v2-industries-mega.v2-mega-open { transform: translateY(0); }
.v2-ind-container { max-width: 1120px; }
.v2-ind-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid rgba(0,0,0,0.07); margin-bottom: 20px; }
.v2-ind-header-left { display: flex; align-items: center; gap: 12px; }
.v2-ind-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.18); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.v2-ind-stats { display: flex; gap: 32px; }
.v2-ind-stats div { text-align: right; }
.v2-ind-stats strong { display: block; font-size: 15px; font-weight: 700; color: #1e293b; }
.v2-ind-stats span { font-size: 10px; color: #64748b; text-transform: uppercase; letter-spacing: 0.1em; }
.v2-ind-group-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #3b82f6;
  margin-bottom: 14px;
}
.v2-ind-line { height: 1px; width: 24px; background: #3b82f6; flex-shrink: 0; }
.v2-ind-line-full { height: 1px; flex: 1; background: rgba(0,0,0,0.07); }
.v2-ind-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
@media (max-width: 1024px) { .v2-ind-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px) { .v2-ind-grid { grid-template-columns: repeat(2, 1fr); } }
.v2-ind-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.07);
  background: #fff;
  color: #334155;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
  text-decoration: none;
}
.v2-ind-card:hover { background: #f0f6ff; border-color: rgba(59,130,246,0.25); color: #1e40af; transform: translateY(-1px); }
.v2-ind-card-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.v2-ind-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding: 14px 20px;
  background: rgba(59,130,246,0.06);
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: 12px;
}
.v2-ind-cta p { font-size: 13px; color: #475569; }
.v2-ind-cta strong { color: #1e40af; }

/* Resources dropdown */
.v2-res-wrap { position: relative; }
.v2-res-wrap .v2-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 340px;
  background: #0a0e1c;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
}
.v2-res-wrap .v2-dropdown.v2-mega-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.v2-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  color: inherit;
  transition: background 0.15s;
}
.v2-dropdown-item:hover { background: rgba(255,255,255,0.05); }
.v2-dropdown-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.v2-dropdown-item strong { display: block; font-size: 13px; color: #fff; margin-bottom: 2px; }
.v2-dropdown-item p { font-size: 11px; color: #64748b; margin: 0; }
.v2-badge { margin-left: auto; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 100px; border: 1px solid; flex-shrink: 0; }
.v2-dropdown-divider { display: flex; align-items: center; gap: 8px; padding: 10px 14px 6px; }
.v2-dropdown-divider span { font-size: 9px; font-weight: 700; letter-spacing: 0.12em; color: #475569; text-transform: uppercase; white-space: nowrap; }
.v2-dropdown-divider::before { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.07); }
.v2-dropdown-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.07); }

/* ── Mobile menu ── */
.v2-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
@media (min-width: 1024px) { .v2-mobile-toggle { display: none; } }
.v2-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.v2-dark-page.v2-header-scrolled .v2-mobile-toggle span,
.v2-light-page .v2-mobile-toggle span { background: #0f172a; }
.v2-toggle-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.v2-toggle-open span:nth-child(2) { opacity: 0; }
.v2-toggle-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.v2-mobile-menu {
  display: none;
  padding: 20px var(--container-pad) 24px;
  background: rgba(10,14,28,0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.06);
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.v2-mobile-menu.v2-mobile-open { display: block; }
@media (min-width: 1024px) { .v2-mobile-menu { display: none !important; } }
.v2-mob-link {
  display: block;
  padding: 14px 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.v2-mob-link:hover { color: var(--primary); }
.v2-btn-primary-mob {
  display: block;
  margin-top: 20px;
  padding: 14px;
  text-align: center;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.v2-btn-primary-mob:hover { background: var(--primary-dark); }

/* ══════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════ */
.v2-offices {
  background: #0f172a;
  padding: 56px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.v2-offices-title { font-size: 16px; font-weight: 700; color: #fff; text-align: center; margin-bottom: 28px; letter-spacing: 0.1em; }
.v2-offices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
@media (max-width: 768px) { .v2-offices-grid { grid-template-columns: 1fr; gap: 20px; } }
.v2-office { display: flex; align-items: center; gap: 16px; justify-content: center; padding: 16px; }
.v2-office-border { border-left: 1px solid rgba(255,255,255,0.08); border-right: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 768px) { .v2-office-border { border: none; } }
.v2-office img { height: 48px; width: auto; object-fit: contain; flex-shrink: 0; }
.v2-office h3 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 6px; letter-spacing: 0.05em; }
.v2-office address { font-size: 12px; color: #94a3b8; line-height: 1.6; font-style: normal; }

.v2-footer { background: #080d1a; color: #fff; margin-top: 0; }
.v2-footer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  padding-top: 56px;
  padding-bottom: 48px;
}
@media (max-width: 1200px) { .v2-footer-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
@media (max-width: 768px) { .v2-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 640px) { .v2-footer-grid { grid-template-columns: 1fr; } }
.v2-footer-grid h3 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 20px; letter-spacing: 0.08em; }
.v2-footer-grid ul { list-style: none; }
.v2-footer-grid li { margin-bottom: 10px; }
.v2-footer-grid a { font-size: 13px; color: #94a3b8; transition: color 0.2s; }
.v2-footer-grid a:hover { color: var(--primary); }
.v2-footer-connect { }
.v2-footer-contact { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.v2-footer-contact-item { display: flex; align-items: center; gap: 12px; }
.v2-footer-contact-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.v2-footer-contact-label { font-size: 10px; color: #64748b; display: block; margin-bottom: 2px; }
.v2-footer-contact a { font-size: 13px; color: var(--primary); }
.v2-footer-social { display: flex; gap: 8px; }
.v2-social-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  color: #94a3b8;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.v2-social-icon:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.v2-footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); }
.v2-footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 28px; padding-bottom: 28px; flex-wrap: wrap; }
.v2-footer-bottom-left { display: flex; align-items: center; gap: 20px; }
.v2-footer-bottom-left img { height: 22px; width: auto; }
.v2-footer-bottom-left p { font-size: 12px; color: #64748b; }
.v2-footer-legal { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.v2-footer-legal a { font-size: 12px; color: #64748b; transition: color 0.2s; }
.v2-footer-legal a:hover { color: var(--primary); }

/* ══════════════════════════════════════════════════════════════════
   SHARED LAYOUT
══════════════════════════════════════════════════════════════════ */
.v2-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
.v2-section { padding: 96px 0; }
.v2-section-sm { padding: 64px 0; }
.v2-section-border { border-top: 1px solid var(--border-dark); }

/* Section header */
.v2-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.v2-h1 { font-size: clamp(2rem, 5vw, 4rem); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }
.v2-h2 { font-size: clamp(1.75rem, 3vw, 3rem); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
.v2-h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 700; line-height: 1.25; }
.v2-grad-text {
  background: linear-gradient(135deg, var(--primary), #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.v2-lead { font-size: clamp(1rem, 1.5vw, 1.2rem); color: #94a3b8; line-height: 1.7; }
.v2-text { font-size: 14px; color: #94a3b8; line-height: 1.7; }

/* ── Cards ── */
.v2-card {
  background: var(--bg-dark2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s;
}
.v2-card:hover { border-color: rgba(0,128,255,0.3); }
.v2-glass-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

/* ── Grids ── */
.v2-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.v2-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.v2-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
@media (max-width: 1024px) { .v2-grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px) {
  .v2-grid-2, .v2-grid-3, .v2-grid-4 { grid-template-columns: 1fr; }
}

/* ── Buttons ── */
.v2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.v2-btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-primary); }
.v2-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.v2-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.05); }

/* ── Stats bar ── */
.v2-stats-bar { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
@media (max-width: 768px) { .v2-stats-bar { grid-template-columns: repeat(2,1fr); } }
.v2-stat { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 24px; text-align: center; }
.v2-stat-value { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; color: #fff; }
.v2-stat-label { font-size: 11px; color: #64748b; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ── Decorative ── */
.v2-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.v2-grid-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.v2-timeline-line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
}

/* ── Reveal animations ── */
.v2-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.v2-revealed { opacity: 1 !important; transform: none !important; }

/* ── FAQ ── */
.v2-faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.v2-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
}
.v2-faq-icon { width: 24px; height: 24px; border-radius: 6px; background: rgba(0,128,255,0.1); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.v2-faq-icon::after { content: '+'; font-size: 16px; color: var(--primary); font-weight: 700; }
.v2-faq-open .v2-faq-icon { background: var(--primary); }
.v2-faq-open .v2-faq-icon::after { content: '−'; color: #fff; }
.v2-faq-a { display: none; padding-bottom: 20px; color: #94a3b8; font-size: 14px; line-height: 1.7; }
.v2-faq-open .v2-faq-a { display: block; }

/* ── Contact form (light) ── */
.v2-form-card {
  background: #fff;
  border: 2px solid rgba(0,128,255,0.15);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
@media (max-width: 640px) { .v2-form-card { padding: 28px 20px; } }
.v2-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: #0f172a;
  transition: border-color 0.2s;
  outline: none;
}
.v2-input:focus { border-color: var(--primary); }
.v2-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: #0f172a;
  resize: vertical;
  min-height: 120px;
  outline: none;
  transition: border-color 0.2s;
}
.v2-textarea:focus { border-color: var(--primary); }
.v2-label-text { display: block; font-size: 13px; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.v2-form-btn {
  width: 100%;
  height: 56px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}
.v2-form-btn:hover { background: var(--primary-dark); }
.v2-form-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── Hero ── */
.v2-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.v2-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,128,255,0.1);
  border: 1px solid rgba(0,128,255,0.25);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 28px;
}
.v2-pulse { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; animation: v2-pulse 2s infinite; }
@keyframes v2-pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

/* ── Testimonials ── */
.v2-testi-card {
  background: var(--bg-dark2);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.3s;
}
.v2-testi-card:hover { border-color: rgba(0,128,255,0.3); }
.v2-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.v2-star { color: #f59e0b; font-size: 14px; }
.v2-quote-mark { font-size: 40px; color: rgba(0,128,255,0.2); line-height: 1; margin-bottom: 12px; }
.v2-testi-text { font-size: 13px; color: #94a3b8; line-height: 1.7; flex: 1; margin-bottom: 20px; }
.v2-testi-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 16px; }
.v2-testi-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(0,128,255,0.2); }
.v2-testi-name { font-size: 13px; font-weight: 600; color: #fff; }
.v2-testi-role { font-size: 11px; color: #64748b; }

/* ── Tech marquee ── */
.v2-marquee-wrap { overflow: hidden; }
.v2-marquee { display: flex; gap: 12px; animation: v2-marquee 30s linear infinite; width: max-content; }
.v2-marquee-rev { animation-direction: reverse; }
.v2-marquee:hover { animation-play-state: paused; }
@keyframes v2-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.v2-tech-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: #cbd5e1;
  white-space: nowrap;
}

/* ── Process steps ── */
.v2-process { display: flex; gap: 0; position: relative; }
.v2-process::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,128,255,0.3) 20%, rgba(0,128,255,0.3) 80%, transparent);
}
@media (max-width: 768px) { .v2-process { flex-direction: column; gap: 24px; } .v2-process::before { display: none; } }
.v2-process-step { flex: 1; padding: 0 16px; text-align: center; position: relative; }
.v2-step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 18px; font-weight: 600; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; position: relative; z-index: 1; }
.v2-step-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.v2-step-desc { font-size: 12px; color: #64748b; line-height: 1.5; }

/* ── Value cards ── */
.v2-value-card {
  background: var(--bg-dark2);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.v2-value-card:hover { border-color: rgba(0,128,255,0.35); }
.v2-value-icon { width: 48px; height: 48px; background: rgba(0,128,255,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; transition: background 0.3s; }
.v2-value-card:hover .v2-value-icon { background: rgba(0,128,255,0.2); }
.v2-value-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.v2-value-desc { font-size: 13px; color: #64748b; line-height: 1.7; }

/* ── CTA banner ── */
.v2-cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
}
.v2-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,128,255,0.1), transparent, rgba(139,92,246,0.08));
}

/* ── Timeline ── */
.v2-timeline { position: relative; max-width: 900px; margin: 0 auto; }
.v2-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1) 10%, rgba(255,255,255,0.1) 90%, transparent);
  transform: translateX(-50%);
}
@media (max-width: 768px) { .v2-timeline::before { left: 20px; } }
.v2-tl-item { display: flex; gap: 0; margin-bottom: 32px; position: relative; }
.v2-tl-item:nth-child(even) { flex-direction: row-reverse; }
@media (max-width: 768px) { .v2-tl-item, .v2-tl-item:nth-child(even) { flex-direction: row; padding-left: 48px; } }
.v2-tl-card {
  width: calc(50% - 48px);
  background: var(--bg-dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px;
}
@media (max-width: 768px) { .v2-tl-card { width: 100%; } }
.v2-tl-dot {
  position: absolute;
  left: 50%;
  top: 24px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid var(--bg-dark);
  transform: translateX(-50%);
  z-index: 1;
}
@media (max-width: 768px) { .v2-tl-dot { left: 20px; } }

/* ── Portfolio grid ── */
.v2-portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1024px) { .v2-portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .v2-portfolio-grid { grid-template-columns: 1fr; } }
.v2-portfolio-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-dark2);
  border: 1px solid var(--border-dark);
}
.v2-portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.v2-portfolio-card:hover img { transform: scale(1.05); }
.v2-portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}
.v2-portfolio-card:hover .v2-portfolio-overlay { opacity: 1; }

/* ── Hire page hero ── */
.v2-hire-hero { background: linear-gradient(135deg, #0b0e14 0%, #0f172a 100%); }

/* ── Chips/tags ── */
.v2-chip {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: #94a3b8;
  transition: border-color 0.2s;
}
.v2-chip:hover { border-color: rgba(0,128,255,0.4); color: #fff; }

/* ── Scroll to top ── */
.v2-scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 100;
  box-shadow: var(--shadow-primary);
  transition: background 0.2s;
}
.v2-scroll-top.visible { display: flex; }
.v2-scroll-top:hover { background: var(--primary-dark); }


/* ════════════════════════════════════════════════════════════════
   INDUSTRY PAGES — shared styles (merged from industry-pages.css)
════════════════════════════════════════════════════════════════ */
/* ─── Shared Industry Page Styles ─────────────────────────────────── */
:root { --bg: #0B0E14; --primary: #0080ff; }
body { background: var(--bg); color: #fff; }

/* HERO */
.ind-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 24px 80px; overflow: hidden;
}
.ind-hero-glow {
  position: fixed; pointer-events: none; z-index: 0;
  inset: 0; overflow: hidden;
}
.ind-hero-glow::before {
  content: ''; position: absolute; top: 10%; left: 5%;
  width: 128px; height: 128px; background: rgba(0,128,255,.2);
  border-radius: 50%; filter: blur(40px);
  animation: glow-pulse 4s ease-in-out infinite;
}
.ind-hero-glow::after {
  content: ''; position: absolute; top: 40%; right: 10%;
  width: 256px; height: 256px; background: rgba(0,128,255,.1);
  border-radius: 50%; filter: blur(120px);
  animation: glow-pulse 5s ease-in-out infinite 1s;
}
@keyframes glow-pulse { 0%,100%{opacity:1} 50%{opacity:.5} }
.ind-hero-card {
  position: relative; z-index: 10;
  background: rgba(255,255,255,.03); backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.1); border-radius: 40px;
  padding: clamp(32px, 6vw, 80px); text-align: center;
  max-width: 1000px; width: 100%;
  box-shadow: 0 40px 80px rgba(0,0,0,.4);
}
.ind-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 20px; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: var(--primary); font-size: 11px; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase; margin-bottom: 32px;
}
.ind-badge-dot { position: relative; width: 8px; height: 8px; }
.ind-badge-dot::before, .ind-badge-dot::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--primary);
}
.ind-badge-dot::before { animation: ping 1.5s ease-in-out infinite; opacity: .75; }
@keyframes ping { 0%{transform:scale(1);opacity:.75} 100%{transform:scale(2);opacity:0} }
.ind-hero-card h1 {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 600;
  line-height: 1.1; color: #fff; margin: 0 0 24px;
}
.ind-hero-card h1 span { color: var(--primary); }
.ind-hero-card p { color: #94a3b8; font-size: clamp(16px,2vw,20px); line-height: 1.7; margin: 0 0 48px; max-width: 720px; margin-left: auto; margin-right: auto; }
.ind-hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.ind-btn-primary {
  padding: 14px 40px; background: var(--primary);
  color: #fff; font-size: 14px; font-weight: 700;
  border-radius: 999px; border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,128,255,.4); transition: transform .2s;
}
.ind-btn-primary:hover { transform: scale(1.05); }
.ind-btn-outline {
  padding: 14px 40px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: #fff; font-size: 14px; font-weight: 700;
  border-radius: 999px; cursor: pointer; text-decoration: none; transition: background .2s;
}
.ind-btn-outline:hover { background: rgba(255,255,255,.1); }

/* SECTION WRAPPER */
.ind-section { padding: 80px 24px; }
.ind-section.alt { background: rgba(255,255,255,.02); border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); }
.ind-section-inner { max-width: 1200px; margin: 0 auto; }
.ind-section-hdr { margin-bottom: 56px; }
.ind-section-hdr h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; color: #fff; margin: 0 0 16px; }
.ind-section-hdr h2 span { color: var(--primary); }
.ind-section-hdr h2 em { font-style: italic; color: var(--primary); }
.ind-section-hdr p { color: #64748b; font-size: 16px; line-height: 1.7; max-width: 640px; margin: 0; }
.ind-section-hdr .bar { width: 96px; height: 6px; border-radius: 999px; background: var(--primary); margin-top: 20px; }
.ind-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .4em; text-transform: uppercase; color: var(--primary); margin-bottom: 24px; }

/* CHALLENGE 2-COL */
.ind-challenge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 80px; }
.ind-challenge-label { font-size: 11px; font-weight: 500; letter-spacing: .4em; text-transform: uppercase; color: var(--primary); margin-bottom: 24px; }
.ind-challenge-grid h3 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; line-height: 1.15; color: #fff; margin: 0 0 24px; }
.ind-challenge-grid .sub { color: #64748b; font-weight: 600; margin-bottom: 16px; }
.ind-challenge-grid .desc { color: #94a3b8; font-size: 17px; line-height: 1.7; margin-bottom: 40px; }
.ind-challenge-items { display: flex; flex-direction: column; gap: 20px; }
.ind-challenge-item { display: flex; align-items: center; gap: 20px; }
.ind-challenge-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 50%;
  background: rgba(0,128,255,.1); display: flex; align-items: center; justify-content: center;
  font-size: 22px; transition: background .3s;
}
.ind-challenge-item:hover .ind-challenge-icon { background: var(--primary); }
.ind-challenge-item span { color: #cbd5e1; font-size: 17px; font-weight: 600; }
.ind-stats-card {
  background: rgba(255,255,255,.03); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1); border-radius: 40px; padding: 32px;
}
.ind-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ind-stat { text-align: center; padding: 16px; }
.ind-stat strong { font-size: clamp(1.8rem, 4vw, 2.2rem); font-weight: 700; color: var(--primary); display: block; }
.ind-stat span { font-size: 13px; color: #94a3b8; }

/* 4-COL FEATURES GRID */
.ind-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ind-feature-card {
  background: rgba(255,255,255,.03); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 28px; padding: 32px;
  transition: border-color .5s, transform .3s;
}
.ind-feature-card:hover { border-color: rgba(0,128,255,.5); transform: translateY(-4px); }
.ind-feature-icon {
  width: 56px; height: 56px; border-radius: 18px;
  background: rgba(0,128,255,.1); display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 24px; transition: transform .3s;
}
.ind-feature-card:hover .ind-feature-icon { transform: scale(1.1); }
.ind-feature-card h4 { font-size: 18px; font-weight: 700; color: #fff; margin: 0 0 12px; }
.ind-feature-card p { color: #94a3b8; font-size: 14px; line-height: 1.6; margin: 0; }

/* 3-COL SERVICES */
.ind-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.ind-service-card {
  background: rgba(255,255,255,.03); backdrop-filter: blur(16px);
  border: 1px solid rgba(0,128,255,.2); border-radius: 40px;
  padding: 40px; transition: border-color .5s;
}
.ind-service-card:hover { border-color: var(--primary); }
.ind-service-icon { width: 64px; height: 64px; background: rgba(0,128,255,.2); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 30px; margin-bottom: 32px; }
.ind-service-card h4 { font-size: 22px; font-weight: 700; color: #fff; margin: 0 0 16px; }
.ind-service-card p { color: #94a3b8; line-height: 1.7; margin: 0; }

/* PROCESS STEPS 3-COL */
.ind-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.ind-process-card {
  background: rgba(255,255,255,.03); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.05); border-radius: 40px;
  padding: 48px; position: relative; overflow: hidden;
  transition: border-color .5s;
}
.ind-process-card:hover { border-color: rgba(0,128,255,.3); }
.ind-process-num {
  position: absolute; top: 32px; right: 32px;
  font-size: 72px; font-weight: 700; color: rgba(255,255,255,.04);
  line-height: 1; transition: color .3s;
}
.ind-process-card:hover .ind-process-num { color: rgba(0,128,255,.15); }
.ind-process-card h4 { font-size: 24px; font-weight: 600; color: #fff; margin: 0 0 24px; }
.ind-process-card p { color: #94a3b8; font-size: 17px; line-height: 1.7; margin: 0; }

/* DO'S & DON'TS */
.ind-blueprint-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.ind-dos, .ind-donts {
  background: rgba(255,255,255,.03); backdrop-filter: blur(16px);
  border-radius: 40px; padding: 48px;
}
.ind-dos { border: 1px solid rgba(34,197,94,.1); }
.ind-donts { border: 1px solid rgba(239,68,68,.1); }
.ind-dos-hdr { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; color: #4ade80; font-size: 28px; font-weight: 600; }
.ind-donts-hdr { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; color: #f87171; font-size: 28px; font-weight: 600; }
.ind-blueprint-items { display: flex; flex-direction: column; gap: 32px; }
.ind-blueprint-item { display: flex; gap: 24px; }
.ind-blueprint-bar-green { width: 4px; background: rgba(34,197,94,.3); border-radius: 999px; min-height: 48px; flex-shrink: 0; }
.ind-blueprint-bar-red { width: 4px; background: rgba(239,68,68,.3); border-radius: 999px; min-height: 48px; flex-shrink: 0; }
.ind-blueprint-item h5 { font-size: 19px; font-weight: 600; color: #fff; margin: 0 0 8px; }
.ind-blueprint-item p { color: #94a3b8; line-height: 1.6; margin: 0; }

/* CTA BAR */
.ind-cta-bar { padding: 48px 24px; background: linear-gradient(to right, var(--primary), #2563eb); }
.ind-cta-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.ind-cta-bar h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 600; color: #fff; margin: 0; }
.ind-cta-bar-btn {
  background: #fff; color: var(--primary); font-size: 14px; font-weight: 700;
  padding: 14px 32px; border-radius: 999px; border: none; cursor: pointer;
  text-decoration: none; white-space: nowrap; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.ind-cta-bar-btn:hover { transform: scale(1.05); }

/* FAQ */
.ind-faq { max-width: 960px; margin: 0 auto; }
.ind-faq-item {
  border: 1px solid rgba(255,255,255,.08); border-radius: 18px; overflow: hidden;
  background: rgba(255,255,255,.03); margin-bottom: 12px;
}
.ind-faq-q {
  width: 100%; background: none; border: none;
  padding: 20px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; text-align: left; transition: border-color .3s;
}
.ind-faq-q:hover { background: rgba(255,255,255,.02); }
.ind-faq-q span { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.4; }
.ind-faq-arrow { flex-shrink: 0; font-size: 20px; color: #94a3b8; transition: transform .3s; }
.ind-faq-item.open .ind-faq-arrow { transform: rotate(90deg); color: var(--primary); }
.ind-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; padding: 0 28px; font-size: 14px; color: #94a3b8; line-height: 1.7; }
.ind-faq-item.open .ind-faq-a { max-height: 300px; padding: 0 28px 20px; }

/* BOTTOM CTA */
.ind-bottom-cta-wrap { padding: 80px 24px; }
.ind-bottom-cta {
  max-width: 900px; margin: 0 auto; text-align: center;
  background: linear-gradient(135deg, #161b22, #1a1f29);
  border: 1px solid rgba(0,128,255,.12); border-radius: 28px; padding: 64px 40px;
  position: relative; overflow: hidden;
}
.ind-bottom-cta::before {
  content: ''; position: absolute; top: -48px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 96px; border-radius: 50%;
  background: rgba(0,128,255,.2); filter: blur(40px);
}
.ind-bottom-cta h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; color: #fff; text-transform: uppercase; margin: 0 0 16px; }
.ind-bottom-cta h2 span { color: var(--primary); }
.ind-bottom-cta p { color: #94a3b8; max-width: 480px; margin: 0 auto 36px; line-height: 1.7; }

/* RESPONSIVE — Industry */
@media (max-width: 1024px) {
  .ind-features-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-challenge-grid { grid-template-columns: 1fr; gap: 40px; }
  .ind-stats-card { display: none; }
}
@media (max-width: 768px) {
  .ind-services-grid { grid-template-columns: 1fr; }
  .ind-process-grid { grid-template-columns: 1fr; }
  .ind-blueprint-grid { grid-template-columns: 1fr; }
  .ind-cta-bar-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .ind-features-grid { grid-template-columns: 1fr; }
  .ind-hero { padding: 100px 16px 60px; }
}


/* ════════════════════════════════════════════════════════════════
   HIRE PAGES — shared styles (merged from hire-pages.css)
════════════════════════════════════════════════════════════════ */
.hire-page { font-family:'Montserrat',sans-serif; color:#fff }
.hc { max-width:1280px; margin:0 auto; padding:0 24px }
@media(min-width:640px){ .hc { padding:0 40px } }
.hire-hero { position:relative; min-height:100vh; display:flex; align-items:center; justify-content:center; background-size:cover; background-position:center; overflow:hidden }
.hire-hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(0,0,0,.82) 0%,rgba(2,10,30,.72) 50%,rgba(0,0,0,.55) 100%) }
.hire-hero-grid { position:absolute; inset:0; opacity:.04; pointer-events:none; background-image:linear-gradient(rgba(255,255,255,.5) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.5) 1px,transparent 1px); background-size:40px 40px }
.hire-hero-glow1 { position:absolute; top:20%; left:20%; width:700px; height:700px; background:rgba(0,128,255,.18); border-radius:50%; filter:blur(130px); pointer-events:none }
.hire-hero-glow2 { position:absolute; bottom:20%; right:20%; width:500px; height:500px; background:rgba(139,92,246,.13); border-radius:50%; filter:blur(130px); pointer-events:none }
.hire-hero-inner { position:relative; z-index:10; max-width:940px; margin:0 auto; text-align:center; padding:120px 24px 80px }
.hire-trust-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(0,128,255,.12); border:1px solid rgba(0,128,255,.35); backdrop-filter:blur(10px); border-radius:999px; padding:9px 22px; margin-bottom:36px; font-size:13px; font-weight:700; color:#60a5fa; letter-spacing:.04em }
.hire-trust-badge .dot { width:8px; height:8px; border-radius:50%; background:#4ade80; animation:pulse 2s infinite; flex-shrink:0 }
@keyframes pulse { 0%,100%{ opacity:1; transform:scale(1) } 50%{ opacity:.5; transform:scale(1.2) } }
.hire-hero h1 { font-size:clamp(2.2rem,5.5vw,4.2rem); font-weight:700; line-height:1.08; margin-bottom:28px; letter-spacing:-.02em }
.hire-hero h1 .grad { background:linear-gradient(90deg,#0080ff,#60a5fa,#22d3ee); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text }
.hire-hero-sub { font-size:clamp(1rem,2vw,1.2rem); color:#cbd5e1; max-width:780px; margin:0 auto 44px; line-height:1.75 }
.hire-tech-pills { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:10px; margin-bottom:44px }
.hire-tech-pill { display:flex; align-items:center; gap:8px; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.14); backdrop-filter:blur(10px); border-radius:999px; padding:8px 18px; font-size:13px; font-weight:600; color:#e2e8f0; transition:all .2s }
.hire-tech-pill:hover { background:rgba(0,128,255,.15); border-color:rgba(0,128,255,.4) }
.hire-tech-pill img { width:18px; height:18px; object-fit:contain }
.hire-cta-row { display:flex; flex-wrap:wrap; gap:16px; justify-content:center; margin-bottom:52px }
.hire-btn-primary { display:inline-flex; align-items:center; gap:8px; padding:16px 36px; border-radius:999px; background:linear-gradient(135deg,#0080ff,#0055cc); color:#fff; font-weight:700; font-size:16px; text-decoration:none; border:none; cursor:pointer; box-shadow:0 8px 32px rgba(0,128,255,.35); transition:all .25s }
.hire-btn-primary:hover { transform:translateY(-2px) scale(1.02); box-shadow:0 12px 40px rgba(0,128,255,.5) }
.hire-btn-secondary { display:inline-flex; align-items:center; gap:8px; padding:16px 36px; border-radius:999px; border:1px solid rgba(255,255,255,.22); color:#fff; font-weight:600; font-size:16px; text-decoration:none; background:rgba(255,255,255,.05); backdrop-filter:blur(10px); cursor:pointer; transition:all .2s }
.hire-btn-secondary:hover { background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.4) }
.hire-stats-strip { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:40px 56px; margin-bottom:44px }
.hire-stat { text-align:center }
.hire-stat-val { font-size:clamp(1.6rem,3vw,2.1rem); font-weight:700; color:#fff }
.hire-stat-label { font-size:11px; color:#64748b; margin-top:3px; text-transform:uppercase; letter-spacing:.12em; font-weight:600 }
.hire-trust-row { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:12px 28px; font-size:13px; color:#94a3b8 }
.hire-trust-item { display:flex; align-items:center; gap:6px }
.hire-trust-item svg { color:#0080ff }
.hire-trust-div { color:#334155 }
.hire-stars span { color:#facc15; font-size:14px }
.trusted-sec { padding:80px 0; background:#050b15; border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06); position:relative; overflow:hidden }
.trusted-sec .grid-bg { position:absolute; inset:0; opacity:.025; pointer-events:none; background-image:linear-gradient(rgba(255,255,255,.5) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.5) 1px,transparent 1px); background-size:40px 40px }
.trusted-sec .glow { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:600px; height:200px; background:rgba(0,128,255,.1); border-radius:50%; filter:blur(80px); pointer-events:none }
.trusted-stats { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:16px 56px; margin-bottom:56px }
.trusted-stat-val { font-size:1.6rem; font-weight:700; color:#fff }
.trusted-stat-lbl { font-size:11px; color:#64748b; margin-top:2px; text-transform:uppercase; letter-spacing:.12em }
.marquee-wrap { position:relative; overflow:hidden }
.marquee-fade-l { position:absolute; left:0; top:0; height:100%; width:96px; background:linear-gradient(to right,#050b15,transparent); z-index:10; pointer-events:none }
.marquee-fade-r { position:absolute; right:0; top:0; height:100%; width:96px; background:linear-gradient(to left,#050b15,transparent); z-index:10; pointer-events:none }
.marquee-track { display:flex; gap:24px; animation:marquee 28s linear infinite; width:max-content }
.marquee-track:hover { animation-play-state:paused }
@keyframes marquee { 0%{ transform:translateX(0) } 100%{ transform:translateX(-50%) } }
.marquee-logo { flex-shrink:0; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.07); border-radius:16px; padding:24px 40px; min-width:160px; transition:all .3s; cursor:default }
.marquee-logo:hover { background:rgba(255,255,255,.07); border-color:rgba(0,128,255,.3) }
.marquee-logo img { max-height:40px; max-width:120px; object-fit:contain; filter:brightness(0) invert(1); opacity:.45; transition:all .4s }
.marquee-logo:hover img { opacity:1; filter:none }
.dev-cards-sec { padding:96px 0; position:relative; overflow:hidden; background-image:url('../lovable-uploads/b7590f2c-28d1-4cbf-bfc7-01b699c7418f.png'); background-size:cover; background-position:center }
.dev-cards-overlay { position:absolute; inset:0; background:rgba(2,8,22,.75) }
.dev-cards-inner { position:relative; z-index:10 }
.dev-cards-hdr { margin-bottom:64px }
.dev-cards-hdr h2 { font-size:clamp(1.8rem,4vw,2.8rem); font-weight:600; margin-bottom:16px; color:#fff }
.dev-cards-hdr h2 span { background:linear-gradient(90deg,#0080ff,#22d3ee); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text }
.dev-cards-hdr p { font-size:1.1rem; color:rgba(255,255,255,.75); max-width:680px; line-height:1.7 }
.dev-cards-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:28px }
.dev-card { background:rgba(255,255,255,.96); border-radius:20px; padding:32px; color:#111; transition:transform .3s,box-shadow .3s }
.dev-card:hover { transform:translateY(-6px); box-shadow:0 24px 56px rgba(0,0,0,.35) }
.dev-card-icon { width:60px; height:60px; background:#eff6ff; border-radius:16px; display:flex; align-items:center; justify-content:center; margin-bottom:20px }
.dev-card-icon svg { width:30px; height:30px; color:#2463eb }
.dev-card h3 { font-size:1.15rem; font-weight:600; color:#111827; margin-bottom:12px }
.dev-card-tags { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:14px }
.dev-card-tag { font-size:11px; background:#f0f4ff; color:#2563eb; border-radius:999px; padding:4px 10px; font-weight:600 }
.dev-card-desc { font-size:13.5px; color:#6b7280; line-height:1.65; margin-bottom:16px }
.dev-card-pricing { background:#f8faff; border:1px solid #e0eaff; border-radius:12px; padding:14px; margin-bottom:16px }
.dev-card-pricing .from { font-size:11px; color:#6b7280; margin-bottom:4px; text-transform:uppercase; letter-spacing:.06em }
.dev-card-price-row { display:flex; align-items:baseline; gap:12px }
.dev-card-hr { font-size:1.5rem; font-weight:600; color:#111827 }
.dev-card-hr span { font-size:12px; font-weight:400; color:#6b7280 }
.dev-card-mo { font-size:.9rem; color:#9ca3af }
.dev-card-hire-btn { display:block; width:100%; text-align:center; padding:13px; background:linear-gradient(135deg,#2463eb,#1d4ed8); color:#fff; border-radius:10px; font-weight:700; font-size:14px; text-decoration:none; border:none; cursor:pointer; transition:all .2s; letter-spacing:.03em }
.dev-card-hire-btn:hover { background:linear-gradient(135deg,#1d4ed8,#1e40af); box-shadow:0 8px 24px rgba(37,99,235,.35) }
.security-sec { padding:56px 0; background:#030a18 }
.security-banner { max-width:1176px; margin:0 auto; border-radius:20px; overflow:hidden; display:flex; flex-direction:column; background:linear-gradient(135deg,#1d4ed8,#0080ff); box-shadow:0 20px 60px rgba(0,128,255,.25) }
@media(min-width:640px){ .security-banner { flex-direction:row } }
.security-content { flex:1; padding:48px; display:flex; flex-direction:column; justify-content:center }
.security-content h2 { font-size:clamp(1.5rem,3vw,2.1rem); font-weight:600; color:#fff; margin-bottom:14px; line-height:1.25 }
.security-content p { color:rgba(255,255,255,.88); font-size:15px; margin-bottom:24px; line-height:1.65 }
.security-btn { display:inline-flex; align-items:center; gap:8px; background:#fff; color:#1d4ed8; padding:13px 28px; border-radius:10px; font-weight:700; font-size:14px; text-decoration:none; border:none; cursor:pointer; width:fit-content; transition:all .2s }
.security-btn:hover { background:#f0f4ff; box-shadow:0 6px 20px rgba(0,0,0,.15) }
.security-img { width:100%; flex-shrink:0 }
@media(min-width:640px){ .security-img { width:30% } }
.security-img img { width:100%; height:100%; object-fit:cover }
.flex-hire-sec { padding:96px 0; background:linear-gradient(180deg,#060f20 0%,#080d1a 100%); position:relative; overflow:hidden }
.flex-hire-sec::before { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(0,128,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(0,128,255,.025) 1px,transparent 1px); background-size:48px 48px; pointer-events:none }
.flex-hire-hdr { max-width:700px; margin-bottom:72px; position:relative; z-index:2 }
.flex-hire-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(0,128,255,.12); border:1px solid rgba(0,128,255,.3); color:#60a5fa; padding:8px 18px; border-radius:999px; font-size:13px; font-weight:600; margin-bottom:24px }
.flex-hire-hdr h2 { font-size:clamp(1.7rem,3.5vw,2.5rem); font-weight:600; color:#fff; margin-bottom:20px; line-height:1.2 }
.flex-hire-hdr h2 span { background:linear-gradient(90deg,#0080ff,#22d3ee); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text }
.flex-hire-hdr p { font-size:17px; color:#94a3b8; line-height:1.75 }
.pricing-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(290px,1fr)); gap:28px; max-width:1200px; margin:0 auto 72px; position:relative; z-index:2 }
.pricing-card { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:20px; padding:36px; display:flex; flex-direction:column; position:relative; transition:all .3s; backdrop-filter:blur(8px) }
.pricing-card:hover:not(.popular) { border-color:rgba(0,128,255,.3); background:rgba(0,128,255,.06); transform:translateY(-4px); box-shadow:0 16px 48px rgba(0,0,0,.4) }
.pricing-card.popular { border:2px solid #0080ff; background:rgba(0,128,255,.08); box-shadow:0 12px 40px rgba(0,128,255,.2) }
.popular-badge { position:absolute; top:-15px; left:50%; transform:translateX(-50%); background:linear-gradient(135deg,#0080ff,#0055cc); color:#fff; padding:6px 20px; border-radius:999px; font-size:13px; font-weight:700; box-shadow:0 6px 20px rgba(0,128,255,.45); white-space:nowrap; letter-spacing:.02em }
.pricing-card-hdr { display:flex; align-items:center; justify-content:space-between; margin-bottom:28px }
.pricing-icon-wrap { display:flex; align-items:center; gap:14px }
.pricing-icon { width:48px; height:48px; background:rgba(0,128,255,.15); border:1px solid rgba(0,128,255,.25); border-radius:14px; display:flex; align-items:center; justify-content:center }
.pricing-icon svg { width:24px; height:24px; color:#60a5fa }
.pricing-title { font-size:1.2rem; font-weight:600; color:#fff }
.pricing-badge-sm { font-size:10px; background:rgba(255,255,255,.08); color:#94a3b8; border-radius:999px; padding:3px 10px; margin-top:4px; display:inline-block; letter-spacing:.05em }
.pricing-save { font-size:11px; background:rgba(74,222,128,.1); color:#4ade80; border:1px solid rgba(74,222,128,.25); padding:4px 12px; border-radius:999px; font-weight:700; letter-spacing:.03em }
.pricing-amount { margin-bottom:6px }
.pricing-amount .price { font-size:2.4rem; font-weight:700; color:#fff }
.pricing-amount .period { color:#64748b; font-size:14px; margin-left:2px }
.pricing-amount .original { color:#475569; text-decoration:line-through; font-size:1rem; margin-left:10px }
.pricing-note { font-size:12px; color:#64748b; margin-bottom:16px; letter-spacing:.03em }
.pricing-desc { font-size:14px; color:#94a3b8; margin-bottom:28px; line-height:1.65 }
.pricing-features { list-style:none; padding:0; margin:0 0 36px; flex-grow:1; display:flex; flex-direction:column; gap:12px }
.pricing-features li { display:flex; align-items:flex-start; gap:10px; font-size:13px; color:#cbd5e1 }
.pricing-features li svg { width:16px; height:16px; color:#4ade80; flex-shrink:0; margin-top:2px }
.pricing-cta-btn { display:block; width:100%; text-align:center; padding:15px; border-radius:12px; font-weight:700; font-size:14px; cursor:pointer; text-decoration:none; transition:all .2s; border:2px solid #0080ff; letter-spacing:.03em }
.pricing-cta-btn.solid { background:linear-gradient(135deg,#0080ff,#0055cc); color:#fff; border-color:transparent; box-shadow:0 8px 24px rgba(0,128,255,.3) }
.pricing-cta-btn.solid:hover { box-shadow:0 12px 32px rgba(0,128,255,.5); transform:translateY(-2px) }
.pricing-cta-btn.outline { background:transparent; color:#60a5fa }
.pricing-cta-btn.outline:hover { background:rgba(0,128,255,.1) }
.pricing-money-note { text-align:center; margin-top:14px; font-size:11px; color:#64748b; display:flex; align-items:center; justify-content:center; gap:4px }
.pricing-bottom-cta { max-width:1176px; margin:0 auto; border-radius:24px; overflow:hidden; background:linear-gradient(135deg,#0d1628,#1a2340); border:1px solid rgba(255,255,255,.08); position:relative; z-index:2 }
.pricing-bottom-inner { display:flex; flex-direction:column }
@media(min-width:1024px){ .pricing-bottom-inner { flex-direction:row; align-items:center } }
.pricing-bottom-content { flex:1; padding:56px }
.pricing-bottom-content h2 { font-size:clamp(1.5rem,3vw,2.1rem); font-weight:600; color:#fff; margin-bottom:16px; line-height:1.25 }
.pricing-bottom-content p { color:#94a3b8; font-size:16px; margin-bottom:36px; line-height:1.7 }
.pricing-bottom-btn { display:inline-flex; align-items:center; gap:8px; background:linear-gradient(135deg,#0080ff,#0055cc); color:#fff; padding:16px 36px; border-radius:12px; font-weight:700; font-size:16px; text-decoration:none; transition:all .2s; cursor:pointer; border:none; box-shadow:0 8px 24px rgba(0,128,255,.3) }
.pricing-bottom-btn:hover { transform:translateY(-2px); box-shadow:0 12px 36px rgba(0,128,255,.5) }
.pricing-bottom-img { width:100%; flex-shrink:0 }
@media(min-width:1024px){ .pricing-bottom-img { width:467px; height:312px } }
.pricing-bottom-img img { width:100%; height:100%; object-fit:cover }
.top-ai-sec { padding:96px 0; background:linear-gradient(180deg,#080d1a 0%,#060f20 100%); border-top:1px solid rgba(255,255,255,.05) }
.top-ai-hdr { text-align:center; margin-bottom:80px }
.top-ai-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(0,128,255,.12); border:1px solid rgba(0,128,255,.3); color:#60a5fa; padding:8px 18px; border-radius:999px; font-size:13px; font-weight:600; margin-bottom:24px }
.top-ai-hdr h2 { font-size:clamp(1.8rem,4vw,2.8rem); font-weight:600; color:#fff; margin-bottom:20px; line-height:1.2 }
.top-ai-hdr p { font-size:1.1rem; color:#94a3b8; max-width:800px; margin:0 auto; line-height:1.75 }
.ai-cards-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:28px; max-width:1200px; margin:0 auto 72px }
.ai-card { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:20px; padding:32px; transition:all .3s; position:relative; overflow:hidden; backdrop-filter:blur(8px) }
.ai-card::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg,#0080ff,#22d3ee); opacity:0; transition:opacity .3s }
.ai-card:hover { transform:translateY(-6px); border-color:rgba(0,128,255,.3); box-shadow:0 20px 56px rgba(0,0,0,.5); background:rgba(0,128,255,.06) }
.ai-card:hover::before { opacity:1 }
.ai-card-top { display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:24px }
.ai-card-icon { width:60px; height:60px; background:rgba(0,128,255,.15); border:1px solid rgba(0,128,255,.25); border-radius:16px; display:flex; align-items:center; justify-content:center }
.ai-card-icon svg { width:30px; height:30px; color:#60a5fa }
.ai-rating { display:flex; align-items:center; gap:4px; background:rgba(250,204,21,.1); border:1px solid rgba(250,204,21,.2); padding:6px 12px; border-radius:999px }
.ai-rating svg { width:14px; height:14px; fill:#facc15 }
.ai-rating span { font-size:13px; font-weight:700; color:#fde68a }
.ai-card h3 { font-size:1.25rem; font-weight:600; color:#fff; margin-bottom:14px }
.ai-card-tags { display:flex; flex-wrap:wrap; gap:7px; margin-bottom:14px }
.ai-card-tag { font-size:11px; background:rgba(255,255,255,.07); color:#94a3b8; border:1px solid rgba(255,255,255,.1); border-radius:999px; padding:4px 11px; font-weight:500 }
.ai-card-desc { font-size:14px; color:#94a3b8; margin-bottom:18px; line-height:1.65 }
.ai-card-stats { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:18px }
.ai-stat-box { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.07); border-radius:12px; padding:12px; text-align:center }
.ai-stat-row { display:flex; align-items:center; justify-content:center; gap:4px; margin-bottom:4px }
.ai-stat-row svg { width:14px; height:14px }
.ai-stat-row span { font-size:13px; font-weight:700; color:#fff !important }
.ai-stat-lbl { font-size:11px; color:#64748b; text-transform:uppercase; letter-spacing:.06em }
.ai-card-pricing { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.07); border-radius:12px; padding:14px; margin-bottom:18px }
.ai-card-pricing .from { font-size:11px; color:#64748b; margin-bottom:4px; text-transform:uppercase; letter-spacing:.06em }
.ai-price-row { display:flex; align-items:baseline; gap:12px }
.ai-price-hr { font-size:1.5rem; font-weight:600; color:#fff }
.ai-price-hr span { font-size:12px; font-weight:400; color:#64748b }
.ai-price-mo { font-size:.9rem; color:#64748b }
.ai-hire-btn { display:block; width:100%; text-align:center; padding:14px; background:linear-gradient(135deg,#0080ff,#0055cc); color:#fff; border-radius:12px; font-weight:700; font-size:14px; text-decoration:none; cursor:pointer; border:none; transition:all .25s; letter-spacing:.03em; box-shadow:0 6px 20px rgba(0,128,255,.25) }
.ai-hire-btn:hover { box-shadow:0 10px 30px rgba(0,128,255,.45); transform:translateY(-2px) }
.ai-bottom-cta { max-width:1176px; margin:0 auto; background:linear-gradient(135deg,#0d1628,#1a2340); border:1px solid rgba(255,255,255,.08); border-radius:24px; overflow:hidden }
.ai-bottom-inner { display:flex; flex-direction:column }
@media(min-width:1024px){ .ai-bottom-inner { flex-direction:row; align-items:center } }
.ai-bottom-content { flex:1; padding:56px }
.ai-bottom-content h3 { font-size:clamp(1.4rem,3vw,2rem); font-weight:600; color:#fff; margin-bottom:16px }
.ai-bottom-content p { color:#94a3b8; font-size:16px; margin-bottom:36px; line-height:1.7 }
.ai-bottom-btn { display:inline-flex; align-items:center; background:linear-gradient(135deg,#0080ff,#0055cc); color:#fff; padding:16px 36px; border-radius:12px; font-weight:700; font-size:16px; text-decoration:none; transition:all .25s; box-shadow:0 8px 24px rgba(0,128,255,.3) }
.ai-bottom-btn:hover { transform:translateY(-2px); box-shadow:0 12px 36px rgba(0,128,255,.5) }
.ai-bottom-img { width:100%; flex-shrink:0 }
@media(min-width:1024px){ .ai-bottom-img { width:467px; height:312px } }
.ai-bottom-img img { width:100%; height:100%; object-fit:cover }
.industry-sec { padding:96px 0; background:linear-gradient(180deg,#060f20 0%,#080d1a 100%); border-top:1px solid rgba(255,255,255,.05) }
.industry-hdr { text-align:center; margin-bottom:64px }
.industry-hdr h2 { font-size:clamp(1.7rem,3.5vw,2.5rem); font-weight:600; color:#fff; margin-bottom:18px }
.industry-hdr p { font-size:17px; color:#94a3b8; max-width:800px; margin:0 auto; line-height:1.75 }
.industry-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:24px }
.industry-card { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:20px; padding:28px; transition:all .3s; cursor:default; position:relative; overflow:hidden }
.industry-card::after { content:''; position:absolute; top:0; left:0; width:4px; height:100%; background:linear-gradient(180deg,#0080ff,#22d3ee); opacity:0; transition:opacity .3s }
.industry-card:hover { border-color:rgba(0,128,255,.3); background:rgba(0,128,255,.06); transform:translateX(4px); box-shadow:0 12px 40px rgba(0,0,0,.4) }
.industry-card:hover::after { opacity:1 }
.industry-tags { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:16px }
.industry-tag { font-size:10px; background:rgba(0,128,255,.1); color:#60a5fa; border:1px solid rgba(0,128,255,.2); border-radius:999px; padding:3px 10px; font-weight:600; letter-spacing:.04em }
.industry-card h3 { font-size:1.1rem; font-weight:600; color:#fff; margin-bottom:10px }
.industry-card p { font-size:13px; color:#94a3b8; margin-bottom:20px; line-height:1.65 }
.industry-price { margin-bottom:20px }
.industry-price .from { font-size:11px; color:#64748b; text-transform:uppercase; letter-spacing:.06em; margin-bottom:2px }
.industry-price .val { font-size:15px; font-weight:600; color:#fff }
.industry-hire-btn { display:block; width:100%; text-align:center; padding:13px; background:rgba(0,128,255,.1); border:1px solid rgba(0,128,255,.3); color:#60a5fa; border-radius:10px; font-weight:700; font-size:13px; text-decoration:none; cursor:pointer; transition:all .2s; letter-spacing:.03em }
.industry-hire-btn:hover { background:linear-gradient(135deg,#0080ff,#0055cc); border-color:transparent; color:#fff; box-shadow:0 6px 20px rgba(0,128,255,.3) }
.process-sec { padding:96px 0; background:#080d1a; border-top:1px solid rgba(255,255,255,.05) }
.process-hdr { margin-bottom:64px }
.process-hdr h2 { font-size:clamp(1.7rem,3.5vw,2.4rem); font-weight:600; color:#fff; margin-bottom:18px; line-height:1.25 }
.process-hdr h2 span { background:linear-gradient(90deg,#0080ff,#22d3ee); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text }
.process-hdr p { font-size:17px; color:#94a3b8; max-width:680px; line-height:1.75 }
.process-layout { display:grid; grid-template-columns:1fr; gap:56px; align-items:center }
@media(min-width:1024px){ .process-layout { grid-template-columns:1fr 1fr } }
.process-steps { display:flex; flex-direction:column; gap:0 }
.process-step { display:flex; align-items:flex-start; gap:24px; padding:32px 0; border-bottom:1px solid rgba(255,255,255,.06); position:relative }
.process-step:last-child { border-bottom:none }
.process-step::before { content:''; position:absolute; left:27px; top:88px; width:2px; bottom:-1px; background:linear-gradient(180deg,rgba(0,128,255,.4),transparent); pointer-events:none }
.process-step:last-child::before { display:none }
.process-num { width:56px; height:56px; border-radius:16px; background:linear-gradient(135deg,rgba(0,128,255,.2),rgba(0,128,255,.08)); border:1px solid rgba(0,128,255,.35); color:#60a5fa; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:18px; flex-shrink:0; box-shadow:0 0 20px rgba(0,128,255,.15) }
.process-step-content h3 { font-size:18px; font-weight:600; color:#fff; margin-bottom:10px }
.process-step-content p { font-size:14px; color:#94a3b8; line-height:1.7 }
.process-img img { width:100%; max-width:460px; height:380px; object-fit:cover; border-radius:20px; box-shadow:0 24px 64px rgba(0,0,0,.5) }
@media(max-width:1023px){ .process-img { display:none } }
.techstack-sec { padding:96px 0; background:#050B15; border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06); position:relative; overflow:hidden }
.techstack-sec .grid-bg { position:absolute; inset:0; opacity:.025; pointer-events:none; background-image:linear-gradient(rgba(255,255,255,.5) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.5) 1px,transparent 1px); background-size:40px 40px }
.techstack-sec .glow1 { position:absolute; top:-160px; left:25%; width:500px; height:500px; background:rgba(0,128,255,.1); border-radius:50%; filter:blur(100px); pointer-events:none }
.techstack-sec .glow2 { position:absolute; bottom:-160px; right:25%; width:500px; height:500px; background:rgba(139,92,246,.1); border-radius:50%; filter:blur(100px); pointer-events:none }
.techstack-hdr { text-align:center; margin-bottom:64px; position:relative; z-index:5 }
.techstack-label { display:inline-block; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.3em; color:#0080ff; margin-bottom:16px }
.techstack-hdr h2 { font-size:clamp(1.8rem,4vw,2.8rem); font-weight:700; color:#fff; margin-bottom:20px }
.techstack-hdr h2 .grad { background:linear-gradient(90deg,#0080ff,#60a5fa,#22d3ee); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text }
.techstack-hdr p { font-size:17px; color:#94a3b8; max-width:600px; margin:0 auto; line-height:1.75 }
.techstack-legend { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:10px; margin-bottom:48px; position:relative; z-index:5 }
.ts-badge { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; padding:5px 14px; border-radius:999px; border:1px solid }
.ts-badge.frontend { color:#60a5fa; background:rgba(96,165,250,.1); border-color:rgba(96,165,250,.2) }
.ts-badge.backend { color:#4ade80; background:rgba(74,222,128,.1); border-color:rgba(74,222,128,.2) }
.ts-badge.mobile { color:#a78bfa; background:rgba(167,139,250,.1); border-color:rgba(167,139,250,.2) }
.ts-badge.database { color:#fbbf24; background:rgba(251,191,36,.1); border-color:rgba(251,191,36,.2) }
.ts-badge.cloud { color:#fb923c; background:rgba(251,146,60,.1); border-color:rgba(251,146,60,.2) }
.ts-badge.devops { color:#22d3ee; background:rgba(34,211,238,.1); border-color:rgba(34,211,238,.2) }
.ts-badge.aiml { color:#34d399; background:rgba(52,211,153,.1); border-color:rgba(52,211,153,.2) }
.ts-badge.web3 { color:#818cf8; background:rgba(129,140,248,.1); border-color:rgba(129,140,248,.2) }
.ts-rows { position:relative; z-index:5; display:flex; flex-direction:column; gap:20px }
.ts-rows .fade-l { position:absolute; left:0; top:0; height:100%; width:112px; background:linear-gradient(to right,#050B15,transparent); z-index:10; pointer-events:none }
.ts-rows .fade-r { position:absolute; right:0; top:0; height:100%; width:112px; background:linear-gradient(to left,#050B15,transparent); z-index:10; pointer-events:none }
.ts-row { display:flex; gap:16px; overflow-x:hidden }
.ts-row-inner { display:flex; gap:16px; animation:marquee 30s linear infinite; width:max-content }
.ts-row-inner.rev { animation-direction:reverse }
.ts-row-inner:hover { animation-play-state:paused }
.ts-card { flex-shrink:0; width:140px; padding:20px 24px; border-radius:16px; display:flex; flex-direction:column; align-items:center; gap:12px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); transition:all .3s; cursor:default }
.ts-card:hover { background:rgba(255,255,255,.08); border-color:rgba(0,128,255,.4) }
.ts-card img { width:36px; height:36px; object-fit:contain }
.ts-card-name { font-size:13px; font-weight:600; color:#cbd5e1; text-align:center }
.techstack-stats { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; max-width:680px; margin:56px auto 0 }
@media(min-width:640px){ .techstack-stats { grid-template-columns:repeat(4,1fr) } }
.ts-stat { background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.07); border-radius:16px; padding:20px; text-align:center }
.ts-stat-val { font-size:1.6rem; font-weight:700; color:#fff; margin-bottom:4px }
.ts-stat-lbl { font-size:11px; color:#64748b; text-transform:uppercase; letter-spacing:.1em }
.elite-sec { padding:96px 0; background:linear-gradient(180deg,#020817 0%,#050e1f 100%); overflow:hidden; position:relative }
.elite-sec::before { content:''; position:absolute; inset:0; background-image:radial-gradient(circle at 20% 50%,rgba(0,128,255,.06) 0%,transparent 50%),radial-gradient(circle at 80% 50%,rgba(139,92,246,.05) 0%,transparent 50%); pointer-events:none }
.elite-hdr { margin-bottom:64px; text-align:center; position:relative; z-index:2 }
.elite-hdr h2 { font-size:clamp(1.8rem,4vw,2.8rem); font-weight:700; color:#fff; margin-bottom:20px; line-height:1.15 }
.elite-hdr h2 span { background:linear-gradient(90deg,#0080ff,#60a5fa,#22d3ee); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text }
.elite-hdr p { font-size:17px; color:#94a3b8; max-width:700px; margin:0 auto; line-height:1.75 }
.elite-marquee { position:relative; overflow:hidden; padding:12px 0 }
.elite-marquee::before,.elite-marquee::after { content:''; position:absolute; top:0; bottom:0; width:120px; z-index:10; pointer-events:none }
.elite-marquee::before { left:0; background:linear-gradient(to right,#050e1f,transparent) }
.elite-marquee::after { right:0; background:linear-gradient(to left,#050e1f,transparent) }
.elite-track { display:flex; gap:24px; animation:eliteScroll 38s linear infinite; width:max-content }
.elite-track:hover { animation-play-state:paused }
@keyframes eliteScroll { 0%{ transform:translateX(0) } 100%{ transform:translateX(-50%) } }
.elite-card { flex-shrink:0; width:300px; height:400px; position:relative; border-radius:20px; overflow:hidden; cursor:pointer; transition:transform .4s cubic-bezier(.23,1,.32,1) }
.elite-card:hover { transform:translateY(-10px) scale(1.03) }
.elite-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .6s cubic-bezier(.23,1,.32,1) }
.elite-card:hover img { transform:scale(1.1) }
.elite-card-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,.92) 0%,rgba(0,0,0,.45) 50%,rgba(0,0,0,.08) 100%); transition:background .4s }
.elite-card:hover .elite-card-overlay { background:linear-gradient(to top,rgba(0,40,120,.88) 0%,rgba(0,80,200,.35) 55%,rgba(0,0,0,.08) 100%) }
.elite-card-content { position:absolute; bottom:0; left:0; right:0; padding:28px }
.elite-card-icon { width:44px; height:44px; border-radius:12px; background:rgba(0,128,255,.18); border:1px solid rgba(0,128,255,.4); backdrop-filter:blur(8px); display:flex; align-items:center; justify-content:center; margin-bottom:12px; transition:all .3s }
.elite-card:hover .elite-card-icon { background:rgba(0,128,255,.4); border-color:rgba(0,128,255,.7) }
.elite-card-icon svg { width:22px; height:22px; color:#60a5fa }
.elite-card h3 { font-size:1.1rem; font-weight:600; color:#fff; margin-bottom:8px; letter-spacing:.01em }
.elite-card p { font-size:13px; color:rgba(255,255,255,.72); line-height:1.6; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden }
.faq-sec { background:linear-gradient(to bottom,#060f20,#080d1a); padding:96px 0; border-top:1px solid rgba(255,255,255,.05) }
.faq-hdr { margin-bottom:56px }
.faq-hdr h2 { font-size:clamp(1.8rem,4vw,2.8rem); font-weight:600; color:#fff; margin-bottom:18px; line-height:1.2 }
.faq-hdr h2 span { background:linear-gradient(90deg,#0080ff,#22d3ee); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text }
.faq-hdr p { font-size:16px; color:#94a3b8; max-width:680px; line-height:1.75 }
.faq-grid { display:grid; grid-template-columns:1fr; gap:14px }
@media(min-width:1024px){ .faq-grid { grid-template-columns:1fr 1fr } }
.faq-item { background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.08); border-radius:16px; overflow:hidden; transition:all .3s }
.faq-item:hover,.faq-item.open { border-color:rgba(0,128,255,.35); background:rgba(0,128,255,.05) }
.faq-q { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:22px 28px; cursor:pointer; font-size:15px; font-weight:600; color:#e2e8f0; width:100%; background:none; border:none; text-align:left; font-family:inherit; transition:color .2s }
.faq-q:hover { color:#60a5fa }
.faq-q-text { flex:1 }
.faq-chevron { width:20px; height:20px; flex-shrink:0; transition:transform .3s; color:#64748b }
.faq-item.open .faq-chevron { transform:rotate(180deg); color:#0080ff }
.faq-a { display:none; padding:0 28px 22px; font-size:14px; color:#94a3b8; line-height:1.75 }
.faq-item.open .faq-a { display:block }
.hire-bottom-cta { padding:96px 0; background:linear-gradient(135deg,#060f20,rgba(0,128,255,.1)); border-top:1px solid rgba(255,255,255,.06); position:relative; overflow:hidden }
.hire-bottom-cta::before { content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:600px; height:300px; background:rgba(0,128,255,.08); border-radius:50%; filter:blur(80px); pointer-events:none }
.hire-bottom-cta-inner { text-align:center; position:relative; z-index:2 }
.hire-bottom-cta h2 { font-size:clamp(1.8rem,4vw,3rem); font-weight:700; color:#fff; margin-bottom:18px; line-height:1.1 }
.hire-bottom-cta p { font-size:18px; color:#94a3b8; max-width:600px; margin:0 auto 40px; line-height:1.75 }


/* ════════════════════════════════════════════════════════════════
   CASE STUDY PAGES — shared styles (merged from case-study-pages.css)
════════════════════════════════════════════════════════════════ */
:root {
  --cs-bg: #030B18; --cs-bg2: #060f1e; --cs-bg3: #0a1628;
  --cs-border: rgba(255,255,255,0.07);
  --cs-indigo: #6366f1; --cs-purple: #7c3aed;
}
.cs-page { background: var(--cs-bg); min-height: 100vh; overflow-x: hidden; color: #fff; font-family: 'Montserrat', sans-serif; }
.cs-section { padding: 96px 0; }
.cs-section.alt { background: var(--cs-bg2); }
.cs-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.cs-inner-narrow { max-width: 900px; margin: 0 auto; padding: 0 32px; }
.cs-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.cs-eyebrow .bar { width: 32px; height: 2px; background: var(--cs-indigo); flex-shrink: 0; }
.cs-eyebrow span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #818cf8; }
.cs-h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 600; color: #fff; margin: 0 0 16px; line-height: 1.15; }
.cs-lead { color: #94a3b8; font-size: 17px; line-height: 1.7; max-width: 640px; margin: 0 0 56px; }
.cs-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; padding: 6px 16px; margin-bottom: 32px; font-size: 12px; font-weight: 600; color: #cbd5e1; letter-spacing: .04em; }
.cs-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; animation: pulse 2s infinite; }
.cs-grad-text { background: linear-gradient(90deg, #818cf8, #a78bfa, #f472b6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cs-card { background: var(--cs-bg3); border: 1px solid var(--cs-border); border-radius: 20px; padding: 28px; transition: border-color .25s, transform .25s; }
.cs-card:hover { border-color: rgba(99,102,241,.35); transform: translateY(-3px); }
.cs-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cs-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cs-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.cs-step-num { font-size: 11px; font-weight: 700; font-family: monospace; color: #818cf8; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.cs-cta-bar { background: linear-gradient(135deg, rgba(99,102,241,.15), rgba(124,58,237,.1)); border-top: 1px solid rgba(99,102,241,.2); border-bottom: 1px solid rgba(99,102,241,.2); padding: 56px 32px; text-align: center; }
.cs-cta-bar h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 600; color: #fff; margin: 0 0 24px; }
.cs-btn-primary { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(90deg, var(--cs-indigo), var(--cs-purple)); color: #fff; font-weight: 700; padding: 14px 32px; border-radius: 10px; font-size: 15px; text-decoration: none; transition: opacity .2s, transform .2s; }
.cs-btn-primary:hover { opacity: .9; transform: translateY(-1px); }
.cs-btn-outline { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.15); color: #cbd5e1; font-weight: 600; padding: 14px 32px; border-radius: 10px; font-size: 15px; text-decoration: none; transition: background .2s, border-color .2s; }
.cs-btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,.3); }
.cs-faq { display: flex; flex-direction: column; gap: 10px; }
.cs-faq-item { background: var(--cs-bg3); border: 1px solid var(--cs-border); border-radius: 16px; overflow: hidden; }
.cs-faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: #fff; font-weight: 600; font-size: 14px; font-family: inherit; }
.cs-faq-q:hover { color: #a5b4fc; }
.cs-faq-arrow { font-size: 20px; color: #64748b; transition: transform .25s; flex-shrink: 0; }
.cs-faq-item.open .cs-faq-arrow { transform: rotate(90deg); }
.cs-faq-a { display: none; padding: 16px 24px 20px; color: #94a3b8; font-size: 14px; line-height: 1.7; border-top: 1px solid var(--cs-border); }
.cs-faq-item.open .cs-faq-a { display: block; }
.cs-tech-tag { background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.2); color: #a5b4fc; padding: 8px 18px; border-radius: 10px; font-size: 13px; font-weight: 600; }
@keyframes marqueeRTL { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.cs-marquee { animation: marqueeRTL 32s linear infinite; display: flex; gap: 20px; width: max-content; }
.cs-marquee:hover { animation-play-state: paused; }
.cs-marquee-wrap { overflow: hidden; position: relative; }
.cs-marquee-fade-l { position: absolute; left: 0; top: 0; bottom: 0; width: 80px; background: linear-gradient(to right, var(--cs-bg2), transparent); z-index: 2; pointer-events: none; }
.cs-marquee-fade-r { position: absolute; right: 0; top: 0; bottom: 0; width: 80px; background: linear-gradient(to left, var(--cs-bg2), transparent); z-index: 2; pointer-events: none; }
.cs-tech-card { display: flex; flex-direction: column; align-items: center; gap: 12px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 16px; padding: 24px 28px; min-width: 120px; transition: border-color .25s; cursor: default; }
.cs-tech-card:hover { border-color: rgba(99,102,241,.4); }
.cs-tech-card img { width: 40px; height: 40px; object-fit: contain; }
.cs-tech-card span { font-size: 13px; color: #cbd5e1; font-weight: 500; white-space: nowrap; }
.cs-testimonial { background: var(--cs-bg3); border: 1px solid var(--cs-border); border-radius: 20px; padding: 28px; display: flex; flex-direction: column; height: 100%; }
.cs-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.cs-star { color: #fbbf24; font-size: 14px; }
.cs-quote { color: #cbd5e1; font-size: 14px; line-height: 1.7; flex: 1; margin-bottom: 20px; }
.cs-author { font-weight: 700; font-size: 14px; color: #fff; }
.cs-role { font-size: 12px; color: #64748b; }
@media (max-width: 1024px) { .cs-grid-4 { grid-template-columns: repeat(2, 1fr); } .cs-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cs-section { padding: 64px 0; } .cs-inner, .cs-inner-narrow { padding: 0 20px; } .cs-grid-4, .cs-grid-3, .cs-grid-2 { grid-template-columns: 1fr; } .cs-h2 { font-size: 1.6rem; } }


/* ════════════════════════════════════════════════════════════════
   CONTACT POPUP — shared styles (merged from contact-popup.css)
════════════════════════════════════════════════════════════════ */
.ap-overlay { position: fixed; inset: 0; z-index: 99999; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(4,8,22,0.82); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); opacity: 0; pointer-events: none; transition: opacity 0.32s ease; }
.ap-overlay.ap-open { opacity: 1; pointer-events: all; }
.ap-modal { position: relative; display: grid; grid-template-columns: 420px 1fr; width: 100%; max-width: 920px; max-height: 90vh; border-radius: 26px; overflow: hidden; box-shadow: 0 60px 140px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.07); transform: translateY(28px) scale(0.96); transition: transform 0.38s cubic-bezier(0.34,1.44,0.64,1); }
.ap-overlay.ap-open .ap-modal { transform: translateY(0) scale(1); }
.ap-close { position: absolute; top: 16px; right: 16px; z-index: 20; width: 38px; height: 38px; background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.18); border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.22s, border-color 0.22s, transform 0.22s; padding: 0; }
.ap-close:hover { background: rgba(239,68,68,0.22); border-color: rgba(239,68,68,0.45); transform: rotate(90deg); }
.ap-close svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.9); stroke-width: 2.5; fill: none; stroke-linecap: round; }
.ap-left { background: linear-gradient(148deg,#07102a 0%,#160f58 44%,#1e1488 100%); padding: 44px 36px 36px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.ap-left::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 85% 15%,rgba(124,111,255,0.18) 0%,transparent 60%),radial-gradient(ellipse at 15% 85%,rgba(56,189,248,0.10) 0%,transparent 55%); }
.ap-left::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 160px; background: linear-gradient(to top,rgba(7,16,42,0.6),transparent); pointer-events: none; }
.ap-left-inner { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; }
.ap-eyebrow { display: flex; align-items: center; gap: 9px; font-size: 0.63rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.ap-eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; background: #7c6fff; box-shadow: 0 0 0 3px rgba(124,111,255,0.22); animation: apDotPulse 2.4s ease-in-out infinite; }
@keyframes apDotPulse { 0%,100%{ box-shadow: 0 0 0 3px rgba(124,111,255,0.22); } 50%{ box-shadow: 0 0 0 7px rgba(124,111,255,0.08); } }
.ap-heading { font-size: clamp(1.18rem,2.2vw,1.55rem); font-weight: 600; color: #fff; line-height: 1.28; margin-bottom: 12px; letter-spacing: -0.01em; }
.ap-subtext { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 26px; }
.ap-testi-wrap { flex: 1; min-height: 0; }
.ap-testi-stack { display: grid; grid-template-columns: 1fr; margin-bottom: 14px; }
.ap-testi-item { grid-column: 1; grid-row: 1; background: rgba(255,255,255,0.075); border: 1px solid rgba(255,255,255,0.12); border-radius: 18px; padding: 22px 22px 20px; opacity: 0; transition: opacity 0.38s ease; pointer-events: none; }
.ap-testi-item.ap-testi-item--active { opacity: 1; pointer-events: auto; }
.ap-testi-stars { display: flex; gap: 3px; margin-bottom: 12px; font-size: 0.82rem; color: #fbbf24; }
.ap-testi-text { font-size: 0.81rem; color: rgba(255,255,255,0.82); line-height: 1.72; margin-bottom: 18px; font-style: italic; }
.ap-testi-author { display: flex; align-items: center; gap: 11px; }
.ap-testi-avatar { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 600; color: #fff; letter-spacing: 0.02em; }
.ap-testi-name { display: block; font-size: 0.8rem; font-weight: 700; color: #fff; line-height: 1.3; }
.ap-testi-role { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.48); }
.ap-dots { display: flex; gap: 7px; align-items: center; margin-bottom: 22px; }
.ap-dot { width: 7px; height: 7px; border-radius: 100px; background: rgba(255,255,255,0.22); border: none; cursor: pointer; padding: 0; transition: background 0.25s, width 0.28s; }
.ap-dot.ap-dot--active { width: 22px; background: #7c6fff; }
.ap-left-footer { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; font-size: 0.75rem; color: rgba(255,255,255,0.42); }
.ap-left-footer svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.35); stroke-width: 1.8; fill: none; flex-shrink: 0; }
.ap-left-footer a { color: #9d8fff; text-decoration: none; font-weight: 600; transition: color 0.18s; }
.ap-left-footer a:hover { color: #c4b8ff; }
.ap-right { background: #ffffff; padding: 44px 40px 40px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: #e2e8f0 transparent; }
.ap-mobile-header { display: none; }
.ap-form-title { font-size: 1.28rem; font-weight: 600; color: #0f172a; margin-bottom: 3px; font-family: 'Montserrat', sans-serif; }
.ap-form-subtitle { font-size: 0.75rem; color: #64748b; margin-bottom: 22px; }
.ap-form { display: flex; flex-direction: column; gap: 11px; }
.ap-input, .ap-sel, .ap-textarea { width: 100%; font-size: 0.875rem; background: #f8fafc; border: 1.5px solid #e2e8f0; border-radius: 100px; padding: 13px 18px; color: #0f172a; outline: none; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; font-family: 'Montserrat', sans-serif; appearance: none; -webkit-appearance: none; }
.ap-input:focus, .ap-sel:focus { border-color: #7c6fff; box-shadow: 0 0 0 4px rgba(124,111,255,0.1); background: #fff; }
.ap-input::placeholder { color: #94a3b8; }
.ap-textarea { border-radius: 18px; resize: vertical; min-height: 86px; padding: 14px 18px; line-height: 1.6; }
.ap-textarea:focus { border-color: #7c6fff; box-shadow: 0 0 0 4px rgba(124,111,255,0.1); background: #fff; }
.ap-textarea::placeholder { color: #94a3b8; }
.ap-sel { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.ap-sel:invalid, .ap-sel option[value=""] { color: #94a3b8; }
.ap-phone-row { display: flex; gap: 8px; }
.ap-country-sel { flex: 0 0 auto; min-width: 110px; background: #f8fafc; border: 1.5px solid #e2e8f0; border-radius: 100px; padding: 13px 12px 13px 14px; font-size: 0.875rem; color: #0f172a; font-family: 'Montserrat', sans-serif; outline: none; cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s; appearance: none; -webkit-appearance: none; }
.ap-country-sel:focus { border-color: #7c6fff; box-shadow: 0 0 0 4px rgba(124,111,255,0.1); }
.ap-input--tel { flex: 1; min-width: 0; }
.ap-trust-row { display: flex; gap: 18px; flex-wrap: wrap; padding: 4px 0 2px; }
.ap-trust-item { display: flex; align-items: center; gap: 5px; font-size: 0.72rem; color: #64748b; font-weight: 500; }
.ap-trust-item svg { width: 13px; height: 13px; flex-shrink: 0; stroke: #10b981; stroke-width: 2.5; fill: none; }
.ap-submit { display: flex; align-items: center; justify-content: center; width: 100%; padding: 15px 24px; background: linear-gradient(90deg,#4f46e5 0%,#7c6fff 45%,#0080ff 100%); background-size: 200% 100%; background-position: left center; color: #fff; font-size: 0.92rem; font-weight: 700; border: none; border-radius: 10px; cursor: pointer; letter-spacing: 0.02em; font-family: 'Montserrat', sans-serif; transition: background-position 0.45s ease, box-shadow 0.25s, transform 0.18s; box-shadow: 0 6px 22px rgba(79,70,229,0.3); }
.ap-submit:hover { background-position: right center; box-shadow: 0 10px 32px rgba(79,70,229,0.45); transform: translateY(-1px); }
.ap-submit:active { transform: translateY(0); }
.ap-submit:disabled { opacity: 0.65; cursor: wait; transform: none; }
@keyframes ap-success-in { 0%{ opacity:0; transform:scale(0.88) translateY(16px); } 60%{ transform:scale(1.03) translateY(-2px); } 100%{ opacity:1; transform:scale(1) translateY(0); } }
.ap-success { text-align: center; padding: 48px 20px 32px; }
.ap-success--animate { animation: ap-success-in 0.5s cubic-bezier(0.34,1.56,0.64,1) both; }
.ap-success-check { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg,#10b981,#059669); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 10px 30px rgba(16,185,129,0.35); }
.ap-success-check svg { width: 28px; height: 28px; stroke: #fff; stroke-width: 3; fill: none; }
.ap-success h3 { font-size: 1.22rem; font-weight: 600; color: #0f172a; margin-bottom: 8px; font-family: 'Montserrat', sans-serif; }
.ap-success p { color: #475569; font-size: 0.85rem; line-height: 1.65; }
.ap-success-close { margin-top: 22px; padding: 10px 28px; background: #f1f5f9; color: #475569; border: none; border-radius: 100px; cursor: pointer; font-size: 0.82rem; font-weight: 600; font-family: 'Montserrat', sans-serif; transition: background 0.2s; }
.ap-success-close:hover { background: #e2e8f0; }
.ap-error-banner { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.22); border-radius: 12px; padding: 11px 14px; font-size: 0.78rem; color: #dc2626; margin-bottom: 4px; display: none; }
@media (max-width: 820px) { .ap-modal { grid-template-columns: 1fr; max-height: 88vh; overflow-y: auto; border-radius: 22px; } .ap-left { padding: 32px 28px 24px; } .ap-left::after { display: none; } .ap-testi-wrap { margin-bottom: 0; } .ap-right { padding: 28px 28px 36px; } }
@media (max-width: 560px) { .ap-overlay { padding: 10px; align-items: flex-end; } .ap-modal { border-radius: 22px 22px 0 0; max-height: 93vh; } .ap-left { display: none; } .ap-mobile-header { display: block; margin-bottom: 18px; } .ap-mobile-eyebrow { display: block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #7c6fff; margin-bottom: 6px; } .ap-mobile-heading { font-size: 1.15rem; font-weight: 600; color: #0f172a; margin: 0 0 4px; font-family: 'Montserrat', sans-serif; } .ap-right { padding: 24px 20px 32px; } .ap-form-title { font-size: 1.05rem; } .ap-close { top: 12px; right: 12px; } }
