/* =========================================================
   Donathan Digital — Premium Static Site
   Colors: Deep Navy / Electric Blue / Violet / White / Gray / Neon
   Fonts: Outfit (display) + Manrope (body)
   ========================================================= */

:root {
  --bg: #060B19;
  --bg-2: #040814;
  --panel: #0A1128;
  --panel-2: #0F1A3A;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.6);
  --muted-strong: rgba(255, 255, 255, 0.75);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.2);
  --blue: #3B82F6;
  --blue-light: #60A5FA;
  --violet: #8B5CF6;
  --violet-light: #A78BFA;
  --neon: #00F0FF;
  --pink: #EC4899;
  --gray-soft: #9CA3AF;
  --grad-primary: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
  --grad-text: linear-gradient(135deg, #60A5FA 0%, #A78BFA 50%, #00F0FF 100%);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.37);
  --shadow-glow: 0 20px 60px -15px rgba(139, 92, 246, 0.4);
  --shadow-primary: 0 10px 30px -10px rgba(139, 92, 246, 0.5);
  --radius: 14px;
  --radius-lg: 20px;
  --container: 1240px;
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, select { font-family: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 .5em;
  color: #fff;
}
p { margin: 0 0 1em; color: var(--muted-strong); }
::selection { background: rgba(139, 92, 246, 0.4); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--grad-primary); border-radius: 10px; }

/* -------- Layout -------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

.section { padding: 96px 0; position: relative; }
.section-lg { padding: 128px 0; position: relative; }
@media (max-width: 767px) { .section, .section-lg { padding: 72px 0; } }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 991px) {
  .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.4; } }

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

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  transition: all .3s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.7), 0 0 40px rgba(59, 130, 246, 0.4);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.btn .arrow { width: 16px; height: 16px; }

/* -------- Glass Card -------- */
.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-lg);
}
.glass-strong {
  background: rgba(10, 17, 40, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
}

/* =========================================================
   Hero background — animated orbs + grid + noise + vignette
   ========================================================= */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  will-change: transform;
}
.hero-bg .orb.blue {
  width: 520px; height: 520px; top: -8%; left: -8%;
  background: radial-gradient(circle at 30% 30%, #3B82F6, transparent 70%);
  animation: floatA 14s ease-in-out infinite;
}
.hero-bg .orb.violet {
  width: 620px; height: 620px; top: 5%; right: -10%;
  background: radial-gradient(circle at 60% 40%, #8B5CF6, transparent 70%);
  animation: floatB 18s ease-in-out infinite;
}
.hero-bg .orb.neon {
  width: 380px; height: 380px; bottom: -6%; left: 30%;
  background: radial-gradient(circle at 50% 50%, #00F0FF, transparent 70%);
  opacity: 0.25;
  animation: floatA 12s ease-in-out infinite;
}
@keyframes floatA {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50%      { transform: translate3d(40px,-30px,0) scale(1.08); }
}
@keyframes floatB {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50%      { transform: translate3d(-30px,30px,0) scale(1.1); }
}
.hero-bg .grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
          mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
  opacity: 0.6;
  animation: gridDrift 12s linear infinite;
}
@keyframes gridDrift {
  0%   { background-position: 0 0, 0 0; }
  100% { background-position: 0 40px, 40px 0; }
}
.hero-bg .streak {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, transparent 40%, rgba(139,92,246,0.15) 55%, transparent 70%);
  opacity: 0.4;
}
.hero-bg .vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(4,8,20,0.75) 90%);
}
.noise {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}

/* Floating particles */
.particles { position: absolute; inset: 0; pointer-events: none; }
.particles i {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon);
  opacity: .35;
  animation: rise linear infinite;
}
@keyframes rise {
  0%   { transform: translateY(20vh) translateX(0); opacity: 0; }
  10%  { opacity: .5; }
  100% { transform: translateY(-110vh) translateX(30px); opacity: 0; }
}

/* =========================================================
   Navbar
   ========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 17, 40, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a, .nav-links .services-trigger {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-links a:hover, .nav-links a.active,
.nav-links .services-trigger:hover, .nav-links .services-trigger.active {
  color: #fff;
}
.services-trigger .chev { width: 14px; height: 14px; transition: transform .2s ease; }
.services-menu-wrapper { position: relative; }
.services-menu-wrapper.open .services-trigger .chev { transform: rotate(180deg); }
.services-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 320px;
  padding: 8px;
  background: rgba(10, 17, 40, 0.95);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .22s ease;
}
.services-menu-wrapper.open .services-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.services-menu a {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  transition: background .2s ease;
  color: #fff;
}
.services-menu a:hover { background: rgba(255,255,255,0.05); }
.services-menu a .sicon {
  width: 34px; height: 34px;
  flex: 0 0 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(139,92,246,0.2));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light);
}
.services-menu a .sicon svg { width: 16px; height: 16px; }
.services-menu a .stext { display: flex; flex-direction: column; min-width: 0; }
.services-menu a .stext .st { font-size: 14px; font-weight: 600; color: #fff; }
.services-menu a .stext .sd { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.services-menu a:hover .stext .st { color: var(--neon); }

.nav-cta { display: inline-flex; }
.mobile-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
}
.mobile-toggle:hover { background: rgba(255,255,255,0.08); }
.mobile-toggle svg { width: 24px; height: 24px; }
.mobile-menu { display: none; }

/* -------- Logo -------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.logo .mark {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 55%, #00F0FF 130%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(139,92,246,0.35);
}
.logo .mark::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.4), transparent 60%);
}
.logo .mark svg { width: 26px; height: 26px; position: relative; z-index: 1; }
.logo .name {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.logo .name span { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.logo .sub {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  line-height: 1;
}

/* -------- Mobile nav -------- */
@media (max-width: 991px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: inline-flex; }
  .mobile-menu {
    display: block;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: rgba(6, 11, 25, 0.98);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .mobile-menu.open { max-height: 85vh; overflow-y: auto; }
  .mobile-menu .mm-inner { padding: 16px 24px 24px; }
  .mobile-menu a, .mobile-menu button {
    display: flex; width: 100%;
    padding: 14px; border-radius: 10px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    justify-content: space-between; align-items: center;
    transition: background .2s ease;
  }
  .mobile-menu a:hover, .mobile-menu button:hover { background: rgba(255,255,255,0.06); }
  .mobile-menu .mm-services { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
  .mobile-menu .mm-services.open { max-height: 500px; }
  .mobile-menu .mm-services a {
    margin-left: 12px;
    padding: 10px 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    border-left: 1px solid var(--border);
    border-radius: 0 10px 10px 0;
  }
  .mobile-menu .mm-cta { margin-top: 12px; }
  .mobile-menu .mm-cta a { justify-content: center; background: var(--grad-primary); color: #fff; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: 180px 0 120px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(2.5rem, 6.2vw, 5.8rem);
  line-height: 1.02;
  margin: 24px 0;
  max-width: 1000px;
}
.hero p.lead {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 680px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
}
.hero .cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .trust-row {
  margin-top: 64px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  align-items: center;
}
.hero .trust-row .dot { color: rgba(255,255,255,0.2); }
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 1;
}

/* Page hero (smaller) */
.page-hero {
  position: relative;
  padding: 160px 0 96px;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  margin: 20px 0 16px;
  max-width: 900px;
}
.page-hero p.lead {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  max-width: 720px;
  margin-bottom: 32px;
}
.page-hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* =========================================================
   Services grid (home)
   ========================================================= */
.service-card {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1), border-color .3s, box-shadow .5s;
  overflow: hidden;
  will-change: transform;
  transform-style: preserve-3d;
  transform: perspective(1000px);
}
.service-card:hover {
  transform: perspective(1000px) translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
}
.service-card .glow {
  position: absolute;
  top: -70px; right: -70px;
  width: 200px; height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  transition: opacity .5s ease;
  background: var(--grad-primary);
}
.service-card:hover .glow { opacity: 1; }
.service-card .icon-box {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(139,92,246,0.35);
  position: relative;
  z-index: 1;
}
.service-card .icon-box svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 12px; position: relative; z-index: 1; }
.service-card p { color: rgba(255,255,255,0.6); font-size: .95rem; margin-bottom: 20px; position: relative; z-index: 1; }
.service-card .learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--neon);
  position: relative;
  z-index: 1;
  transition: color .2s ease;
}
.service-card .learn:hover { color: #fff; }
.service-card .num {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-family: 'Manrope', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.1);
  letter-spacing: 0.1em;
}

/* Accent gradients per service */
.grad-1 { background: linear-gradient(135deg, #3B82F6, #8B5CF6); }
.grad-2 { background: linear-gradient(135deg, #22D3EE, #3B82F6); }
.grad-3 { background: linear-gradient(135deg, #8B5CF6, #EC4899); }
.grad-4 { background: linear-gradient(135deg, #A855F7, #3B82F6); }
.grad-5 { background: linear-gradient(135deg, #10B981, #22D3EE); }
.grad-6 { background: linear-gradient(135deg, #F97316, #EC4899); }

/* =========================================================
   Why choose
   ========================================================= */
.why-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  transition: border-color .3s ease, transform .3s ease;
}
.why-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.why-card .icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(139,92,246,0.2));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light);
  margin-bottom: 16px;
}
.why-card .icon svg { width: 20px; height: 20px; }
.why-card h4 { font-size: 1.125rem; margin-bottom: 8px; }
.why-card p { font-size: .875rem; color: rgba(255,255,255,0.6); margin: 0; }

/* =========================================================
   Stats
   ========================================================= */
.stat {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: border-color .3s ease;
}
.stat::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--grad-primary);
  filter: blur(50px);
  opacity: 0.25;
  transition: opacity .3s ease;
}
.stat:hover::before { opacity: 0.45; }
.stat .value {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat .label { font-weight: 600; color: #fff; margin-top: 12px; }
.stat .sub { font-size: .875rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* =========================================================
   Case study cards (portfolio)
   ========================================================= */
.case {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .5s ease, border-color .3s ease, box-shadow .5s ease;
}
.case:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
}
.case .visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case .visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.4;
}
.case .visual .blob {
  width: 160px; height: 160px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.75;
}
.case .visual .tag {
  position: absolute;
  bottom: 20px; left: 20px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(10,17,40,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.case .visual .preview {
  position: absolute;
  bottom: 20px; right: 20px;
  font-family: 'Manrope', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}
.case .body {
  padding: 24px 28px;
  background: rgba(10, 17, 40, 0.6);
  backdrop-filter: blur(12px);
}
.case h3 { font-size: 1.25rem; margin-bottom: 6px; transition: color .2s ease; }
.case:hover h3 { color: var(--neon); }
.case p { font-size: .875rem; color: rgba(255,255,255,0.6); margin: 0; }

/* Visual variants */
.v-bg-1 { background: linear-gradient(135deg, #0F1A3A 0%, #1E1B4B 100%); }
.v-bg-2 { background: linear-gradient(135deg, #062B45 0%, #0A1128 100%); }
.v-bg-3 { background: linear-gradient(135deg, #1E1B4B 0%, #4C1D95 100%); }
.v-bg-4 { background: linear-gradient(135deg, #0A1128 0%, #7C2D12 100%); }
.v-bg-5 { background: linear-gradient(135deg, #052E2B 0%, #0A1128 100%); }
.v-bg-6 { background: linear-gradient(135deg, #0A1128 0%, #312E81 100%); }
.v-blob-1 { background: linear-gradient(135deg, #3B82F6, #8B5CF6); }
.v-blob-2 { background: linear-gradient(135deg, #22D3EE, #3B82F6); }
.v-blob-3 { background: linear-gradient(135deg, #8B5CF6, #EC4899); }
.v-blob-4 { background: linear-gradient(135deg, #F97316, #EC4899); }
.v-blob-5 { background: linear-gradient(135deg, #10B981, #22D3EE); }
.v-blob-6 { background: linear-gradient(135deg, #6366F1, #A855F7); }

/* =========================================================
   Process steps
   ========================================================= */
.process { position: relative; }
.process::before {
  content: '';
  position: absolute;
  top: 32px; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
}
@media (max-width: 991px) { .process::before { display: none; } }
.step { position: relative; }
.step .bubble {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(59,130,246,0.25), rgba(139,92,246,0.25));
  border: 1px solid var(--border-strong);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 10px 30px rgba(139,92,246,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
}
.step .bubble::after {
  content: '';
  position: absolute;
  bottom: -4px; right: -4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.7);
}
.step h4 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { font-size: .875rem; color: rgba(255,255,255,0.6); margin: 0; }

/* =========================================================
   Benefits & Included lists
   ========================================================= */
.benefit-item {
  padding: 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: border-color .3s ease;
}
.benefit-item:hover { border-color: var(--border-strong); }
.benefit-item .check {
  width: 22px; height: 22px;
  color: var(--neon);
  flex: 0 0 22px;
  margin-top: 1px;
}
.benefit-item span { font-size: .95rem; color: rgba(255,255,255,0.85); line-height: 1.55; }

.included-item {
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #E2E8F0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.included-item .check-btn {
  width: 26px; height: 26px;
  flex: 0 0 26px;
  border-radius: 8px;
  background: var(--grad-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.included-item .check-btn svg { width: 14px; height: 14px; }
.included-item span { font-size: .9rem; font-weight: 500; color: #0A1128; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-item {
  padding: 4px 24px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  transition: border-color .3s ease;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item summary {
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 12px; height: 12px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item .answer { padding: 0 0 20px; color: rgba(255,255,255,0.7); line-height: 1.65; }

/* =========================================================
   Light section (contrast)
   ========================================================= */
.section-light {
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F7 100%);
  color: #0A1128;
}
.section-light h1, .section-light h2, .section-light h3, .section-light h4 { color: #0A1128; }
.section-light p { color: #334155; }
.section-light .eyebrow {
  color: #7C3AED;
  background: rgba(139,92,246,0.08);
  border-color: rgba(139,92,246,0.25);
}
.section-light .light-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid #E2E8F0;
  box-shadow: 0 8px 24px rgba(15,23,42,0.06);
}
.section-light .light-card .key {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7C3AED;
  font-weight: 700;
}
.section-light .light-card .val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 12px;
  color: #0A1128;
}

/* =========================================================
   Contact form
   ========================================================= */
.contact-form {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field label { font-size: .875rem; color: rgba(255,255,255,0.8); }
.field input, .field textarea, .field select {
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: #fff;
  font-size: .95rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.3); }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}
.field textarea { min-height: 140px; resize: vertical; font-family: inherit; }
.form-foot {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding-top: 8px;
}
.form-foot .note { font-size: 12px; color: rgba(255,255,255,0.4); }
.form-msg { font-size: .9rem; margin-top: 16px; }
.form-msg.success { color: #34D399; }
.form-msg.error { color: #F87171; }

/* Contact info cards */
.info-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  transition: border-color .3s ease;
}
.info-card:hover { border-color: var(--border-strong); }
.info-card .ico {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.info-card .ico svg { width: 20px; height: 20px; }
.info-card .k {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  margin-bottom: 6px;
}
.info-card .v { font-size: 1.05rem; font-weight: 600; color: #fff; word-break: break-word; }
.info-card .v:hover { color: var(--neon); }
.info-card .s { font-size: .85rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* =========================================================
   CTA section
   ========================================================= */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(139,92,246,0.25), transparent 60%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  max-width: 800px;
  margin: 24px auto 20px;
  line-height: 1.1;
}
.cta-section p {
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
}
.cta-section .cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   Footer
   ========================================================= */
footer {
  position: relative;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: -160px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(139,92,246,0.5), transparent 60%);
  filter: blur(80px);
  opacity: 0.2;
  pointer-events: none;
}
footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 991px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }
footer h4 { font-size: .95rem; color: #fff; margin-bottom: 20px; letter-spacing: 0.03em; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 12px; }
footer a { color: rgba(255,255,255,0.6); font-size: .9rem; transition: color .2s ease; }
footer a:hover { color: #fff; }
footer .brand p { color: rgba(255,255,255,0.6); font-size: .9rem; margin-top: 24px; max-width: 300px; }
footer .contact-list li { display: flex; align-items: flex-start; gap: 12px; }
footer .contact-list li svg { width: 16px; height: 16px; margin-top: 4px; flex-shrink: 0; }
.copy {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(0.22, 1, 0.36, 1), transform .7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .40s; }
.reveal-delay-6 { transition-delay: .48s; }

/* =========================================================
   Service page 3D icon "card"
   ========================================================= */
.service-hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 440px;
  margin-left: auto;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
}
.service-hero-visual::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.3;
}
.service-hero-visual::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
}
.service-hero-visual .float-icon {
  position: relative;
  z-index: 2;
  width: 160px; height: 160px;
  border-radius: 28px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 30px 80px -20px rgba(139,92,246,0.6);
  color: #fff;
  animation: iconFloat 4s ease-in-out infinite;
}
.service-hero-visual .float-icon svg { width: 78px; height: 78px; }
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.service-hero-visual .corner {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  display: flex; justify-content: space-between;
  font-family: 'Manrope', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  z-index: 2;
}
.service-hero-visual .corner .up { text-transform: uppercase; letter-spacing: 0.2em; }

/* Service hero two-column */
.service-hero .container { position: relative; z-index: 2; }
.service-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 991px) {
  .service-hero-grid { grid-template-columns: 1fr; }
  .service-hero-visual { margin: 40px auto 0; }
}

/* Two-column split */
.split { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }
@media (max-width: 991px) { .split { grid-template-columns: 1fr; gap: 24px; } }
.split-5-7 { display: grid; grid-template-columns: 5fr 7fr; gap: 48px; align-items: start; }
@media (max-width: 991px) { .split-5-7 { grid-template-columns: 1fr; gap: 24px; } }
.split-6-6 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 991px) { .split-6-6 { grid-template-columns: 1fr; gap: 24px; } }

/* Values grid (about) */
.value-card { padding: 32px; border-radius: var(--radius-lg); background: rgba(255,255,255,0.03); border: 1px solid var(--border); backdrop-filter: blur(20px); transition: border-color .3s ease, transform .3s ease; }
.value-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.value-card .ico { width: 48px; height: 48px; border-radius: 14px; background: var(--grad-primary); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: #fff; }
.value-card .ico svg { width: 20px; height: 20px; }
.value-card h4 { font-size: 1.25rem; margin-bottom: 8px; }
.value-card p { font-size: .95rem; color: rgba(255,255,255,0.6); margin: 0; }

/* Related services (service pages) */
.related-card {
  display: block;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  transition: border-color .3s ease, transform .3s ease;
}
.related-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.related-card .ico {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 16px;
}
.related-card .ico svg { width: 20px; height: 20px; }
.related-card h4 { font-size: 1.05rem; margin-bottom: 4px; transition: color .2s ease; }
.related-card:hover h4 { color: var(--neon); }
.related-card p { font-size: .85rem; color: rgba(255,255,255,0.5); margin: 0; }

/* Utility */
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 24px; }
.mt-6 { margin-top: 40px; }
.text-center { text-align: center; }
.max-w-3xl { max-width: 800px; }
.max-w-2xl { max-width: 640px; }
.section-heading { max-width: 900px; margin-bottom: 56px; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.25rem); margin: 24px 0 16px; }
.section-heading p { font-size: 1.125rem; color: rgba(255,255,255,0.65); }
.section-heading-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap; margin-bottom: 48px;
}
.section-heading-row .left { max-width: 700px; }
.section-heading-row h2 { font-size: clamp(2rem, 4vw, 3.25rem); margin: 20px 0 0; }
