/* ============================================
   ORCA SOLUTIONZ — REDESIGNED v3
   Dark Theme · Vibrant Neon · Glassmorphism
   ============================================ */

/* === VARIABLES === */
:root {
  /* Backgrounds */
  --bg:          #070B17;
  --bg-surface:  #0B0F1F;
  --bg-card:     rgba(12,17,32,0.75);
  --bg-card-solid: #0C1120;

  /* Brand Colors */
  --blue:    #5B9EFF;
  --violet:  #9D6EFF;
  --pink:    #FF5DAA;
  --teal:    #00DFCB;
  --amber:   #FFBC2E;
  --lime:    #80FF4C;
  --orange:  #FF8A5B;
  --indigo:  #818CF8;
  --red:     #FF4C6A;
  --green:   #34D399;

  /* Gradients */
  --grad:        linear-gradient(135deg, #5B9EFF 0%, #9D6EFF 100%);
  --grad-warm:   linear-gradient(135deg, #FF5DAA 0%, #9D6EFF 100%);
  --grad-teal:   linear-gradient(135deg, #00DFCB 0%, #5B9EFF 100%);
  --grad-fire:   linear-gradient(135deg, #FFBC2E 0%, #FF5DAA 100%);
  --grad-full:   linear-gradient(135deg, #5B9EFF 0%, #9D6EFF 50%, #FF5DAA 100%);
  --grad-aurora: linear-gradient(135deg, #070B17, #0B1229, #0D1035);

  /* Glow Shadows */
  --glow-blue:   0 0 25px rgba(91,158,255,0.55), 0 0 80px rgba(91,158,255,0.15);
  --glow-violet: 0 0 25px rgba(157,110,255,0.55), 0 0 80px rgba(157,110,255,0.15);
  --glow-pink:   0 0 25px rgba(255,93,170,0.55),  0 0 80px rgba(255,93,170,0.15);
  --glow-teal:   0 0 25px rgba(0,223,203,0.55),   0 0 80px rgba(0,223,203,0.15);
  --glow-card:   0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);

  /* Text */
  --text:        #D1D9E6;
  --text-muted:  #5A6480;
  --text-dim:    rgba(255,255,255,0.45);
  --white:       #FFFFFF;

  /* Borders */
  --border:      rgba(255,255,255,0.06);
  --border-2:    rgba(255,255,255,0.1);

  /* Spacing */
  --nav-h:       72px;
  --max-w:       1200px;
  --r:           12px;
  --r-lg:        20px;
  --r-xl:        28px;
  --r-full:      9999px;

  /* Transitions */
  --t:           0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --t-spring:    0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-out:       0.35s cubic-bezier(0.16, 1, 0.3, 1);

  /* Fonts */
  --font-head: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); font-size: 1rem; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--text); }

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

/* === KEYFRAMES === */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}
@keyframes float-2 {
  0%, 100% { transform: translateY(-10px) translateX(0); }
  50%       { transform: translateY(10px) translateX(8px); }
}
@keyframes float-3 {
  0%, 100% { transform: translateY(8px) rotate(0deg); }
  50%       { transform: translateY(-8px) rotate(3deg); }
}
@keyframes aurora-move {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -30px) scale(1.1); }
  66%  { transform: translate(-20px, 20px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
@keyframes shimmer {
  0%   { transform: translateX(-100%) skewX(-20deg); }
  100% { transform: translateX(220%) skewX(-20deg); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}
@keyframes rotate-grad {
  from { --grad-angle: 0deg; }
  to   { --grad-angle: 360deg; }
}
@keyframes slide-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes particle-float {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.5; }
  25%       { transform: translateY(-40px) translateX(20px) scale(1.2); opacity: 0.8; }
  50%       { transform: translateY(-20px) translateX(-15px) scale(0.9); opacity: 0.4; }
  75%       { transform: translateY(-55px) translateX(10px) scale(1.1); opacity: 0.7; }
}
@keyframes bg-pan {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes ripple-expand { to { transform: scale(1); opacity: 0; } }
@keyframes slide-right { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes counter-pulse { 0% { transform: scale(1); } 50% { transform: scale(1.04); } 100% { transform: scale(1); } }
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(6px); opacity: 0.4; }
}
@keyframes card-border-spin {
  from { background-position: 0% 50%; }
  to   { background-position: 100% 50%; }
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

/* Dark sections */
.section-services { background: var(--bg); }
.section-alt      { background: var(--bg-surface); }
.section-process  { background: var(--bg); }

/* === SECTION HEADER === */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}
.section-title  { margin-bottom: 1rem; }
.section-header .section-title { display: block; }
.section-desc   { font-size: 1.05rem; line-height: 1.75; color: var(--text-dim); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(91,158,255,0.1);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--r-full);
  margin-bottom: 0.9rem;
  border: 1px solid rgba(91,158,255,0.2);
}
.tag-violet {
  background: rgba(157,110,255,0.1);
  color: var(--violet);
  border-color: rgba(157,110,255,0.2);
}
.tag-teal {
  background: rgba(0,223,203,0.1);
  color: var(--teal);
  border-color: rgba(0,223,203,0.2);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-full);
  font-size: 0.925rem;
  font-weight: 600;
  font-family: var(--font-head);
  transition: all 0.3s var(--t-spring);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  letter-spacing: 0.01em;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%) skewX(-20deg);
  pointer-events: none;
}
.btn:hover::after { animation: shimmer 0.55s ease; }

.btn-primary {
  background: var(--grad);
  color: var(--white);
  box-shadow: var(--glow-blue);
}
.btn-primary:hover {
  box-shadow: 0 0 35px rgba(91,158,255,0.7), 0 0 90px rgba(91,158,255,0.2);
  transform: translateY(-3px) scale(1.02);
}

.btn-glow {
  background: var(--grad);
  color: var(--white);
  box-shadow: var(--glow-blue);
  animation: glow-pulse 3s ease-in-out infinite;
}
.btn-glow:hover {
  box-shadow: 0 0 40px rgba(91,158,255,0.8), 0 0 100px rgba(157,110,255,0.3);
  transform: translateY(-3px) scale(1.03);
}

.btn-glow-teal {
  background: var(--grad-teal);
  color: var(--bg);
  font-weight: 700;
  box-shadow: var(--glow-teal);
}
.btn-glow-teal:hover {
  box-shadow: 0 0 40px rgba(0,223,203,0.8), 0 0 100px rgba(0,223,203,0.25);
  transform: translateY(-3px) scale(1.03);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.btn-ghost-white {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn-white-glow {
  background: var(--white);
  color: #0B0F1F;
  font-weight: 700;
  box-shadow: 0 0 30px rgba(255,255,255,0.2);
}
.btn-white-glow:hover {
  box-shadow: 0 0 50px rgba(255,255,255,0.4);
  transform: translateY(-3px) scale(1.02);
}

.btn-lg  { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-sm  { padding: 0.5rem 1.25rem; font-size: 0.825rem; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.navbar.nav-transparent { background: transparent; }
.navbar.scrolled {
  background: rgba(7,11,23,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 20px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  flex-shrink: 0;
  transition: transform 0.3s var(--t-spring);
}
.logo:hover { transform: scale(1.04); }
.logo .logo-accent {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-left: auto;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--r);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  transition: color var(--t), background var(--t), transform 0.15s ease;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}
.nav-links > li > a:hover { transform: translateY(-1px); }

.chevron-icon { width: 12px; height: 12px; transition: transform 0.25s var(--t-spring); }
.has-dropdown:hover .chevron-icon { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px) scale(0.96);
  background: rgba(11,15,31,0.96);
  backdrop-filter: blur(20px);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.5rem;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--t-out), transform 0.25s var(--t-out), visibility 0.25s;
  pointer-events: none;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -10px; left: 0; right: 0;
  height: 14px;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.85rem;
  border-radius: var(--r);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: all 0.15s ease;
}
.dropdown a:hover { background: rgba(91,158,255,0.1); color: var(--white); transform: translateX(3px); }
.dropdown .dd-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(91,158,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  transition: all 0.15s ease;
}
.dropdown a:hover .dd-icon { background: rgba(91,158,255,0.2); transform: scale(1.1); }
.dropdown .dd-icon svg { width: 14px; height: 14px; }
.dd-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 0.35rem 0; }

.nav-cta { margin-left: 0.75rem; flex-shrink: 0; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--t-spring);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(7,11,23,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1rem 1.5rem 2rem;
  z-index: 999;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  animation: slideDown 0.25s var(--t-out);
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.15s ease, padding-left 0.25s ease;
}
.mobile-nav a:hover { color: var(--white); padding-left: 0.4rem; }
.mobile-nav .mobile-section-title {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: rgba(255,255,255,0.3);
  padding: 1rem 0 0.5rem; border-bottom: none;
}
.mobile-nav .mobile-cta { margin-top: 1.25rem; width: 100%; justify-content: center; display: flex; }

/* === HERO === */
.hero {
  min-height: 100vh;
  background: var(--bg);
  position: relative;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 5rem) 0 6rem;
  overflow: hidden;
}

/* Aurora background */
.hero-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.aurora-1 {
  width: 900px; height: 700px;
  background: radial-gradient(ellipse, rgba(91,158,255,0.18) 0%, transparent 65%);
  top: -20%; right: -15%;
  animation: aurora-move 15s ease-in-out infinite;
}
.aurora-2 {
  width: 700px; height: 600px;
  background: radial-gradient(ellipse, rgba(157,110,255,0.15) 0%, transparent 65%);
  bottom: -20%; left: -10%;
  animation: aurora-move 18s ease-in-out infinite reverse;
}
.aurora-3 {
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,93,170,0.1) 0%, transparent 65%);
  top: 30%; left: 25%;
  animation: aurora-move 12s ease-in-out infinite 3s;
}
.aurora-4 {
  width: 350px; height: 350px;
  background: radial-gradient(ellipse, rgba(0,223,203,0.1) 0%, transparent 65%);
  top: 10%; left: 60%;
  animation: aurora-move 20s ease-in-out infinite 1s;
}
.aurora-5 {
  width: 250px; height: 250px;
  background: radial-gradient(ellipse, rgba(255,188,46,0.08) 0%, transparent 65%);
  bottom: 20%; right: 25%;
  animation: float 10s ease-in-out infinite;
}

/* Hero grid */
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
}

/* Particles */
.hero-particles {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-particles span {
  position: absolute;
  border-radius: 50%;
  background: var(--grad);
  opacity: 0;
}
.hero-particles span:nth-child(1)  { width:4px; height:4px; left:10%; top:20%; animation: particle-float 7s ease-in-out infinite 0s; }
.hero-particles span:nth-child(2)  { width:3px; height:3px; left:25%; top:60%; animation: particle-float 9s ease-in-out infinite 1s; }
.hero-particles span:nth-child(3)  { width:5px; height:5px; left:40%; top:30%; animation: particle-float 11s ease-in-out infinite 2s; }
.hero-particles span:nth-child(4)  { width:3px; height:3px; left:55%; top:75%; animation: particle-float 8s ease-in-out infinite 0.5s; background: var(--grad-warm); }
.hero-particles span:nth-child(5)  { width:4px; height:4px; left:70%; top:15%; animation: particle-float 12s ease-in-out infinite 3s; }
.hero-particles span:nth-child(6)  { width:2px; height:2px; left:80%; top:50%; animation: particle-float 6s ease-in-out infinite 1.5s; background: var(--grad-teal); }
.hero-particles span:nth-child(7)  { width:4px; height:4px; left:88%; top:70%; animation: particle-float 10s ease-in-out infinite 2.5s; }
.hero-particles span:nth-child(8)  { width:3px; height:3px; left:15%; top:80%; animation: particle-float 8s ease-in-out infinite 4s; background: var(--grad-warm); }
.hero-particles span:nth-child(9)  { width:5px; height:5px; left:60%; top:45%; animation: particle-float 13s ease-in-out infinite 0.8s; }
.hero-particles span:nth-child(10) { width:2px; height:2px; left:30%; top:10%; animation: particle-float 7s ease-in-out infinite 3.5s; background: var(--grad-teal); }
.hero-particles span:nth-child(11) { width:3px; height:3px; left:75%; top:35%; animation: particle-float 9s ease-in-out infinite 1.2s; }
.hero-particles span:nth-child(12) { width:4px; height:4px; left:5%;  top:55%; animation: particle-float 11s ease-in-out infinite 2.8s; background: var(--grad-warm); }
.hero-particles span:nth-child(13) { width:3px; height:3px; left:48%; top:88%; animation: particle-float 8s ease-in-out infinite 0.3s; }
.hero-particles span:nth-child(14) { width:2px; height:2px; left:92%; top:25%; animation: particle-float 10s ease-in-out infinite 4.5s; background: var(--grad-teal); }
.hero-particles span:nth-child(15) { width:5px; height:5px; left:35%; top:50%; animation: particle-float 14s ease-in-out infinite 1.8s; }

/* Floating badges */
.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 0.8rem 1.1rem;
  pointer-events: none;
  z-index: 2;
}
.hero-float strong { display: block; font-size: 0.9rem; font-weight: 800; color: var(--white); font-family: var(--font-head); line-height: 1.1; }
.hero-float span   { display: block; font-size: 0.7rem; color: var(--text-dim); }
.hero-float-1 { top: 18%; right: 5%; animation: float 9s ease-in-out infinite; }
.hero-float-2 { bottom: 25%; right: 12%; animation: float-2 11s ease-in-out infinite; }
.hero-float-3 { top: 55%; right: 3%; animation: float-3 8s ease-in-out infinite; }
.hf-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hf-icon svg { width: 18px; height: 18px; }
.hf-blue   { background: rgba(91,158,255,0.2);  color: var(--blue);   box-shadow: 0 0 15px rgba(91,158,255,0.3); }
.hf-violet { background: rgba(157,110,255,0.2); color: var(--violet); box-shadow: 0 0 15px rgba(157,110,255,0.3); }
.hf-pink   { background: rgba(255,93,170,0.2);  color: var(--pink);   box-shadow: 0 0 15px rgba(255,93,170,0.3); }

/* Hero content */
.hero-container { position: relative; z-index: 3; }
.hero-content   { max-width: 850px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(91,158,255,0.08);
  border: 1px solid rgba(91,158,255,0.2);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.4rem 1rem 0.4rem 0.7rem;
  border-radius: var(--r-full);
  margin-bottom: 1.5rem;
  animation: slide-in-up 0.6s var(--t-out) both;
  position: relative;
}
.pulse-ring {
  position: absolute;
  left: 9px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.4;
  animation: pulse-ring 1.8s ease-out infinite;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease-in-out infinite;
  position: relative;
  z-index: 1;
  margin-left: 2px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
  animation: slide-in-up 0.6s var(--t-out) 0.1s both;
}

.hero-typed-wrap {
  display: inline-block;
  position: relative;
}
.typed-text {
  background: var(--grad-full);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: bg-pan 4s ease infinite;
}
.typed-cursor {
  -webkit-text-fill-color: var(--blue);
  color: var(--blue);
  animation: blink 0.8s step-start infinite;
  margin-left: 2px;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 660px;
  margin-bottom: 2.5rem;
  animation: slide-in-up 0.6s var(--t-out) 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: slide-in-up 0.6s var(--t-out) 0.3s both;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  animation: slide-in-up 0.6s var(--t-out) 0.4s both;
}
.hero-stat {
  padding: 0 2rem 0 0;
  transition: transform 0.3s var(--t-spring);
}
.hero-stat:hover { transform: translateY(-3px); }
.hero-stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.08); margin-right: 2rem; }
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.3rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-num em { -webkit-text-fill-color: transparent; font-style: normal; }
.hero-stat-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.35); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 3;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.hero-scroll-hint:hover { opacity: 1; }
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel-dot {
  width: 3px; height: 6px;
  background: var(--blue);
  border-radius: 2px;
  animation: scroll-bounce 2s ease-in-out infinite;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
}

/* === MARQUEE === */
.marquee-section {
  background: var(--bg-surface);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-surface), transparent);
}
.marquee-section::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-surface), transparent);
}
.marquee-track {
  overflow: hidden;
  white-space: nowrap;
  padding: 1rem 0;
}
.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marquee 30s linear infinite;
}
.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  padding: 0 1.5rem;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.mq-item:hover { color: var(--white); }
.mq-item svg { width: 14px; height: 14px; color: var(--teal); flex-shrink: 0; }
.mq-sep {
  color: var(--violet);
  font-size: 0.75rem;
  opacity: 0.5;
  padding: 0 0.25rem;
}

/* === SERVICE CARDS === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all 0.35s var(--t-out);
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(10px);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--r-lg) + 1px);
  background: var(--grad);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--r-lg) - 1px);
  background: var(--bg-card-solid);
  z-index: -1;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }

.sc-number {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.1);
}
.service-card:hover .sc-number { color: rgba(255,255,255,0.2); }

.sc-icon {
  width: 52px; height: 52px;
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.35rem;
  flex-shrink: 0;
  transition: transform 0.35s var(--t-spring), box-shadow 0.35s ease;
}
.sc-icon svg { width: 24px; height: 24px; transition: transform 0.35s var(--t-spring); }
.service-card:hover .sc-icon { transform: scale(1.15) rotate(-5deg); }

.sc-icon-blue   { background: rgba(91,158,255,0.15);  color: var(--blue);   }
.sc-icon-violet { background: rgba(157,110,255,0.15); color: var(--violet); }
.sc-icon-teal   { background: rgba(0,223,203,0.15);   color: var(--teal);   }
.sc-icon-indigo { background: rgba(129,140,248,0.15); color: var(--indigo); }
.sc-icon-orange { background: rgba(255,138,91,0.15);  color: var(--orange); }
.sc-icon-pink   { background: rgba(255,93,170,0.15);  color: var(--pink);   }

.service-card:hover .sc-icon-blue   { background: rgba(91,158,255,0.25);  box-shadow: var(--glow-blue); }
.service-card:hover .sc-icon-violet { background: rgba(157,110,255,0.25); box-shadow: var(--glow-violet); }
.service-card:hover .sc-icon-teal   { background: rgba(0,223,203,0.25);   box-shadow: var(--glow-teal); }
.service-card:hover .sc-icon-indigo { background: rgba(129,140,248,0.25); box-shadow: 0 0 25px rgba(129,140,248,0.5); }
.service-card:hover .sc-icon-orange { background: rgba(255,138,91,0.25);  box-shadow: 0 0 25px rgba(255,138,91,0.5); }
.service-card:hover .sc-icon-pink   { background: rgba(255,93,170,0.25);  box-shadow: var(--glow-pink); }

.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--white); }
.service-card p  { font-size: 0.865rem; line-height: 1.65; color: rgba(255,255,255,0.5); margin-bottom: 0; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap 0.15s ease, color 0.15s ease;
}
.card-link:hover { gap: 0.65rem; color: var(--violet); }
.card-link svg { width: 14px; height: 14px; transition: transform 0.15s ease; }
.card-link:hover svg { transform: translateX(3px); }

/* Glow blobs behind cards */
.sc-glow {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 150px; height: 150px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: -2;
}
.service-card:hover .sc-glow { opacity: 1; }
.sc-glow-blue   { background: rgba(91,158,255,0.3); }
.sc-glow-violet { background: rgba(157,110,255,0.3); }
.sc-glow-teal   { background: rgba(0,223,203,0.3); }
.sc-glow-indigo { background: rgba(129,140,248,0.3); }
.sc-glow-orange { background: rgba(255,138,91,0.3); }
.sc-glow-pink   { background: rgba(255,93,170,0.3); }

/* === FEATURE CARDS === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all 0.35s var(--t-out);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fc-color, var(--blue)), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.feature-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-6px);
  background: rgba(14,19,36,0.8);
}
.feature-card:hover::before { opacity: 1; }

.fc-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--r);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--fc-color, var(--blue));
  transition: all 0.35s var(--t-spring);
}
.fc-icon-wrap svg { width: 24px; height: 24px; transition: transform 0.35s var(--t-spring); }
.feature-card:hover .fc-icon-wrap {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  transform: scale(1.12) rotate(-4deg);
  box-shadow: 0 0 20px color-mix(in srgb, var(--fc-color) 50%, transparent);
}

.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.55rem; }
.feature-card p  { font-size: 0.875rem; line-height: 1.65; color: rgba(255,255,255,0.5); }

/* === HIGHLIGHT SECTIONS === */
.highlight-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.highlight-dark    { background: var(--bg); }
.highlight-surface { background: var(--bg-surface); }

.hs-bg-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hs-glow-teal   { background: rgba(0,223,203,0.07); top: -100px; right: -100px; }
.hs-glow-blue   { background: rgba(91,158,255,0.07); bottom: -100px; left: -100px; }
.hs-glow-violet { background: rgba(157,110,255,0.07); top: -100px; left: -100px; }

.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.highlight-grid-rev { direction: rtl; }
.highlight-grid-rev > * { direction: ltr; }

.highlight-content { padding-right: 1rem; }
.highlight-content h2 { margin-bottom: 1rem; }
.highlight-content > p { color: rgba(255,255,255,0.55); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2rem; }

.hl-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.25rem; }
.hl-feature {
  display: flex; align-items: flex-start; gap: 0.75rem;
  transition: transform 0.25s ease;
}
.hl-feature:hover { transform: translateX(5px); }
.hl-feature svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.hl-feature span { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.hl-feature-dark svg { color: var(--violet); }
.hl-feature-dark span { color: rgba(255,255,255,0.6); }

.highlight-visual {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 2rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--glow-card);
  transition: transform 0.35s var(--t-out), box-shadow 0.35s ease;
}
.highlight-visual:hover { transform: translateY(-8px); box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08); }

.hl-visual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.hl-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.25rem;
  transition: all 0.3s var(--t-out);
}
.hl-card:hover { background: rgba(255,255,255,0.07); transform: scale(1.03); }
.hl-card-teal:hover   { border-color: rgba(0,223,203,0.3); }
.hl-card-violet:hover { border-color: rgba(157,110,255,0.3); }
.hl-card-blue:hover   { border-color: rgba(91,158,255,0.3); }
.hl-card-green:hover  { border-color: rgba(52,211,153,0.3); }
.hl-card-amber:hover  { border-color: rgba(255,188,46,0.3); }
.hl-card-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; }
.hl-card-icon svg { width: 18px; height: 18px; }
.hl-card-title { font-size: 0.875rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; font-family: var(--font-head); }
.hl-card-sub   { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* === PROCESS === */
.section-process { position: relative; }
.process-bg-glow {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(91,158,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(16.66% + 16px); right: calc(16.66% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--pink));
  z-index: 0;
  animation: slide-right 1.5s var(--t-out) 0.5s both;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.5rem;
}
.step-bg-num {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.step-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--font-head);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s var(--t-spring);
  position: relative;
  z-index: 1;
}
.step-circle-active {
  background: var(--grad);
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--glow-blue);
}
.step-circle-pink {
  background: var(--grad-warm);
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--glow-pink);
}
.step-circle-teal {
  background: var(--grad-teal);
  border-color: transparent;
  color: var(--bg);
  box-shadow: var(--glow-teal);
}
.process-step:hover .step-circle {
  transform: scale(1.15);
  border-color: rgba(91,158,255,0.5);
  color: var(--white);
  background: rgba(91,158,255,0.15);
}
.process-step:hover .step-circle-active,
.process-step:hover .step-circle-pink,
.process-step:hover .step-circle-teal {
  transform: scale(1.15);
  background: var(--grad);
}

.process-step h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; }
.process-step p  { font-size: 0.855rem; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* === PORTFOLIO === */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.portfolio-grid-7 { grid-template-columns: repeat(3, 1fr); }
.portfolio-grid-7 .portfolio-card:nth-child(7) { grid-column: 2 / 3; }

.portfolio-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.35s var(--t-out);
  background: var(--bg-card-solid);
}
.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(91,158,255,0.3);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(91,158,255,0.12);
}

.portfolio-img {
  height: 210px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  /* Skeleton shimmer while image loads */
  background: linear-gradient(90deg, #0c1120 25%, #141b2d 50%, #0c1120 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.8s ease-in-out infinite;
}
@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease, filter 0.35s ease;
  /* Stop shimmer once image is loaded (handled via onload class) */
  animation: none;
}
.portfolio-card:hover .portfolio-img img {
  transform: scale(1.06);
  filter: brightness(0.6);
}
/* Loaded state — remove skeleton */
.portfolio-img.loaded { animation: none; background: transparent; }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,11,23,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(6px);
}
.portfolio-overlay a {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.portfolio-overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--grad);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-head);
  padding: 0.65rem 1.4rem;
  border-radius: var(--r-full);
  box-shadow: var(--glow-blue);
  transition: transform 0.25s var(--t-spring), box-shadow 0.25s ease;
  letter-spacing: 0.01em;
}
.portfolio-overlay a:hover .portfolio-overlay-btn {
  transform: scale(1.06);
  box-shadow: 0 0 40px rgba(91,158,255,0.7);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-info { padding: 1.35rem; }
.p-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.7rem; }
.p-tag {
  font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--blue); background: rgba(91,158,255,0.1);
  padding: 0.2rem 0.55rem; border-radius: var(--r-full);
  border: 1px solid rgba(91,158,255,0.2);
}
.p-tag-violet { color: var(--violet); background: rgba(157,110,255,0.1); border-color: rgba(157,110,255,0.2); }
.p-tag-teal   { color: var(--teal);   background: rgba(0,223,203,0.1);   border-color: rgba(0,223,203,0.2); }
.p-tag-amber  { color: var(--amber);  background: rgba(255,188,46,0.1);  border-color: rgba(255,188,46,0.2); }
.p-tag-blue   { color: var(--blue);   background: rgba(91,158,255,0.1);  border-color: rgba(91,158,255,0.2); }
.p-tag-pink   { color: var(--pink);   background: rgba(255,93,170,0.1);  border-color: rgba(255,93,170,0.2); }
.p-tag-indigo { color: var(--indigo); background: rgba(129,140,248,0.1); border-color: rgba(129,140,248,0.2); }
.p-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.35rem; font-family: var(--font-head); }
.p-sub   { font-size: 0.81rem; color: rgba(255,255,255,0.4); line-height: 1.5; }

/* === INDUSTRIES === */
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all 0.3s var(--t-spring);
  backdrop-filter: blur(10px);
  cursor: default;
}
.industry-card:hover {
  border-color: rgba(91,158,255,0.3);
  background: rgba(14,19,36,0.8);
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 40px rgba(91,158,255,0.12);
}
.industry-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.85rem;
  font-size: 1.5rem;
  transition: all 0.3s var(--t-spring);
  border: 1px solid var(--border);
}
.industry-card:hover .industry-icon {
  background: rgba(91,158,255,0.12);
  border-color: rgba(91,158,255,0.25);
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 4px 20px rgba(91,158,255,0.2);
}
.industry-card h4 { font-size: 0.855rem; font-weight: 600; color: rgba(255,255,255,0.65); transition: color 0.2s ease; }
.industry-card:hover h4 { color: var(--white); }

/* === TESTIMONIALS === */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all 0.35s var(--t-out);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.testimonial-card:hover {
  border-color: rgba(157,110,255,0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(157,110,255,0.1);
}

.t-quote {
  position: absolute;
  top: -0.5rem; right: 1.25rem;
  font-size: 7rem;
  font-weight: 900;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  pointer-events: none;
  font-family: Georgia, serif;
  opacity: 0.15;
  transition: opacity 0.35s ease;
}
.testimonial-card:hover .t-quote { opacity: 0.25; }

.t-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.t-stars span { color: var(--amber); font-size: 0.95rem; }
.t-text { font-size: 0.9rem; line-height: 1.75; color: rgba(255,255,255,0.55); font-style: italic; margin-bottom: 1.5rem; }
.t-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 0.95rem;
  font-family: var(--font-head);
  flex-shrink: 0;
  transition: transform 0.3s var(--t-spring);
}
.t-av-1 { background: var(--grad); }
.t-av-2 { background: var(--grad-teal); color: var(--bg); }
.t-av-3 { background: var(--grad-warm); }
.testimonial-card:hover .t-avatar { transform: scale(1.1); }
.t-name { font-size: 0.875rem; font-weight: 700; color: var(--white); font-family: var(--font-head); }
.t-role { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* === PACKAGES === */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all 0.35s var(--t-out);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 24px 70px rgba(0,0,0,0.4);
}

.pkg-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.pkg-bar-blue     { background: var(--grad); }
.pkg-bar-gradient { background: var(--grad-full); background-size: 200% 200%; animation: bg-pan 4s ease infinite; }
.pkg-bar-violet   { background: var(--grad-warm); }

.package-card-featured {
  border-color: rgba(91,158,255,0.3);
  background: rgba(91,158,255,0.04);
  box-shadow: var(--glow-blue);
}
.package-card-featured:hover {
  border-color: rgba(91,158,255,0.5);
  box-shadow: 0 0 50px rgba(91,158,255,0.3), 0 24px 70px rgba(0,0,0,0.4);
}

.pkg-popular-badge {
  position: absolute;
  top: 1rem; right: -2.4rem;
  background: var(--grad);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.28rem 3rem;
  transform: rotate(45deg);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-head);
}

.pkg-name { font-size: 1.15rem; font-weight: 800; color: var(--white); margin-bottom: 0.4rem; padding-top: 0.5rem; font-family: var(--font-head); }
.pkg-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  color: var(--blue);
  background: rgba(91,158,255,0.1);
  border: 1px solid rgba(91,158,255,0.2);
  padding: 0.2rem 0.65rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
}
.pkg-tag-glow {
  color: var(--violet);
  background: rgba(157,110,255,0.1);
  border-color: rgba(157,110,255,0.2);
  box-shadow: 0 0 15px rgba(157,110,255,0.2);
}
.pkg-desc { font-size: 0.855rem; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 1.5rem; }
.pkg-features { flex: 1; margin-bottom: 1.75rem; }
.pkg-feature {
  display: flex; align-items: flex-start; gap: 0.6rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.845rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s ease;
}
.pkg-feature:last-child { border-bottom: none; }
.pkg-feature:hover { color: var(--white); }
.pkg-feature svg { width: 15px; height: 15px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.pkg-cta { width: 100%; justify-content: center; margin-top: auto; }

/* === STATS SECTION === */
.stats-section {
  background: var(--bg);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.stats-aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(91,158,255,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 50%, rgba(157,110,255,0.06) 0%, transparent 55%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
}
.stat-item { transition: transform 0.3s var(--t-spring); }
.stat-item:hover { transform: translateY(-5px); }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.4rem;
  background: var(--grad-full);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: bg-pan 5s ease infinite;
}
.stat-num em { font-style: normal; }
.stat-label { font-size: 0.855rem; color: rgba(255,255,255,0.35); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; }

/* === FAQ === */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 0.65rem;
  overflow: hidden;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  transition: box-shadow var(--t), border-color var(--t);
}
.faq-item.open {
  border-color: rgba(91,158,255,0.25);
  box-shadow: 0 0 0 1px rgba(91,158,255,0.1), 0 8px 30px rgba(91,158,255,0.08);
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  text-align: left;
  font-size: 0.925rem;
  font-weight: 600;
  font-family: var(--font-head);
  color: rgba(255,255,255,0.8);
  background: transparent;
  cursor: pointer;
  transition: color 0.15s ease;
}
.faq-q:hover { color: var(--white); }
.faq-item.open .faq-q { color: var(--blue); }
.faq-q svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.25);
  transition: transform 0.35s var(--t-spring), color var(--t);
}
.faq-item.open .faq-q svg { transform: rotate(45deg); color: var(--blue); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner {
  padding: 0 1.4rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 0.9rem;
}

/* === CTA SECTION === */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
  text-align: center;
  background: var(--bg);
}
.cta-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cta-orb-1 { width:600px; height:600px; background: rgba(91,158,255,0.18);   top:-20%; left:-10%; animation: aurora-move 12s ease-in-out infinite; }
.cta-orb-2 { width:500px; height:500px; background: rgba(157,110,255,0.18);  top:-15%; right:-10%; animation: aurora-move 15s ease-in-out infinite reverse; }
.cta-orb-3 { width:400px; height:300px; background: rgba(255,93,170,0.12);   bottom:-10%; left:30%; animation: aurora-move 10s ease-in-out infinite 2s; }

.cta-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  background: rgba(0,223,203,0.1);
  border: 1px solid rgba(0,223,203,0.2);
  padding: 0.3rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1.25rem;
}
.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-family: var(--font-head);
  font-weight: 800;
  margin-bottom: 1rem;
}
.cta-hl {
  background: var(--grad-full);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: bg-pan 4s ease infinite;
}
.cta-section p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.cta-btns { justify-content: center; }

/* === FOOTER === */
.footer {
  background: var(--bg);
  padding: 4.5rem 0 0;
  position: relative;
  overflow: hidden;
}
.footer-top-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91,158,255,0.5), rgba(157,110,255,0.5), rgba(255,93,170,0.3), transparent);
  margin-bottom: 0;
  position: absolute;
  top: 0; left: 0; right: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-top: 1px;
}
.footer-brand .logo { display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.35); max-width: 280px; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.65rem; }
.footer-social {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all 0.3s var(--t-spring);
}
.footer-social:hover {
  background: var(--grad);
  color: var(--white);
  transform: translateY(-4px) scale(1.1);
  box-shadow: var(--glow-blue);
  border-color: transparent;
}
.footer-social svg { width: 15px; height: 15px; }
.footer-col h5 {
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.2rem;
  font-family: var(--font-head);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.855rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.15s ease, padding-left 0.25s ease;
  display: block;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.85); padding-left: 4px; }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.2); }
.footer-btm-links { display: flex; gap: 1.5rem; }
.footer-btm-links a {
  font-size: 0.8rem; color: rgba(255,255,255,0.2);
  transition: color 0.15s ease;
}
.footer-btm-links a:hover { color: rgba(255,255,255,0.7); }

/* === SCROLL ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--t-out), transform 0.7s var(--t-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s var(--t-out), transform 0.7s var(--t-out);
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s var(--t-out), transform 0.7s var(--t-out);
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

.scale-up {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.7s var(--t-out), transform 0.7s var(--t-spring);
}
.scale-up.visible { opacity: 1; transform: scale(1); }

/* === PAGE HERO (other pages) === */
.page-hero {
  background: var(--bg);
  padding: calc(var(--nav-h) + 3.5rem) 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(91,158,255,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 50%, rgba(157,110,255,0.08) 0%, transparent 60%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91,158,255,0.4), rgba(157,110,255,0.4), transparent);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-content { max-width: 680px; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,0.55); font-size: 1.05rem; line-height: 1.7; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.35); margin-bottom: 1.1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.35); transition: color 0.15s ease; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb svg { width: 11px; height: 11px; }

/* === CONTACT PAGE === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.45fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 0.9rem; color: var(--white); }
.contact-info > p { margin-bottom: 2rem; font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; transition: transform var(--t); }
.contact-item:hover { transform: translateX(4px); }
.c-icon {
  width: 42px; height: 42px; border-radius: var(--r);
  background: rgba(91,158,255,0.1);
  border: 1px solid rgba(91,158,255,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all 0.3s var(--t-spring);
}
.contact-item:hover .c-icon { background: rgba(91,158,255,0.2); transform: scale(1.1); }
.c-icon svg { width: 19px; height: 19px; color: var(--blue); }
.c-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.3); margin-bottom: 0.2rem; }
.c-value { font-size: 0.925rem; font-weight: 500; color: rgba(255,255,255,0.7); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--glow-card);
  transition: box-shadow 0.35s ease;
}
.contact-form:focus-within { box-shadow: 0 0 40px rgba(91,158,255,0.1), var(--glow-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.15rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.6); margin-bottom: 0.45rem; }
.form-control {
  width: 100%; padding: 0.72rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  font-size: 0.875rem;
  color: var(--white);
  background: rgba(255,255,255,0.04);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
}
.form-control:focus {
  border-color: rgba(91,158,255,0.5);
  box-shadow: 0 0 0 3px rgba(91,158,255,0.1);
}
.form-control::placeholder { color: rgba(255,255,255,0.2); }
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-submit { width: 100%; justify-content: center; padding: 0.9rem; font-size: 0.95rem; }

/* === UTILITIES === */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0 !important; }

/* === SCROLL PROGRESS BAR === */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--grad-full);
  background-size: 200% 200%;
  animation: bg-pan 3s ease infinite;
  z-index: 10000;
  width: 0%;
  pointer-events: none;
  transition: width 0.1s linear;
}

/* === CHECK LIST === */
.check-list { display: flex; flex-direction: column; gap: 0.65rem; }
.check-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.check-item svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: var(--green);
}

/* === ICON BOX === */
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1rem;
  transition: transform 0.3s var(--t-spring);
}
.icon-box svg { width: 22px; height: 22px; }
.feature-card:hover .icon-box { transform: scale(1.1) rotate(-4deg); }

.ib-blue   { background: rgba(91,158,255,0.15);  color: var(--blue);   }
.ib-purple { background: rgba(157,110,255,0.15); color: var(--violet); }
.ib-green  { background: rgba(52,211,153,0.15);  color: var(--green);  }
.ib-orange { background: rgba(255,138,91,0.15);  color: var(--orange); }
.ib-cyan   { background: rgba(0,223,203,0.15);   color: var(--teal);   }
.ib-indigo { background: rgba(129,140,248,0.15); color: var(--indigo); }
.ib-pink   { background: rgba(255,93,170,0.15);  color: var(--pink);   }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .highlight-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-float { display: none; }
}

@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  .section { padding: 4rem 0; }
  .hero { padding: calc(var(--nav-h) + 2.5rem) 0 4rem; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .services-grid, .features-grid, .packages-grid,
  .testimonials-grid, .industries-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { justify-content: center; }
  .hero-stats-row { gap: 1rem; flex-direction: row; flex-wrap: wrap; }
  .hero-stat-sep { display: none; }
  .hero-stat { padding-right: 1.5rem; }
  .contact-form { padding: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hl-visual-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 5rem 0; }
  .highlight-grid-rev { direction: ltr; }
}
