/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --primary: #6C63FF;
  --primary-l: #9188FF;
  --primary-d: #5149d9;
  --primary-glow: rgba(108,99,255,0.4);
  --dark-bg: #07060f;
  --dark-2: #0f0e17;
  --dark-3: #161426;
  --fuchsia: #e879f9;
  --radius-card: 22px;
  --radius-btn: 50px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14), 0 8px 20px rgba(0,0,0,0.07);
  --shadow-glow: 0 8px 40px rgba(108,99,255,0.4);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0f0e17; }
::-webkit-scrollbar-thumb { background: #6C63FF; border-radius: 99px; }

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-7px); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  33% { transform: translateY(-6px) translateX(4px); }
  66% { transform: translateY(4px) translateX(-3px); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
@keyframes aurora {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
  50% { transform: scale(1.15) rotate(15deg); opacity: 1; }
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}
@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(108,99,255,0); }
  50% { box-shadow: 0 0 0 6px rgba(108,99,255,0.12); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== NAVBAR ===== */
#navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 70px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s, background 0.3s;
}
#navbar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #6C63FF 0%, #c084fc 35%, #6C63FF 65%, #a89fff 100%);
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}
#navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.99);
}

/* Logo & Brand */
.nav-brand { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, #6C63FF 0%, #9333ea 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(108,99,255,0.45);
}
.logo {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #0f0e17;
}
.logo span { color: #6C63FF; }
.logo-img { height: 38px; width: auto; display: block; }
.logo-img-footer { height: 42px; filter: brightness(0) invert(1); }

/* Nav right group */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 0.1rem;
  font-size: 0.875rem;
  align-items: center;
}
.nav-links a {
  position: relative;
  color: #4a4a5a;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  letter-spacing: 0.01em;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%; right: 50%;
  height: 2px;
  background: linear-gradient(90deg, #6C63FF, #9188FF);
  border-radius: 99px;
  transition: left 0.25s ease, right 0.25s ease;
}
.nav-links a:hover { color: #6C63FF; background: rgba(108,99,255,0.07); }
.nav-links a:hover::after { left: 0.85rem; right: 0.85rem; }

/* Services dropdown */
.nav-dd-wrap { position: relative; }
.nav-dd-trigger {
  position: relative;
  color: #4a4a5a;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.28rem;
  cursor: pointer;
}
.nav-dd-trigger::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%; right: 50%;
  height: 2px;
  background: linear-gradient(90deg, #6C63FF, #9188FF);
  border-radius: 99px;
  transition: left 0.25s ease, right 0.25s ease;
}
.nav-dd-wrap:hover .nav-dd-trigger { color: #6C63FF; background: rgba(108,99,255,0.07); }
.nav-dd-wrap:hover .nav-dd-trigger::after { left: 0.85rem; right: 0.85rem; }
.dd-caret {
  font-size: 0.6rem;
  line-height: 1;
  transition: transform 0.22s;
  display: inline-block;
}
.nav-dd-wrap:hover .dd-caret { transform: rotate(180deg); }
.nav-dd {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(108,99,255,0.12);
  border-radius: 16px;
  padding: 0.5rem;
  min-width: 230px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.14), 0 4px 12px rgba(108,99,255,0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 1px;
  backdrop-filter: blur(20px);
}
.nav-dd-wrap:hover .nav-dd {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dd a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.52rem 0.85rem;
  border-radius: 10px;
  font-size: 0.84rem;
  color: #333;
  font-weight: 500;
  transition: background 0.15s, color 0.15s, transform 0.15s;
  white-space: nowrap;
}
.nav-dd a:hover { background: rgba(108,99,255,0.07); color: #6C63FF; transform: translateX(3px); }
.nav-dd a::after { display: none; }
.nav-dd-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Mobile services label */
.mobile-services-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.55rem 0.75rem 0.15rem;
}
.mobile-service-link {
  padding-left: 1.4rem !important;
  font-size: 0.875rem !important;
}

.nav-sep {
  width: 1px; height: 24px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.12), transparent);
}
.nav-login {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #6C63FF;
  border: 1.5px solid rgba(108,99,255,0.4);
  background: rgba(108,99,255,0.07);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nav-login:hover {
  background: rgba(108,99,255,0.14);
  border-color: rgba(108,99,255,0.65);
  color: #4a42e8;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, #6C63FF 0%, #9188FF 100%);
  background-size: 200% auto;
  color: #fff;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.25s;
  box-shadow: 0 4px 18px rgba(108,99,255,0.38);
  white-space: nowrap;
  animation: shimmer 3s linear infinite;
}
.nav-cta-arrow { transition: transform 0.22s; display: inline-block; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(108,99,255,0.52);
  animation: none;
  background: linear-gradient(135deg, #7c73ff 0%, #a09aff 100%);
}
.nav-cta:hover .nav-cta-arrow { transform: translateX(4px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; border-radius: 8px; transition: background 0.2s; }
.hamburger:hover { background: rgba(108,99,255,0.09); }
.hamburger span { display: block; width: 22px; height: 2px; background: #333; border-radius: 2px; transition: all 0.3s; }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,0.99);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 1rem 1.5rem 1.25rem;
  gap: 0.25rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  backdrop-filter: blur(20px);
}
.mobile-menu a { font-size: 0.95rem; color: #444; font-weight: 500; padding: 0.55rem 0.75rem; border-radius: 9px; transition: color 0.2s, background 0.2s; }
.mobile-menu a:hover { color: #6C63FF; background: rgba(108,99,255,0.06); }
.mobile-menu.open { display: flex; }
.mobile-login {
  margin-top: 0.5rem;
  border: 1.5px solid rgba(108,99,255,0.4) !important;
  color: #6C63FF !important;
  text-align: center;
  border-radius: 50px !important;
  font-weight: 600 !important;
  padding: 0.7rem 1rem !important;
  background: rgba(108,99,255,0.07) !important;
}
.mobile-login:hover { background: rgba(108,99,255,0.13) !important; }
.mobile-cta {
  margin-top: 0.5rem;
  background: linear-gradient(135deg, #6C63FF, #9188FF) !important;
  color: #fff !important;
  text-align: center;
  border-radius: 50px !important;
  font-weight: 600 !important;
  padding: 0.7rem 1rem !important;
  box-shadow: 0 4px 16px rgba(108,99,255,0.35) !important;
}

/* ===== HERO ===== */
.hero {
  display: flex;
  align-items: stretch;
  min-height: 640px;
}
.hero-left {
  flex: 1;
  padding: 5rem 3rem 5rem 11rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

/* Dot grid overlay */
.hero-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Aurora glow orbs */
.hero-left::before {
  content: '';
  position: absolute;
  width: 650px; height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,99,255,0.28) 0%, rgba(147,51,234,0.1) 45%, transparent 70%);
  top: -180px; left: -140px;
  pointer-events: none;
  animation: aurora 12s ease-in-out infinite;
}

.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,121,249,0.12) 0%, transparent 70%);
  bottom: -120px; right: 10%;
  pointer-events: none;
  animation: aurora 15s ease-in-out 3s infinite reverse;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(108,99,255,0.15);
  color: #a89fff;
  font-size: 0.71rem;
  font-weight: 700;
  padding: 0.42rem 1.1rem;
  border-radius: 99px;
  margin-bottom: 1.6rem;
  border: 1px solid rgba(108,99,255,0.32);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  width: fit-content;
  position: relative;
  z-index: 1;
  animation: badge-glow 3s ease-in-out infinite;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.8px;
  color: #fff;
  max-width: 490px;
  margin-bottom: 1.3rem;
  position: relative;
  z-index: 1;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #9188FF 0%, #c084fc 60%, #e879f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1rem;
  color: #7a7a9a;
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2.2rem;
  position: relative;
  z-index: 1;
}
.hero-btns { display: flex; gap: 0.85rem; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-glow {
  background: linear-gradient(90deg, #6C63FF 0%, #9188FF 50%, #6C63FF 100%);
  background-size: 200% auto;
  color: #fff;
  padding: 0.82rem 1.9rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 6px 24px rgba(108,99,255,0.45);
  animation: shimmer 3s linear infinite;
  white-space: nowrap;
}
.btn-glow:hover {
  animation: none;
  background: linear-gradient(135deg, #7c73ff, #a09aff);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(108,99,255,0.58);
}
.btn-ghost {
  color: #888;
  padding: 0.82rem 1.65rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.13);
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.38); color: #fff; background: rgba(255,255,255,0.05); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  position: relative;
  z-index: 1;
}
.hstat-num {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, #a89fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hstat-label { font-size: 0.72rem; color: #4a4a6a; margin-top: 5px; letter-spacing: 0.02em; }

/* Hero Right */
.hero-right {
  width: 45%;
  background: var(--dark-3);
  position: relative;
  overflow: hidden;
}
.hero-right-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(108,99,255,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(147,51,234,0.14) 0%, transparent 50%);
}

/* Dot grid on hero right */
.hero-right::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-right-inner {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 2rem 8rem 1rem 1rem;
  z-index: 1;
}

/* Floating Cards */
.floating-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.floating-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(108,99,255,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
  animation-play-state: paused;
}
.fc-wide  { width: 265px; animation: float  6s ease-in-out infinite; }
.fc-right { width: 215px; align-self: flex-end; animation: float2 7s ease-in-out 1s infinite; }
.fc-bottom { width: 245px; animation: float3 8s ease-in-out 0.5s infinite; }
.fc-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.55rem; }
.fc-label { font-size: 0.72rem; color: #7a7a9a; }
.fc-val { font-size: 1.8rem; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.fc-badge { font-size: 0.68rem; padding: 0.22rem 0.65rem; border-radius: 99px; font-weight: 700; }
.fc-badge.up { background: rgba(52,211,153,0.18); color: #34d399; }
.bar-track { height: 6px; background: rgba(255,255,255,0.08); border-radius: 99px; margin-top: 0.65rem; overflow: hidden; }
.bar-fill {
  height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, #6C63FF, #a89fff);
  transition: width 1.5s ease;
  position: relative;
}
.bar-fill::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 2.5s linear infinite;
}
.bar-labels { display: flex; justify-content: space-between; margin-top: 5px; }
.bar-labels span { font-size: 10px; color: #4a4a6a; }
.fc-small-label { font-size: 0.72rem; color: #7a7a9a; margin-bottom: 0.32rem; }
.fc-big-row { display: flex; align-items: baseline; gap: 0.55rem; }
.fc-big-val { font-size: 1.9rem; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.mini-bars { display: flex; gap: 4px; align-items: flex-end; height: 36px; margin-top: 0.75rem; }
.mini-bar {
  flex: 1;
  border-radius: 4px 4px 3px 3px;
  background: rgba(108,99,255,0.22);
  position: relative;
  overflow: hidden;
}
.mini-bar::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 100%;
  background: linear-gradient(to top, #6C63FF, #9188FF);
  border-radius: inherit;
}
.mini-bar.accent::after { background: linear-gradient(to top, #c084fc, #e879f9); }
.live-dot { animation: pulse 2s infinite; }

/* Disposition rate card */
.fc-disp-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.35rem;
  gap: 0.5rem;
}
.fc-disp-ring { flex-shrink: 0; }
.fc-disp-note {
  font-size: 0.63rem;
  color: #4a4a6a;
  margin-top: 0.45rem;
  letter-spacing: 0.01em;
}

/* ===== TRUSTED PARTNERS ===== */
.partners {
  background: linear-gradient(180deg, #07060f 0%, #0d0b1a 100%);
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.partners::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(232,121,249,0.3) 50%, transparent 100%);
}
.partners::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(108,99,255,0.25) 50%, transparent 100%);
}
.partners-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #e879f9;
  margin-bottom: 2rem;
  text-shadow: 0 0 20px rgba(232,121,249,0.4);
}
.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.partner-pill {
  padding: 0.95rem 2.75rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 60px;
  background: rgba(255,255,255,0.03);
  color: #7a7a9a;
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  min-width: 170px;
  transition: all 0.28s;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.partner-pill::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle at center, rgba(232,121,249,0.12) 0%, transparent 70%);
  transition: opacity 0.28s;
}
.partner-pill:hover {
  border-color: rgba(232,121,249,0.35);
  color: #e879f9;
  box-shadow: 0 0 30px rgba(232,121,249,0.15), inset 0 0 20px rgba(232,121,249,0.06);
  transform: translateY(-2px);
}
.partner-pill:hover::before { opacity: 1; }

/* ===== SHARED SECTION ===== */
.section-pad { padding: 6rem 3rem; }
.sec-eyebrow {
  font-size: 0.7rem;
  font-weight: 800;
  color: #6C63FF;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sec-eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px; height: 2px;
  background: linear-gradient(90deg, #6C63FF, #9188FF);
  border-radius: 99px;
}
.sec-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #0f0e17;
  line-height: 1.15;
}
.sec-sub { font-size: 0.95rem; color: #666; line-height: 1.75; max-width: 420px; margin-top: 0.8rem; }

/* ===== SERVICES ===== */
.services { background: #f9f8ff; }
.services-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.svc-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  background: #fff;
  position: relative;
}
.svc-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(108,99,255,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 0;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(108,99,255,0.14), 0 8px 20px rgba(0,0,0,0.08);
  border-color: rgba(108,99,255,0.2);
}
.svc-card:hover::before { opacity: 1; }

.svc-img-wrap {
  width: 100%;
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.svc-img-wrap::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.25), transparent);
}
.svc-body { padding: 1.5rem; position: relative; z-index: 1; }
.svc-tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 800;
  padding: 0.28rem 0.8rem;
  border-radius: 99px;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tag-purple { background: #EEF2FF; color: #4338CA; }
.tag-blue   { background: #EFF6FF; color: #1e40af; }
.tag-green  { background: #F0FDF4; color: #15803d; }
.tag-amber  { background: #FFFBEB; color: #92400e; }
.tag-pink   { background: #FDF4FF; color: #7e22ce; }
.tag-solar  { background: #FFFBEB; color: #92400e; }
.tag-indigo { background: #EEF2FF; color: #3730a3; }
.tag-teal   { background: #ECFDF5; color: #065f46; }

.svc-grid-4 { grid-template-columns: repeat(4, 1fr) !important; }
@media (max-width: 1200px) { .svc-grid-4 { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 600px)  { .svc-grid-4 { grid-template-columns: 1fr !important; } }
.svc-grid-3 { grid-template-columns: repeat(3, 1fr) !important; }
@media (max-width: 1024px) { .svc-grid-3 { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 600px)  { .svc-grid-3 { grid-template-columns: 1fr !important; } }
.svc-card h3 { font-size: 1.05rem; font-weight: 700; color: #0f0e17; margin-bottom: 0.5rem; letter-spacing: -0.2px; }
.svc-card p { font-size: 0.84rem; color: #666; line-height: 1.65; }
.svc-features { margin-top: 0.95rem; display: flex; flex-direction: column; gap: 0.45rem; }
.svc-feat { display: flex; align-items: center; gap: 0.5rem; font-size: 0.79rem; color: #555; }
.feat-dot { width: 6px; height: 6px; border-radius: 50%; min-width: 6px; }
.svc-card-footer { margin-top: 1.15rem; padding-top: 0.95rem; border-top: 1px solid rgba(0,0,0,0.05); }
.svc-details-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #6C63FF;
  padding: 0.4rem 0.9rem;
  border: 1.5px solid rgba(108,99,255,0.28);
  border-radius: 8px;
  transition: all 0.22s;
  letter-spacing: 0.01em;
  background: rgba(108,99,255,0.03);
}
.svc-details-btn:hover {
  background: linear-gradient(135deg, #6C63FF, #9188FF);
  color: #fff;
  border-color: transparent;
  transform: translateX(3px);
  box-shadow: 0 4px 14px rgba(108,99,255,0.35);
}

/* ===== PROCESS ===== */
.process { background: var(--dark-2); position: relative; overflow: hidden; }
.process::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.process::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,99,255,0.15) 0%, transparent 65%);
  bottom: -200px; right: -100px;
  pointer-events: none;
}
.process .sec-eyebrow { color: #a89fff; }
.process .sec-eyebrow::before { background: linear-gradient(90deg, #a89fff, #6C63FF); }
.process .sec-title { color: #fff; }
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
  position: relative;
  z-index: 1;
}

/* Connecting line between steps */
.steps-row::before {
  content: '';
  position: absolute;
  top: 34px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, rgba(108,99,255,0.5), rgba(168,159,255,0.8), rgba(108,99,255,0.5));
  z-index: 0;
}

.step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 1.6rem 1.35rem;
  position: relative;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  z-index: 1;
}
.step-card:hover {
  background: rgba(108,99,255,0.1);
  border-color: rgba(108,99,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(108,99,255,0.18);
}
.step-num {
  width: 42px; height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #6C63FF 0%, #9333ea 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 4px 16px rgba(108,99,255,0.45);
  letter-spacing: 0.02em;
}
.step-card h4 { font-size: 0.96rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; letter-spacing: -0.2px; }
.step-card p { font-size: 0.8rem; color: #555; line-height: 1.65; }
.step-arrow { display: none; }

/* ===== WHY US ===== */
.why { background: #fff; }
.why-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.why-points { display: flex; flex-direction: column; gap: 1.6rem; }
.why-item {
  display: flex;
  gap: 1.1rem;
  padding: 1.1rem 1.25rem;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.25s;
}
.why-item:hover {
  background: #f9f8ff;
  border-color: rgba(108,99,255,0.1);
  transform: translateX(4px);
}
.why-icon {
  width: 46px; height: 46px; min-width: 46px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.why-text h4 { font-size: 0.97rem; font-weight: 700; color: #0f0e17; margin-bottom: 0.32rem; letter-spacing: -0.2px; }
.why-text p { font-size: 0.83rem; color: #666; line-height: 1.65; }
.why-visual { display: flex; flex-direction: column; gap: 1.1rem; }
.dash-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.07);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.25s;
}
.dash-card:hover { box-shadow: 0 12px 40px rgba(108,99,255,0.1), 0 4px 12px rgba(0,0,0,0.06); }
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.dash-title { font-size: 0.76rem; font-weight: 800; color: #333; text-transform: uppercase; letter-spacing: 0.08em; }
.dash-badge { font-size: 0.68rem; padding: 0.22rem 0.65rem; border-radius: 99px; }
.live-badge {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #15803d;
  font-weight: 700;
}
.meter-row { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.75rem; }
.meter-label { font-size: 0.74rem; color: #888; width: 85px; min-width: 85px; }
.meter-track { flex: 1; height: 9px; background: #f0eeff; border-radius: 99px; overflow: hidden; }
.meter-bar {
  height: 100%;
  border-radius: 99px;
  transition: width 1.8s ease;
  position: relative;
  overflow: hidden;
}
.meter-bar::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 2.5s linear infinite;
}
.meter-val { font-size: 0.75rem; font-weight: 700; color: #333; width: 34px; text-align: right; }
.mini-stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.mini-stat { text-align: center; }
.mini-stat-label { font-size: 0.7rem; color: #888; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.3rem; }
.mini-stat-val { font-size: 2.1rem; font-weight: 800; line-height: 1.1; letter-spacing: -1px; }
.mini-stat-sub { font-size: 0.71rem; color: #aaa; margin-top: 3px; }

/* ===== TESTIMONIALS ===== */
.testi { background: linear-gradient(180deg, #f9f8ff 0%, #f4f2ff 100%); position: relative; overflow: hidden; }
.testi::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,99,255,0.07) 0%, transparent 65%);
  top: -150px; right: -100px;
  pointer-events: none;
}
.testi-header { text-align: center; margin-bottom: 3rem; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; z-index: 1; }
.tcard {
  background: #fff;
  border-radius: 22px;
  padding: 1.8rem;
  border: 1px solid rgba(108,99,255,0.08);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.tcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6C63FF, #c084fc, #e879f9);
  opacity: 0;
  transition: opacity 0.3s;
}
.tcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(108,99,255,0.14), 0 6px 16px rgba(0,0,0,0.06);
  border-color: rgba(108,99,255,0.18);
}
.tcard:hover::before { opacity: 1; }
.tcard-quote {
  font-size: 3rem;
  background: linear-gradient(135deg, #6C63FF, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
}
.tcard-stars { color: #f59e0b; font-size: 0.88rem; letter-spacing: 2px; margin-bottom: 0.9rem; }
.tcard p { font-size: 0.86rem; color: #444; line-height: 1.7; margin-bottom: 1.25rem; }
.tcard-author { display: flex; align-items: center; gap: 0.8rem; }
.tcard-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  min-width: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.tcard-name { font-size: 0.88rem; font-weight: 700; color: #111; }
.tcard-role { font-size: 0.73rem; color: #999; margin-top: 1px; }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, #3b2fa0 0%, #6C63FF 40%, #9333ea 100%);
  background-size: 200% 200%;
  animation: gradient-shift 8s ease infinite;
  padding: 5.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 65%);
  bottom: -200px; right: 5%;
  pointer-events: none;
}
.cta-left { position: relative; z-index: 1; }
.cta-band h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.12;
}
.cta-band p { color: rgba(255,255,255,0.72); font-size: 0.95rem; margin-top: 0.75rem; line-height: 1.65; max-width: 520px; }
.cta-btns { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end; position: relative; z-index: 1; }
.btn-white {
  background: #fff;
  color: #6C63FF;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  transition: all 0.25s;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.btn-white:hover { transform: scale(1.04) translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.28); }
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.25s;
  text-align: center;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.12); transform: translateY(-2px); }

/* ===== CONTACT SECTION (id="contact" on .cta-band) ===== */

/* ===== FOOTER ===== */
footer { background: #07060f; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 3rem 2.5rem;
}
.footer-brand .logo { color: #fff; font-size: 1.2rem; font-weight: 800; }
.footer-brand p { font-size: 0.82rem; color: #4a4a6a; line-height: 1.7; margin-top: 0.85rem; max-width: 220px; }
.footer-socials { display: flex; gap: 0.65rem; margin-top: 1.3rem; }
.fsoc {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  color: #5a5a7a;
  border: 1px solid rgba(255,255,255,0.07);
  font-weight: 800;
  cursor: pointer;
  transition: all 0.22s;
}
.fsoc:hover {
  background: rgba(108,99,255,0.18);
  color: #a89fff;
  border-color: rgba(108,99,255,0.35);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(108,99,255,0.25);
}
.footer-col h5 {
  font-size: 0.69rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul li a {
  font-size: 0.83rem;
  color: #4a4a6a;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
  position: relative;
}
.footer-col ul li a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0;
  height: 1px;
  background: #a89fff;
  transition: width 0.22s;
}
.footer-col ul li a:hover { color: #a89fff; transform: translateX(3px); }
.footer-col ul li a:hover::after { width: 100%; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 1.4rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.77rem; color: #3a3a5a; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for service cards */
.svc-grid .svc-card:nth-child(1) { transition-delay: 0s; }
.svc-grid .svc-card:nth-child(2) { transition-delay: 0.08s; }
.svc-grid .svc-card:nth-child(3) { transition-delay: 0.16s; }
.svc-grid .svc-card:nth-child(4) { transition-delay: 0.24s; }
.svc-grid .svc-card:nth-child(5) { transition-delay: 0.32s; }
.svc-grid .svc-card:nth-child(6) { transition-delay: 0.40s; }
.svc-grid .svc-card:nth-child(7) { transition-delay: 0.48s; }
.svc-grid .svc-card:nth-child(8) { transition-delay: 0.56s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { flex-direction: column; }
  .hero-left { padding: 4rem 2rem 3rem; }
  .hero-right { width: 100%; min-height: 360px; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .steps-row::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-btns { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .services-top { grid-template-columns: 1fr; }
  .nav-links { font-size: 0.82rem; }
}
@media (max-width: 768px) {
  #navbar { padding: 0 1.5rem; height: 64px; }
  .nav-right { display: none; }
  .hamburger { display: flex; }
  .section-pad { padding: 4rem 1.5rem; }
  .hero-left { padding: 3.5rem 1.5rem; }
  .hero h1 { font-size: 2.1rem; letter-spacing: -1px; }
  .hero-stats { gap: 1.5rem; }
  .steps-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; padding: 3rem 1.5rem 2rem; }
  .footer-bottom { padding: 1.1rem 1.5rem; flex-direction: column; align-items: flex-start; gap: 0.3rem; }
  .cta-band { padding: 4rem 1.5rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .partners { padding: 2.5rem 1.5rem; }
  .partner-pill { min-width: 140px; padding: 0.85rem 2rem; font-size: 0.9rem; }
}
