/* ========================
   CSS CUSTOM PROPERTIES
======================== */
:root {
  --white: #FFFFFF;
  --black: #0A0A0A;
  --blue: #0057FF;
  --blue-light: #2b79ff;
  --blue-dark: #0040cc;
  --blue-glow: rgba(0,87,255,0.25);
  --gold: #C9A84C;
  --gold-light: #dfc27a;
  --navy: #0d1b3e;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;

  --section-pad: 110px 0;
  --container-max: 1280px;
  --container-pad: 0 32px;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-blue: 0 8px 32px rgba(0,87,255,0.30), 0 2px 8px rgba(0,87,255,0.15);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.25);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --z-cursor: 9999;
  --z-loader: 9998;
  --z-nav: 100;
  --z-modal: 200;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.2; color: var(--black); font-weight: 700; }

/* ========================
   CONTAINER
======================== */
.container { max-width: var(--container-max); margin: 0 auto; padding: var(--container-pad); }

/* ========================
   CUSTOM CURSOR
======================== */
#cursor-dot {
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  position: fixed; top:0; left:0;
  pointer-events: none; z-index: var(--z-cursor);
  transform: translate(-50%,-50%);
  transition: transform 0.1s;
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 2px solid rgba(0,87,255,0.5);
  border-radius: 50%;
  position: fixed; top:0; left:0;
  pointer-events: none; z-index: calc(var(--z-cursor) - 1);
  transform: translate(-50%,-50%);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
#cursor-ring.hover {
  width: 56px; height: 56px;
  border-color: var(--blue);
  background: rgba(0,87,255,0.06);
}

/* ========================
   PAGE LOADER
======================== */
#page-loader {
  position: fixed; inset: 0;
  background: var(--white);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: var(--z-loader);
}
#loader-logo {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.5px;
}
#loader-logo .ion { color: var(--black); }
#loader-logo .etweb { color: var(--blue); }
#loader-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-400);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 12px;
  opacity: 0;
  animation: fadeIn 0.5s ease 0.8s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
#loader-progress {
  position: absolute; bottom: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--blue-light));
  background-size: 200% 100%;
  animation: gradientShift 1.5s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ========================
   NAVBAR
======================== */
#navbar {
  position: fixed; top:0; left:0; right:0;
  z-index: var(--z-nav);
  padding: 22px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 24px rgba(0,0,0,0.04);
  padding: 14px 0;
}
/* Logo: keep white until scroll */
.nav-logo .logo-white { display: block; }
.nav-logo .logo-color  { display: none; }
#navbar.scrolled .nav-logo .logo-white { display: none; }
#navbar.scrolled .nav-logo .logo-color  { display: block; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-logo img { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-family: var(--font-heading);
  font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,0.80);
  position: relative;
  transition: color 0.2s;
}
#navbar.scrolled .nav-links a { color: var(--gray-700); }
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }

.btn-quote {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 700;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,87,255,0.25);
  letter-spacing: 0.3px;
}
.btn-quote:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: var(--shadow-blue);
}
.btn-quote:active { transform: scale(0.97); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; }
.nav-hamburger span { width: 26px; height: 2px; background: var(--black); border-radius: 2px; transition: var(--transition); }

/* ========================
   HERO — DARK PREMIUM
======================== */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 130px 0 100px;
  background: linear-gradient(135deg, #060d24 0%, #0d1b3e 40%, #0a1530 70%, #091228 100%);
}

/* Animated gradient blobs */
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
  animation: blobFloat 10s ease-in-out infinite;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,87,255,0.22) 0%, transparent 70%);
  top: -150px; left: -100px;
  animation-delay: 0s;
}
.hero-blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,87,255,0.14) 0%, transparent 70%);
  bottom: -100px; right: 10%;
  animation-delay: 3s;
}
.hero-blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: 30%; right: 5%;
  animation-delay: 6s;
}
@keyframes blobFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  33%       { transform: translateY(-30px) scale(1.05); }
  66%       { transform: translateY(15px) scale(0.97); }
}

/* Dot grid */
.hero-grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative; z-index: 2;
}

/* ── Tag ── */
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0,87,255,0.15);
  border: 1px solid rgba(0,87,255,0.30);
  color: #7eb3ff;
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  letter-spacing: 2px; text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 8px rgba(0,87,255,0.8);
  animation: tagPulse 2s ease-in-out infinite;
}
@keyframes tagPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(43,121,255,0.8); }
  50%       { opacity: 0.6; box-shadow: 0 0 16px rgba(43,121,255,0.4); }
}

/* ── Headline ── */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.hero-accent-line { display: block; margin-top: 6px; }
.hero-accent-word {
  background: linear-gradient(90deg, #4d9fff 0%, #a78bff 40%, var(--gold-light) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientSlide 4s linear infinite;
}
@keyframes gradientSlide {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ── Desc ── */
.hero-desc {
  font-size: 17px; line-height: 1.78;
  color: rgba(255,255,255,0.60);
  margin-bottom: 28px;
  max-width: 480px;
}

/* ── Services pill row ── */
.hero-services-row {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; margin-bottom: 40px;
}
.hero-services-row span {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.70);
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.hero-services-row span:hover {
  background: rgba(0,87,255,0.18);
  border-color: rgba(0,87,255,0.35);
  color: #7eb3ff;
}
.hero-services-row span i { color: var(--blue-light); font-size: 10px; }

/* ── CTA buttons ── */
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 17px 36px;
  background: linear-gradient(135deg, var(--blue) 0%, #5b8fff 100%);
  color: var(--white);
  font-family: var(--font-heading); font-size: 15px; font-weight: 700;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0,87,255,0.40);
  position: relative; overflow: hidden;
}
.btn-hero-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-hero-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 48px rgba(0,87,255,0.50); }
.btn-hero-primary:hover::before { opacity: 1; }
.btn-hero-primary:active { transform: scale(0.97); }

.btn-arrow {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}
.btn-hero-primary:hover .btn-arrow { transform: translateX(4px); background: rgba(255,255,255,0.28); }

.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  border: 1.5px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-heading); font-size: 15px; font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.04);
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,0.40); color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }

/* ── Trust strip ── */
.hero-trust { display: flex; align-items: center; gap: 20px; }
.trust-avatars { display: flex; }
.trust-avatars img {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.15);
  object-fit: cover;
  margin-left: -10px;
}
.trust-avatars img:first-child { margin-left: 0; }
.trust-more {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,87,255,0.30);
  border: 2.5px solid rgba(0,87,255,0.40);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  color: #7eb3ff; margin-left: -10px;
}
.trust-stars { display: flex; align-items: center; gap: 3px; color: var(--gold); font-size: 12px; margin-bottom: 2px; }
.trust-stars strong { color: var(--gold-light); font-size: 13px; margin-left: 4px; }
.trust-label { font-size: 12px; color: rgba(255,255,255,0.45); }

/* ── Visual side ── */
.hero-visual {
  position: relative;
  height: 580px;
  display: flex; align-items: center; justify-content: center;
}

/* Decorative rings */
.hero-ring {
  position: absolute; inset: -24px; border-radius: 32px;
  border: 1px solid rgba(0,87,255,0.18);
  pointer-events: none;
  animation: ringPulse 4s ease-in-out infinite;
}
.hero-ring-2 { inset: -48px; border-color: rgba(0,87,255,0.08); animation-delay: 1.5s; }
@keyframes ringPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.02); }
}

/* Main image */
.hero-img-frame {
  position: relative;
  width: 100%; height: 100%;
}
.hero-img-inner {
  width: 100%; height: 100%;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.50), 0 8px 24px rgba(0,87,255,0.20);
}
.hero-img-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
  filter: brightness(0.88) saturate(1.1);
}
.hero-img-inner:hover img { transform: scale(1.04); }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,87,255,0.15) 0%, transparent 50%, rgba(0,5,30,0.55) 100%);
}

/* ── Glass metric cards ── */
.hero-metric {
  position: absolute;
  background: rgba(10,20,50,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  z-index: 5;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.04);
  animation: metricFloat 5s ease-in-out infinite;
  min-width: 160px;
}
.hero-metric-1 { bottom: 36px; left: -36px; animation-delay: 0s; }
.hero-metric-2 { top: 48px;   right: -36px; animation-delay: 1.8s; min-width: 140px; }
.hero-metric-3 { bottom: 130px; right: -36px; animation-delay: 3.2s; min-width: 140px; }

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

.metric-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: rgba(0,87,255,0.20);
  border: 1px solid rgba(0,87,255,0.30);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light); font-size: 17px;
}
.metric-icon.gold { background: rgba(201,168,76,0.18); border-color: rgba(201,168,76,0.30); color: var(--gold-light); }
.metric-icon.green { background: rgba(16,185,129,0.18); border-color: rgba(16,185,129,0.30); color: #34d399; }

.metric-val {
  display: block;
  font-family: var(--font-heading); font-size: 18px; font-weight: 800;
  color: var(--white); line-height: 1;
}
.metric-lbl {
  font-size: 11px; color: rgba(255,255,255,0.50); margin-top: 3px;
}

.metric-sparkline { margin-left: auto; width: 60px; height: 24px; flex-shrink: 0; }
.metric-sparkline svg { width: 100%; height: 100%; }

/* Floating badge */
.hero-badge {
  position: absolute; top: 24px; left: -20px;
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(201,168,76,0.20), rgba(201,168,76,0.08));
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  backdrop-filter: blur(12px);
  z-index: 5;
  animation: metricFloat 6s ease-in-out infinite 1s;
}
.hero-badge i { color: var(--gold-light); font-size: 14px; }
.hero-badge span { font-family: var(--font-heading); font-size: 12px; font-weight: 700; color: var(--gold-light); letter-spacing: 0.5px; }

/* ── Wave bottom ── */
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; line-height: 0;
}
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* Keep other buttons working for rest of page */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 34px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
  font-family: var(--font-heading); font-size: 15px; font-weight: 700;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(0,87,255,0.28);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-blue); }
.btn-primary:active { transform: scale(0.97); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  border: 2px solid var(--gray-200); color: var(--gray-700);
  font-family: var(--font-heading); font-size: 15px; font-weight: 700;
  border-radius: var(--radius-full); transition: var(--transition);
  background: var(--white);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,87,255,0.12); }

/* ========================
   STATS BAR
======================== */
#stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2f5c 100%);
  position: relative; overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative; z-index: 1;
}
.stat-item {
  text-align: center; padding: 20px;
  position: relative;
}
.stat-item::after {
  content: ''; position: absolute;
  right: 0; top: 20%; height: 60%; width: 1px;
  background: rgba(255,255,255,0.10);
}
.stat-item:last-child::after { display: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 700; color: var(--white);
  line-height: 1; margin-bottom: 8px;
  display: block;
}
.stat-number-blue { color: var(--blue-light); }
.stat-label {
  font-size: 14px; color: rgba(255,255,255,0.60);
  font-weight: 400; letter-spacing: 0.5px;
}

/* ========================
   SECTION HEADERS
======================== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  color: var(--blue);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 14px;
  padding: 5px 16px;
  background: rgba(0,87,255,0.06);
  border-radius: var(--radius-full);
  border: 1px solid rgba(0,87,255,0.12);
}
.section-title { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; margin-bottom: 18px; color: var(--black); }
.section-desc { font-size: 17px; color: var(--gray-500); max-width: 580px; margin: 0 auto; line-height: 1.75; }

/* ========================
   SERVICES SECTION
======================== */
#services { padding: var(--section-pad); }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition-slow);
  position: relative; overflow: hidden;
  cursor: none;
}

/* Gradient border on hover via ::before */
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--blue), var(--gold), var(--blue-light));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Shimmer overlay */
.service-card::after {
  content: '';
  position: absolute;
  top: -100%; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.5) 50%, transparent 60%);
  transform: skewX(-20deg);
  transition: left 0.6s ease, top 0.6s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,87,255,0.15), 0 8px 24px rgba(0,87,255,0.10);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { left: 150%; top: 100%; }

.service-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
  transition: var(--transition-slow);
  background: linear-gradient(135deg, rgba(0,87,255,0.08), rgba(0,87,255,0.03));
  color: var(--blue);
  position: relative; z-index: 1;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 8px 24px rgba(0,87,255,0.30);
}

.service-card h3 {
  font-size: 18px; font-weight: 700;
  margin-bottom: 12px; color: var(--black);
  transition: color 0.3s;
  position: relative; z-index: 1;
}
.service-card:hover h3 { color: var(--blue); }

.service-card p {
  font-size: 14px; color: var(--gray-500);
  line-height: 1.75; margin-bottom: 20px;
  position: relative; z-index: 1;
}

.service-link {
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 700;
  color: var(--blue);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.25s;
  position: relative; z-index: 1;
}
.service-link:hover { gap: 12px; }

/* ========================
   WHY CHOOSE US
======================== */
#why-us {
  padding: var(--section-pad);
  background: var(--gray-50);
  position: relative; overflow: hidden;
}
#why-us::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,87,255,0.04) 0%, transparent 70%);
}

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

.why-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition-slow);
  position: relative; overflow: hidden;
  text-align: center;
}
.why-item::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.why-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gray-100);
}
.why-item:hover::after { transform: scaleX(1); }

.why-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: var(--white);
  margin: 0 auto 24px;
  transition: var(--transition-slow);
  box-shadow: 0 8px 24px rgba(0,87,255,0.25);
}
.why-item:hover .why-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 36px rgba(0,87,255,0.35);
}
.why-item h3 { font-size: 20px; font-weight: 700; margin-bottom: 14px; color: var(--black); }
.why-item p { font-size: 15px; color: var(--gray-500); line-height: 1.75; }

/* ========================
   PROCESS SECTION
======================== */
#process { padding: var(--section-pad); position: relative; }

.process-track {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px; position: relative;
}
.process-connector {
  position: absolute;
  top: 44px; left: 12.5%; width: 75%; height: 2px; z-index: 0;
}
.process-connector-bg { position: absolute; inset: 0; background: var(--gray-200); }
.process-connector-fill {
  position: absolute; top:0; left:0; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  border-radius: 2px;
  transition: width 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.step-circle {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: var(--gray-400);
  margin-bottom: 22px;
  transition: var(--transition-slow);
  box-shadow: var(--shadow-sm);
}
.process-step.revealed .step-circle,
.process-step:hover .step-circle {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(0,87,255,0.06);
  box-shadow: 0 0 0 8px rgba(0,87,255,0.06), var(--shadow-sm);
  transform: scale(1.08);
}

.step-badge {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  color: var(--blue); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 10px;
}
.process-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--black); }
.process-step p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ========================
   PORTFOLIO
======================== */
#portfolio { padding: var(--section-pad); background: var(--gray-50); }

.portfolio-filters {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 44px; flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 700;
  color: var(--gray-600);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  transition: var(--transition); cursor: none;
  letter-spacing: 0.3px;
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white); border-color: transparent;
  box-shadow: 0 6px 20px rgba(0,87,255,0.28);
  transform: translateY(-2px);
}

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

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
  aspect-ratio: 4/3;
  transition: var(--transition-slow);
  cursor: none;
  box-shadow: var(--shadow-md);
}
.portfolio-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--shadow-xl); }

.portfolio-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-card:hover img { transform: scale(1.1); }

.portfolio-card-emoji {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}

.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,15,60,0.90) 0%, rgba(0,40,120,0.50) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  opacity: 0; transition: opacity 0.35s ease;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-cat {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: var(--radius-full);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 8px; width: fit-content;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.20);
}
.portfolio-overlay h3 { color: var(--white); font-size: 18px; font-weight: 700; }
.portfolio-overlay p { color: rgba(255,255,255,0.75); font-size: 13px; margin-top: 4px; }
.portfolio-overlay .result-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,168,76,0.20);
  border: 1px solid rgba(201,168,76,0.40);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 700;
  padding: 4px 10px; border-radius: var(--radius-full);
  margin-top: 8px; width: fit-content;
}

.portfolio-cta { text-align: center; margin-top: 52px; }

/* ========================
   TESTIMONIALS
======================== */
#testimonials { padding: var(--section-pad); overflow: hidden; }

.testimonials-track {
  display: flex; gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex-shrink: 0;
  width: calc(33.333% - 19px);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--gray-200);
  transition: var(--transition-slow);
  position: relative; overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 16px; right: 24px;
  font-family: Georgia, serif;
  font-size: 90px; line-height: 1;
  color: rgba(0,87,255,0.06);
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0,87,255,0.12);
}

.stars { display: flex; gap: 4px; margin-bottom: 18px; color: var(--gold); font-size: 15px; }

.testimonial-text {
  font-size: 15px; color: var(--gray-600);
  line-height: 1.8; margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--gray-200);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-avatar-initials {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 700;
  flex-shrink: 0;
}

.author-name { font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: var(--black); }
.author-company { font-size: 13px; color: var(--gray-400); margin-top: 2px; }

/* ========================
   BLOG / INSIGHTS
======================== */
#blog { padding: var(--section-pad); background: var(--gray-50); }

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

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition-slow);
  position: relative;
}
.blog-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: transparent; }

.blog-img {
  height: 220px; overflow: hidden; position: relative;
}
.blog-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.08); }
.blog-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; color: rgba(255,255,255,0.8);
}

.blog-body { padding: 28px; }

.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.blog-cat {
  background: rgba(0,87,255,0.08); color: var(--blue);
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: var(--radius-full);
  text-transform: uppercase; letter-spacing: 1px;
}
.blog-date { font-size: 12px; color: var(--gray-400); font-weight: 400; }

.blog-card h3 {
  font-size: 17px; font-weight: 700; margin-bottom: 10px;
  color: var(--black); line-height: 1.45;
  transition: color 0.2s;
}
.blog-card:hover h3 { color: var(--blue); }

.blog-card p { font-size: 14px; color: var(--gray-500); line-height: 1.75; margin-bottom: 22px; }

.blog-read {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 700;
  color: var(--blue);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.25s;
}
.blog-read:hover { gap: 12px; }

/* ========================
   CTA BANNER
======================== */
#cta-banner {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0040cc 50%, var(--blue-light) 100%);
  position: relative; overflow: hidden;
}
#cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
}
#cta-banner .cta-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
#cta-banner .orb1 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,0.04), transparent); top: -100px; right: -100px; }
#cta-banner .orb2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(201,168,76,0.08), transparent); bottom: -80px; left: -80px; }

.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700;
  color: var(--white); margin-bottom: 18px;
}
.cta-inner p { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 44px; line-height: 1.75; }

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

.btn-white {
  padding: 17px 40px;
  background: var(--white); color: var(--blue);
  font-family: var(--font-heading); font-size: 15px; font-weight: 700;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.20); }

.btn-outline-white {
  padding: 16px 36px;
  border: 2px solid rgba(255,255,255,0.40);
  color: var(--white);
  font-family: var(--font-heading); font-size: 15px; font-weight: 700;
  border-radius: var(--radius-full);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.10); transform: translateY(-2px); }

/* ========================
   FOOTER
======================== */
#footer { background: var(--gray-900); color: var(--white); padding: 90px 0 0; }

.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 56px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.50); line-height: 1.75; margin: 18px 0 24px; max-width: 260px; }

.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 15px; transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.social-icon:hover { background: var(--blue); color: var(--white); transform: translateY(-4px); border-color: var(--blue); box-shadow: 0 8px 20px rgba(0,87,255,0.30); }

.footer-col h4 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 22px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.50); transition: color 0.2s, padding-left 0.2s; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: var(--blue); padding-left: 4px; }
.footer-col ul li a i { font-size: 10px; opacity: 0.5; }

.contact-row { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.50); margin-bottom: 14px; }
.contact-row i { color: var(--blue); margin-top: 2px; flex-shrink: 0; }

.newsletter-form { display: flex; gap: 8px; margin-top: 20px; }
.newsletter-form input {
  flex: 1; padding: 13px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  color: var(--white); font-size: 14px;
  font-family: var(--font-body); outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.30); }
.newsletter-form input:focus { border-color: var(--blue); background: rgba(0,87,255,0.08); }
.newsletter-form button {
  padding: 13px 20px; background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white); border-radius: var(--radius-full);
  font-size: 15px; font-weight: 600;
  transition: var(--transition); cursor: none;
  box-shadow: 0 4px 12px rgba(0,87,255,0.30);
}
.newsletter-form button:hover { transform: scale(1.06); box-shadow: 0 8px 24px rgba(0,87,255,0.40); }

.footer-bottom {
  padding: 26px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,0.30);
}
.footer-bottom a { color: rgba(255,255,255,0.40); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--blue); }
.footer-legal { display: flex; gap: 24px; }

/* ========================
   UTILITY
======================== */
.text-blue { color: var(--blue); }
.text-gold { color: var(--gold); }
.hidden { display: none !important; }
