/* ============================================================
   STYLE MARKING — 2026 Premium Design System
   Linear × Vercel × Stripe × Framer inspired
   Electric Purple + Aurora Teal + Gold CTA
   ============================================================ */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Core palette */
  --void:        #000000;
  --surface-0:   #000000;
  --surface-1:   #0a0a0f;
  --surface-2:   #0f0f18;
  --surface-3:   #14141f;
  --surface-4:   #1a1a28;

  /* Primary — Electric Purple */
  --purple-500:  #7C3AED;
  --purple-400:  #9B5CF6;
  --purple-300:  #A855F7;
  --purple-200:  #C084FC;
  --purple-glow: rgba(124, 58, 237, 0.4);

  /* Secondary — Aurora Teal */
  --teal-500:    #06B6D4;
  --teal-400:    #22D3EE;
  --teal-300:    #67E8F9;
  --teal-glow:   rgba(6, 182, 212, 0.3);

  /* Gold CTA — StyleMarking brand */
  --gold-500:    #D4A017;
  --gold-400:    #E8B420;
  --gold-300:    #F5C842;
  --gold-glow:   rgba(212, 160, 23, 0.35);

  /* Gradients */
  --grad-primary:    linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
  --grad-aurora:     linear-gradient(135deg, #7C3AED 0%, #06B6D4 100%);
  --grad-cta:        linear-gradient(135deg, #D4A017 0%, #F5C842 100%);
  --grad-mesh:       radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124,58,237,0.3) 0%, transparent 60%),
                     radial-gradient(ellipse 60% 40% at 80% 60%, rgba(6,182,212,0.15) 0%, transparent 50%),
                     radial-gradient(ellipse 60% 60% at -10% 80%, rgba(124,58,237,0.12) 0%, transparent 55%);
  --grad-text:       linear-gradient(135deg, #A855F7 0%, #06B6D4 60%, #A855F7 100%);
  --grad-gold-text:  linear-gradient(135deg, #D4A017 0%, #F5C842 50%, #D4A017 100%);
  --grad-subtle:     linear-gradient(135deg, rgba(124,58,237,0.08) 0%, rgba(6,182,212,0.08) 100%);

  /* Glass system */
  --glass-bg:        rgba(255, 255, 255, 0.03);
  --glass-bg-hover:  rgba(255, 255, 255, 0.055);
  --glass-border:    rgba(255, 255, 255, 0.08);
  --glass-border-active: rgba(255, 255, 255, 0.15);
  --glass-blur:      blur(20px);
  --glass-blur-sm:   blur(12px);

  /* Text */
  --text-primary:    #F8F8FF;
  --text-secondary:  rgba(248, 248, 255, 0.55);
  --text-muted:      rgba(248, 248, 255, 0.3);
  --text-xmuted:     rgba(248, 248, 255, 0.18);

  /* Borders */
  --border-subtle:   rgba(255, 255, 255, 0.06);
  --border-mid:      rgba(255, 255, 255, 0.1);
  --border-strong:   rgba(255, 255, 255, 0.18);
  --border-purple:   rgba(124, 58, 237, 0.35);
  --border-teal:     rgba(6, 182, 212, 0.25);
  --border-gold:     rgba(212, 160, 23, 0.35);

  /* Shadows */
  --shadow-sm:       0 1px 3px rgba(0,0,0,0.5), 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md:       0 4px 16px rgba(0,0,0,0.6), 0 2px 4px rgba(0,0,0,0.3);
  --shadow-lg:       0 12px 48px rgba(0,0,0,0.7), 0 4px 12px rgba(0,0,0,0.4);
  --shadow-xl:       0 24px 80px rgba(0,0,0,0.8), 0 8px 24px rgba(0,0,0,0.5);
  --shadow-purple:   0 0 40px rgba(124,58,237,0.25), 0 0 80px rgba(124,58,237,0.12);
  --shadow-teal:     0 0 40px rgba(6,182,212,0.2), 0 0 80px rgba(6,182,212,0.08);
  --shadow-gold:     0 0 30px rgba(212,160,23,0.3), 0 4px 20px rgba(212,160,23,0.15);
  --shadow-btn:      0 4px 20px rgba(124,58,237,0.4), 0 0 60px rgba(124,58,237,0.15);
  --shadow-btn-hover:0 8px 32px rgba(124,58,237,0.55), 0 0 80px rgba(124,58,237,0.25);

  /* Spacing */
  --section-pad:     120px 0;
  --container:       1240px;
  --container-wide:  1440px;
  --gutter:          24px;

  /* Radius */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl:48px;
  --r-full:9999px;

  /* Easing */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Transitions */
  --t-fast:   0.15s var(--ease-inout);
  --t-smooth: 0.35s var(--ease-out);
  --t-slow:   0.6s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--void);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================================
   NOISE OVERLAY
   ============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.6;
  mix-blend-mode: overlay;
}

/* ============================================================
   AURORA BACKGROUND SYSTEM
   ============================================================ */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,0.22) 0%, transparent 70%);
  top: -250px;
  right: -200px;
  animation: orbDrift1 28s ease-in-out infinite;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6,182,212,0.16) 0%, transparent 70%);
  bottom: -200px;
  left: -150px;
  animation: orbDrift2 34s ease-in-out infinite;
}

.orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168,85,247,0.14) 0%, transparent 70%);
  top: 40%;
  left: 40%;
  transform: translate(-50%, -50%);
  animation: orbDrift3 22s ease-in-out infinite;
}

.orb-4 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6,182,212,0.1) 0%, transparent 70%);
  top: 20%;
  right: 30%;
  animation: orbDrift1 38s ease-in-out infinite reverse;
}

@keyframes orbDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -80px) scale(1.05); }
  66% { transform: translate(-40px, 60px) scale(0.95); }
}
@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-70px, 50px) scale(0.98); }
  66% { transform: translate(50px, -40px) scale(1.04); }
}
@keyframes orbDrift3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.12) rotate(15deg); }
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.07), transparent 65%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s var(--ease-out);
  opacity: 0;
}

body:hover .cursor-glow { opacity: 1; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-pad);
  position: relative;
  z-index: 2;
}

.section-sm {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

/* Section top divider */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle) 20%, var(--border-mid) 50%, var(--border-subtle) 80%, transparent);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-weight: 300;
}

.section-cta {
  text-align: center;
  margin-top: 56px;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.gradient-text {
  background: var(--grad-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s linear infinite;
}

.gradient-text-gold {
  background: var(--grad-gold-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

@keyframes gradientShift {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }

/* ============================================================
   SECTION TAG / EYEBROW
   ============================================================ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-300);
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.25);
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: 24px;
}

.section-tag-teal {
  color: var(--teal-400);
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.22);
}

.section-tag-gold {
  color: var(--gold-400);
  background: rgba(212, 160, 23, 0.08);
  border-color: rgba(212, 160, 23, 0.22);
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: tagPulse 2.5s ease-in-out infinite;
}

@keyframes tagPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* ============================================================
   GLASS CARD SYSTEM
   ============================================================ */
.card-glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  transition: background var(--t-smooth), border-color var(--t-smooth), transform var(--t-smooth), box-shadow var(--t-smooth);
}

.card-glass:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-active);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-purple);
}

.card-dark {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  transition: border-color var(--t-smooth), transform var(--t-smooth), box-shadow var(--t-smooth);
}

.card-dark:hover {
  border-color: var(--border-purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Gradient border card */
.card-glow {
  position: relative;
  background: var(--surface-1);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.card-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(124,58,237,0.5), rgba(6,182,212,0.3), rgba(124,58,237,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--t-smooth);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-fast);
}

.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.975); }

.btn-sm  { padding: 9px 20px;  font-size: 0.82rem; }
.btn-md  { padding: 13px 28px; font-size: 0.9rem;  }
.btn-lg  { padding: 16px 36px; font-size: 0.98rem; }
.btn-xl  { padding: 20px 44px; font-size: 1.06rem; letter-spacing: -0.02em; }

/* Primary — Purple gradient with glow */
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
}

/* Gold CTA */
.btn-gold {
  background: var(--grad-cta);
  color: #000;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(212,160,23,0.5), 0 0 80px rgba(212,160,23,0.2);
}

/* Glass / outline button */
.btn-glass {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
}

.btn-glass:hover {
  background: var(--glass-bg-hover);
  border-color: var(--border-purple);
  box-shadow: 0 0 24px rgba(124,58,237,0.15);
}

/* Ghost / outline */
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-mid);
}

.btn-outline:hover {
  border-color: var(--border-purple);
  color: var(--purple-300);
  box-shadow: 0 0 20px rgba(124,58,237,0.12);
}

/* Teal secondary */
.btn-teal {
  background: linear-gradient(135deg, #06B6D4, #22D3EE);
  color: #000;
  font-weight: 700;
  box-shadow: var(--shadow-teal);
}

.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(6,182,212,0.45), 0 0 60px rgba(6,182,212,0.18);
}

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: var(--r-full);
}

.badge-purple {
  background: rgba(124,58,237,0.12);
  color: var(--purple-300);
  border: 1px solid rgba(124,58,237,0.25);
}

.badge-teal {
  background: rgba(6,182,212,0.1);
  color: var(--teal-400);
  border: 1px solid rgba(6,182,212,0.22);
}

.badge-gold {
  background: rgba(212,160,23,0.1);
  color: var(--gold-400);
  border: 1px solid rgba(212,160,23,0.22);
}

.badge-green {
  background: rgba(34,197,94,0.1);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.2);
}

/* ============================================================
   NAVIGATION — Floating Pill (Linear-style)
   ============================================================ */
.nav-float {
  position: fixed !important;
  top: 20px !important;
  left: 50% !important;
  right: auto !important;
  width: min(1240px, calc(100vw - 48px)) !important;
  max-width: none !important;
  transform: translateX(-50%) !important;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  pointer-events: none;
  box-sizing: border-box;
  transition: top var(--t-smooth), padding var(--t-smooth);
}

/* Pill — wraps only the nav links + CTA */
.nav-pill {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px 8px 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-full);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
  transition: all var(--t-smooth);
}

.nav-float.scrolled .nav-pill {
  background: rgba(0, 0, 0, 0.88);
  border-color: var(--border-mid);
  box-shadow: 0 8px 40px rgba(0,0,0,0.7), 0 0 0 0.5px rgba(124,58,237,0.15);
}

/* Keep old inner selector working for JS that might reference it */
.nav-float-inner { display: contents; }

/* Logo — standalone top-left, outside the pill */
.nav-logo {
  pointer-events: all;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1001;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: auto;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  transition: transform var(--t-smooth), filter var(--t-smooth);
  flex-shrink: 0;
}

.logo-icon:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 18px rgba(124,58,237,0.85));
}

.logo-icon svg {
  height: 80px;
  width: auto;
  display: block;
}

.logo-icon img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-text { color: var(--text-primary); }
.logo-accent { color: var(--purple-300); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 7px 14px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.nav-links a.active {
  color: var(--purple-300);
}

/* Services Dropdown */
.nav-links li { position: relative; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  padding-top: 12px;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.2s cubic-bezier(0.16,1,0.3,1);
  z-index: 9999;
  min-width: 280px;
}
.nav-dropdown-inner {
  background: rgba(10, 10, 20, 0.95);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 16px;
  padding: 0.75rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 0.5px rgba(124,58,237,0.15);
}
.nav-links li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(248,248,255,0.75);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.nav-dropdown-item:hover {
  background: rgba(124,58,237,0.15);
  color: #f8f8ff;
}
.nav-dropdown-item i {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #a855f7;
  flex-shrink: 0;
}
.nav-dropdown-item:hover i {
  background: rgba(124,58,237,0.3);
  color: #c084fc;
}
.nav-dropdown-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 0.35rem 0;
}
.nav-dropdown-footer {
  grid-column: 1 / -1;
  padding: 0.5rem 0.75rem 0.25rem;
  font-size: 0.72rem;
  color: rgba(248,248,255,0.3);
  text-align: center;
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--t-fast);
}

.nav-phone:hover { color: var(--gold-400); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-secondary);
  transition: all var(--t-smooth);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); background: var(--text-primary); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); background: var(--text-primary); }

/* ── Mobile: hamburger + fullscreen menu ─────────────────────── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-phone  { display: none; }

  /* Collapsed state: pill stays small, links hidden */
  .nav-links { display: none; }
  .nav-float {
    width: calc(100vw - 32px) !important;
    top: 12px !important;
  }
  .logo-icon            { height: 60px; }
  .logo-icon img,
  .logo-icon svg        { height: 60px; }

  /* ── Open state: nav-float EXPANDS to fill the screen ── */
  .nav-float.menu-open {
    width:  100vw !important;
    height: 100vh !important;
    top:    0    !important;
    left:   0    !important;
    right:  0    !important;
    transform: none !important;   /* safe now — no fixed children needed */
    max-width: 100% !important;
    flex-direction: column !important;
    align-items: stretch  !important;
    justify-content: flex-start !important;
    background: rgba(5,5,15,0.97) !important;
    backdrop-filter: blur(28px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(28px) saturate(180%) !important;
    border-radius: 0 !important;
    padding: 0 !important;
    pointer-events: all !important;
  }

  /* Logo stays visible top-left */
  .nav-float.menu-open .nav-logo {
    position: absolute;
    top: 16px;
    left: 20px;
    pointer-events: all;
  }

  /* Hamburger stays top-right */
  .nav-float.menu-open .nav-toggle {
    position: absolute !important;
    top: 22px  !important;
    right: 20px !important;
    z-index: 10 !important;
  }

  /* Pill becomes a full-height scroll container */
  .nav-float.menu-open .nav-pill {
    flex: 1 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 80px 24px 48px !important;
    overflow-y: auto !important;
    pointer-events: all !important;
  }

  /* Show nav links as a column */
  .nav-float.menu-open .nav-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
    width: 100% !important;
    position: static !important;
    background: transparent !important;
  }

  .nav-float.menu-open .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-float.menu-open .nav-links a {
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    padding: 12px 32px !important;
    color: rgba(248,248,255,0.75) !important;
    display: block !important;
  }
  .nav-float.menu-open .nav-links a:hover,
  .nav-float.menu-open .nav-links a.active {
    color: #fff !important;
  }

  /* CTA button visible at bottom */
  .nav-float.menu-open .nav-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 20px !important;
    position: static !important;
    width: 100% !important;
  }

  /* ── Services inline-expand (no absolute popup) ── */
  .nav-float.menu-open .nav-dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    transform: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    min-width: 0 !important;
    display: none;
  }
  .nav-float.menu-open .nav-dropdown.mobile-open { display: block !important; }

  .nav-float.menu-open .nav-dropdown-inner {
    background: rgba(124,58,237,0.1) !important;
    border: 1px solid rgba(124,58,237,0.25) !important;
    border-radius: 14px !important;
    padding: 0.5rem !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    margin: 4px 0 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .nav-float.menu-open .nav-dropdown-grid {
    grid-template-columns: 1fr !important;
    gap: 0.15rem !important;
  }
  .nav-float.menu-open .nav-dropdown-item {
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    padding: 0.55rem 0.75rem !important;
    white-space: nowrap !important;
    color: rgba(248,248,255,0.75) !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }
  .nav-float.menu-open .nav-dropdown-item[style*="grid-column"] {
    grid-column: auto !important;
  }
  .nav-float.menu-open .nav-dropdown-footer { display: none !important; }
  .nav-float.menu-open .nav-dropdown-divider { display: none !important; }

  /* Chevron rotate when services open */
  .nav-services-chevron {
    display: inline-block;
    transition: transform 0.22s ease;
    font-size: 0.6rem;
    margin-left: 4px;
    opacity: 0.6;
  }
  .services-link.mobile-open .nav-services-chevron {
    transform: rotate(180deg);
    opacity: 1;
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 160px 0 100px;
}

/* Mesh gradient behind hero */
.hero-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-mesh);
  pointer-events: none;
  z-index: 0;
}

.hero {
  position: relative;
  z-index: 2;
  padding: 160px var(--gutter) 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Hero two-column layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

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

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple-300);
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.28);
  padding: 8px 18px;
  border-radius: var(--r-full);
  margin-bottom: 32px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-300);
  animation: badgePulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(168,85,247,0.8);
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.7); opacity: 0.4; }
}

/* Hero headline — Vercel-style HUGE */
.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
  font-weight: 800;
}

/* Subheading — Stripe-style elegant light */
.hero-sub {
  font-size: 1.18rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 520px;
}

.hero-sub strong {
  color: var(--text-primary);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 36px;
}

.stat { text-align: left; }

.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text-primary);
}

.stat-suffix {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad-aurora);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 400;
}

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

/* Hero visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Browser mockup */
.browser-mockup {
  width: 100%;
  max-width: 520px;
  background: var(--surface-2);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 80px rgba(124,58,237,0.2), 0 0 160px rgba(6,182,212,0.08);
  animation: heroFloat 7s ease-in-out infinite;
  position: relative;
}

.browser-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-mesh);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.hero-visual .browser-bar {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-visual .browser-content {
  position: relative;
  z-index: 1;
  padding: 32px 28px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px;
}

/* Floating stat badges inside the mockup */
.hero-visual .browser-content .mockup-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 12px 16px;
}

.hero-visual .browser-content .mockup-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-visual .browser-content .mockup-stat-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hero-visual .browser-content .mockup-stat-text span {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-14px) rotate(0.3deg); }
  66% { transform: translateY(-8px) rotate(-0.2deg); }
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border-subtle);
}

.browser-dots {
  display: flex;
  gap: 7px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #FF5F57; box-shadow: 0 0 6px rgba(255,95,87,0.5); }
.browser-dots span:nth-child(2) { background: #FEBC2E; box-shadow: 0 0 6px rgba(254,188,46,0.5); }
.browser-dots span:nth-child(3) { background: #28C840; box-shadow: 0 0 6px rgba(40,200,64,0.5); }

.browser-url {
  flex: 1;
  font-family: 'Inter', monospace;
  font-size: 0.73rem;
  color: var(--text-muted);
  background: var(--surface-3);
  padding: 5px 14px;
  border-radius: var(--r-xs);
  border: 1px solid var(--border-subtle);
}

.browser-content { padding: 28px; }

.mockup-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup-line {
  height: 9px;
  background: linear-gradient(90deg, rgba(124,58,237,0.15), rgba(6,182,212,0.08));
  border-radius: var(--r-xs);
  animation: mockupShimmer 2.5s ease-in-out infinite;
}

.mockup-line.w80 { width: 80%; }
.mockup-line.w60 { width: 60%; }
.mockup-line.w90 { width: 90%; }
.mockup-line.w70 { width: 70%; }
.mockup-line.w50 { width: 50%; }

@keyframes mockupShimmer {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

.mockup-blocks {
  display: flex;
  gap: 10px;
  margin: 12px 0;
}

.mockup-block {
  flex: 1;
  height: 80px;
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(6,182,212,0.06));
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-sm);
  animation: mockupShimmer 2.5s ease-in-out infinite;
}

.mockup-block:nth-child(2) { animation-delay: 0.4s; }
.mockup-block:nth-child(3) { animation-delay: 0.8s; }

/* Hero responsive */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-sub { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { justify-content: center; }
}

@media (max-width: 640px) {
  .hero-wrapper { padding: 120px 0 80px; }
  .hero h1 { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .hero-stats { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .stat-divider { display: none; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  padding: 32px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(255,255,255,0.015);
  position: relative;
  z-index: 2;
}

.trust-label {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color var(--t-fast);
}

.trust-item:hover { color: var(--text-primary); }

.trust-item i {
  color: var(--purple-300);
  font-size: 1rem;
}

/* ============================================================
   MARQUEE / TRUSTED BY STRIP
   ============================================================ */
.trusted-by-strip {
  padding: 28px 0;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(255,255,255,0.01);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.trusted-by-label {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.trusted-by-scroll {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.trusted-by-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: marqueeScroll 24s linear infinite;
}

.trusted-by-track:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trusted-by-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 9px 20px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-full);
  background: var(--glass-bg);
  transition: all var(--t-smooth);
}

.trusted-by-item:hover {
  color: var(--text-primary);
  border-color: var(--border-purple);
  background: rgba(124,58,237,0.06);
  box-shadow: 0 0 20px rgba(124,58,237,0.1);
}

.trusted-by-item i {
  color: var(--purple-300);
  font-size: 1rem;
}

/* ============================================================
   SERVICES — BENTO GRID
   ============================================================ */
.services-section { background: var(--void); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

/* Bento card base */
.bento-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-smooth), transform var(--t-smooth), box-shadow var(--t-smooth);
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-subtle);
  opacity: 0;
  transition: opacity var(--t-smooth);
}

.bento-card:hover {
  border-color: var(--border-purple);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(124,58,237,0.1);
}

.bento-card:hover::before { opacity: 1; }

/* Bento sizes */
.bento-wide   { grid-column: span 7; }
.bento-medium { grid-column: span 5; }
.bento-third  { grid-column: span 4; }
.bento-half   { grid-column: span 6; }
.bento-full   { grid-column: span 12; grid-row: span 1; }
.bento-tall   { grid-row: span 2; }

/* Featured bento card */
.bento-card.bento-featured {
  background: linear-gradient(135deg, rgba(124,58,237,0.15) 0%, rgba(6,182,212,0.08) 100%);
  border-color: rgba(124,58,237,0.3);
}

.bento-card.bento-featured:hover {
  box-shadow: var(--shadow-lg), var(--shadow-purple);
}

/* Bento icon */
.bento-icon {
  position: absolute;
  top: 28px;
  left: 32px;
  width: 52px;
  height: 52px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--purple-300);
  transition: background var(--t-smooth), box-shadow var(--t-smooth);
}

.bento-card:hover .bento-icon {
  background: rgba(124,58,237,0.2);
  box-shadow: 0 0 24px rgba(124,58,237,0.25);
}

.bento-icon.teal-icon {
  background: rgba(6,182,212,0.1);
  border-color: rgba(6,182,212,0.22);
  color: var(--teal-400);
}

.bento-icon.gold-icon {
  background: rgba(212,160,23,0.1);
  border-color: rgba(212,160,23,0.22);
  color: var(--gold-400);
}

/* Bento content */
.bento-content { position: relative; z-index: 1; }

.bento-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-300);
  margin-bottom: 10px;
}

.bento-tag.teal { color: var(--teal-400); }
.bento-tag.gold { color: var(--gold-400); }

.bento-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.bento-card.bento-wide h3,
.bento-card.bento-featured h3 { font-size: 1.6rem; }

.bento-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 300;
}

.bento-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--t-smooth);
  z-index: 1;
}

.bento-card:hover .bento-arrow {
  background: rgba(124,58,237,0.15);
  border-color: rgba(124,58,237,0.35);
  color: var(--purple-300);
  transform: translate(2px, -2px);
}

/* Services old card style (for non-bento layouts) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: all var(--t-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-subtle);
  opacity: 0;
  transition: opacity var(--t-smooth);
}

.service-card:hover {
  border-color: var(--border-purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(124,58,237,0.1);
}

.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--purple-300);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: all var(--t-smooth);
}

.service-card:hover .service-icon {
  background: rgba(124,58,237,0.18);
  box-shadow: 0 0 24px rgba(124,58,237,0.25);
}

.service-card h3 {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-aurora);
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--purple-300);
  margin-top: 24px;
  transition: gap var(--t-smooth), color var(--t-fast);
  position: relative;
  z-index: 1;
}

.service-link:hover {
  gap: 14px;
  color: var(--purple-200);
}

/* Bento responsive */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(6, 1fr); }
  .bento-wide { grid-column: span 6; }
  .bento-medium { grid-column: span 6; }
  .bento-third { grid-column: span 3; }
  .bento-half { grid-column: span 6; }
}

@media (max-width: 640px) {
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-wide, .bento-medium, .bento-third, .bento-half, .bento-full { grid-column: span 1; }
  .bento-card { min-height: 220px; }
  .bento-tall { grid-row: span 1; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Connector line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: linear-gradient(90deg, rgba(124,58,237,0.4), rgba(6,182,212,0.4));
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-secondary);
  margin-bottom: 24px;
  transition: all var(--t-smooth);
  position: relative;
}

.process-step:hover .step-number {
  background: rgba(124,58,237,0.15);
  border-color: rgba(124,58,237,0.5);
  color: var(--purple-300);
  box-shadow: 0 0 30px rgba(124,58,237,0.3);
}

/* Active/highlighted step */
.process-step.active .step-number {
  background: var(--grad-primary);
  border-color: transparent;
  color: white;
  box-shadow: var(--shadow-purple);
}

.process-step h4 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.process-step p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 300;
}

@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   HOW IT WORKS — steps-grid override
   style.css sets opacity:0.3 on .step-number — override here
   ============================================================ */
.steps-grid .step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.12);
  border: 2px solid rgba(124, 58, 237, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--purple-300);
  opacity: 1 !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.2);
  transition: background var(--t-smooth), box-shadow var(--t-smooth), border-color var(--t-smooth);
}

.steps-grid .step:hover .step-number {
  background: rgba(124, 58, 237, 0.25);
  border-color: var(--purple-400);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.4);
}

/* ============================================================
   PORTFOLIO / WORK
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* portfolio-card override — matches existing HTML structure */
.portfolio-grid .portfolio-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-smooth), box-shadow var(--t-smooth), border-color var(--t-smooth);
  position: relative;
  cursor: pointer;
  transform: none !important; /* override style.css stagger offset */
}

.portfolio-grid .portfolio-card:hover {
  border-color: var(--border-purple);
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-xl), var(--shadow-purple);
}

.portfolio-item {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-smooth);
  position: relative;
  cursor: pointer;
}

.portfolio-item:hover {
  border-color: var(--border-purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl), var(--shadow-purple);
}

.portfolio-item.col-7 { grid-column: span 7; }
.portfolio-item.col-5 { grid-column: span 5; }
.portfolio-item.col-4 { grid-column: span 4; }
.portfolio-item.col-6 { grid-column: span 6; }
.portfolio-item.col-8 { grid-column: span 8; }
.portfolio-item.col-12 { grid-column: span 12; }

.portfolio-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface-2);
  overflow: hidden;
  position: relative;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.04);
}

/* Overlay on hover */
.portfolio-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(6,182,212,0.15));
  opacity: 0;
  transition: opacity var(--t-smooth);
}

.portfolio-item:hover .portfolio-image::after { opacity: 1; }

/* Placeholder for missing images */
.portfolio-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(6,182,212,0.05));
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portfolio-placeholder::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, rgba(124,58,237,0.1) 25%, transparent 25%, transparent 50%, rgba(124,58,237,0.05) 50%, rgba(124,58,237,0.05) 75%, transparent 75%);
  background-size: 40px 40px;
  opacity: 0.4;
}

.portfolio-info {
  padding: 24px 28px;
}

.portfolio-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.portfolio-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-300);
}

.portfolio-year {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.portfolio-info h3 {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  transition: color var(--t-fast);
}

.portfolio-item:hover .portfolio-info h3 { color: var(--purple-300); }

.portfolio-info p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

.portfolio-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.portfolio-tag {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface-3);
  padding: 3px 10px;
  border-radius: var(--r-full);
  border: 1px solid var(--border-subtle);
}

/* View project overlay button */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-smooth);
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-view-btn {
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(12px);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--r-full);
  border: 1px solid var(--border-mid);
  transform: translateY(8px);
  transition: transform var(--t-smooth);
  cursor: pointer;
}

.portfolio-item:hover .portfolio-view-btn { transform: translateY(0); }

/* Portfolio filter tabs */
.portfolio-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 20px;
  border-radius: var(--r-full);
  border: 1px solid var(--border-subtle);
  background: transparent;
  cursor: pointer;
  transition: all var(--t-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--text-primary);
  background: rgba(124,58,237,0.1);
  border-color: rgba(124,58,237,0.3);
}

@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item.col-7, .portfolio-item.col-5,
  .portfolio-item.col-4, .portfolio-item.col-6,
  .portfolio-item.col-8, .portfolio-item.col-12 {
    grid-column: span 1;
  }
  .portfolio-item.col-12 { grid-column: span 2; }
}

@media (max-width: 640px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item[class*="col-"] { grid-column: span 1; }
}

/* ============================================================
   STATS COUNTER SECTION
   ============================================================ */
.stats-section {
  position: relative;
  overflow: hidden;
  background: var(--void);
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 60% at 50% 50%, rgba(124,58,237,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.stat-block {
  background: var(--surface-1);
  padding: 48px 32px;
  text-align: center;
  position: relative;
  transition: background var(--t-smooth);
}

.stat-block:hover { background: var(--surface-2); }

.stat-block-number {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  background: var(--grad-aurora);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: block;
}

.stat-block-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.4;
}

.stat-block-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.count-up { font-variant-numeric: tabular-nums; }

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

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-block { padding: 36px 24px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--void); }

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

.testimonial-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
  transition: all var(--t-smooth);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-card:hover {
  border-color: var(--border-purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(124,58,237,0.08);
}

/* Featured testimonial */
.testimonial-card.featured {
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(6,182,212,0.05));
  border-color: rgba(124,58,237,0.25);
  grid-row: span 1;
}

/* Stars */
.testimonial-stars {
  display: flex;
  gap: 4px;
}

.testimonial-stars i {
  color: var(--gold-400);
  font-size: 0.9rem;
}

/* Quote */
.testimonial-quote {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
}

.testimonial-quote::before {
  content: '"';
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  color: var(--purple-400);
  line-height: 0;
  vertical-align: -0.6rem;
  margin-right: 2px;
}

/* Author */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section { background: var(--void); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  position: relative;
  transition: all var(--t-smooth);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Featured pricing card */
.pricing-card.pricing-featured {
  background: linear-gradient(145deg, rgba(124,58,237,0.15) 0%, rgba(6,182,212,0.06) 100%);
  border-color: rgba(124,58,237,0.4);
  box-shadow: var(--shadow-lg), var(--shadow-purple);
  transform: scale(1.03);
}

.pricing-card.pricing-featured:hover {
  transform: scale(1.03) translateY(-4px);
}

/* Popular badge */
.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: var(--r-full);
  white-space: nowrap;
  box-shadow: var(--shadow-purple);
}

.pricing-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-currency {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-secondary);
  letter-spacing: -0.03em;
}

.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 300;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.pricing-feature i {
  color: var(--teal-400);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.pricing-feature.disabled {
  color: var(--text-muted);
  opacity: 0.5;
}

.pricing-feature.disabled i { color: var(--text-muted); }

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card.pricing-featured { transform: scale(1); }
  .pricing-card.pricing-featured:hover { transform: translateY(-4px); }
}

/* ============================================================
   CTA / CONTACT BAND
   ============================================================ */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--surface-1);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.cta-band-inner {
  padding: 100px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Mesh gradient overlay */
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(124,58,237,0.18) 0%, transparent 65%),
              radial-gradient(ellipse 60% 80% at 20% 0%, rgba(6,182,212,0.1) 0%, transparent 55%);
  pointer-events: none;
}

.cta-band h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

.cta-band p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.75;
}

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

/* ============================================================
   CONTACT FORM SECTION
   ============================================================ */
.contact-section { background: var(--void); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info { padding-top: 8px; }

.contact-info h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 300;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-300);
  flex-shrink: 0;
  transition: all var(--t-smooth);
}

.contact-method:hover .contact-method-icon {
  background: rgba(124,58,237,0.18);
  box-shadow: 0 0 20px rgba(124,58,237,0.2);
}

.contact-method-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-method-value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
  transition: color var(--t-fast);
}

.contact-method:hover .contact-method-value { color: var(--purple-300); }

/* Contact form */
.contact-form-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 48px 44px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-md);
  padding: 13px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
}

.form-control::placeholder { color: var(--text-muted); }

.form-control:focus {
  border-color: rgba(124,58,237,0.6);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
  background: var(--surface-3);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

select.form-control { cursor: pointer; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit { width: 100%; margin-top: 8px; }

/* Form message */
.form-message {
  padding: 14px 18px;
  border-radius: var(--r-md);
  font-size: 0.88rem;
  font-weight: 500;
  display: none;
  margin-top: 12px;
}

.form-message.success {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  color: #4ade80;
  display: block;
}

.form-message.error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  color: #f87171;
  display: block;
}

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-card { padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--void); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-fast);
}

.faq-item:hover { border-color: var(--border-mid); }
.faq-item.open { border-color: var(--border-purple); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  text-align: left;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  cursor: pointer;
  transition: color var(--t-fast);
  background: none;
  border: none;
}

.faq-question:hover { color: var(--purple-300); }
.faq-item.open .faq-question { color: var(--purple-300); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all var(--t-smooth);
}

.faq-item.open .faq-icon {
  background: rgba(124,58,237,0.15);
  border-color: rgba(124,58,237,0.4);
  color: var(--purple-300);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s var(--ease-out);
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-weight: 300;
}

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--void);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 0;
  position: relative;
  z-index: 2;
}

/* Top gradient glow behind footer */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.5), rgba(6,182,212,0.3), transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border-subtle);
}

/* Brand col */
.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-logo-icon {
  height: 52px;
  width: auto;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.footer-logo-icon svg {
  height: 52px;
  width: auto;
  display: block;
}

.footer-logo-icon img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 320px;
  font-weight: 300;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all var(--t-smooth);
}

.social-link:hover {
  background: rgba(124,58,237,0.12);
  border-color: rgba(124,58,237,0.3);
  color: var(--purple-300);
  box-shadow: 0 0 16px rgba(124,58,237,0.2);
  transform: translateY(-2px);
}

/* Footer nav columns */
.footer-col {}

.footer-col-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 300;
  transition: color var(--t-fast), transform var(--t-fast);
  display: inline-flex;
}

.footer-links a:hover {
  color: var(--text-primary);
  transform: translateX(3px);
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-copy a {
  color: var(--purple-400);
  transition: color var(--t-fast);
}

.footer-copy a:hover { color: var(--purple-300); }

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
}

.footer-legal a:hover { color: var(--text-secondary); }

.footer-credit {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-credit a {
  background: var(--grad-aurora);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  transition: opacity var(--t-fast);
}

.footer-credit a:hover { opacity: 0.75; }

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   SCROLL ANIMATIONS
   Only activate hidden state after JS initializes (body.js-ready)
   Without JS, all elements remain visible (graceful degradation)
   ============================================================ */
body.js-ready [data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-animate="fade-up"].visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

body.js-ready [data-animate="fade-left"] {
  opacity: 0;
  transform: translateX(44px);
}

[data-animate="fade-left"].visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

body.js-ready [data-animate="fade-right"] {
  opacity: 0;
  transform: translateX(-44px);
}

[data-animate="fade-right"].visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

body.js-ready [data-animate="scale-up"] {
  opacity: 0;
  transform: scale(0.94);
}

[data-animate="scale-up"].visible {
  opacity: 1 !important;
  transform: scale(1) !important;
}

body.js-ready [data-animate="fade-in"] {
  opacity: 0;
  transform: none;
}

[data-animate="fade-in"].visible { opacity: 1 !important; }

/* Stagger children */
body.js-ready .stagger-in > * {
  opacity: 0;
  transform: translateY(18px);
}

.stagger-in.visible > *:nth-child(1) { animation: staggerReveal 0.55s 0.00s var(--ease-out) forwards; }
.stagger-in.visible > *:nth-child(2) { animation: staggerReveal 0.55s 0.08s var(--ease-out) forwards; }
.stagger-in.visible > *:nth-child(3) { animation: staggerReveal 0.55s 0.16s var(--ease-out) forwards; }
.stagger-in.visible > *:nth-child(4) { animation: staggerReveal 0.55s 0.24s var(--ease-out) forwards; }
.stagger-in.visible > *:nth-child(5) { animation: staggerReveal 0.55s 0.32s var(--ease-out) forwards; }
.stagger-in.visible > *:nth-child(6) { animation: staggerReveal 0.55s 0.40s var(--ease-out) forwards; }
.stagger-in.visible > *:nth-child(7) { animation: staggerReveal 0.55s 0.48s var(--ease-out) forwards; }
.stagger-in.visible > *:nth-child(8) { animation: staggerReveal 0.55s 0.56s var(--ease-out) forwards; }

@keyframes staggerReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   INTERACTIVE EFFECTS
   ============================================================ */

/* Glow border on hover */
.glow-border { position: relative; }

.glow-border::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--grad-primary);
  z-index: -1;
  opacity: 0;
  filter: blur(6px);
  transition: opacity var(--t-smooth);
}

.glow-border:hover::after { opacity: 0.35; }

/* Hover lift */
.hover-lift {
  transition: transform var(--t-smooth), box-shadow var(--t-smooth);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

/* Shine sweep effect */
.shine-sweep {
  position: relative;
  overflow: hidden;
}

.shine-sweep::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease-out);
}

.shine-sweep:hover::before { left: 150%; }

/* Typing cursor */
.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--purple-300);
  margin-left: 3px;
  animation: cursorBlink 1s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes cursorBlink {
  50% { opacity: 0; }
}

/* Gradient border animation */
@keyframes gradientBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Page enter */
.page-enter {
  animation: pageEnter 0.5s var(--ease-out) forwards;
}

@keyframes pageEnter {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================================
   PARTICLE CANVAS
   ============================================================ */
#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ============================================================
   ABOUT / TEAM SECTION
   ============================================================ */
.about-section { background: var(--void); }

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

.about-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.about-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  transition: all var(--t-smooth);
}

.about-value:hover {
  border-color: var(--border-purple);
  transform: translateX(4px);
}

.about-value-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-value-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.about-value-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

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

.about-img-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface-2);
  aspect-ratio: 4/3;
  position: relative;
}

.about-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.about-img-card:hover img { transform: scale(1.05); }

.about-img-card.tall { grid-row: span 2; aspect-ratio: auto; }

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 480px; margin: 0 auto; }
}

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-smooth);
}

.team-card:hover {
  border-color: var(--border-purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--surface-2);
  overflow: hidden;
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.team-card:hover .team-photo img { transform: scale(1.04); }

/* Gradient overlay on team photo */
.team-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(10,10,15,0.8), transparent);
}

.team-info {
  padding: 20px 22px 24px;
}

.team-info h4 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.team-info span {
  font-size: 0.82rem;
  color: var(--purple-400);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FEATURE HIGHLIGHT ROW (Stripe-inspired floating cards)
   ============================================================ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  position: relative;
}

.feature-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle) 30%, var(--border-subtle) 70%, transparent);
}

.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-text { }

.feature-text h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.feature-text p {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 300;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.feature-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--purple-300);
  font-size: 0.7rem;
}

/* Feature visual — floating glass card */
.feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feature-card-float {
  width: 100%;
  max-width: 440px;
  background: var(--surface-1);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-xl), var(--shadow-purple);
  animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Small decorative card floating beside */
.feature-card-accent {
  position: absolute;
  background: var(--surface-2);
  border: 1px solid var(--border-purple);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg), var(--shadow-teal);
  animation: cardFloat 5s ease-in-out infinite reverse;
}

.feature-card-accent.top-right {
  top: -20px;
  right: -20px;
}

.feature-card-accent.bottom-left {
  bottom: -20px;
  left: -20px;
}

@media (max-width: 1024px) {
  .feature-row { grid-template-columns: 1fr; gap: 48px; direction: ltr; }
  .feature-row.reverse { direction: ltr; }
}

/* ============================================================
   BLOG / INSIGHTS SECTION
   ============================================================ */
.blog-section { background: var(--void); }

.blog-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
}

.blog-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-smooth);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--border-purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card.featured { grid-row: span 2; }

.blog-thumb {
  width: 100%;
  background: var(--surface-2);
  overflow: hidden;
  position: relative;
}

.blog-card.featured .blog-thumb { aspect-ratio: 16/10; }
.blog-thumb { aspect-ratio: 16/9; }

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

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

.blog-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 10px;
}

.blog-body h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin-bottom: 10px;
  transition: color var(--t-fast);
}

.blog-card.featured .blog-body h3 { font-size: 1.3rem; }

.blog-card:hover .blog-body h3 { color: var(--purple-300); }

.blog-body p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
  font-weight: 300;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.blog-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.blog-read-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple-300);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t-smooth);
}

.blog-card:hover .blog-read-more { gap: 10px; }

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card.featured { grid-row: span 1; }
}

@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   AWARDS / CREDENTIALS STRIP
   ============================================================ */
.awards-strip {
  padding: 48px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--surface-1);
  position: relative;
  z-index: 2;
}

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

.award-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.award-icon {
  font-size: 2rem;
  filter: grayscale(0.2);
}

.award-text {
  display: flex;
  flex-direction: column;
}

.award-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.award-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

/* ============================================================
   NOTIFICATION / TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--surface-2);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 300px;
  max-width: 400px;
  box-shadow: var(--shadow-xl);
  z-index: 9990;
  transform: translateY(100px);
  opacity: 0;
  transition: transform var(--t-smooth), opacity var(--t-smooth);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.toast-icon.success {
  background: rgba(34,197,94,0.12);
  color: #4ade80;
}

.toast-icon.error {
  background: rgba(239,68,68,0.1);
  color: #f87171;
}

.toast-icon.info {
  background: rgba(124,58,237,0.12);
  color: var(--purple-300);
}

.toast-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}

.toast-message {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================================
   LOADING / SKELETON
   ============================================================ */
@keyframes skeletonPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.skeleton {
  background: var(--surface-3);
  border-radius: var(--r-sm);
  animation: skeletonPulse 1.8s ease-in-out infinite;
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--grad-primary);
  z-index: 9999;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
  box-shadow: 0 0 12px rgba(124,58,237,0.6);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--surface-2);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--t-smooth);
  z-index: 500;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(124,58,237,0.15);
  border-color: rgba(124,58,237,0.4);
  color: var(--purple-300);
  box-shadow: 0 0 20px rgba(124,58,237,0.2);
}

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle) 20%, var(--border-subtle) 80%, transparent);
  margin: 0;
}

.divider-glow {
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.4) 30%, rgba(6,182,212,0.3) 70%, transparent);
  height: 1px;
}

.spacer-sm { height: 32px; }
.spacer-md { height: 64px; }
.spacer-lg { height: 96px; }

/* Overflow protection */
.overflow-hidden { overflow: hidden; }

/* Flex utils */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] { opacity: 1; transform: none; }
  .orb { animation: none; }
  .browser-mockup { animation: none; }
  .feature-card-float { animation: none; }
  .trusted-by-track { animation: none; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .nav-float, .bg-orbs, .bg-grid, .cursor-glow,
  .back-to-top, .scroll-progress { display: none !important; }
  body { background: white; color: black; }
  .section { padding: 40px 0; }
}

/* ============================================================
   LOADER BRAND NAME
   ============================================================ */
.loader-brand-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 14px;
  background: linear-gradient(135deg, #A855F7 0%, #06B6D4 60%, #A855F7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: loader-name-shimmer 2.5s linear infinite;
}
@keyframes loader-name-shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ============================================================
   AURORA CANVAS BACKGROUND
   ============================================================ */
#aurora-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  /* Soft blur on the blobs — Stripe-style smooth mesh */
  filter: blur(0px);
}

/* ============================================================
   SERVICES BENTO — Full Capabilities Layout
   ============================================================ */
.svc-bento-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

/* --- Flagship row --- */
.svc-row-flagship .svc-card-wide  { flex: 1.65; }
.svc-row-flagship .svc-card-narrow { flex: 1; }

/* --- Brand row --- */
.svc-row-brand .svc-card-narrow { flex: 1; }
.svc-row-brand .svc-card-wide   { flex: 1.65; }

/* --- Base service card --- */
.svc-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 36px 32px 32px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.svc-card-purple {
  background: linear-gradient(135deg, rgba(124,58,237,0.18) 0%, rgba(10,10,20,0.95) 60%);
  border-color: rgba(124,58,237,0.25);
}
.svc-card-purple:hover { border-color: rgba(124,58,237,0.55); box-shadow: 0 24px 64px rgba(124,58,237,0.18); }

.svc-card-teal {
  background: linear-gradient(135deg, rgba(6,182,212,0.16) 0%, rgba(10,10,20,0.95) 60%);
  border-color: rgba(6,182,212,0.22);
}
.svc-card-teal:hover { border-color: rgba(6,182,212,0.5); box-shadow: 0 24px 64px rgba(6,182,212,0.15); }

.svc-card-violet {
  background: linear-gradient(135deg, rgba(168,85,247,0.16) 0%, rgba(10,10,20,0.95) 60%);
  border-color: rgba(168,85,247,0.22);
}
.svc-card-violet:hover { border-color: rgba(168,85,247,0.5); }

.svc-card-dark {
  background: linear-gradient(135deg, rgba(37,99,235,0.14) 0%, rgba(10,10,20,0.95) 60%);
  border-color: rgba(37,99,235,0.2);
}
.svc-card-dark:hover { border-color: rgba(37,99,235,0.45); }

/* Background watermark icon */
.svc-card-bg-icon {
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: 9rem;
  opacity: 0.035;
  color: #fff;
  pointer-events: none;
  line-height: 1;
}

/* Tag label */
.svc-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-400, #a78bfa);
  background: rgba(124,58,237,0.14);
  border: 1px solid rgba(124,58,237,0.25);
  padding: 3px 10px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 4px;
}

.svc-icon-lg {
  font-size: 2rem;
  line-height: 1;
}
.svc-card-purple .svc-icon-lg { color: #a78bfa; }
.svc-card-teal .svc-icon-lg   { color: #22d3ee; }
.svc-card-violet .svc-icon-lg { color: #c084fc; }
.svc-card-dark .svc-icon-lg   { color: #60a5fa; }

.svc-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.25;
}
.svc-card p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  margin: 0;
  flex-grow: 1;
}

/* Bullet list */
.svc-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svc-bullets li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}
.svc-bullets li i { color: #7C3AED; font-size: 0.75rem; flex-shrink: 0; }

/* Platform pills */
.svc-platform-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.svc-platform-pills span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.svc-platform-pills span i { font-size: 0.8rem; }

/* --- Six-tile row --- */
.svc-row-six {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.svc-tile {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.svc-tile:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.04);
  border-color: rgba(var(--clr, 124,58,237), 0.4);
}

.svc-tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(var(--clr, 124,58,237), 0.14);
  border: 1px solid rgba(var(--clr, 124,58,237), 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgb(var(--clr, 124,58,237));
  flex-shrink: 0;
}

.svc-tile h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.svc-tile p {
  font-size: 0.855rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0;
}

/* --- CTA strip --- */
.svc-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(90deg, rgba(124,58,237,0.14) 0%, rgba(6,182,212,0.1) 100%);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 16px;
  padding: 20px 28px;
  margin-top: 4px;
}
.svc-cta-strip p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
}
.svc-cta-strip strong { color: #fff; }

/* --- Mobile responsive --- */
@media (max-width: 900px) {
  .svc-bento-row { flex-direction: column; }
  .svc-row-six   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .svc-row-six   { grid-template-columns: 1fr; }
  .svc-cta-strip { flex-direction: column; text-align: center; }
  .svc-card { padding: 24px 20px; }
}
