
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary: #4338CA;
  --secondary: #9333EA;
  --accent: #C026D3;
  --text: #1E293B;
  --muted: #64748B;
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --border: #E2E8F0;
  --grad: linear-gradient(135deg, #3B29CC 0%, #7C3AED 50%, #C026D3 100%);
  --grad-light: linear-gradient(135deg, rgba(59,41,204,0.08) 0%, rgba(192,38,211,0.08) 100%);
  --grad-text: linear-gradient(135deg, #3B29CC 0%, #7C3AED 50%, #C026D3 100%);
  --shadow-sm: 0 10px 30px rgba(124, 58, 237, 0.08);
  --shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
  --shadow-hover: 0 30px 60px rgba(124, 58, 237, 0.3);
  --radius: 24px;
  --transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased;
  background-color: #F8FAFC; position: relative;
}
body::before {
  content: ''; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image: radial-gradient(rgba(124, 58, 237, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
}
body::after {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(circle at 10% 20%, rgba(67, 56, 202, 0.15), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(192, 38, 211, 0.15), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.1), transparent 50%);
  background-size: 200% 200%;
  animation: ambientAurora 15s ease-in-out infinite alternate;
}
@keyframes ambientAurora { 0%{background-position:0% 0%} 50%{background-position:100% 50%} 100%{background-position:0% 100%} }

/* FLOATING CSS ICONS BACKGROUND */
.bg-icons-container { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.bg-icon { position: absolute; font-size: 24px; color: rgba(192,38,211,0.15); animation: floatIcon linear infinite; opacity: 0.6; }
@keyframes floatIcon {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-40px) rotate(180deg) scale(1.1); }
  100% { transform: translateY(0) rotate(360deg) scale(1); }
}

h1,h2,h3,h4,h5,h6 { font-family: 'Outfit', sans-serif; line-height: 1.2; letter-spacing: -0.5px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.text-center { text-align: center; }

/* PAGE TRANSITION */
.page-transition-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #FFF; z-index: 999999; transform: scaleY(1); transform-origin: top; transition: transform 0.35s cubic-bezier(0.85,0,0.15,1); }
.page-transition-overlay.loaded { transform: scaleY(0); transform-origin: bottom; }
.page-transition-overlay.animating { transform: scaleY(1); transform-origin: top; }

/* NAVBAR */
#navbar { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); z-index: 1000; width: max-content; max-width: 92%; transition: var(--transition); }
#navbar.scrolled { top: 10px; }
.nav-inner {
  background: linear-gradient(to right, rgba(255,255,255,0.92), rgba(245,240,255,0.96));
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 8px 28px; border-radius: 100px; display: flex; align-items: center; gap: 36px;
  border: 1px solid rgba(124,58,237,0.2); box-shadow: 0 10px 30px rgba(124,58,237,0.12);
}
.nav-links { display: flex; list-style: none; gap: 28px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 600; font-size: 15px; transition: var(--transition); }
.nav-links a:hover { color: var(--primary); }
.nav-cta { background: var(--grad) !important; color: white !important; padding: 11px 26px !important; border-radius: 100px !important; font-weight: 600 !important; box-shadow: 0 4px 15px rgba(124,58,237,0.3); }
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 25px rgba(124,58,237,0.45) !important; }
.menu-toggle { display: none; background: none; border: none; font-size: 28px; color: var(--text); cursor: pointer; padding: 8px; }

/* FOOTER */
footer { background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(245,240,255,1)) !important; border-top: 2px solid rgba(124,58,237,0.15) !important; }

/* BUTTONS */
.btn-primary { background: var(--grad); color: white; padding: 18px 44px; border-radius: 100px; font-weight: 700; font-size: 16px; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: var(--transition); border: none; cursor: pointer; box-shadow: 0 8px 24px rgba(124,58,237,0.3); }
.btn-primary:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 16px 36px rgba(124,58,237,0.45); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 18px 36px; border-radius: 100px; border: 2px solid rgba(124,58,237,0.25); font-weight: 600; text-decoration: none; color: var(--primary); transition: var(--transition); background: transparent; }
.btn-outline:hover { background: rgba(124,58,237,0.06); border-color: var(--primary); }

/* TYPOGRAPHY & HERO */
.section-title { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline-block; }
.section-label { font-size: 14px; font-weight: 800; letter-spacing: 3px; color: var(--primary); text-transform: uppercase; margin-bottom: 16px; display: inline-block; background: rgba(124,58,237,0.1); padding: 6px 16px; border-radius: 100px; }
.huge-text { font-size: clamp(42px, 6vw, 76px); font-weight: 900; line-height: 1.1; letter-spacing: -2px; }

.hero-evolution {
  font-size: clamp(48px, 8vw, 90px);
  background: linear-gradient(90deg, #3B29CC, #C026D3, #7C3AED, #3B29CC); background-size: 300% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shineWave 4s linear infinite, floatPulse 3s ease-in-out infinite alternate;
  filter: drop-shadow(0px 10px 20px rgba(192,38,211,0.25));
}
@keyframes shineWave { 0%{background-position:0% 50%} 100%{background-position:100% 50%} }
@keyframes floatPulse { 0%{transform:translateY(0) scale(1)} 100%{transform:translateY(-8px) scale(1.02)} }

/* EXPERTISE CARDS */
.expertise-card { background: rgba(255,255,255,0.6); backdrop-filter: blur(20px); border-radius: var(--radius); padding: 40px 32px; border: 1px solid rgba(255,255,255,0.8); box-shadow: 0 15px 35px rgba(124,58,237,0.05); transition: all 0.5s cubic-bezier(0.175,0.885,0.32,1.275); position: relative; overflow: hidden; cursor: default; }
.expertise-card::before { content: ''; position: absolute; inset: 0; background: var(--grad); opacity: 0; transition: opacity 0.5s ease; z-index: 0; }
.expertise-card > * { position: relative; z-index: 1; transition: all 0.5s ease; }
.expertise-card:hover { transform: translateY(-15px) scale(1.03); box-shadow: 0 30px 60px rgba(124,58,237,0.25); border-color: transparent; }
.expertise-card:hover::before { opacity: 1; }
.expertise-card h4 { font-size: 22px; font-weight: 800; margin-bottom: 12px; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.expertise-card:hover h4 { -webkit-text-fill-color: white !important; }
.expertise-card p { color: var(--muted); font-size: 15px; line-height: 1.7; }
.expertise-card:hover p { color: rgba(255,255,255,0.9) !important; }
.expertise-icon { width: 70px; height: 70px; border-radius: 20px; background: var(--grad-light); display: flex; align-items: center; justify-content: center; margin-bottom: 28px; font-size: 32px; color: var(--primary); transition: var(--transition); }
.expertise-card:hover .expertise-icon { background: rgba(255,255,255,0.2); color: white; transform: rotate(10deg) scale(1.1); }

/* INTERACTIVE PANELS */
.interactive-panel { background: rgba(255,255,255,0.8); backdrop-filter: blur(10px); border-radius: var(--radius); padding: 40px; border: 1px solid rgba(124,58,237,0.1); box-shadow: var(--shadow-sm); position: relative; overflow: hidden; transition: var(--transition); }
.interactive-panel:hover { box-shadow: var(--shadow-hover); border-color: rgba(124,58,237,0.3); }
.feature-row { display: flex; align-items: center; gap: 16px; padding: 16px; margin-bottom: 12px; background: rgba(124,58,237,0.03); border-radius: 16px; border: 1px solid transparent; transition: var(--transition); cursor: default; }
.feature-row:hover { background: white; border-color: rgba(124,58,237,0.2); transform: translateX(10px); box-shadow: 0 10px 20px rgba(124,58,237,0.1); }
.feature-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--grad-light); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 18px; transition: var(--transition); flex-shrink: 0; }
.feature-row:hover .feature-icon { background: var(--grad); color: white; transform: scale(1.1) rotate(5deg); }
.feature-text { font-size: 16px; font-weight: 600; color: var(--text); }

/* DARK GLASS CARD */
.dark-glass-card { background: linear-gradient(135deg, #1a0e3e, #2d1b69); backdrop-filter: blur(20px); border-radius: var(--radius); padding: 50px 40px; border: 1px solid rgba(124,58,237,0.3); color: white; box-shadow: 0 20px 50px rgba(26,14,62,0.4); position: relative; overflow: hidden; }
.dark-glass-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(192,38,211,0.15) 0%, transparent 60%); pointer-events: none; }
.dark-glass-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 30px; }
.dark-glass-item { display: flex; align-items: center; gap: 20px; padding: 16px 20px; background: rgba(255,255,255,0.05); border-radius: 16px; margin-bottom: 16px; border: 1px solid rgba(255,255,255,0.1); transition: var(--transition); }
.dark-glass-item:hover { background: rgba(255,255,255,0.1); transform: translateX(10px); border-color: rgba(192,38,211,0.4); }
.dark-glass-item i { width: 40px; height: 40px; border-radius: 12px; background: rgba(192,38,211,0.2); display: flex; align-items: center; justify-content: center; color: #C026D3; font-size: 18px; flex-shrink: 0; }
.dark-glass-item p { margin: 0; font-weight: 600; font-size: 16px; }

/* LIGHT STEP CARD */
.light-step-card { background: rgba(255,255,255,0.9); border-radius: var(--radius); padding: 50px 40px; border: 1px solid rgba(124,58,237,0.15); box-shadow: var(--shadow); }
.step-item { display: flex; align-items: center; gap: 24px; margin-bottom: 30px; position: relative; }
.step-item:last-child { margin-bottom: 0; }
.step-item::before { content: ''; position: absolute; left: 24px; top: 50px; bottom: -30px; width: 3px; background: #e2e8f0; z-index: 0; }
.step-item::after { content: ''; position: absolute; left: 24px; top: 50px; bottom: -30px; width: 3px; background: var(--grad); z-index: 1; transform-origin: top; animation: flowDown 2.5s ease-in-out infinite; }
.step-item:last-child::before, .step-item:last-child::after { display: none; }
@keyframes flowDown { 0%{transform:scaleY(0);opacity:0} 50%{opacity:1} 100%{transform:scaleY(1);opacity:0} }
.step-number { width: 50px; height: 50px; border-radius: 50%; background: var(--grad); color: white; font-weight: 800; font-size: 18px; display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; box-shadow: 0 10px 20px rgba(124,58,237,0.3); flex-shrink: 0; }
.step-content { font-size: 17px; font-weight: 600; color: var(--text); }

/* PARTNER */
.partner-flex { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-bottom: 48px; }
.partner-card { background: rgba(255,255,255,0.7); backdrop-filter: blur(10px); border-radius: 20px; padding: 20px 24px; display: flex; align-items: center; gap: 16px; border: 1px solid rgba(124,58,237,0.2); box-shadow: var(--shadow-sm); transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275); cursor: pointer; flex: 1 1 250px; max-width: 320px; }
.partner-card:hover { transform: translateY(-8px) scale(1.05); border-color: var(--primary); background: var(--grad); }
.partner-card:hover * { color: white !important; }
.partner-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--grad-light); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 20px; transition: var(--transition); flex-shrink: 0; }
.partner-card:hover .partner-icon { background: rgba(255,255,255,0.2); }
.partner-title { font-size: 17px; font-weight: 700; color: var(--text); transition: var(--transition); }

/* ORBIT CENTER LAYOUT (Why Us) */
.orbit-center-layout { display: flex; align-items: center; justify-content: space-between; gap: 20px; max-width: 1100px; margin: 0 auto; position: relative; }
.orbit-side { display: flex; flex-direction: column; gap: 40px; flex: 1; }
.side-left { align-items: flex-end; text-align: right; }
.side-right { align-items: flex-start; text-align: left; }
.side-item { background: rgba(255,255,255,0.7); padding: 20px 24px; border-radius: 20px; border: 1px solid rgba(124,58,237,0.2); box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 16px; transition: var(--transition); cursor: default; }
.side-left .side-item { flex-direction: row-reverse; }
.side-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--accent); background: white; }
.side-item i { width: 50px; height: 50px; border-radius: 14px; background: var(--grad-light); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 20px; }
.side-item:hover i { background: var(--grad); color: white; }
.side-item p { font-size: 16px; font-weight: 700; color: var(--text); margin: 0; }

.orbit-center-wrapper { flex: 0 0 450px; position: relative; display: flex; justify-content: center; align-items: center; }
.orbit-center-wrapper::before { content: ''; position: absolute; inset: -40px; border-radius: 50%; background: radial-gradient(circle, rgba(124,58,237,0.08) 30%, transparent 70%); animation: orbitGlow 4s ease-in-out infinite alternate; }
.orbit-center-wrapper::after { content: ''; position: absolute; inset: -60px; border-radius: 50%; border: 1px dashed rgba(124,58,237,0.15); animation: orbitRingSpin 30s linear infinite; }

@keyframes orbitGlow { 0%{transform:scale(1);opacity:0.6} 100%{transform:scale(1.15);opacity:1} }
@keyframes orbitRingSpin { 0%{transform:rotate(0deg)} 100%{transform:rotate(360deg)} }

/* UNIQUE SCROLL ANIMATIONS */
.anim-el { opacity: 0; transition: all 0.8s cubic-bezier(0.22,1,0.36,1); }
/* Previous ones */
.anim-el.slide-left { transform: translateX(-60px); } .anim-el.slide-left.visible { opacity: 1; transform: translateX(0); }
.anim-el.slide-right { transform: translateX(60px); } .anim-el.slide-right.visible { opacity: 1; transform: translateX(0); }
.anim-el.zoom-in { transform: scale(0.85); } .anim-el.zoom-in.visible { opacity: 1; transform: scale(1); }
.anim-el.fade-up { transform: translateY(40px); } .anim-el.fade-up.visible { opacity: 1; transform: translateY(0); }

/* New ones */
.anim-el.scale-up { transform: scale(0.7) translateY(40px); } .anim-el.scale-up.visible { opacity: 1; transform: scale(1) translateY(0); }
.anim-el.slide-up-fade { transform: translateY(80px); filter: blur(10px); } .anim-el.slide-up-fade.visible { opacity: 1; transform: translateY(0); filter: blur(0); }
.anim-el.scale-in { transform: scale(0.9); } .anim-el.scale-in.visible { opacity: 1; transform: scale(1); }
.anim-el.flip-in-y { transform: perspective(1000px) rotateY(45deg); opacity: 0; } .anim-el.flip-in-y.visible { transform: perspective(1000px) rotateY(0deg); opacity: 1; }
.anim-el.slide-down { transform: translateY(-40px); } .anim-el.slide-down.visible { opacity: 1; transform: translateY(0); }
.anim-el.blur-in { filter: blur(20px); opacity: 0; } .anim-el.blur-in.visible { filter: blur(0); opacity: 1; }
.anim-el.rotate-in-left { transform: rotate(-5deg) translateX(-40px); } .anim-el.rotate-in-left.visible { transform: rotate(0deg) translateX(0); opacity: 1; }
.anim-el.rotate-in-right { transform: rotate(5deg) translateX(40px); } .anim-el.rotate-in-right.visible { transform: rotate(0deg) translateX(0); opacity: 1; }
.anim-el.bounce-in { transform: scale(0.3); opacity: 0; } .anim-el.bounce-in.visible { transform: scale(1); opacity: 1; transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.anim-el.pulse-in { transform: scale(0.95); opacity: 0; } .anim-el.pulse-in.visible { transform: scale(1); opacity: 1; }

.del-1{transition-delay:.1s} .del-2{transition-delay:.2s} .del-3{transition-delay:.3s} .del-4{transition-delay:.4s} .del-5{transition-delay:.5s} .del-6{transition-delay:.6s}

/* TIMELINE with Ripple on Hover */
.timeline-wrap { position: relative; display: flex; gap: 0; align-items: flex-start; padding: 40px 0; }
.timeline-wrap::before { content: ''; position: absolute; top: 58px; left: 40px; right: 40px; height: 2px; background: var(--grad); z-index: 0; }
.timeline-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.timeline-dot {
  width: 56px; height: 56px; border-radius: 50%; background: var(--grad); color: white; font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(124,58,237,0.35);
  margin-bottom: 24px; flex-shrink: 0; transition: var(--transition); position: relative; cursor: pointer;
}
.timeline-dot::before, .timeline-dot::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); border-radius: 50%;
  border: 2px solid rgba(124,58,237,0.5); opacity: 0; pointer-events: none;
}
.timeline-step:hover .timeline-dot { transform: scale(1.15); box-shadow: 0 12px 32px rgba(124,58,237,0.55); }
.timeline-step:hover .timeline-dot::before { animation: dotRipple 1s ease-out infinite; }
.timeline-step:hover .timeline-dot::after { animation: dotRipple 1s ease-out 0.3s infinite; }
@keyframes dotRipple { 0%{width:56px;height:56px;opacity:0.6} 100%{width:120px;height:120px;opacity:0} }
.timeline-step p { font-size: 14px; color: var(--text); font-weight: 600; line-height: 1.5; }

/* HOLO BG */
.holo-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.holo-bg::before { content: ''; position: absolute; width: 700px; height: 700px; background: radial-gradient(circle, rgba(124,58,237,0.07) 0%, transparent 70%); top: -200px; left: -200px; border-radius: 50%; filter: blur(60px); }

/* ═══ PAGE HERO (cinematic) ═══ */
.page-hero { padding: 200px 0 120px; position: relative; overflow: hidden; }
.page-hero .hero-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; filter: blur(120px); pointer-events: none; z-index: 0; }
.page-hero .glow-1 { background: rgba(67,56,202,0.18); top: -200px; left: -100px; animation: glowDrift1 12s ease-in-out infinite alternate; }
.page-hero .glow-2 { background: rgba(192,38,211,0.15); bottom: -200px; right: -100px; animation: glowDrift2 14s ease-in-out infinite alternate; }
@keyframes glowDrift1 { 0%{transform:translate(0,0)} 100%{transform:translate(80px,60px)} }
@keyframes glowDrift2 { 0%{transform:translate(0,0)} 100%{transform:translate(-60px,-80px)} }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(44px,7vw,80px); font-weight: 900; letter-spacing: -2px; line-height: 1.05; }
.page-hero p { font-size: 19px; color: var(--muted); max-width: 700px; line-height: 1.9; }
.grad-text { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ═══ STAT BLOCKS ═══ */
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-block { background: rgba(255,255,255,0.6); backdrop-filter: blur(16px); border-radius: 20px; padding: 32px 24px; border: 1px solid rgba(124,58,237,0.12); text-align: center; transition: var(--transition); }
.stat-block:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(124,58,237,0.3); }
.stat-number { font-size: 40px; font-weight: 900; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); }

/* ═══ INFO CARD (glass) ═══ */
.info-card { background: rgba(255,255,255,0.7); backdrop-filter: blur(16px); border-radius: var(--radius); padding: 40px; border: 1px solid rgba(124,58,237,0.1); position: relative; overflow: hidden; transition: var(--transition); }
.info-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad); opacity: 0; transition: opacity 0.4s; }
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.info-card:hover::after { opacity: 1; }
.info-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 16px; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ═══ LIST BLOCK ═══ */
.list-block { padding: 0; }
.list-item { display: flex; align-items: center; gap: 16px; padding: 14px 0; font-size: 16px; font-weight: 600; color: var(--text); border-bottom: 1px solid rgba(124,58,237,0.06); transition: var(--transition); }
.list-item:last-child { border-bottom: none; }
.list-item:hover { padding-left: 12px; color: var(--primary); }
.list-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--grad); flex-shrink: 0; }

/* ═══ PREMIUM PILL ═══ */
.premium-pill { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; background: rgba(255,255,255,0.7); backdrop-filter: blur(12px); border-radius: 100px; border: 1px solid rgba(124,58,237,0.15); font-weight: 700; font-size: 15px; color: var(--text); transition: var(--transition); cursor: default; }
.premium-pill:hover { background: var(--grad); color: white; border-color: transparent; transform: translateY(-3px); box-shadow: 0 12px 28px rgba(124,58,237,0.3); }
.premium-pill .icon { color: var(--accent); font-size: 14px; transition: color 0.3s; }
.premium-pill:hover .icon { color: white; }

/* ═══ FLOWING SECTION DIVIDERS ═══ */
.section-flow { position: relative; }
.section-flow::before { content: ''; position: absolute; top: -80px; left: 0; right: 0; height: 160px; background: linear-gradient(to bottom, transparent, rgba(124,58,237,0.03), transparent); pointer-events: none; z-index: 0; }

/* ═══ MESH GRADIENT BG ═══ */
.mesh-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.mesh-bg .orb { position: absolute; border-radius: 50%; filter: blur(100px); }
.mesh-bg .orb-1 { width: 500px; height: 500px; background: rgba(67,56,202,0.1); top: 10%; left: -10%; animation: orbFloat1 20s ease-in-out infinite alternate; }
.mesh-bg .orb-2 { width: 400px; height: 400px; background: rgba(192,38,211,0.08); bottom: 10%; right: -5%; animation: orbFloat2 18s ease-in-out infinite alternate; }
.mesh-bg .orb-3 { width: 300px; height: 300px; background: rgba(124,58,237,0.06); top: 50%; left: 40%; animation: orbFloat3 22s ease-in-out infinite alternate; }
@keyframes orbFloat1 { 0%{transform:translate(0,0) scale(1)} 100%{transform:translate(60px,40px) scale(1.1)} }
@keyframes orbFloat2 { 0%{transform:translate(0,0) scale(1)} 100%{transform:translate(-40px,-60px) scale(1.15)} }
@keyframes orbFloat3 { 0%{transform:translate(0,0) scale(1)} 100%{transform:translate(30px,-30px) scale(0.9)} }

/* ═══ HORIZONTAL SCROLL CARDS (collab) ═══ */
.hscroll-row { display: flex; gap: 24px; overflow-x: auto; padding: 20px 0 30px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.hscroll-row::-webkit-scrollbar { display: none; }
.hscroll-card { flex: 0 0 300px; scroll-snap-align: start; background: rgba(255,255,255,0.8); backdrop-filter: blur(16px); border-radius: 20px; padding: 36px 28px; border: 1px solid rgba(124,58,237,0.12); transition: var(--transition); position: relative; overflow: hidden; }
.hscroll-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--grad); transform: scaleX(0); transition: transform 0.4s; }
.hscroll-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.hscroll-card:hover::before { transform: scaleX(1); }
.hscroll-card .card-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--grad); display: flex; align-items: center; justify-content: center; color: white; font-size: 24px; margin-bottom: 20px; }
.hscroll-card h4 { font-size: 20px; font-weight: 800; margin-bottom: 10px; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hscroll-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ═══ CONTACT FORM STYLE ═══ */
.contact-glass { background: rgba(255,255,255,0.6); backdrop-filter: blur(20px); border-radius: var(--radius); padding: 48px; border: 1px solid rgba(124,58,237,0.15); box-shadow: var(--shadow); }
.contact-info-block { display: flex; align-items: center; gap: 20px; padding: 24px; background: rgba(124,58,237,0.04); border-radius: 16px; margin-bottom: 16px; border: 1px solid transparent; transition: var(--transition); }
.contact-info-block:hover { background: white; border-color: rgba(124,58,237,0.2); transform: translateX(8px); }
.contact-info-block .ci-icon { width: 52px; height: 52px; border-radius: 16px; background: var(--grad); display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; flex-shrink: 0; }
.contact-info-block .ci-label { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); font-weight: 700; }
.contact-info-block .ci-value { font-size: 18px; font-weight: 800; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ═══ ACCORDION (What We Do) ═══ */
.accordion-item { background: rgba(255,255,255,0.7); backdrop-filter: blur(12px); border-radius: 20px; margin-bottom: 16px; border: 1px solid rgba(124,58,237,0.1); overflow: hidden; transition: var(--transition); }
.accordion-item:hover { border-color: rgba(124,58,237,0.25); }
.accordion-header { display: flex; align-items: center; gap: 20px; padding: 28px 32px; cursor: pointer; transition: var(--transition); }
.accordion-header:hover { background: rgba(124,58,237,0.03); }
.accordion-header .acc-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--grad); display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; flex-shrink: 0; transition: transform 0.4s; }
.accordion-item.open .acc-icon { transform: rotate(45deg); }
.accordion-header h4 { font-size: 20px; font-weight: 800; flex: 1; }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.22,1,0.36,1); }
.accordion-body-inner { padding: 0 32px 28px; color: var(--muted); font-size: 16px; line-height: 1.8; }

/* ═══ ZIGZAG ROADMAP (What We Do) ═══ */
.zigzag-path { position: relative; max-width: 900px; margin: 0 auto; padding: 40px 0; }
.zigzag-path::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, rgba(124,58,237,0.05), var(--primary), var(--accent), rgba(192,38,211,0.05)); transform: translateX(-50%); }
.zigzag-path::after { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; transform: translateX(-50%); background: linear-gradient(to bottom, transparent, rgba(124,58,237,0.6), transparent); background-size: 100% 200%; animation: zigzagFlow 3s ease-in-out infinite; }
@keyframes zigzagFlow { 0%{background-position:0% 0%} 50%{background-position:0% 100%} 100%{background-position:0% 0%} }
.zigzag-node { display: flex; align-items: center; gap: 40px; margin-bottom: 60px; position: relative; }
.zigzag-node:last-child { margin-bottom: 0; }
.zigzag-node:nth-child(odd) { flex-direction: row; padding-right: 52%; }
.zigzag-node:nth-child(even) { flex-direction: row-reverse; padding-left: 52%; }
.zigzag-marker { position: absolute; left: 50%; transform: translateX(-50%); width: 64px; height: 64px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; color: white; font-weight: 900; font-size: 24px; z-index: 2; box-shadow: 0 10px 30px rgba(124,58,237,0.4); transition: var(--transition); }
.zigzag-node:hover .zigzag-marker { transform: translateX(-50%) scale(1.2); box-shadow: 0 15px 40px rgba(124,58,237,0.55); }
.zigzag-marker::before { content: ''; position: absolute; inset: -8px; border-radius: 50%; border: 2px solid rgba(124,58,237,0.2); animation: markerPulse 2s ease-in-out infinite; }
@keyframes markerPulse { 0%,100%{transform:scale(1);opacity:0.5} 50%{transform:scale(1.3);opacity:0} }
.zigzag-content { background: rgba(255,255,255,0.8); backdrop-filter: blur(16px); border-radius: 20px; padding: 28px 32px; border: 1px solid rgba(124,58,237,0.12); box-shadow: 0 10px 30px rgba(124,58,237,0.06); transition: var(--transition); position: relative; }
.zigzag-content::before { content: ''; position: absolute; top: 50%; width: 30px; height: 2px; background: var(--grad); }
.zigzag-node:nth-child(odd) .zigzag-content::before { right: -35px; }
.zigzag-node:nth-child(even) .zigzag-content::before { left: -35px; }
.zigzag-node:hover .zigzag-content { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(124,58,237,0.3); }
.zigzag-content h4 { font-size: 20px; font-weight: 800; margin-bottom: 8px; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.zigzag-content p { font-size: 15px; color: var(--muted); line-height: 1.7; margin: 0; }

/* ═══ SPOTLIGHT CARDS (Who We Serve) ═══ */
.spotlight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.spotlight-card {
  position: relative; overflow: hidden; border-radius: 24px; padding: 44px 36px;
  background: linear-gradient(145deg, rgba(255,255,255,0.85), rgba(245,240,255,0.7));
  backdrop-filter: blur(16px); border: 1px solid rgba(124,58,237,0.1);
  transition: all 0.5s cubic-bezier(0.22,1,0.36,1); cursor: default;
}
.spotlight-card::before {
  content: ''; position: absolute; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
  top: -60px; right: -60px; transition: all 0.6s ease; pointer-events: none;
}
.spotlight-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(124,58,237,0.2); border-color: rgba(124,58,237,0.3); }
.spotlight-card:hover::before { transform: scale(1.5); opacity: 0.8; }
.spotlight-card .sc-number { font-size: 72px; font-weight: 900; line-height: 1; background: linear-gradient(135deg, rgba(59,41,204,0.08), rgba(192,38,211,0.12)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; position: absolute; top: 16px; right: 24px; }
.spotlight-card .sc-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--grad); display: flex; align-items: center; justify-content: center; color: white; font-size: 24px; margin-bottom: 20px; transition: transform 0.4s; }
.spotlight-card:hover .sc-icon { transform: scale(1.15) rotate(8deg); }
.spotlight-card h4 { font-size: 20px; font-weight: 800; margin-bottom: 10px; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.spotlight-card p { font-size: 15px; color: var(--muted); line-height: 1.7; margin: 0; }

/* ═══ KALEIDOSCOPE CANVAS BG ═══ */
#kaleidoCanvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }

/* ═══ WTD PAGE-SPECIFIC SCROLL ANIMATIONS ═══ */
.anim-el.warp-in { transform: scale(0.8) rotate(-3deg); filter: blur(8px); }
.anim-el.warp-in.visible { opacity: 1; transform: scale(1) rotate(0deg); filter: blur(0); }
.anim-el.unfold { transform: perspective(1200px) rotateX(20deg) translateY(30px); transform-origin: top center; }
.anim-el.unfold.visible { opacity: 1; transform: perspective(1200px) rotateX(0deg) translateY(0); }
.anim-el.clip-reveal { clip-path: inset(20% 20% 20% 20% round 20px); }
.anim-el.clip-reveal.visible { opacity: 1; clip-path: inset(0% 0% 0% 0% round 0px); }
.anim-el.stagger-rise { transform: translateY(60px) scale(0.95); }
.anim-el.stagger-rise.visible { opacity: 1; transform: translateY(0) scale(1); }

/* ═══ PHOTO UI SYSTEM ═══ */

/* 1. Cinematic Widescreen Strip */
.photo-cinematic { position: relative; width: 100%; max-height: 400px; overflow: hidden; border-radius: 24px; }
.photo-cinematic img { width: 100%; height: 400px; object-fit: cover; display: block; transition: transform 8s ease; }
.photo-cinematic:hover img { transform: scale(1.08); }
.photo-cinematic::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(124,58,237,0.3), transparent 30%, transparent 70%, rgba(192,38,211,0.3)); z-index: 1; pointer-events: none; }
.photo-cinematic::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px; background: linear-gradient(to top, rgba(245,243,255,0.95), transparent); z-index: 1; pointer-events: none; }

/* 2. Tilted Perspective Card */
.photo-tilt { position: relative; border-radius: 20px; overflow: hidden; transition: all 0.6s cubic-bezier(0.22,1,0.36,1); transform: perspective(800px) rotateY(-4deg); box-shadow: 20px 20px 40px rgba(124,58,237,0.15); }
.photo-tilt:hover { transform: perspective(800px) rotateY(0deg); box-shadow: 0 20px 50px rgba(124,58,237,0.25); }
.photo-tilt img { width: 100%; height: 300px; object-fit: cover; display: block; }
.photo-tilt::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(192,38,211,0.1)); mix-blend-mode: color; z-index: 1; pointer-events: none; transition: opacity 0.4s; }
.photo-tilt:hover::before { opacity: 0; }

/* 3. Glass Frame with Gradient Border */
.photo-glass-frame { position: relative; padding: 6px; background: var(--grad); border-radius: 24px; box-shadow: var(--shadow); transition: all 0.5s ease; }
.photo-glass-frame:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.photo-glass-frame img { width: 100%; height: 280px; object-fit: cover; display: block; border-radius: 18px; }
.photo-glass-frame .photo-caption { position: absolute; bottom: 16px; left: 16px; right: 16px; background: rgba(255,255,255,0.9); backdrop-filter: blur(12px); padding: 12px 18px; border-radius: 14px; font-size: 14px; font-weight: 700; color: var(--text); text-align: center; z-index: 2; }

/* 4. Full-width Immersive Blur Band */
.photo-immersive { position: relative; width: 100vw; margin-left: calc(-50vw + 50%); overflow: hidden; height: 500px; }
.photo-immersive .blur-bg { position: absolute; inset: -20px; background-size: cover; background-position: center; filter: blur(20px) brightness(0.7); transform: scale(1.1); z-index: 0; }
.photo-immersive .sharp-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 60%; max-width: 700px; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.3); z-index: 2; }
.photo-immersive .sharp-center img { width: 100%; display: block; }
.photo-immersive .immersive-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(124,58,237,0.2), rgba(192,38,211,0.15)); z-index: 1; pointer-events: none; }

/* 5. Floating Photo with Orbit Ring */
.photo-orbit { position: relative; width: 220px; height: 220px; margin: 0 auto; }
.photo-orbit img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 4px solid white; box-shadow: var(--shadow); }
.photo-orbit::before { content: ''; position: absolute; inset: -16px; border-radius: 50%; border: 2px dashed rgba(124,58,237,0.3); animation: orbitRingSpin 20s linear infinite; }
.photo-orbit::after { content: ''; position: absolute; inset: -32px; border-radius: 50%; border: 1px solid rgba(192,38,211,0.15); animation: orbitRingSpin 30s linear infinite reverse; }

/* 6. Split Screen Photo */
.photo-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.photo-split .split-img { position: relative; height: 350px; overflow: hidden; }
.photo-split .split-img img { width: 100%; height: 100%; object-fit: cover; }
.photo-split .split-img.blurred img { filter: blur(6px) brightness(0.8); }
.photo-split .split-text { display: flex; align-items: center; justify-content: center; padding: 40px; background: rgba(255,255,255,0.9); backdrop-filter: blur(12px); }
.photo-split .split-text p { font-size: 20px; font-weight: 700; line-height: 1.6; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* 7. Stacked Photo Card */
.photo-stacked { position: relative; border-radius: 20px; overflow: hidden; transition: all 0.5s ease; }
.photo-stacked::before { content: ''; position: absolute; inset: 12px -8px -12px 8px; background: var(--grad-light); border-radius: 20px; z-index: -1; transition: all 0.4s; }
.photo-stacked:hover::before { inset: 16px -12px -16px 12px; }
.photo-stacked:hover { transform: translateY(-8px); }
.photo-stacked img { width: 100%; height: 300px; object-fit: cover; display: block; border-radius: 20px; }

/* 8. Atmospheric Background Photo */
/* 9. Consulo-style Hero Banner */
.photo-hero-banner { position: relative; width: 100vw; margin-left: calc(-50vw + 50%); overflow: hidden; border-radius: 0; }
.photo-hero-banner img { width: 100%; height: 500px; object-fit: cover; display: block; transition: transform 10s ease; }
.photo-hero-banner:hover img { transform: scale(1.05); }
.photo-hero-banner .banner-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(30,10,60,0.75) 0%, rgba(124,58,237,0.45) 50%, rgba(192,38,211,0.35) 100%); z-index: 1; }
.photo-hero-banner .banner-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 60px 80px; z-index: 2; }
.photo-hero-banner .banner-content h3 { color: white; font-size: 42px; font-weight: 900; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.photo-hero-banner .banner-content p { color: rgba(255,255,255,0.85); font-size: 18px; line-height: 1.7; max-width: 550px; margin-bottom: 28px; }
.photo-hero-banner .banner-content .btn-banner { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; background: rgba(255,255,255,0.15); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.3); border-radius: 100px; color: white; font-size: 16px; font-weight: 700; text-decoration: none; transition: all 0.4s ease; }
.photo-hero-banner .banner-content .btn-banner:hover { background: white; color: var(--primary); border-color: white; transform: translateY(-2px); }
@media (max-width: 991px) { .photo-hero-banner img { height: 350px; } .photo-hero-banner .banner-content { padding: 30px 24px; } .photo-hero-banner .banner-content h3 { font-size: 26px; } .photo-hero-banner .banner-content p { font-size: 15px; } }

/* 8. Atmospheric Background Photo */
.photo-atmosphere { position: relative; width: 100vw; margin-left: calc(-50vw + 50%); padding: 100px 0; overflow: hidden; }
.photo-atmosphere .atmo-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: blur(6px) brightness(0.45) saturate(1.3); z-index: 0; }
.photo-atmosphere .atmo-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(124,58,237,0.25), rgba(192,38,211,0.2)); z-index: 1; }
.photo-atmosphere .atmo-content { position: relative; z-index: 2; text-align: center; color: white; }
.photo-atmosphere .atmo-content h2 { color: white; -webkit-text-fill-color: white; }
.photo-atmosphere .atmo-content p { color: rgba(255,255,255,0.95); }

@media (max-width: 991px) {
  .photo-immersive { height: 350px; }
  .photo-immersive .sharp-center { width: 85%; }
  .photo-split { grid-template-columns: 1fr; }
  .photo-split .split-img { height: 250px; }
  .photo-cinematic img, .photo-cinematic { max-height: 250px; height: 250px; }
  .photo-tilt { transform: none; }
  .photo-tilt img { height: 220px; }
}

/* ═══ COLLAB PAGE-SPECIFIC SCROLL ANIMATIONS ═══ */
.anim-el.slide-fade-up { opacity: 0; transform: translateY(50px) scale(0.95); transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.anim-el.slide-fade-up.visible { opacity: 1; transform: translateY(0) scale(1); }
.anim-el.swing-in { opacity: 0; transform: perspective(1000px) rotateX(-20deg); transform-origin: bottom center; transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.anim-el.swing-in.visible { opacity: 1; transform: perspective(1000px) rotateX(0deg); }
.anim-el.sweep-in { opacity: 0; transform: translateX(-100px); clip-path: polygon(0 0, 0 0, 0 100%, 0 100%); transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1); }
.anim-el.sweep-in.visible { opacity: 1; transform: translateX(0); clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }

/* ═══ FLOWING PATHWAY (Who Can Collaborate) ═══ */
.flowing-pathway { position: relative; padding: 20px 0; padding-left: 50px; }
.flowing-pathway::before { content: ''; position: absolute; left: 16px; top: 0; bottom: 0; width: 4px; background: linear-gradient(to bottom, rgba(124,58,237,0.1), var(--primary), var(--accent), rgba(192,38,211,0.1)); border-radius: 4px; }
.flowing-pathway::after { content: ''; position: absolute; left: 16px; top: 0; height: 100px; width: 4px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.8), transparent); filter: blur(2px); animation: pathFlow 3s infinite linear; border-radius: 4px; z-index: 1; }
@keyframes pathFlow { 0%{top:0;opacity:0} 20%{opacity:1} 80%{opacity:1} 100%{top:100%;opacity:0} }
.pathway-node { position: relative; padding: 20px 30px; background: rgba(255,255,255,0.6); backdrop-filter: blur(10px); border-radius: 20px; border: 1px solid rgba(124,58,237,0.15); margin-bottom: 24px; transition: all 0.4s ease; display: flex; align-items: center; gap: 20px; }
.pathway-node::before { content: ''; position: absolute; left: -42px; top: 50%; transform: translateY(-50%); width: 20px; height: 2px; background: var(--primary); z-index: 0; }
.pathway-node::after { content: ''; position: absolute; left: -46px; top: 50%; transform: translateY(-50%); width: 12px; height: 12px; border-radius: 50%; background: var(--grad); z-index: 2; box-shadow: 0 0 10px rgba(124,58,237,0.6); transition: all 0.3s ease; }
.pathway-node:hover { transform: translateX(10px); background: rgba(255,255,255,0.9); box-shadow: var(--shadow); border-color: rgba(124,58,237,0.4); }
.pathway-node:hover::after { transform: translateY(-50%) scale(1.5); box-shadow: 0 0 20px rgba(124,58,237,0.8); }
.pathway-node i { font-size: 24px; color: var(--primary); background: var(--grad-light); padding: 12px; border-radius: 12px; transition: all 0.3s ease; }
.pathway-node:hover i { background: var(--grad); color: white; transform: rotate(10deg); }
.pathway-node p { margin: 0; font-size: 18px; font-weight: 700; color: var(--text); }

/* ═══ BOOK UI (Why Partner) ═══ */
.book-ui-container { position: relative; perspective: 1500px; display: grid; gap: 30px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.book-card { position: relative; height: 200px; background: rgba(255,255,255,0.8); backdrop-filter: blur(12px); border-radius: 20px; border: 1px solid rgba(124,58,237,0.15); box-shadow: var(--shadow-sm); transform-style: preserve-3d; transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); cursor: default; }
.book-cover { position: absolute; inset: 0; background: var(--grad); border-radius: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; z-index: 2; transform-origin: top; transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); backface-visibility: hidden; box-shadow: 0 10px 20px rgba(124,58,237,0.3); }
.book-cover-content { text-align: center; color: white; }
.book-cover-content i { font-size: 40px; margin-bottom: 12px; }
.book-cover-content h4 { font-size: 20px; font-weight: 800; margin: 0; }
.book-inside { position: absolute; inset: 0; padding: 30px; border-radius: 20px; display: flex; align-items: center; justify-content: center; text-align: center; opacity: 0; transition: opacity 0.4s ease; z-index: 1; }
.book-inside p { font-size: 16px; font-weight: 600; color: var(--text); margin: 0; line-height: 1.6; }
.book-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.book-card:hover .book-cover { transform: rotateX(100deg); opacity: 0; }
.book-card:hover .book-inside { opacity: 1; }

/* ═══ SLIDING GLASS STRIPS (Our Partners) ═══ */
.glass-strip-container { display: flex; flex-direction: column; gap: 16px; }
.glass-strip { position: relative; overflow: hidden; display: flex; align-items: center; gap: 24px; padding: 24px 32px; background: rgba(255,255,255,0.4); backdrop-filter: blur(20px); border-radius: 20px; border: 1px solid rgba(124,58,237,0.2); box-shadow: 0 4px 15px rgba(0,0,0,0.02); height: 100px; transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); cursor: pointer; }
.glass-strip::before { content: ''; position: absolute; top: 0; bottom: 0; left: -100%; width: 50%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent); transform: skewX(-20deg); transition: none; z-index: 1; }
.glass-strip:hover::before { animation: lightSweep 0.8s ease-out; }
@keyframes lightSweep { 0%{left:-100%} 100%{left:200%} }
.glass-strip:hover { height: 180px; background: rgba(255,255,255,0.85); box-shadow: 0 15px 35px rgba(124,58,237,0.15); border-color: rgba(124,58,237,0.5); transform: scale(1.02); z-index: 2; }
.strip-icon { width: 60px; height: 60px; border-radius: 16px; background: var(--grad); display: flex; align-items: center; justify-content: center; color: white; font-size: 24px; flex-shrink: 0; z-index: 2; transition: transform 0.3s; }
.glass-strip:hover .strip-icon { transform: scale(1.1) rotate(-5deg); }
.strip-content { display: flex; flex-direction: column; justify-content: center; flex: 1; z-index: 2; }
.strip-header { display: flex; align-items: center; justify-content: space-between; }
.strip-title { font-size: 22px; font-weight: 800; color: var(--text); transition: color 0.3s; margin: 0; }
.glass-strip:hover .strip-title { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.strip-desc { font-size: 16px; color: var(--muted); line-height: 1.6; opacity: 0; transform: translateY(10px); transition: all 0.4s ease; max-height: 0; }
.glass-strip:hover .strip-desc { opacity: 1; transform: translateY(0); max-height: 100px; margin-top: 12px; }
.strip-separator { position: absolute; bottom: 0; left: 5%; right: 5%; height: 2px; background: var(--grad); opacity: 0; filter: blur(2px); transition: opacity 0.4s; }
.glass-strip:hover .strip-separator { opacity: 1; }

/* ═══ IMMERSIVE GLASS RUNWAY (Get Started) ═══ */
.runway-container { position: relative; padding: 60px 0; perspective: 1200px; }
.runway-track { position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%) rotateX(60deg); width: 80%; max-width: 600px; background: linear-gradient(to bottom, rgba(124,58,237,0.05), rgba(192,38,211,0.1)); border-left: 2px solid rgba(124,58,237,0.3); border-right: 2px solid rgba(192,38,211,0.3); z-index: 0; box-shadow: inset 0 0 50px rgba(124,58,237,0.1); }
.runway-track::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.8), transparent); animation: runwayGlow 4s infinite linear; transform-origin: bottom; }
@keyframes runwayGlow { 0%{transform:translateY(-100%);opacity:0;} 50%{opacity:1;} 100%{transform:translateY(100%);opacity:0;} }
.runway-checkpoints { display: flex; flex-direction: column; gap: 40px; position: relative; z-index: 1; align-items: center; }
.runway-checkpoint { background: rgba(255,255,255,0.7); backdrop-filter: blur(15px); padding: 20px 40px; border-radius: 100px; border: 1px solid rgba(124,58,237,0.3); display: flex; align-items: center; gap: 16px; font-size: 18px; font-weight: 700; color: var(--text); box-shadow: 0 10px 30px rgba(124,58,237,0.15); transition: all 0.4s ease; cursor: default; position: relative; overflow: hidden; }
.runway-checkpoint::before { content: ''; position: absolute; inset: 0; background: var(--grad); opacity: 0; transition: opacity 0.4s ease; z-index: -1; }
.runway-checkpoint:hover { transform: translateY(-5px) scale(1.05); color: white; border-color: transparent; box-shadow: 0 15px 40px rgba(124,58,237,0.4); }
.runway-checkpoint:hover::before { opacity: 1; }
.runway-checkpoint i { color: var(--accent); transition: color 0.4s ease; font-size: 20px; }
.runway-checkpoint:hover i { color: white; }

/* ═══ NEURAL CANVAS BG ═══ */
#neuralCanvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }

/* GRID */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* MOBILE */
@media (max-width: 991px) {
  .menu-toggle { display: block; padding: 10px; font-size: 28px; margin-left: 8px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 110px; left: 5%; width: 90%; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); padding: 32px; border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); border: 1px solid var(--border); z-index: 1001; text-align: center; gap: 24px; }
  .nav-links.open { display: flex !important; }
  .nav-inner { gap: 12px; padding: 8px 16px; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; gap: 16px; }
  
  .orbit-center-layout { flex-direction: column; }
  .side-left, .side-right { align-items: center; text-align: left; }
  .side-left .side-item { flex-direction: row; }
  .orbit-center-wrapper { flex: 0 0 300px; order: -1; margin-bottom: 30px; }
  
  .timeline-wrap { flex-direction: column; align-items: stretch; }
  .timeline-wrap::before { display: none; }
  .timeline-step { flex-direction: row; text-align: left; gap: 20px; padding: 0 0 24px 0; }
  .timeline-dot { margin-bottom: 0; flex-shrink: 0; }
  
  .hero-evolution { font-size: 38px !important; letter-spacing: -1px; }
  .section-label { font-size: 12px !important; }
  .section-title { font-size: 26px !important; }
  
  .interactive-panel { padding: 28px 20px; }
  .light-step-card, .dark-glass-card { padding: 32px 24px; }
  .feature-row { padding: 12px; gap: 12px; }
  .feature-text { font-size: 14px; }
  .btn-primary { padding: 14px 32px; font-size: 15px; }
  .btn-outline { padding: 14px 28px; font-size: 15px; }
  section { padding: 60px 0 !important; }
  .page-hero { padding: 160px 0 80px !important; }
  .page-hero h1 { font-size: 36px !important; }
  .stat-grid { gap: 12px; }
  .stat-block { padding: 24px 16px; }
  .stat-number { font-size: 32px; }
  .info-card { padding: 28px 24px; }
  .contact-glass { padding: 28px 20px; }
  .hscroll-card { flex: 0 0 260px; }
  .accordion-header { padding: 20px 24px; }
  .accordion-body-inner { padding: 0 24px 20px; }
  .contact-info-block { padding: 16px; }
  .contact-info-block .ci-value { font-size: 16px; }
  .spotlight-grid { grid-template-columns: 1fr; gap: 16px; }
  .spotlight-card { padding: 32px 24px; }
  .spotlight-card .sc-number { font-size: 48px; }
  .zigzag-node:nth-child(odd), .zigzag-node:nth-child(even) { flex-direction: column; padding: 0 0 0 80px; }
  .zigzag-path::before, .zigzag-path::after { left: 30px; }
  .zigzag-marker { left: 30px; transform: translateX(-50%); }
  .zigzag-node:hover .zigzag-marker { transform: translateX(-50%) scale(1.15); }
  .zigzag-content::before { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .expertise-card { padding: 28px 20px; }
  .expertise-icon { width: 56px; height: 56px; font-size: 26px; }
  .hero-evolution { font-size: 32px !important; }
  .nav-inner { padding: 6px 12px; }
  .nav-inner img { height: 60px !important; }
  .step-item { gap: 16px; }
  .step-number { width: 40px; height: 40px; font-size: 15px; }
  .step-content { font-size: 15px; }
  .orbit-center-wrapper { flex: 0 0 260px; }
}

/* ═══ HOMEPAGE V2 — PREMIUM OVERHAUL ═══ */

/* Login Button */
.nav-login { background: var(--grad) !important; color: white !important; padding: 11px 26px !important; border-radius: 100px !important; font-weight: 600 !important; box-shadow: 0 4px 15px rgba(124,58,237,0.3); text-decoration: none; font-size: 15px; transition: var(--transition); }
.nav-login:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 25px rgba(124,58,237,0.45) !important; }

/* ═══ GLOW-BEAM TIMELINE (How Ugham Works) ═══ */
.glow-beam-wrap { position: relative; display: flex; flex-direction: column; gap: 0; padding: 40px 0; }
.glow-beam-line { position: absolute; left: 40px; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, rgba(124,58,237,0.1), var(--secondary), var(--accent), rgba(192,38,211,0.1)); border-radius: 4px; z-index: 0; }
.glow-beam-line::after { content: ''; position: absolute; left: -4px; top: 0; width: 11px; height: 60px; background: linear-gradient(to bottom, rgba(124,58,237,0.8), transparent); border-radius: 8px; animation: beamPulse 3s ease-in-out infinite; }
@keyframes beamPulse { 0%,100%{top:0;opacity:0.3} 50%{top:calc(100% - 60px);opacity:1} }
.glow-beam-node { position: relative; display: flex; align-items: flex-start; gap: 32px; padding: 24px 0; z-index: 1; }
.glow-beam-dot { flex-shrink: 0; width: 80px; height: 80px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; color: white; font-size: 28px; font-weight: 900; font-family: 'Outfit', sans-serif; box-shadow: 0 0 30px rgba(124,58,237,0.4), 0 0 60px rgba(192,38,211,0.15); position: relative; z-index: 2; transition: all 0.4s ease; }
.glow-beam-node:hover .glow-beam-dot { transform: scale(1.15); box-shadow: 0 0 40px rgba(124,58,237,0.6), 0 0 80px rgba(192,38,211,0.3); }
.glow-beam-dot::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(124,58,237,0.2); animation: orbitRingSpin 8s linear infinite; }
.glow-beam-info { padding-top: 14px; }
.glow-beam-info h4 { font-size: 22px; font-weight: 800; margin-bottom: 8px; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.glow-beam-info p { color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 480px; }
@media (max-width: 768px) { .glow-beam-dot { width: 56px; height: 56px; font-size: 20px; } .glow-beam-line { left: 27px; } .glow-beam-node { gap: 20px; } .glow-beam-info h4 { font-size: 18px; } }

/* ═══ HOLO PARTNER PANELS ═══ */
.holo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.holo-card { position: relative; padding: 40px 28px; border-radius: 20px; background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(245,240,255,0.95)); border: 1px solid rgba(124,58,237,0.15); overflow: hidden; transition: all 0.5s cubic-bezier(0.22,1,0.36,1); cursor: default; }
.holo-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(from 0deg, transparent, rgba(124,58,237,0.08), transparent, rgba(192,38,211,0.08), transparent); animation: holoSpin 8s linear infinite; }
@keyframes holoSpin { to { transform: rotate(360deg); } }
.holo-card::after { content: ''; position: absolute; inset: 1px; border-radius: 19px; background: linear-gradient(135deg, rgba(255,255,255,0.97), rgba(245,240,255,0.98)); z-index: 0; }
.holo-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 50px rgba(124,58,237,0.2), 0 0 40px rgba(192,38,211,0.08); border-color: rgba(124,58,237,0.3); }
.holo-card > * { position: relative; z-index: 1; }
.holo-card .holo-icon { width: 64px; height: 64px; border-radius: 16px; background: var(--grad); display: flex; align-items: center; justify-content: center; color: white; font-size: 26px; margin-bottom: 20px; box-shadow: 0 8px 24px rgba(124,58,237,0.25); }
.holo-card h4 { font-size: 20px; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.holo-card p { color: var(--muted); font-size: 15px; line-height: 1.7; }
@media (max-width: 991px) { .holo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .holo-grid { grid-template-columns: 1fr; } }

/* ═══ ENHANCED EXPERTISE CARDS V2 ═══ */
.expertise-v2 { position: relative; padding: 44px 32px; border-radius: 24px; background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(245,240,255,0.98)); border: 1px solid rgba(124,58,237,0.12); transition: all 0.5s cubic-bezier(0.22,1,0.36,1); overflow: hidden; text-align: center; }
.expertise-v2::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--grad); transform: scaleX(0); transition: transform 0.5s ease; transform-origin: left; }
.expertise-v2:hover::before { transform: scaleX(1); }
.expertise-v2:hover { transform: translateY(-10px); box-shadow: 0 24px 48px rgba(124,58,237,0.18); border-color: rgba(124,58,237,0.25); }
.expertise-v2 .ev2-icon { width: 76px; height: 76px; border-radius: 50%; background: var(--grad-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 32px; color: var(--primary); transition: all 0.5s ease; position: relative; }
.expertise-v2 .ev2-icon::after { content: ''; position: absolute; inset: -8px; border-radius: 50%; border: 2px dashed rgba(124,58,237,0.15); animation: orbitRingSpin 12s linear infinite; }
.expertise-v2:hover .ev2-icon { background: var(--grad); color: white; transform: scale(1.1) rotate(10deg); box-shadow: 0 8px 30px rgba(124,58,237,0.3); }
.expertise-v2 h4 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.expertise-v2 p { color: var(--muted); font-size: 15px; line-height: 1.7; }

/* ═══ ISLAND SECTIONS (4 separated content blocks) ═══ */
.island-section { position: relative; padding: 80px 0; overflow: hidden; }
.island-section:nth-child(even) { background: rgba(124,58,237,0.02); }
.island-section .island-label { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; border-radius: 100px; font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.island-label.purple { background: rgba(124,58,237,0.1); color: var(--primary); }
.island-label.magenta { background: rgba(192,38,211,0.1); color: var(--accent); }
.island-label.indigo { background: rgba(59,41,204,0.1); color: #3B29CC; }
.island-label.violet { background: rgba(147,51,234,0.1); color: var(--secondary); }

/* Build Items Grid */
.build-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.build-item { display: flex; align-items: center; gap: 20px; padding: 24px 28px; border-radius: 16px; background: white; border: 1px solid var(--border); transition: all 0.4s ease; }
.build-item:hover { transform: translateX(8px); border-color: rgba(124,58,237,0.3); box-shadow: var(--shadow-sm); }
.build-item .bi-icon { flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px; background: var(--grad-light); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--primary); transition: all 0.3s; }
.build-item:hover .bi-icon { background: var(--grad); color: white; }
.build-item .bi-text { font-weight: 700; font-size: 16px; color: var(--text); }

/* Impact Counter Cards */
.impact-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.impact-card { padding: 36px 24px; border-radius: 20px; text-align: center; background: white; border: 1px solid var(--border); transition: all 0.4s ease; position: relative; overflow: hidden; }
.impact-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad); }
.impact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.impact-card .ic-icon { font-size: 32px; color: var(--primary); margin-bottom: 16px; }
.impact-card h4 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.impact-card p { font-size: 14px; color: var(--muted); }
@media (max-width: 768px) { .impact-row { grid-template-columns: repeat(2, 1fr); } .build-grid { grid-template-columns: 1fr; } }

/* Club Feature List */
.club-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.club-feat { display: flex; align-items: flex-start; gap: 18px; padding: 28px; border-radius: 18px; background: linear-gradient(135deg, rgba(30,10,60,0.92), rgba(67,56,202,0.85)); color: white; transition: all 0.4s ease; }
.club-feat:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(67,56,202,0.3); }
.club-feat .cf-icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.club-feat h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.club-feat p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; }
@media (max-width: 768px) { .club-features { grid-template-columns: 1fr; } }

/* Get Started Steps V2 */
.steps-v2 { display: flex; flex-direction: column; gap: 0; position: relative; max-width: 700px; margin: 0 auto; }
.steps-v2::before { content: ''; position: absolute; left: 32px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--primary), var(--accent)); border-radius: 4px; }
.step-v2 { display: flex; align-items: center; gap: 28px; padding: 28px 0; position: relative; }
.step-v2-num { flex-shrink: 0; width: 64px; height: 64px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; color: white; font-size: 24px; font-weight: 900; font-family: 'Outfit'; box-shadow: 0 6px 20px rgba(124,58,237,0.3); position: relative; z-index: 1; transition: all 0.4s; }
.step-v2:hover .step-v2-num { transform: scale(1.15); box-shadow: 0 8px 30px rgba(124,58,237,0.5); }
.step-v2-content h4 { font-size: 19px; font-weight: 800; margin-bottom: 4px; }
.step-v2-content p { color: var(--muted); font-size: 15px; }
@media (max-width: 768px) { .step-v2 { gap: 20px; } .step-v2-num { width: 48px; height: 48px; font-size: 18px; } .steps-v2::before { left: 23px; } }

/* Enhanced Orbit */
.orbit-enhanced { position: relative; }
.orbit-enhanced .orbit-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(124,58,237,0.1); }
.orbit-enhanced .orbit-ring-1 { inset: -20px; animation: orbitRingSpin 15s linear infinite; border-style: dashed; border-color: rgba(124,58,237,0.2); }
.orbit-enhanced .orbit-ring-2 { inset: -45px; animation: orbitRingSpin 25s linear infinite reverse; border-color: rgba(192,38,211,0.12); }
.orbit-enhanced .orbit-ring-3 { inset: -70px; animation: orbitRingSpin 35s linear infinite; border-style: dotted; border-color: rgba(59,41,204,0.08); }
.orbit-enhanced .orbit-pip { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 12px rgba(124,58,237,0.5); }
.orbit-enhanced .pip-1 { top: -6px; left: 50%; animation: orbitRingSpin 15s linear infinite; }
.orbit-enhanced .pip-2 { bottom: 10%; right: -6px; animation: orbitRingSpin 25s linear infinite reverse; }
.orbit-enhanced .pip-3 { top: 30%; left: -6px; animation: orbitRingSpin 35s linear infinite; }

/* ═══ VISION/MISSION GLASS SPLIT PANELS ═══ */
.vm-panel { position: relative; padding: 48px 40px; border-radius: 24px; overflow: hidden; transition: all 0.5s ease; }
.vm-panel.vision { background: linear-gradient(135deg, rgba(67,56,202,0.06), rgba(124,58,237,0.12)); border: 1px solid rgba(124,58,237,0.15); }
.vm-panel.mission { background: linear-gradient(135deg, rgba(192,38,211,0.06), rgba(147,51,234,0.12)); border: 1px solid rgba(192,38,211,0.15); }
.vm-panel:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(124,58,237,0.15); }
.vm-panel .vm-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 100px; font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.vm-panel.vision .vm-badge { background: rgba(124,58,237,0.15); color: var(--primary); }
.vm-panel.mission .vm-badge { background: rgba(192,38,211,0.15); color: var(--accent); }
.vm-panel h3 { font-size: 28px; font-weight: 900; margin-bottom: 16px; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.vm-panel .vm-line { width: 60px; height: 3px; background: var(--grad); border-radius: 4px; margin-bottom: 20px; }
.vm-panel p { color: var(--muted); font-size: 17px; line-height: 1.9; }

/* ═══ DATASTREAM CORE VALUES ═══ */
.datastream-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ds-card { position: relative; padding: 32px 24px; border-radius: 18px; background: white; border: 1px solid var(--border); overflow: hidden; transition: all 0.4s ease; text-align: center; }
.ds-card::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(124,58,237,0.04), transparent); transition: left 0.6s ease; }
.ds-card:hover::before { left: 100%; }
.ds-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--grad); transform: scaleX(0); transition: transform 0.4s; transform-origin: left; }
.ds-card:hover::after { transform: scaleX(1); }
.ds-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.ds-card .ds-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--grad-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 24px; color: var(--primary); transition: all 0.3s; }
.ds-card:hover .ds-icon { background: var(--grad); color: white; }
.ds-card h4 { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.ds-card p { font-size: 13px; color: var(--muted); }
@media (max-width: 768px) { .datastream-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .datastream-grid { grid-template-columns: 1fr; } }

/* ═══ LIQUID FOG BACKGROUND (What We Do) ═══ */
#liquidFog { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }

/* ═══ WHY CHOOSE / WHAT MAKES DIFFERENT — SEPARATE SECTIONS ═══ */
.reason-list { display: flex; flex-direction: column; gap: 16px; }
.reason-item { display: flex; align-items: center; gap: 16px; padding: 18px 24px; border-radius: 14px; background: white; border: 1px solid var(--border); transition: all 0.3s; }
.reason-item:hover { transform: translateX(6px); border-color: rgba(124,58,237,0.25); box-shadow: var(--shadow-sm); }
.reason-item .ri-dot { flex-shrink: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--grad); }
.reason-item p { font-size: 16px; font-weight: 600; color: var(--text); }

/* ═══ ZIGZAG BOOK LAYOUT ═══ */
.zigzag-books { display: flex; flex-direction: column; gap: 24px; }
.zigzag-books .book-card { width: 65%; }
.zigzag-books .book-card:nth-child(even) { align-self: flex-end; }
.zigzag-books .book-card:nth-child(odd) { align-self: flex-start; }
@media (max-width: 768px) { .zigzag-books .book-card { width: 100%; } }

/* ═══ COLLAB GET STARTED ISLANDS ═══ */
.collab-islands { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.collab-island { padding: 36px 28px; border-radius: 20px; background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(245,240,255,0.98)); border: 1px solid rgba(124,58,237,0.12); transition: all 0.4s ease; text-align: center; }
.collab-island:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(124,58,237,0.25); }
.collab-island .ci-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: white; font-size: 24px; }
.collab-island h4 { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.collab-island p { color: var(--muted); font-size: 15px; line-height: 1.7; }
@media (max-width: 768px) { .collab-islands { grid-template-columns: 1fr; } }

/* ═══ AWARDS PAGE — PURPLE THEMED ═══ */
#starField { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }

/* Trophy Podium Cards V2 */
.trophy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.trophy-card { position: relative; padding: 48px 36px; border-radius: 24px; background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(245,240,255,0.98)); border: 2px solid rgba(124,58,237,0.15); text-align: center; transition: all 0.5s cubic-bezier(0.22,1,0.36,1); overflow: hidden; }
.trophy-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(from 0deg, transparent, rgba(124,58,237,0.06), transparent, rgba(192,38,211,0.06), transparent); animation: holoSpin 10s linear infinite; }
.trophy-card::after { content: ''; position: absolute; inset: 2px; border-radius: 22px; background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(245,240,255,0.99)); z-index: 0; }
.trophy-card > * { position: relative; z-index: 1; }
.trophy-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: rgba(124,58,237,0.4); }
.trophy-card .trophy-icon { font-size: 56px; margin-bottom: 20px; display: block; animation: floatPulse 3s ease-in-out infinite alternate; }
.trophy-card h3 { font-size: 24px; font-weight: 900; margin-bottom: 12px; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.trophy-card p { color: var(--muted); font-size: 16px; line-height: 1.7; }
.trophy-card .trophy-badge { display: inline-block; padding: 6px 18px; border-radius: 100px; font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; background: rgba(124,58,237,0.1); color: var(--primary); }
@media (max-width: 768px) { .trophy-grid { grid-template-columns: 1fr; } }

/* Interactive Rule Flip Cards */
.rules-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.rule-flip { perspective: 600px; height: 140px; cursor: default; }
.rule-flip-inner { position: relative; width: 100%; height: 100%; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); transform-style: preserve-3d; }
.rule-flip:hover .rule-flip-inner { transform: rotateY(180deg); }
.rule-flip-front, .rule-flip-back { position: absolute; inset: 0; backface-visibility: hidden; border-radius: 18px; display: flex; align-items: center; justify-content: center; padding: 20px; text-align: center; }
.rule-flip-front { background: var(--grad); color: white; font-size: 40px; font-weight: 900; font-family: 'Outfit'; box-shadow: 0 8px 24px rgba(124,58,237,0.25); }
.rule-flip-back { background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(245,240,255,1)); border: 2px solid rgba(124,58,237,0.2); transform: rotateY(180deg); font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.5; }

/* Prize Marquee (purple themed) */
.marquee-wrap { overflow: hidden; padding: 20px 0; }
.marquee-track { display: flex; gap: 24px; animation: marqueeScroll 30s linear infinite; width: max-content; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item { flex-shrink: 0; padding: 20px 32px; border-radius: 16px; background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(245,240,255,0.98)); border: 1px solid rgba(124,58,237,0.15); display: flex; align-items: center; gap: 14px; white-space: nowrap; transition: all 0.3s; }
.marquee-item:hover { border-color: rgba(124,58,237,0.4); box-shadow: var(--shadow-sm); }
.marquee-item .mi-icon { font-size: 24px; }
.marquee-item span { font-size: 16px; font-weight: 700; color: var(--text); }

/* Sine Wave River Timeline */
.wave-timeline { position: relative; padding: 60px 0; }
.wave-row { display: flex; align-items: center; position: relative; margin-bottom: 0; }
.wave-row:nth-child(odd) { justify-content: flex-start; padding-right: 45%; }
.wave-row:nth-child(even) { justify-content: flex-end; padding-left: 45%; }
.wave-node { position: relative; padding: 28px 32px; border-radius: 20px; background: white; border: 1px solid rgba(124,58,237,0.12); transition: all 0.4s ease; max-width: 400px; width: 100%; }
.wave-node::before { content: ''; position: absolute; top: 50%; width: 40px; height: 3px; background: var(--grad); }
.wave-row:nth-child(odd) .wave-node::before { right: -40px; }
.wave-row:nth-child(even) .wave-node::before { left: -40px; }
.wave-node::after { content: ''; position: absolute; top: 50%; width: 16px; height: 16px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 16px rgba(124,58,237,0.4); transform: translateY(-50%); }
.wave-row:nth-child(odd) .wave-node::after { right: -48px; }
.wave-row:nth-child(even) .wave-node::after { left: -48px; }
.wave-node:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(124,58,237,0.3); }
.wave-node h4 { font-size: 18px; font-weight: 800; margin-bottom: 4px; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.wave-node p { font-size: 14px; color: var(--muted); }
.wave-svg { position: absolute; left: 0; top: 0; width: 100%; height: 100%; pointer-events: none; z-index: -1; }
.wave-svg path { fill: none; stroke: url(#waveGrad); stroke-width: 3; stroke-linecap: round; }
@media (max-width: 768px) { .wave-row:nth-child(odd), .wave-row:nth-child(even) { padding: 0; justify-content: center; } .wave-node::before, .wave-node::after { display: none; } .wave-svg { display: none; } }

/* Floating Tag Cloud (Final Highlights) */
.tag-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; perspective: 800px; }
.tag-float { padding: 16px 28px; border-radius: 100px; background: var(--grad); color: white; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 10px; transition: all 0.4s ease; cursor: default; box-shadow: 0 6px 20px rgba(124,58,237,0.2); animation: tagBob var(--dur, 4s) ease-in-out infinite alternate; animation-delay: var(--del, 0s); }
.tag-float:hover { transform: scale(1.1) translateY(-4px) !important; box-shadow: 0 12px 30px rgba(124,58,237,0.35); }
.tag-float.outline { background: transparent; color: var(--primary); border: 2px solid rgba(124,58,237,0.25); box-shadow: none; }
.tag-float.outline:hover { background: rgba(124,58,237,0.06); border-color: var(--primary); }
.tag-float.lg { padding: 20px 36px; font-size: 17px; }
.tag-float.sm { padding: 12px 22px; font-size: 13px; }
@keyframes tagBob { 0% { transform: translateY(0); } 100% { transform: translateY(-10px); } }

/* Network Graph (Who Should Attend) */
.network-wrap { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; padding: 40px 20px; }
.network-node { position: relative; text-align: center; transition: all 0.4s; }
.network-node:hover { transform: scale(1.08); }
.network-bubble { width: 100px; height: 100px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; color: white; font-size: 32px; margin: 0 auto 14px; box-shadow: 0 8px 28px rgba(124,58,237,0.25); position: relative; transition: all 0.4s; }
.network-bubble::after { content: ''; position: absolute; inset: -8px; border-radius: 50%; border: 2px dashed rgba(124,58,237,0.2); animation: orbitRingSpin 10s linear infinite; }
.network-node:hover .network-bubble { box-shadow: 0 12px 36px rgba(124,58,237,0.4); }
.network-node h4 { font-size: 15px; font-weight: 800; max-width: 120px; }
@media (max-width: 600px) { .network-bubble { width: 80px; height: 80px; font-size: 26px; } .network-wrap { gap: 24px; } }

/* Purple CTA Banner */
.purple-cta { position: relative; width: 100vw; margin-left: calc(-50vw + 50%); padding: 80px 0; background: var(--grad); text-align: center; overflow: hidden; }
.purple-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1), transparent 50%), radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05), transparent 50%); }
.purple-cta h2 { position: relative; z-index: 1; font-size: 36px; font-weight: 900; color: white; margin-bottom: 16px; }
.purple-cta p { position: relative; z-index: 1; color: rgba(255,255,255,0.85); font-size: 18px; margin-bottom: 28px; }
.purple-cta .btn-white { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 10px; padding: 18px 44px; background: white; color: var(--primary); border-radius: 100px; font-weight: 700; font-size: 16px; text-decoration: none; box-shadow: 0 8px 24px rgba(0,0,0,0.15); transition: all 0.4s; }
.purple-cta .btn-white:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,0.25); }

/* ═══ EXPANDING STRIPS (Why Attend — Unique) ═══ */
.expand-strips { display: flex; flex-direction: column; gap: 0; border-radius: 24px; overflow: hidden; border: 1px solid rgba(124,58,237,0.1); }
.ex-strip { position: relative; display: flex; align-items: center; gap: 20px; padding: 22px 32px; background: white; cursor: default; transition: all 0.5s cubic-bezier(0.22,1,0.36,1); overflow: hidden; border-bottom: 1px solid rgba(124,58,237,0.06); }
.ex-strip:last-child { border-bottom: none; }
.ex-strip::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--grad); transform: scaleY(0); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1); transform-origin: center; }
.ex-strip:hover::before { transform: scaleY(1); }
.ex-strip:hover { background: linear-gradient(90deg, rgba(124,58,237,0.04), transparent 60%); padding: 28px 32px 28px 40px; }
.ex-strip .ex-num { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--grad-light); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 900; color: var(--primary); transition: all 0.4s; font-family: 'Outfit'; }
.ex-strip:hover .ex-num { background: var(--grad); color: white; border-radius: 50%; transform: rotate(360deg); }
.ex-strip .ex-icon { flex-shrink: 0; font-size: 22px; color: var(--primary); transition: all 0.4s; opacity: 0.6; }
.ex-strip:hover .ex-icon { opacity: 1; transform: scale(1.2); }
.ex-strip .ex-body { flex: 1; min-width: 0; }
.ex-strip .ex-title { font-size: 17px; font-weight: 800; color: var(--text); transition: all 0.3s; }
.ex-strip:hover .ex-title { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.ex-strip .ex-desc { max-height: 0; overflow: hidden; opacity: 0; transition: all 0.5s cubic-bezier(0.22,1,0.36,1); font-size: 14px; color: var(--muted); line-height: 1.6; margin-top: 0; }
.ex-strip:hover .ex-desc { max-height: 80px; opacity: 1; margin-top: 8px; }
.ex-strip .ex-arrow { flex-shrink: 0; font-size: 18px; color: rgba(124,58,237,0.2); transition: all 0.4s; transform: translateX(0); }
.ex-strip:hover .ex-arrow { color: var(--primary); transform: translateX(6px); }
@media (max-width: 768px) { .ex-strip { padding: 18px 20px; } .ex-strip:hover { padding: 24px 20px 24px 28px; } .ex-strip .ex-num { width: 36px; height: 36px; font-size: 14px; } }

/* ═══ HOMEPAGE V3 — PREMIUM REBUILD ═══ */

/* Orbit Fix — clip overflow + enhanced pips */
.orbit-center-layout { overflow: visible; }
.orbit-center-wrapper.orbit-enhanced { overflow: hidden; border-radius: 50%; }
.orbit-enhanced .orbit-pip { width: 10px; height: 10px; }
.orbit-enhanced .pip-4 { bottom: -5px; left: 50%; animation: orbitRingSpin 20s linear infinite; }
.orbit-enhanced .pip-5 { top: 50%; right: -5px; animation: orbitRingSpin 30s linear infinite reverse; }
.orbit-enhanced .pip-6 { bottom: 30%; left: -5px; animation: orbitRingSpin 18s linear infinite; }

/* How Ugham Works — Side Animation Layout */
.works-split { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
#worksCanvas { width: 100%; height: 500px; border-radius: 24px; background: linear-gradient(145deg, rgba(124,58,237,0.03), rgba(192,38,211,0.03)); border: 1px solid rgba(124,58,237,0.08); }
@media (max-width: 900px) { .works-split { grid-template-columns: 1fr; } #worksCanvas { display: none; } }

/* Bento Grid (What You Can Build) */
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; gap: 16px; }
.bento-card { position: relative; padding: 32px 24px; border-radius: 20px; background: white; border: 1px solid var(--border); overflow: hidden; transition: all 0.5s cubic-bezier(0.22,1,0.36,1); }
.bento-card::before { content: ''; position: absolute; inset: 0; background: var(--grad); opacity: 0; transition: opacity 0.4s; }
.bento-card:hover::before { opacity: 0.04; }
.bento-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(124,58,237,0.2); }
.bento-card.span-2 { grid-column: span 2; }
.bento-card .bn-icon { font-size: 32px; color: var(--primary); margin-bottom: 16px; transition: all 0.4s; }
.bento-card:hover .bn-icon { transform: scale(1.15) rotate(-5deg); }
.bento-card h4 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.bento-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
@media (max-width: 768px) { .bento-grid { grid-template-columns: 1fr 1fr; } .bento-card.span-2 { grid-column: span 1; } }
@media (max-width: 480px) { .bento-grid { grid-template-columns: 1fr; } }

/* Counter Pulse Cards (Our Impact) */
.pulse-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pulse-card { position: relative; padding: 36px 20px; border-radius: 20px; background: white; border: 1px solid var(--border); text-align: center; overflow: hidden; transition: all 0.4s; }
.pulse-card::after { content: ''; position: absolute; top: 50%; left: 50%; width: 80px; height: 80px; border-radius: 50%; background: var(--grad); opacity: 0.06; transform: translate(-50%, -50%); animation: pulseRing 3s ease-in-out infinite; }
@keyframes pulseRing { 0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.06; } 50% { transform: translate(-50%,-50%) scale(2.5); opacity: 0; } }
.pulse-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pulse-card .pc-num { font-size: 36px; font-weight: 900; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; position: relative; z-index: 1; }
.pulse-card .pc-label { font-size: 14px; font-weight: 700; color: var(--muted); margin-top: 6px; position: relative; z-index: 1; }
@media (max-width: 768px) { .pulse-grid { grid-template-columns: repeat(2, 1fr); } }

/* Accordion Towers (Innovation Club) */
.tower-stack { display: flex; flex-direction: column; gap: 0; border-radius: 24px; overflow: hidden; border: 1px solid rgba(124,58,237,0.1); }
.tower-item { position: relative; border-bottom: 1px solid rgba(124,58,237,0.06); transition: all 0.5s cubic-bezier(0.22,1,0.36,1); overflow: hidden; }
.tower-item:last-child { border-bottom: none; }
.tower-header { display: flex; align-items: center; gap: 16px; padding: 24px 28px; cursor: pointer; background: white; transition: all 0.3s; }
.tower-header:hover { background: rgba(124,58,237,0.02); }
.tower-header .tw-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--grad-light); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--primary); flex-shrink: 0; transition: all 0.4s; }
.tower-item.active .tower-header .tw-icon { background: var(--grad); color: white; }
.tower-header h4 { font-size: 17px; font-weight: 800; flex: 1; }
.tower-header .tw-arrow { font-size: 20px; color: var(--muted); transition: transform 0.4s; }
.tower-item.active .tower-header .tw-arrow { transform: rotate(180deg); color: var(--primary); }
.tower-body { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.22,1,0.36,1); }
.tower-body-inner { padding: 0 28px 24px 88px; color: var(--muted); font-size: 15px; line-height: 1.8; }

/* Connected Path (Get Started) */
.path-track { display: flex; align-items: flex-start; gap: 0; position: relative; }
.path-track::before { content: ''; position: absolute; top: 32px; left: 40px; right: 40px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary)); border-radius: 4px; z-index: 0; }
.path-step { flex: 1; text-align: center; position: relative; z-index: 1; }
.path-dot { width: 64px; height: 64px; border-radius: 50%; background: var(--grad); color: white; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 900; margin: 0 auto 16px; box-shadow: 0 8px 24px rgba(124,58,237,0.25); position: relative; transition: all 0.4s; font-family: 'Outfit'; }
.path-dot::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(124,58,237,0.15); animation: pulseRing 2.5s ease-in-out infinite; }
.path-step:hover .path-dot { transform: scale(1.1); box-shadow: 0 12px 32px rgba(124,58,237,0.4); }
.path-step h4 { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.path-step p { font-size: 13px; color: var(--muted); max-width: 160px; margin: 0 auto; }
@media (max-width: 768px) { .path-track { flex-direction: column; align-items: center; gap: 24px; } .path-track::before { top: 40px; bottom: 40px; left: 32px; width: 3px; height: auto; right: auto; } .path-step { display: flex; align-items: center; gap: 20px; text-align: left; width: 100%; } .path-dot { flex-shrink: 0; margin: 0; } .path-step p { max-width: none; } }

/* Partner Scroll Marquee */
.partner-scroll { overflow: hidden; }
.partner-row { display: flex; gap: 20px; animation: marqueeScroll 35s linear infinite; width: max-content; }
.partner-row.reverse { animation-direction: reverse; margin-top: 20px; }
.partner-pill { flex-shrink: 0; display: flex; align-items: center; gap: 14px; padding: 20px 28px; border-radius: 18px; background: white; border: 1px solid var(--border); transition: all 0.3s; white-space: nowrap; }
.partner-pill:hover { border-color: rgba(124,58,237,0.3); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.partner-pill .pp-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--grad-light); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--primary); flex-shrink: 0; }
.partner-pill h4 { font-size: 15px; font-weight: 800; }
.partner-pill p { font-size: 12px; color: var(--muted); }

/* Bento Card 3D Tilt */
.bento-card { transform-style: preserve-3d; perspective: 800px; }
.bento-card:hover { transform: none; }

/* Animated Impact Reveal */
.impact-reveal { max-width: 700px; margin: 0 auto; }
.impact-reveal .ir-subtitle { font-size: 20px; font-weight: 800; margin-bottom: 32px; text-align: center; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.ir-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; border-bottom: 1px solid rgba(124,58,237,0.08); opacity: 0; transform: translateX(-20px); animation: irSlideIn 0.5s forwards; }
.ir-item:last-child { border-bottom: none; }
.ir-item:nth-child(2) { animation-delay: 0.15s; }
.ir-item:nth-child(3) { animation-delay: 0.3s; }
.ir-item:nth-child(4) { animation-delay: 0.45s; }
@keyframes irSlideIn { to { opacity: 1; transform: translateX(0); } }
.ir-check { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; color: white; font-size: 16px; box-shadow: 0 4px 12px rgba(124,58,237,0.2); }
.ir-item p { font-size: 16px; font-weight: 600; color: var(--text); line-height: 1.7; padding-top: 6px; }

/* Terminal Console (Get Started) */
.terminal-wrap { max-width: 700px; margin: 0 auto; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.terminal-bar { display: flex; align-items: center; gap: 8px; padding: 14px 20px; background: #1e1e2e; }
.terminal-dot { width: 12px; height: 12px; border-radius: 50%; }
.terminal-dot.red { background: #ff5f57; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #28c840; }
.terminal-bar span { margin-left: auto; font-size: 12px; color: rgba(255,255,255,0.4); font-family: monospace; }
.terminal-body { background: #11111b; padding: 24px; font-family: 'Courier New', monospace; font-size: 14px; line-height: 2.2; color: #cdd6f4; }
.terminal-body .t-prompt { color: #a6e3a1; }
.terminal-body .t-cmd { color: #89b4fa; }
.terminal-body .t-flag { color: #f9e2af; }
.terminal-body .t-comment { color: #585b70; font-style: italic; }
.terminal-body .t-line { opacity: 0; animation: termType 0.4s forwards; }
.terminal-body .t-line:nth-child(1) { animation-delay: 0s; }
.terminal-body .t-line:nth-child(2) { animation-delay: 0.5s; }
.terminal-body .t-line:nth-child(3) { animation-delay: 1s; }
.terminal-body .t-line:nth-child(4) { animation-delay: 1.5s; }
.terminal-body .t-line:nth-child(5) { animation-delay: 2s; }
.terminal-body .t-line:nth-child(6) { animation-delay: 2.5s; }
.terminal-body .t-line:nth-child(7) { animation-delay: 3s; }
.terminal-body .t-line:nth-child(8) { animation-delay: 3.5s; }
@keyframes termType { to { opacity: 1; } }
.t-cursor { display: inline-block; width: 8px; height: 16px; background: #a6e3a1; animation: blink 1s step-end infinite; vertical-align: middle; margin-left: 2px; }
@keyframes blink { 50% { opacity: 0; } }

/* Kanban Board (Innovation Club) */
.kanban-board { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.kanban-col { }
.kanban-col .kc-header { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid rgba(124,58,237,0.15); }
.kanban-card { padding: 20px; border-radius: 12px; margin-bottom: 16px; border-left: 4px solid; transition: all 0.4s cubic-bezier(0.22,1,0.36,1); cursor: default; position: relative; }
.kanban-card:hover { transform: translateY(-4px) rotate(-1deg); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.kanban-card.purple { background: rgba(124,58,237,0.06); border-color: var(--primary); }
.kanban-card.magenta { background: rgba(192,38,211,0.06); border-color: var(--accent); }
.kanban-card.blue { background: rgba(59,130,246,0.06); border-color: #3B82F6; }
.kanban-card.teal { background: rgba(20,184,166,0.06); border-color: #14B8A6; }
.kanban-card h4 { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.kanban-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.kanban-card .kc-tag { display: inline-block; padding: 2px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; margin-top: 10px; }
.kanban-card.purple .kc-tag { background: rgba(124,58,237,0.1); color: var(--primary); }
.kanban-card.magenta .kc-tag { background: rgba(192,38,211,0.1); color: var(--accent); }
.kanban-card.blue .kc-tag { background: rgba(59,130,246,0.1); color: #3B82F6; }
.kanban-card.teal .kc-tag { background: rgba(20,184,166,0.1); color: #14B8A6; }
@media (max-width: 600px) { .kanban-board { grid-template-columns: 1fr; } }

/* Mobile Auto Activation */
@media (max-width: 768px) {
  .tower-item .tower-body { max-height: 200px !important; }
  .tower-item .tower-header .tw-arrow { display: none; }
  .tower-item .tower-header .tw-icon { background: var(--grad); color: white; }
  .ex-strip .ex-desc { max-height: 80px; opacity: 1; margin-top: 8px; }
  .ex-strip::before { transform: scaleY(1); }
  .ex-strip .ex-title { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
  .ex-strip .ex-arrow { color: var(--primary); }
  .ex-strip .ex-icon { opacity: 1; }
  .rule-flip-inner { transform: rotateY(180deg); }
}

/* Pricing Cards (Awards Categories) */
.pricing-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:28px;max-width:900px;margin:0 auto}
.price-card{border-radius:24px;overflow:hidden;border:1px solid var(--border);background:white;transition:all .4s;position:relative}
.price-card.featured{border-color:var(--primary);box-shadow:0 12px 40px rgba(124,58,237,.15)}
.price-card:hover{transform:translateY(-8px);box-shadow:0 20px 50px rgba(124,58,237,.12)}
.pc-header{padding:28px 24px;text-align:center}
.price-card.featured .pc-header{background:var(--grad);color:white}
.pc-header h3{font-size:22px;font-weight:900;margin-bottom:4px}
.pc-header p{font-size:13px;opacity:.7}
.pc-price{text-align:center;padding:24px;font-size:42px;font-weight:900;background:var(--grad-text);-webkit-background-clip:text;-webkit-text-fill-color:transparent}
.price-card.featured .pc-price{background:none;-webkit-text-fill-color:var(--primary)}
.pc-price span{font-size:16px;font-weight:600;-webkit-text-fill-color:var(--muted)}
.pc-features{padding:0 24px 28px;display:flex;flex-direction:column;gap:12px}
.pc-feat{display:flex;align-items:center;gap:10px;font-size:14px;color:var(--text)}
.pc-feat i{color:var(--primary);font-size:14px}
.pc-action{padding:0 24px 28px;text-align:center}
.pc-action a{display:block;padding:14px;border-radius:12px;font-weight:700;font-size:14px;text-decoration:none;transition:all .3s}
.price-card .pc-action a{background:var(--grad-light);color:var(--primary)}
.price-card.featured .pc-action a{background:var(--grad);color:white}
@media(max-width:600px){.pricing-grid{grid-template-columns:1fr}}

/* Core Values Hexagon */
.hex-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:16px}
.hex-card{width:180px;padding:28px 16px;text-align:center;background:white;border:1px solid var(--border);border-radius:20px;transition:all .5s cubic-bezier(.22,1,.36,1);position:relative;overflow:hidden}
.hex-card::before{content:'';position:absolute;inset:0;background:var(--grad);opacity:0;transition:opacity .4s}
.hex-card:hover::before{opacity:.05}
.hex-card:hover{transform:translateY(-8px) rotate(-2deg);box-shadow:0 16px 40px rgba(124,58,237,.12);border-color:rgba(124,58,237,.2)}
.hex-card .hx-icon{font-size:28px;color:var(--primary);margin-bottom:12px;transition:all .4s}
.hex-card:hover .hx-icon{transform:scale(1.2) rotate(10deg)}
.hex-card h4{font-size:15px;font-weight:800;margin-bottom:4px;position:relative;z-index:1}
.hex-card p{font-size:12px;color:var(--muted);position:relative;z-index:1}
@media(max-width:600px){.hex-card{width:calc(50% - 8px)}}

/* Enhanced Reason List */
.reason-item{transition:all .3s}
.reason-item:hover{transform:translateX(8px)}
.reason-item:hover .ri-dot{transform:scale(1.3);box-shadow:0 0 12px rgba(124,58,237,.3)}

/* Flowchart Steps */
.flow-steps{display:flex;flex-direction:column;gap:0;max-width:650px;margin:0 auto}
.flow-step{display:flex;align-items:flex-start;gap:20px;position:relative;padding-bottom:32px}
.flow-step::before{content:'';position:absolute;left:23px;top:48px;bottom:0;width:2px;background:linear-gradient(180deg,var(--primary),var(--accent))}
.flow-step:last-child::before{display:none}
.flow-dot{flex-shrink:0;width:48px;height:48px;border-radius:50%;background:var(--grad);color:white;display:flex;align-items:center;justify-content:center;font-size:20px;font-weight:900;font-family:'Outfit';box-shadow:0 6px 20px rgba(124,58,237,.25);position:relative;z-index:1}
.flow-body{flex:1;background:white;border:1px solid var(--border);border-radius:16px;padding:20px 24px;position:relative;transition:all .4s}
.flow-body::before{content:'';position:absolute;left:-8px;top:16px;width:0;height:0;border-top:8px solid transparent;border-bottom:8px solid transparent;border-right:8px solid var(--border)}
.flow-body:hover{border-color:rgba(124,58,237,.2);box-shadow:0 8px 24px rgba(124,58,237,.08);transform:translateX(4px)}
.flow-body h4{font-size:17px;font-weight:800;margin-bottom:4px;background:var(--grad-text);-webkit-background-clip:text;-webkit-text-fill-color:transparent}
.flow-body p{font-size:14px;color:var(--muted)}
@media(max-width:600px){.flow-step{gap:14px}.flow-dot{width:40px;height:40px;font-size:16px}.flow-step::before{left:19px}}

/* Impact Animated Grid */
.impact-anim-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;max-width:900px;margin:0 auto}
.ia-card{padding:28px 24px;border-radius:20px;background:white;border:1px solid var(--border);transition:all .5s cubic-bezier(.22,1,.36,1);position:relative;overflow:hidden}
.ia-card::after{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:var(--grad);transform:scaleX(0);transition:transform .4s;transform-origin:left}
.ia-card:hover::after{transform:scaleX(1)}
.ia-card:hover{transform:translateY(-6px);box-shadow:0 16px 40px rgba(124,58,237,.1)}
.ia-card .ia-icon{font-size:28px;color:var(--primary);margin-bottom:12px}
.ia-card h4{font-size:17px;font-weight:800;margin-bottom:6px}
.ia-card p{font-size:14px;color:var(--muted);line-height:1.6}
@media(max-width:600px){.impact-anim-grid{grid-template-columns:1fr}}

/* Real Stars Canvas */
#realStars{position:fixed;top:0;left:0;width:100%;height:100%;z-index:0;pointer-events:none}

/* Rules Enhanced Grid */
.rules-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(140px,1fr));gap:16px;justify-items:center}
.rule-flip{width:100%;max-width:160px;height:120px}

/* Stats on top desktop */
@media(min-width:769px){.stats-top-desktop{position:absolute;bottom:-40px;left:50%;transform:translateX(-50%);z-index:2;width:100%}}

/* Zigzag flow fix */
.flow-step[style*="row-reverse"]::before{left:auto;right:23px}
.flow-step[style*="row-reverse"] .flow-body::before{left:auto;right:-8px;border-right:none;border-left:8px solid var(--border)}

/* Flow step hover animation */
.flow-step .flow-dot{transition:all .4s}
.flow-step:hover .flow-dot{transform:scale(1.15);box-shadow:0 8px 28px rgba(124,58,237,.35)}
.flow-step:hover .flow-body{border-color:rgba(124,58,237,.25);box-shadow:0 8px 28px rgba(124,58,237,.1)}

/* Mobile fixes */
@media(max-width:768px){
  .flow-step[style*="row-reverse"]{flex-direction:row!important}
  .flow-step[style*="row-reverse"] .flow-body{text-align:left!important}
  .flow-step[style*="row-reverse"]::before{right:auto;left:19px}
  .flow-step[style*="row-reverse"] .flow-body::before{right:auto;left:-8px;border-left:none;border-right:8px solid var(--border)}
  .page-hero{min-height:auto!important;padding-top:160px!important;padding-bottom:80px!important}
}






@media(max-width:768px){
  /* ═══ AWARDS HERO FIX ═══ */
  .page-hero{min-height:auto!important;padding:140px 0 60px!important}
  #starField{height:100vh;position:fixed}
  #realStars{display:none}

  /* ═══ ALL GRIDS SINGLE COLUMN ═══ */
  .grid-2,.grid-4,.stat-grid,.pricing-grid,.kanban-board,.pulse-grid,.bento-grid,.impact-anim-grid,.hex-grid{
    grid-template-columns:1fr!important;
  }
  .bento-card.span-2{grid-column:span 1!important}
  .hex-card{width:100%!important}
  
  /* ═══ ORBIT SECTION FIX ═══ */
  .orbit-center-layout{flex-direction:column;gap:24px}
  .orbit-side{flex-direction:row;gap:16px}
  .orbit-center-wrapper.orbit-enhanced{max-width:280px;max-height:280px;margin:0 auto}
  
  /* ═══ PARTNER PILLS SINGLE COL ═══ */
  .partner-row{animation-duration:25s!important}
  
  /* ═══ HOVER → TAP ALTERNATIVES ═══ */
  /* Flip cards - show both sides stacked */
  .rule-flip{height:auto!important;max-width:100%!important;width:100%!important}
  .rule-flip-inner{transform:none!important;position:relative;transform-style:flat}
  .rule-flip-front{position:relative;border-radius:16px 16px 0 0;padding:16px;font-size:24px}
  .rule-flip-back{position:relative;transform:none;border-radius:0 0 16px 16px;padding:16px;font-size:14px;background:var(--grad-light);color:var(--text);backface-visibility:visible}
  
  /* Expanding strips - always open */
  .ex-strip{padding:20px!important}
  .ex-strip::before{transform:scaleY(1)!important}
  .ex-strip .ex-desc{max-height:100px!important;opacity:1!important;margin-top:8px!important}
  .ex-strip .ex-title{background:var(--grad-text)!important;-webkit-background-clip:text!important;-webkit-text-fill-color:transparent!important}
  .ex-strip .ex-icon{opacity:1!important}
  .ex-strip .ex-arrow{display:none}
  
  /* Bento cards - no tilt on mobile */
  .bento-card{transform:none!important;box-shadow:none!important}
  .bento-card:active{transform:scale(0.98)!important}
  
  /* Flow steps - all visible */
  .flow-step[style*="row-reverse"]{flex-direction:row!important}
  .flow-step[style*="row-reverse"] .flow-body{text-align:left!important}
  .flow-step[style*="row-reverse"]::before{right:auto;left:19px}
  .flow-step[style*="row-reverse"] .flow-body::before{right:auto;left:-8px;border-left:none;border-right:8px solid var(--border)}
  
  /* Kanban - single column */
  .kanban-card:hover{transform:none}
  
  /* Photo layouts */
  .photo-hero-banner{min-height:300px; height:auto; padding:60px 20px;}
  .banner-content h3{font-size:20px}
  .banner-content p{font-size:14px}
  
  /* Sections padding */
  section,.island-section,.section-flow{padding:60px 0!important}
  .container{padding:0 20px}
  
  /* Typography mobile */
  .huge-text{font-size:clamp(32px,8vw,48px)!important}
  .section-title{font-size:clamp(24px,6vw,36px)!important}
  
  /* Footer mobile */
  footer .grid-4{grid-template-columns:1fr!important;text-align:left; gap:40px;}
  footer .grid-4 ul{align-items:flex-start}
  
  /* Works split */
  .works-split{grid-template-columns:1fr!important}
  #worksCanvas{display:none!important}
  
  /* Terminal mobile */
  .terminal-body{font-size:11px;padding:16px;overflow-x:auto}
  
  /* Price cards mobile */
  .pricing-grid{gap:20px}
  .price-card{max-width:100%}
}

/* Tablet */
@media(min-width:769px) and (max-width:1024px){
  .grid-4{grid-template-columns:repeat(2,1fr)!important}
  .nav-inner img{height:90px!important}
}




/* ═══ UNIFIED MOBILE OVERRIDES ═══ */
@media(max-width:768px){
  /* SCROLL ANIMATIONS */
  .ia-card.scroll-visible{transform:translateY(-6px);box-shadow:0 16px 40px rgba(124,58,237,.1)}
  .ia-card.scroll-visible::after{transform:scaleX(1)}
  .hex-card.scroll-visible{transform:translateY(-8px) rotate(-2deg);box-shadow:0 16px 40px rgba(124,58,237,.12);border-color:rgba(124,58,237,.2)}
  .hex-card.scroll-visible .hx-icon{transform:scale(1.2) rotate(10deg)}
  .kanban-card.scroll-visible{transform:translateY(-4px) rotate(-1deg);box-shadow:0 12px 30px rgba(0,0,0,.08)}
  .flow-step.scroll-visible .flow-dot{transform:scale(1.15);box-shadow:0 8px 28px rgba(124,58,237,.35)}
  .flow-step.scroll-visible .flow-body{border-color:rgba(124,58,237,.25);box-shadow:0 8px 28px rgba(124,58,237,.1);transform:translateX(4px)}
  .bento-card.scroll-visible{transform:perspective(800px) rotateY(2deg) scale(1.02)!important;box-shadow:4px 4px 20px rgba(124,58,237,.08)!important}
  .price-card.scroll-visible{transform:translateY(-8px);box-shadow:0 20px 50px rgba(124,58,237,.12)}
  .expertise-v2.scroll-visible{transform:translateY(-6px);box-shadow:var(--shadow-md)}
  .vm-panel.scroll-visible{transform:translateY(-4px);box-shadow:var(--shadow-md)}
  .reason-item.scroll-visible{transform:translateX(8px)}
  .reason-item.scroll-visible .ri-dot{transform:scale(1.3);box-shadow:0 0 12px rgba(124,58,237,.3)}
  .ds-card.scroll-visible,.trophy-card.scroll-visible{transform:translateY(-6px);box-shadow:var(--shadow-md)}
  .partner-pill.scroll-visible{border-color:rgba(124,58,237,.3);box-shadow:var(--shadow-sm);transform:translateY(-2px)}
  .expertise-card.scroll-visible{transform:translateY(-8px);box-shadow:0 16px 40px rgba(124,58,237,0.15)}

  /* NAVBAR FIXES */
  #navbar {
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    transform: none !important; /* Critical: resets desktop horizontal center shift */
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  .nav-inner {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 12px 20px !important;
    border-radius: 0 !important;
    background: rgba(255,255,255,0.97) !important;
    backdrop-filter: blur(16px) !important;
    border: none !important;
    border-bottom: 1px solid rgba(124,58,237,0.1) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important;
  }
  .nav-inner img {
    height: 40px !important;
    max-width: 60% !important;
    object-fit: contain !important;
    margin: 0 !important;
  }
  .menu-toggle {
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px;
    height: 44px;
    font-size: 24px;
    border-radius: 12px;
    background: var(--grad-light);
    border: 1px solid rgba(124,58,237,0.15);
    color: var(--primary);
  }

  /* PREMIUM SLIDING SIDEBAR */
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    left: -100% !important; /* Start completely off screen LEFT */
    right: auto !important;
    transform: none !important; /* CRITICAL: override old broken translate logic */
    width: 85% !important;
    max-width: 320px !important;
    height: 100vh !important;
    background: #ffffff !important;
    padding: 0 !important; /* Reset padding for header */
    border-radius: 0 !important;
    box-shadow: 10px 0 40px rgba(0,0,0,0.2) !important; /* Shadow on right side */
    border: none !important;
    z-index: 1000 !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 0 !important;
    transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
    margin: 0 !important;
    overflow-y: auto !important;
  }
  .nav-links.open {
    left: 0 !important; /* Slide in to 0 */
  }

  /* Sidebar Header */
  .sidebar-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 30px 24px;
    background: var(--grad);
    margin-bottom: 10px;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 10px 20px rgba(124,58,237,0.15);
  }
  .sidebar-logo {
    height: 36px;
    filter: brightness(0) invert(1); /* Turns logo white */
  }
  .close-menu-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  /* Sidebar Links + Animations */
  .nav-links li {
    width: 100%;
    padding: 0 16px;
    opacity: 0;
    transform: translateX(-30px); /* Animate from left to right */
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .nav-links.open li {
    opacity: 1;
    transform: translateX(0);
  }
  /* Stagger delays */
  .nav-links.open li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.open li:nth-child(2) { transition-delay: 0.15s; }
  .nav-links.open li:nth-child(3) { transition-delay: 0.2s; }
  .nav-links.open li:nth-child(4) { transition-delay: 0.25s; }
  .nav-links.open li:nth-child(5) { transition-delay: 0.3s; }
  .nav-links.open li:nth-child(6) { transition-delay: 0.35s; }
  .nav-links.open li:nth-child(7) { transition-delay: 0.4s; }

  .nav-links a:not(.nav-login) {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 18px 12px !important;
    border-bottom: 1px solid rgba(0,0,0,0.06) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #333 !important;
    border-radius: 0 !important;
    background: transparent !important;
    width: 100% !important;
  }
  .nav-links a:not(.nav-login) i {
    color: var(--primary);
    font-size: 18px;
    width: 24px;
    text-align: center;
    opacity: 0.8;
  }
  .nav-links a:not(.nav-login):active {
    background: rgba(0,0,0,0.03) !important;
  }

  /* Login Button at bottom */
  .nav-links .nav-login {
    margin: 30px 16px !important;
    width: calc(100% - 32px) !important;
    text-align: center !important;
    font-size: 18px !important;
    padding: 16px !important;
    background: var(--grad) !important;
    color: white !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 20px rgba(124,58,237,0.2) !important;
  }

  /* HERO & BANNERS */
  .page-hero, .hero-section {
    padding-top: 230px !important;
    padding-bottom: 60px !important;
  }
  .hero-evolution {
    font-size: clamp(28px, 9vw, 42px) !important;
    line-height: 1.15 !important;
    margin-bottom: 16px !important;
    text-transform: uppercase !important;
    letter-spacing: -1px !important;
    word-break: break-word !important;
  }
  .page-hero p.anim-el {
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-bottom: 30px !important;
    padding: 0 10px;
  }
  .photo-hero-banner {
    min-height: 300px;
    height: auto;
    padding: 60px 20px;
  }
}

/* ═══ MOBILE FOOTER LEFT ALIGN FIX ═══ */
@media(max-width:768px){
  footer .grid-4 {
    text-align: left !important;
    gap: 40px !important;
  }
  footer .grid-4 ul {
    align-items: flex-start !important;
  }
  footer .grid-4 img {
    margin-left: 0 !important;
    display: block !important;
  }
  footer .grid-4 a.btn-primary {
    display: inline-flex !important;
    width: max-content !important;
    align-self: flex-start !important;
  }
  footer .grid-4 > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ═══ GLOBAL HERO BACKGROUND & UI ALIGNMENT (FIXED) ═══ */

/* 1. Dark Atmospheric Background for all Hero Sections */
.page-hero, .hero-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.page-hero::before, .hero-section::before {
    content: '';
    position: absolute;
    top: -20px; left: -20px; right: -20px; bottom: -20px;
    background-image: url('../img/event-2.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(6px) brightness(0.45) saturate(1.3);
    z-index: -2;
}
.page-hero::after, .hero-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(124,58,237,0.25), rgba(192,38,211,0.2));
    z-index: -1;
}

/* Force Hero Text to be white to contrast with dark background */
.page-hero h1, .hero-section h1, .page-hero .huge-text, .hero-section .huge-text {
    color: #ffffff !important;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.page-hero p:not(.anim-el.slide-up-fade), .hero-section p:not(.anim-el.slide-up-fade) {
    color: rgba(255,255,255,0.9) !important;
}

/* 2. Central Alignment for Photo Banners */
.banner-content {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.banner-content h3 {
    text-align: center !important;
}

/* 3. Central Alignment ONLY for specific UI Boxes (Restoring Original Layouts for others) */
.ia-card, .hex-card, .expertise-card, .bento-card, .price-card, .ds-card, .vm-panel {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}
.ia-card h3, .hex-card h4, .expertise-card h4, .bento-card h3, .price-card h3, .ds-card h3, .vm-panel h3 {
    text-align: center !important;
    width: 100%;
}
.ia-card p, .hex-card p, .expertise-card p, .bento-card p, .price-card p, .ds-card p, .vm-panel p {
    text-align: center !important;
}

/* ═══ REGISTRATION FORM UI & FLOATING BOX ═══ */

/* Floating Register Button */
.floating-register-btn {
  position: fixed;
  right: -300px; /* Hidden initially */
  bottom: 40px;
  background: var(--grad);
  color: white;
  padding: 12px 16px 12px 24px;
  border-radius: 100px 0 0 100px;
  text-decoration: none;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: -8px 15px 40px rgba(124,58,237,0.4);
  z-index: 999;
  transition: right 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.floating-register-btn.show {
  right: 0;
}
.floating-register-btn span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.floating-register-btn .arrow-circle {
  background: white;
  color: var(--primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.floating-register-btn:hover {
  transform: translateX(-10px);
  color: white;
}

/* Form Styling */
.ugham-form .form-group {
  margin-bottom: 28px;
  text-align: left;
}
.ugham-form label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ugham-form input, .ugham-form select {
  width: 100%;
  padding: 18px 24px;
  border: 2px solid rgba(124,58,237,0.15);
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
  font-family: inherit;
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.2,0.8,0.2,1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.ugham-form input:focus, .ugham-form select:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 8px 25px rgba(124,58,237,0.15);
  transform: translateY(-2px);
}
.select-wrapper {
  position: relative;
}
.select-wrapper select {
  appearance: none;
  cursor: pointer;
}
.select-wrapper .select-icon {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  pointer-events: none;
  font-size: 14px;
}

/* Side Animations */
.floating-side-anim {
  position: absolute;
  font-size: 120px;
  color: rgba(124,58,237,0.04);
  z-index: -1;
}
.floating-side-anim.left-side {
  left: -60px;
  top: 15%;
  animation: float-slow 8s ease-in-out infinite;
}
.floating-side-anim.right-side {
  right: -60px;
  top: 60%;
  animation: float-slow 10s ease-in-out infinite reverse;
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-40px) rotate(15deg); }
}
@media(max-width:768px){
  .floating-side-anim { display: none; }
  .floating-register-btn span { display: none; } /* On very small screens, hide text and keep just arrow */
  .floating-register-btn { padding: 12px; border-radius: 50px 0 0 50px; }
  .contact-glass { padding: 30px !important; }
}

/* ═══ PARTNER ECOSYSTEM INFINITE SCROLL ═══ */
.ecosystem-section {
    padding: 100px 0 120px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.ecosystem-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(124,58,237,0.03) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}
.ecosystem-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}
.ecosystem-track-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* Fade out the edges of the screen */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.ecosystem-track-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}
.ecosystem-track-title {
    position: absolute;
    left: 20px;
    z-index: 2;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    border: 1px solid rgba(124,58,237,0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.ecosystem-track {
    display: flex;
    gap: 30px;
    width: max-content;
}
.ecosystem-track.scroll-left {
    animation: scroll-left 35s linear infinite;
}
.ecosystem-track.scroll-right {
    animation: scroll-right 35s linear infinite;
    flex-direction: row-reverse;
}
.ecosystem-track-container:hover .ecosystem-track {
    animation-play-state: paused;
}
.partner-ghost {
    width: 220px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.4));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(124,58,237,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.partner-ghost::before {
    content: '';
    position: absolute;
    top: 0; left: -150%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.8), transparent);
    transform: skewX(-20deg);
    animation: shimmer 3s infinite;
}
.partner-ghost:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(124,58,237,0.4);
    box-shadow: 0 15px 40px rgba(124,58,237,0.15);
}
.partner-ghost i {
    font-size: 28px;
    color: rgba(124,58,237,0.2);
    transition: color 0.4s ease;
}
.partner-ghost:hover i {
    color: var(--primary);
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes scroll-right {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); } /* Since it's row-reverse and max-content, we shift it */
}
/* Shimmer effect for ghost loading */
@keyframes shimmer {
    0% { left: -150%; }
    100% { left: 250%; }
}
@media(max-width:768px){
    .ecosystem-track-title {
        position: static;
        display: inline-block;
        margin-bottom: 10px;
        margin-left: 20px;
    }
    .ecosystem-track-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ═══ REFINED PARTNER LAYOUT (FEWER ITEMS) ═══ */
.partner-title-glow {
    background: linear-gradient(135deg, var(--primary), var(--secondary), #ff007f);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine-text 3s linear infinite;
    position: relative;
    display: inline-block;
}
.partner-title-glow::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--grad);
    border-radius: 10px;
    box-shadow: 0 0 15px var(--primary);
}
@keyframes shine-text {
    to { background-position: 200% center; }
}

.partner-grid-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.partner-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.partner-cat-header {
    background: rgba(124,58,237,0.05);
    border: 1px solid rgba(124,58,237,0.15);
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.partner-cards-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
}
/* Keep the ghost card design identical */
.partner-ghost {
    width: 220px;
    height: 110px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.4));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(124,58,237,0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    /* Float animation so it's not totally static */
    animation: subtle-float 6s ease-in-out infinite;
}
.partner-cards-row .partner-ghost:nth-child(even) {
    animation-delay: 3s; /* Stagger float */
}
@keyframes subtle-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.partner-ghost::before {
    content: '';
    position: absolute;
    top: 0; left: -150%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.8), transparent);
    transform: skewX(-20deg);
    animation: shimmer 3s infinite;
}
.partner-ghost:hover {
    transform: translateY(-8px) scale(1.05) !important;
    border-color: rgba(124,58,237,0.4);
    box-shadow: 0 15px 40px rgba(124,58,237,0.15);
    animation-play-state: paused;
}
.partner-ghost i {
    font-size: 32px;
    color: rgba(124,58,237,0.2);
    transition: color 0.4s ease;
}
.partner-ghost:hover i {
    color: var(--primary);
}
@media(max-width:768px){
    .partner-ghost {
        width: calc(50% - 15px);
        height: 90px;
    }
}

/* ═══ DRIFTING ANIMATION FOR EXACTLY 3 ITEMS ═══ */
.ecosystem-track-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}
.ecosystem-track-3 {
    display: flex;
    gap: 40px;
    width: max-content;
    padding: 20px 0;
}
.ecosystem-track-3.pan-left {
    animation: pan-left-right 12s ease-in-out infinite alternate;
}
.ecosystem-track-3.pan-right {
    animation: pan-left-right 12s ease-in-out infinite alternate-reverse;
}
.ecosystem-track-container:hover .ecosystem-track-3 {
    animation-play-state: paused;
}
@keyframes pan-left-right {
    0% { transform: translateX(-80px); }
    100% { transform: translateX(80px); }
}
@media(max-width:768px){
    .ecosystem-track-3 {
        gap: 20px;
    }
    @keyframes pan-left-right {
        0% { transform: translateX(-40px); }
        100% { transform: translateX(40px); }
    }
}

/* ═══ LATEST FIXES: HERO READABILITY & PARTNER TITLES ON TOP ═══ */

/* 1. Hero Text Readability (Massive Contrast Boost) */
.page-hero h1, .hero-section h1, .page-hero .huge-text, .hero-section .huge-text {
    color: #ffffff !important;
    text-shadow: 0 4px 30px rgba(0,0,0,0.9), 0 0 15px rgba(0,0,0,0.8), 0 0 5px rgba(0,0,0,0.5) !important;
    font-weight: 900 !important;
}
.page-hero p:not(.anim-el.slide-up-fade), .hero-section p:not(.anim-el.slide-up-fade) {
    color: #ffffff !important;
    text-shadow: 0 4px 20px rgba(0,0,0,0.9), 0 0 10px rgba(0,0,0,0.8) !important;
    font-weight: 600 !important;
}
.page-hero::after, .hero-section::after {
    /* Darken the overlay dramatically to make text pop while keeping the purple vibe */
    background: linear-gradient(to bottom, rgba(50,15,100,0.4), rgba(20,5,40,0.7)) !important;
}
.page-hero::before, .hero-section::before {
    filter: blur(8px) brightness(0.35) saturate(1.2) !important;
}

/* 2. Partner Titles On Top of Floating Boxes */
.ecosystem-track-wrapper {
    display: flex !important;
    flex-direction: column !important; /* Forces title to stack ON TOP of the track */
    align-items: center !important;
    justify-content: center !important;
    gap: 30px !important;
    margin-bottom: 50px !important;
    width: 100% !important;
    position: relative !important;
}
.ecosystem-track-title {
    position: static !important; /* Removes the absolute positioning from previous iterations */
    margin: 0 !important;
    font-size: 18px !important;
    padding: 12px 24px !important;
    background: rgba(124,58,237,0.08) !important;
    border: 1px solid rgba(124,58,237,0.2) !important;
    box-shadow: 0 4px 15px rgba(124,58,237,0.05) !important;
}

/* ═══ HERO TITLE VISIBILITY FIX ═══ */
.page-hero .hero-evolution, .hero-section .hero-evolution {
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
    text-shadow: 0 4px 40px rgba(192,38,211,0.6), 0 2px 15px rgba(0,0,0,0.8) !important;
    filter: drop-shadow(0px 5px 25px rgba(192,38,211,0.4)) !important;
}
.page-hero .huge-text, .hero-section .huge-text {
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}
/* Make the subtitle gradient text also bright */
.page-hero p[style*="grad-text"], .hero-section p[style*="grad-text"] {
    background: linear-gradient(90deg, #a78bfa, #e879f9, #c084fc) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    filter: drop-shadow(0px 0px 10px rgba(192,38,211,0.5)) !important;
}

/* ═══ HERO SUBTITLE GLOW + HOME CENTER ALIGN ═══ */

/* All paragraph/subtitle text inside hero sections - bright white with purple glow */
.page-hero p, .hero-section p,
.page-hero .page-hero-content p,
.hero-section .page-hero-content p {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    text-shadow: 0 2px 20px rgba(192,38,211,0.5), 0 0 10px rgba(0,0,0,0.6) !important;
    text-align: center !important;
}

/* Home page Learn Build Grow - center aligned under title */
.page-hero-content, .hero-section .container {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

/* Buttons row inside hero - also centered */
.page-hero .hero-buttons, .hero-section .hero-buttons {
    justify-content: center !important;
}

/* ═══ SIDE ANIMATIONS (OUR IMPACT, GET STARTED, SERVICES) ═══ */

/* Floating Ugham Logo Animation - Our Impact */
.section-side-anim {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}
.section-side-anim img {
    opacity: 0.04;
    animation: logo-orbit 20s linear infinite;
}
.section-side-anim.left-anim {
    left: -40px;
    top: 20%;
}
.section-side-anim.right-anim {
    right: -40px;
    bottom: 20%;
}
@keyframes logo-orbit {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-30px) rotate(90deg) scale(1.05); }
    50% { transform: translateY(0) rotate(180deg) scale(1); }
    75% { transform: translateY(30px) rotate(270deg) scale(0.95); }
    100% { transform: translateY(0) rotate(360deg) scale(1); }
}

/* Pulsing Ring Animation - Get Started */
.side-pulse-ring {
    position: absolute;
    border: 2px solid rgba(124,58,237,0.08);
    border-radius: 50%;
    animation: pulse-ring 4s ease-out infinite;
    pointer-events: none;
    z-index: 0;
}
.side-pulse-ring.ring-1 { width: 200px; height: 200px; left: -80px; top: 30%; }
.side-pulse-ring.ring-2 { width: 160px; height: 160px; right: -60px; top: 50%; animation-delay: 1.5s; }
.side-pulse-ring.ring-3 { width: 120px; height: 120px; left: 5%; bottom: 10%; animation-delay: 3s; }
@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0; }
    40% { opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* DNA Helix Animation - Services (What We Do) */
.side-dna-strand {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.side-dna-strand.dna-left { left: -30px; top: 10%; }
.side-dna-strand.dna-right { right: -30px; top: 25%; }
.dna-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(124,58,237,0.06);
    animation: dna-wave 3s ease-in-out infinite;
}
.dna-dot:nth-child(2) { animation-delay: 0.3s; }
.dna-dot:nth-child(3) { animation-delay: 0.6s; }
.dna-dot:nth-child(4) { animation-delay: 0.9s; }
.dna-dot:nth-child(5) { animation-delay: 1.2s; }
.dna-dot:nth-child(6) { animation-delay: 1.5s; }
.dna-dot:nth-child(7) { animation-delay: 1.8s; }
.dna-dot:nth-child(8) { animation-delay: 2.1s; }
@keyframes dna-wave {
    0%, 100% { transform: translateX(0); background: rgba(124,58,237,0.06); }
    50% { transform: translateX(40px); background: rgba(192,38,211,0.12); }
}
.side-dna-strand.dna-right .dna-dot {
    animation-name: dna-wave-rev;
}
@keyframes dna-wave-rev {
    0%, 100% { transform: translateX(0); background: rgba(192,38,211,0.06); }
    50% { transform: translateX(-40px); background: rgba(124,58,237,0.12); }
}

/* Hex Card Polish (About page Core Values) */
.hex-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
    gap: 24px !important;
    justify-items: center !important;
}
.hex-card {
    border: 1px solid rgba(124,58,237,0.12) !important;
    border-radius: 20px !important;
    padding: 40px 24px !important;
    background: rgba(255,255,255,0.7) !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.03) !important;
    position: relative !important;
    overflow: hidden !important;
}
.hex-card::before {
    content: '';
    position: absolute;
    top: 0; left: -150%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(124,58,237,0.05), transparent);
    transform: skewX(-20deg);
    animation: shimmer 4s infinite;
}
.hex-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(124,58,237,0.3) !important;
    box-shadow: 0 20px 50px rgba(124,58,237,0.12) !important;
}
.hx-icon {
    width: 60px !important;
    height: 60px !important;
    border-radius: 16px !important;
    background: var(--grad) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px !important;
    box-shadow: 0 8px 20px rgba(124,58,237,0.25) !important;
}
.hx-icon i {
    color: white !important;
    font-size: 22px !important;
}

@media(max-width:768px){
    .section-side-anim, .side-pulse-ring, .side-dna-strand { display: none; }
}

/* ═══ SIDE-BY-SIDE UI/UX ELEMENTS ═══ */

/* 1. Impact Dashboard (Index) */
.impact-dashboard-ui {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(124,58,237,0.15);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
}
.impact-dashboard-ui::before {
    content: ''; position: absolute; top: -50px; right: -50px; width: 150px; height: 150px;
    background: var(--primary); filter: blur(60px); opacity: 0.3; border-radius: 50%;
}
.stat-widget {
    background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(192,38,211,0.05));
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    transform: translateX(50px);
    opacity: 0;
    animation: slide-in-stat 0.8s forwards ease-out;
}
.stat-widget:nth-child(2) { animation-delay: 0.2s; }
.stat-widget:nth-child(3) { animation-delay: 0.4s; margin-bottom: 0; }
@keyframes slide-in-stat {
    to { transform: translateX(0); opacity: 1; }
}
.stat-icon {
    width: 60px; height: 60px; border-radius: 50%; background: var(--grad);
    display: flex; align-items: center; justify-content: center; font-size: 24px; color: white;
    box-shadow: 0 10px 20px rgba(192,38,211,0.3);
}
.stat-info h3 { font-size: 32px; font-weight: 900; color: white; margin-bottom: 4px; }
.stat-info p { color: var(--muted); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin: 0; }

/* 2. Launchpad Orbit UI (Get Started) */
.launchpad-ui {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.launch-core {
    width: 100px; height: 100px; border-radius: 50%; background: var(--grad);
    display: flex; align-items: center; justify-content: center; font-size: 36px; color: white;
    z-index: 5; box-shadow: 0 0 40px rgba(192,38,211,0.6);
    animation: core-pulse 2s infinite alternate;
}
@keyframes core-pulse {
    0% { transform: scale(1); box-shadow: 0 0 20px rgba(192,38,211,0.4); }
    100% { transform: scale(1.1); box-shadow: 0 0 60px rgba(192,38,211,0.8); }
}
.orbit-ring {
    position: absolute; border-radius: 50%;
    border: 1px dashed rgba(124,58,237,0.4);
    animation: spin-ring linear infinite;
}
.orbit-ring.r1 { width: 220px; height: 220px; animation-duration: 15s; }
.orbit-ring.r2 { width: 340px; height: 340px; animation-duration: 25s; animation-direction: reverse; border-style: solid; border-color: rgba(192,38,211,0.1); }
.orbit-node {
    position: absolute; width: 40px; height: 40px; border-radius: 50%;
    background: #1e1e1e; border: 2px solid var(--primary);
    display: flex; align-items: center; justify-content: center; color: white; font-size: 14px;
}
.orbit-ring.r1 .orbit-node { top: -20px; left: 50%; transform: translateX(-50%); }
.orbit-ring.r2 .orbit-node { bottom: 20%; right: -15px; border-color: var(--secondary); }
@keyframes spin-ring { 100% { transform: rotate(360deg); } }

/* 3. Floating Tech Stack (Services) */
.services-ui-stack {
    position: relative;
    height: 450px;
}
.tech-card {
    position: absolute;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-weight: 600;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    animation: float-card 6s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s;
}
.tech-card:hover { background: rgba(124,58,237,0.2); transform: scale(1.05) !important; z-index: 10; }
.tech-card i { font-size: 24px; color: var(--secondary); }
.tc-1 { top: 10%; left: 10%; animation-delay: 0s; }
.tc-2 { top: 40%; right: 5%; animation-delay: 1.5s; }
.tc-3 { bottom: 20%; left: 15%; animation-delay: 3s; }
@keyframes float-card {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@media(max-width: 768px) {
    .launchpad-ui, .services-ui-stack { height: 300px; margin-top: 40px; }
    .impact-dashboard-ui { margin-top: 40px; padding: 20px; }
}

/* ═══ UPDATED UI/UX ELEMENTS ═══ */

/* 1. Services Tech Stack - Entire container floats & darker cards */
.services-ui-stack {
    position: relative;
    height: 450px;
    animation: float-container 8s ease-in-out infinite; /* Whole thing floats */
}
@keyframes float-container {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}
.tech-card {
    position: absolute;
    /* Match contact page / dark theme solid colors */
    background: #11051F !important;
    border: 1px solid rgba(124,58,237,0.4) !important;
    border-radius: 16px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 0 20px rgba(124,58,237,0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.tech-card i { font-size: 24px; color: var(--primary); }

/* 2. Professional Matrix UI for "Get Started" */
.matrix-ui {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(124,58,237,0.1);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}
.matrix-ui::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(124,58,237,0.1), transparent 70%);
    pointer-events: none;
}
.matrix-node {
    aspect-ratio: 1;
    background: #11051F;
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.matrix-node::before {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
    background: var(--primary); transform: scaleX(0); transition: 0.3s;
}
.matrix-node:hover, .matrix-node.active {
    border-color: rgba(124,58,237,0.8);
    color: white;
    box-shadow: 0 0 30px rgba(124,58,237,0.3);
    transform: translateY(-5px);
}
.matrix-node:hover::before, .matrix-node.active::before { transform: scaleX(1); }

/* Matrix Animation Sequence */
@keyframes matrix-pulse {
    0%, 100% { border-color: rgba(124,58,237,0.2); color: rgba(255,255,255,0.3); box-shadow: none; }
    10% { border-color: rgba(124,58,237,0.8); color: white; box-shadow: 0 0 20px rgba(124,58,237,0.4); }
}
.mn-1 { animation: matrix-pulse 4s infinite 0s; }
.mn-2 { animation: matrix-pulse 4s infinite 0.5s; }
.mn-3 { animation: matrix-pulse 4s infinite 1.0s; }
.mn-4 { animation: matrix-pulse 4s infinite 1.5s; }
.mn-5 { animation: matrix-pulse 4s infinite 2.0s; }
.mn-6 { animation: matrix-pulse 4s infinite 2.5s; }

/* ═══ NEW CREATIVE VISUAL UI ═══ */

/* Revert Tech Cards to Glass Theme */
.tech-card {
    background: rgba(255,255,255,0.05) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(124,58,237,0.3) !important;
}

/* Our Impact - Orbital Network UI */
.impact-orbit-ui {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.impact-core {
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(192,38,211,0.2), transparent);
    border: 1px solid rgba(192,38,211,0.4);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 50px rgba(192,38,211,0.4);
    animation: core-breathe 3s ease-in-out infinite alternate;
    z-index: 5;
}
.impact-core img { width: 80px; }
@keyframes core-breathe {
    100% { transform: scale(1.1); box-shadow: 0 0 80px rgba(192,38,211,0.6); }
}
.satellite-path {
    position: absolute;
    border: 1px dashed rgba(124,58,237,0.3);
    border-radius: 50%;
    animation: spin-path linear infinite;
}
.sp-1 { width: 250px; height: 250px; animation-duration: 12s; }
.sp-2 { width: 350px; height: 350px; animation-duration: 18s; animation-direction: reverse; border-color: rgba(192,38,211,0.2); }
.satellite {
    position: absolute;
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--grad);
    box-shadow: 0 0 20px rgba(124,58,237,0.8);
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; color: white;
}
.sp-1 .satellite { top: -12px; left: 50%; transform: translateX(-50%); }
.sp-2 .satellite { bottom: 20%; right: -10px; background: #c026d3; }
@keyframes spin-path { 100% { transform: rotate(360deg); } }


/* Get Started - Floating Hex Grid UI */
.hex-visual-ui {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-container 6s ease-in-out infinite;
}
.hex-cluster {
    position: relative;
    width: 300px; height: 300px;
}
.visual-hex {
    position: absolute;
    width: 80px; height: 92px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(124,58,237,0.4);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--primary);
    transition: all 0.3s;
    animation: hex-glow 4s infinite alternate;
}
.visual-hex:hover { background: rgba(124,58,237,0.2); transform: scale(1.1); color: white; z-index: 10; }
@keyframes hex-glow { 100% { box-shadow: 0 0 30px rgba(124,58,237,0.5); border-color: rgba(192,38,211,0.6); } }

.vh-1 { top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: 0s; background: rgba(124,58,237,0.15); color: white;}
.vh-2 { top: 15%; left: 50%; transform: translateX(-50%); animation-delay: 0.5s; }
.vh-3 { bottom: 15%; left: 50%; transform: translateX(-50%); animation-delay: 1.0s; }
.vh-4 { top: 32%; left: 15%; animation-delay: 1.5s; }
.vh-5 { top: 32%; right: 15%; animation-delay: 2.0s; }
.vh-6 { bottom: 32%; left: 15%; animation-delay: 2.5s; }
.vh-7 { bottom: 32%; right: 15%; animation-delay: 3.0s; }

/* ═══ TECH CARD FIX ═══ */
.tech-card {
    background: var(--grad) !important;
    border: none !important;
    border-radius: 50px !important;
    color: white !important;
    padding: 16px 32px !important;
    box-shadow: 0 15px 35px rgba(124,58,237,0.4) !important;
}
.tech-card i { color: white !important; }

/* ═══ TALL SIDE UI ANIMATIONS ═══ */

/* 1. Impact Monolith UI */
.impact-monolith-ui {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.monolith {
    width: 80px;
    height: 300px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: float-monolith 8s ease-in-out infinite alternate;
}
.monolith.m-1 { height: 250px; animation-delay: 0s; }
.monolith.m-2 { height: 400px; animation-delay: -2s; background: rgba(124,58,237,0.1); border-color: rgba(192,38,211,0.5); }
.monolith.m-3 { height: 300px; animation-delay: -4s; }

.light-streak {
    position: absolute;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
    opacity: 0.6;
    filter: blur(10px);
    animation: streak-run 4s linear infinite;
}
.m-2 .light-streak { background: linear-gradient(to bottom, transparent, #c026d3, transparent); animation-duration: 3s; animation-direction: reverse; }
.m-3 .light-streak { animation-duration: 5s; animation-delay: 1s; }

@keyframes float-monolith {
    0% { transform: translateY(-30px); }
    100% { transform: translateY(30px); }
}
@keyframes streak-run {
    0% { top: -150px; }
    100% { top: 150%; }
}

/* 2. Quantum Energy UI (Get Started) */
.gs-quantum-ui {
    position: relative;
    height: 100%;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
}
.energy-beam {
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 4px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, transparent, rgba(124,58,237,0.8), rgba(192,38,211,0.8), transparent);
    box-shadow: 0 0 30px rgba(192,38,211,0.6);
}
.energy-particle {
    position: absolute;
    left: 50%;
    width: 12px; height: 12px; border-radius: 50%;
    background: white;
    transform: translateX(-50%);
    box-shadow: 0 0 20px white, 0 0 40px var(--secondary);
    animation: particle-rise 3s ease-in infinite;
}
.ep-2 { animation-delay: 1.5s; width: 8px; height: 8px; }

@keyframes particle-rise {
    0% { bottom: 0; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { bottom: 100%; opacity: 0; }
}

.q-node {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: #11051F;
    border: 2px solid var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 25px rgba(124,58,237,0.4);
    animation: node-pulse 2s infinite alternate;
}
.qn-2 { border-color: var(--secondary); animation-delay: -0.5s; }
.qn-3 { border-color: var(--primary); animation-delay: -1s; }
.qn-4 { border-color: var(--secondary); animation-delay: -1.5s; }

@keyframes node-pulse {
    100% { transform: scale(1.15); box-shadow: 0 0 40px rgba(192,38,211,0.8); }
}

@media(max-width: 768px) {
    .impact-monolith-ui, .gs-quantum-ui { min-height: 300px; height: 300px; margin: 40px 0; }
}

@keyframes floatCard {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); box-shadow:0 25px 50px rgba(124,58,237,.15); }
    100% { transform: translateY(0); }
}
.price-card { animation: floatCard 6s ease-in-out infinite; border: 1px solid rgba(124,58,237, 0.2); }
.price-card:nth-child(2) { animation-delay: 3s; }

/* AWARDS FORM CSS */
.category-cards { display:flex; gap:20px; flex-wrap:wrap; }
.cat-card { flex:1; min-width:250px; cursor:pointer; position:relative; }
.cat-card input[type="radio"] { position:absolute; opacity:0; width:0; height:0; }
.cat-card-inner { border:2px solid var(--border); border-radius:16px; padding:24px; text-align:center; transition:all 0.3s; background:rgba(255,255,255,0.02); }
.cat-card-inner h4 { font-size:18px; margin-bottom:4px; }
.cat-card-inner p { font-size:14px; color:var(--muted); margin-bottom:16px; }
.cat-card-inner .price { font-size:24px; font-weight:800; color:var(--text); }
.cat-card-inner .price span { font-size:14px; font-weight:500; color:var(--muted); }

.cat-card input[type="radio"]:checked + .cat-card-inner { border-color:#c026d3; background:rgba(192,38,211,0.08); transform:translateY(-5px); box-shadow:0 15px 30px rgba(192,38,211,0.15); }

.floating-btn {
  position:fixed; bottom:30px; right:30px; background:var(--grad); color:white; padding:16px 32px; border-radius:30px; 
  text-decoration:none; font-weight:800; font-family:'Outfit',sans-serif; font-size:16px; box-shadow:0 10px 30px rgba(124,58,237,0.4);
  z-index:99; transition:all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); opacity:0; pointer-events:none; transform:translateY(20px);
}
.floating-btn.show { opacity:1; pointer-events:auto; transform:translateY(0); }
.floating-btn:hover { transform:translateY(-5px) scale(1.05); box-shadow:0 15px 40px rgba(124,58,237,0.6); color:white; }
.floating-btn i { margin-left:8px; }

.spinner { width:40px; height:40px; border:4px solid rgba(255,255,255,0.1); border-top-color:#c026d3; border-radius:50%; animation:spin 1s linear infinite; margin:0 auto; }
@keyframes spin { 100% { transform:rotate(360deg); } }





/* REFINED WHITE FORM UI/UX */
.form-container {
  position: relative;
  overflow: hidden;
  background: white !important;
  border: 1px solid rgba(124,58,237,0.1);
  box-shadow: 0 30px 60px rgba(124,58,237,0.08), 0 0 0 8px rgba(124,58,237,0.02);
  border-radius: 24px;
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 6px;
  background: var(--grad);
}

.ugham-form input, .ugham-form select {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  color: var(--text) !important;
  transition: all 0.3s ease !important;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}
.ugham-form input:focus, .ugham-form select:focus {
  background: #ffffff !important;
  border-color: #c026d3 !important;
  box-shadow: 0 0 0 4px rgba(192,38,211,0.1) !important;
  transform: translateY(-2px);
}

.ugham-form label {
  font-weight: 700;
  color: #1e293b;
  letter-spacing: 0.3px;
}

.cat-card-inner:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(192,38,211,0.5);
  box-shadow: 0 20px 40px rgba(192,38,211,0.12);
  background: white;
}

@keyframes glowPulseWhite {
  0% { box-shadow: 0 0 20px rgba(124,58,237,0.15); }
  50% { box-shadow: 0 0 40px rgba(124,58,237,0.3); }
  100% { box-shadow: 0 0 20px rgba(124,58,237,0.15); }
}
#totalAmountDisplay {
  animation: glowPulseWhite 2.5s infinite;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 12px;
  background: var(--grad);
  color: white !important;
  font-weight: 900;
}

.member-block {
  animation: slideDown 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  opacity: 0;
  transform: translateY(-20px);
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
}
@keyframes slideDown {
  to { opacity: 1; transform: translateY(0); }
}


/* FIX PADDING GAP BEFORE CTA */
section:not(#registration-form):has(+ .cta-contact-strip),
div:not(#registration-form):has(+ .cta-contact-strip),
.ecosystem-section:has(+ .cta-contact-strip) {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Also ensure no gap between CTA and footer */
.cta-contact-strip + footer {
    padding-top: 20px !important;
}


/* ═══ NEW SPLIT HERO SECTION ═══ */
.split-hero {
  position: relative;
  background: #ffffff; /* Match the bright, clean screenshot */
  color: #1e293b; /* Dark text for light background */
  padding: 140px 0 80px;
  overflow: hidden;
  z-index: 1;
}

/* Smooth transition from white hero to dark body */
.split-hero-bottom-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: translateY(1px); /* Prevent pixel gap */
}
.split-hero-bottom-curve svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}
.split-hero-bottom-curve .shape-fill {
  fill: var(--bg); /* Transitions smoothly to dark mode body */
}

.split-hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.split-hero-left {
  flex: 1;
  max-width: 55%;
}

.split-hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #0f172a;
  letter-spacing: -1px;
}

.split-hero-title .highlight {
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
}

.split-hero-desc {
  font-size: clamp(16px, 2vw, 20px);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 90%;
}

.split-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-solid {
  background: var(--grad);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(124,58,237,0.3);
  transition: all 0.3s ease;
}
.btn-primary-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(124,58,237,0.4);
  color: white;
}

.btn-secondary-outline {
  background: transparent;
  color: #7C3AED;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid rgba(124,58,237,0.3);
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}
.btn-secondary-outline:hover {
  border-color: #7C3AED;
  background: rgba(124,58,237,0.05);
}

.split-hero-right {
  flex: 1;
  max-width: 45%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.split-hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  animation: float 6s ease-in-out infinite;
}

.split-hero-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  /* Blend pure white background of generated images with the white hero background */
  mix-blend-mode: darken; 
}

.hero-overlay-logo {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16%; /* Sized perfectly to fit inside the lightbulb hole */
  z-index: 10;
  opacity: 0.9; /* Slight blend with the bulb */
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.8));
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: white;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(124,58,237,0.1);
  font-weight: 700;
  font-size: 12px;
  color: #1e293b;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(124,58,237,0.1);
  animation: floatBadge 4s ease-in-out infinite alternate;
  z-index: 5;
}
.floating-badge i {
  font-size: 20px;
  color: #7C3AED;
  background: var(--grad);
  -webkit-background-clip: text;
  color: transparent;
}

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

.badge-1 { top: 10%; left: -10%; animation-delay: 0s; }
.badge-2 { top: 20%; right: -10%; animation-delay: 1s; }
.badge-3 { bottom: 20%; left: -5%; animation-delay: 2s; }
.badge-4 { bottom: 10%; right: 0%; animation-delay: 1.5s; }

/* Stats Bar */
.hero-stats-bar {
  max-width: 1000px;
  margin: 60px auto 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  border: 1px solid rgba(124,58,237,0.05);
  position: relative;
  z-index: 10;
  text-align: center;
}
.stat-item h3 {
  font-size: 32px;
  font-weight: 800;
  color: #7C3AED;
  margin-bottom: 5px;
}
.stat-item p {
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
}

/* Mobile Optimization */
@media (max-width: 991px) {
  .split-hero-container {
    flex-direction: column;
    text-align: center;
    padding-top: 40px;
  }
  .split-hero-left, .split-hero-right {
    max-width: 100%;
  }
  .split-hero-desc {
    margin: 0 auto 30px;
  }
  .split-hero-buttons {
    justify-content: center;
  }
  .hero-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    margin: 40px 20px 0;
  }
  .floating-badge {
    display: none; /* Hide badges on mobile to prevent clutter */
  }
  .split-hero {
    padding: 120px 0 60px;
  }
}
@media (max-width: 576px) {
  .hero-stats-bar {
    grid-template-columns: 1fr;
  }
}
