/* ============================================================
   BI CODE STUDIO — COMPLETE DESIGN SYSTEM
   Converted from React/Tailwind to pure CSS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&family=Kalam:wght@400;700&family=Outfit:wght@400;500;600;700&display=swap');

/* ─── CSS Custom Properties (Design Tokens) ─── */
:root {
  --color-gulal: #FF2D78;
  --color-electric: #3B82F6;
  --color-sunny: #FACC15;
  --color-vibrant-green: #22C55E;
  --color-soft-purple: #A855F7;
  --color-royal: #1E3A8A;
  --color-brand-bg: #FFFDF7;
  --font-sans: 'Inter', 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  --font-heading: 'Poppins', 'Outfit', sans-serif;
  --font-handwritten: 'Caveat', 'Kalam', cursive;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background-color: var(--color-brand-bg);
  color: #1F2937;
  font-size: 16px;
}
body {
  font-family: var(--font-sans);
  background-color: var(--color-brand-bg);
  overflow-x: hidden;
  min-height: 100vh;
}
::selection { background-color: rgba(255,45,120,0.2); color: var(--color-gulal); }
img { max-width: 100%; height: auto; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }
a { text-decoration: none; color: inherit; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-brand-bg); }
::-webkit-scrollbar-thumb { background: var(--color-gulal); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #E01A61; }

/* ─── ANIMATED SVG ICON SYSTEM ─── */
/* All emoji characters have been replaced with these crisp, scalable SVG icons */
.anim-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  vertical-align: middle;
}
.anim-icon svg,
.anim-icon .svg-icon {
  width: 100%;
  height: 100%;
  display: block;
}
.svg-icon {
  width: 100%;
  height: 100%;
  display: block;
}
/* Icon hover bounce animation */
.anim-icon:hover svg {
  animation: icon-bounce 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes icon-bounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.2) rotate(5deg); }
  100% { transform: scale(1); }
}

/* ─── KEYFRAME ANIMATIONS ─── */

@keyframes float-gentle {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}
@keyframes kite-bob {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-15px) rotate(4deg); }
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.05); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes spin-reverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes ping {
  0% { transform: scale(1); opacity: 1; }
  75%, 100% { transform: scale(2); opacity: 0; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
  50% { transform: translateY(0); animation-timing-function: cubic-bezier(0,0,0.2,1); }
}

/* Cloud drift animations */
@keyframes cloud-drift-1 {
  0% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-30px) scale(1.15); }
  66% { transform: translate(-20px,20px) scale(0.9); }
  100% { transform: translate(0,0) scale(1); }
}
@keyframes cloud-drift-2 {
  0% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-50px,40px) scale(0.9); }
  66% { transform: translate(20px,-30px) scale(1.1); }
  100% { transform: translate(0,0) scale(1); }
}
@keyframes cloud-drift-3 {
  0% { transform: translate(0,0) scale(0.95); }
  33% { transform: translate(30px,35px) scale(1.1); }
  66% { transform: translate(-40px,-25px) scale(0.95); }
  100% { transform: translate(0,0) scale(0.95); }
}
@keyframes cloud-drift-4 {
  0% { transform: translate(0,0); }
  33% { transform: translate(-35px,25px); }
  66% { transform: translate(15px,-45px); }
  100% { transform: translate(0,0); }
}

/* Kite fly animation */
@keyframes kite-fly {
  0% { transform: translateY(0) translateX(0) rotate(var(--kite-angle, 12deg)); }
  25% { transform: translateY(-22px) translateX(8px) rotate(calc(var(--kite-angle, 12deg) + 8deg)); }
  75% { transform: translateY(10px) translateX(-12px) rotate(calc(var(--kite-angle, 12deg) - 5deg)); }
  100% { transform: translateY(0) translateX(0) rotate(var(--kite-angle, 12deg)); }
}

/* Sparkle float animation */
@keyframes sparkle-float {
  0% { opacity: 0; transform: translateY(0) translateX(0) rotate(0deg) scale(1); }
  20% { opacity: 0.65; }
  50% { opacity: 0.65; transform: translateY(-35px) translateX(15px) rotate(180deg) scale(1.25); }
  80% { opacity: 0.65; transform: translateY(10px) translateX(-15px) rotate(270deg) scale(0.85); }
  100% { opacity: 0; transform: translateY(0) translateX(0) rotate(360deg) scale(1); }
}

/* Page transition */
@keyframes page-enter {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes page-exit {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-10px); }
}

/* Preloader */
@keyframes progress-fill {
  from { width: 0%; }
  to { width: 100%; }
}
@keyframes preloader-logo-spring {
  0% { opacity: 0; transform: scale(0.4) rotate(-45deg); }
  60% { transform: scale(1.1) rotate(5deg); }
  80% { transform: scale(0.95) rotate(-2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes preloader-exit {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(1.05); }
}

/* Confetti particle */
@keyframes confetti-fly {
  0% { transform: translate(0,0) scale(0.5); opacity: 1; }
  50% { opacity: 1; transform: translate(var(--cx,50px), var(--cy,-50px)) scale(1.2); }
  100% { transform: translate(var(--cx,50px), var(--cy,-50px)) scale(0); opacity: 0; }
}

/* Back to top button */
@keyframes btn-appear {
  from { opacity: 0; transform: scale(0.8) translateY(15px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Testimonial slide */
@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slide-in-up {
  from { opacity: 0; transform: translateY(35px); }
  to { opacity: 1; transform: translateY(0); }
}
/* WCU icon micro-animations */
@keyframes wcu-spark-1 {
  0% { transform: translateY(0) scale(1); opacity: 0.8; }
  100% { transform: translateY(20px) scale(0); opacity: 0; }
}
@keyframes wcu-flame-flicker {
  0%, 100% { transform: scaleY(1) scaleX(1); }
  50% { transform: scaleY(1.3) scaleX(0.9); }
}
@keyframes wcu-leaf-sway {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-12deg); }
}
@keyframes wcu-coin-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px) rotate(360deg); }
}
@keyframes wcu-phone-glow {
  0%, 100% { fill: #FFFDF7; }
  50% { fill: #FFEAF0; }
}
@keyframes wcu-kite-loop {
  0% { transform: rotate(0deg) translate(0, 0); }
  25% { transform: rotate(-15deg) translate(-8px, -12px); }
  50% { transform: rotate(0deg) translate(0, -18px); }
  75% { transform: rotate(15deg) translate(8px, -12px); }
  100% { transform: rotate(0deg) translate(0, 0); }
}
@keyframes wcu-bubble-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes wcu-flame-dance {
  0%, 100% { transform: scaleY(1) scaleX(1) skewX(0deg); }
  33% { transform: scaleY(1.25) scaleX(0.88) skewX(6deg); }
  66% { transform: scaleY(0.85) scaleX(1.15) skewX(-4deg); }
}


/* Modal */
@keyframes modal-enter {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Fade up (scroll reveal) */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Kite drift (404 page) */
@keyframes kite-drift {
  0% { transform: translateX(0) translateY(0) rotate(15deg); opacity: 1; }
  100% { transform: translateX(240px) translateY(-90px) rotate(45deg); opacity: 0; }
}

/* Notice item appear */
@keyframes notice-in {
  from { opacity: 0; transform: scale(0.9) translateX(-10px); }
  to { opacity: 1; transform: scale(1) translateX(0); }
}

/* Diya flame */
@keyframes flame-flicker {
  0%, 100% { transform: scaleY(1) scaleX(1); }
  25% { transform: scaleY(1.25) scaleX(0.9); }
  50% { transform: scaleY(0.9) scaleX(1.1); }
  75% { transform: scaleY(1.15) scaleX(0.95); }
}

/* Splash backdrop */
@keyframes splash-expand {
  from { opacity: 0; transform: scale(0.1); }
  to { opacity: 0.12; transform: scale(15); }
}

/* ─── ANIMATION UTILITY CLASSES ─── */
.animate-float { animation: float-gentle 6s ease-in-out infinite; }
.animate-kite { animation: kite-bob 8s ease-in-out infinite; }
.animate-glow { animation: glow-pulse 3s ease-in-out infinite; }
.animate-spin { animation: spin 1s linear infinite; }
.animate-spin-slow { animation: spin-slow 18s linear infinite; }
.animate-spin-reverse { animation: spin-reverse 1.4s linear infinite; }
.animate-ping { animation: ping 1s cubic-bezier(0,0,0.2,1) infinite; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }
.animate-bounce { animation: bounce 1s infinite; }

/* ─── GLASSMORPHISM ─── */
.glass-panel {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background-color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 10px 30px -10px rgba(30,58,138,0.08);
}
.glass-panel-hover {
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.glass-panel-hover:hover {
  background-color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.8);
  box-shadow: 0 20px 40px -15px rgba(30,58,138,0.15);
}

/* ─── TYPOGRAPHY ─── */
.font-heading { font-family: var(--font-heading); }
.font-sans { font-family: var(--font-sans); }
.font-handwritten { font-family: var(--font-handwritten); }
.font-mono { font-family: 'Courier New', monospace; }

/* ─── LAYOUT UTILITIES ─── */
.container { max-width: 80rem; margin-inline: auto; padding-inline: 1rem; }
.container-sm { max-width: 64rem; margin-inline: auto; padding-inline: 1rem; }
.container-xs { max-width: 48rem; margin-inline: auto; padding-inline: 1rem; }

/* ─── PRELOADER ─── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--color-brand-bg);
  overflow: hidden;
}
#preloader.hiding {
  animation: preloader-exit 0.4s ease forwards;
  pointer-events: none;
}
.preloader-spinner {
  position: relative;
  width: 8rem; height: 8rem;
  display: flex; align-items: center; justify-content: center;
}
.preloader-ring-outer {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 8px solid transparent;
  border-top-color: var(--color-gulal);
  border-right-color: var(--color-electric);
  border-bottom-color: var(--color-sunny);
  border-left-color: var(--color-vibrant-green);
  animation: spin 0.8s linear infinite;
}
.preloader-ring-inner {
  position: absolute; inset: 12px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: var(--color-soft-purple);
  border-bottom-color: var(--color-gulal);
  animation: spin-reverse 1.4s linear infinite;
}
.preloader-dot {
  width: 1rem; height: 1rem;
  background: #FACC15; border-radius: 50%;
  animation: ping 1s cubic-bezier(0,0,0.2,1) infinite;
}
#preloader-logo {
  display: flex; flex-direction: column; align-items: center;
  animation: preloader-logo-spring 0.6s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
.preloader-logo-box {
  width: 6rem; height: 6rem; border-radius: 1rem;
  background: linear-gradient(135deg, var(--color-gulal), var(--color-sunny));
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: var(--font-heading);
  font-weight: 900; font-size: 2.25rem;
  box-shadow: 0 12px 36px rgba(255,45,120,0.4);
  position: relative;
}
.preloader-logo-tail {
  position: absolute; bottom: -4px; right: -4px;
  width: 1.5rem; height: 1.5rem;
  background: #FACC15; transform: rotate(45deg);
  border-right: 1px solid var(--color-gulal);
  border-bottom: 1px solid var(--color-gulal);
}
.preloader-subtitle {
  margin-top: 1.5rem;
  font-family: var(--font-heading); font-weight: 800;
  font-size: 1.875rem; color: var(--color-royal);
  text-align: center;
}
.preloader-tagline {
  margin-top: 0.25rem;
  font-family: var(--font-handwritten); font-size: 1.25rem;
  color: var(--color-gulal);
}
.preloader-progress-bar {
  margin-top: 2.5rem; width: 16rem; height: 4px;
  background: #E7E5E0; border-radius: 9999px; overflow: hidden;
}
.preloader-progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--color-gulal), var(--color-sunny), var(--color-vibrant-green));
  animation: progress-fill 2.5s ease-in forwards;
}
.preloader-status {
  margin-top: 1rem; font-size: 0.75rem; color: #78716C;
  display: flex; align-items: center; gap: 0.375rem;
}
#skip-loader-btn {
  position: absolute; bottom: 2rem;
  padding: 0.5rem 1rem; border-radius: 9999px;
  border: 1px solid #E5E7EB; color: #A8A29E;
  font-size: 0.75rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.25rem;
  transition: all 0.2s;
}
#skip-loader-btn:hover { background: #FAFAF9; color: #57534E; }

/* ─── HEADER ─── */
#site-header {
  position: sticky; top: 0; z-index: 40;
  width: 100%;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.header-dot-bar {
  display: flex; justify-content: center; gap: 1rem;
  padding: 0.375rem 0;
  background: rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.header-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.header-inner {
  max-width: 80rem; margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width:640px) { .header-inner { padding: 0 1.5rem; } }
@media (min-width:1024px) { .header-inner { padding: 0 2rem; } }
.header-row {
  display: flex; justify-content: space-between;
  align-items: center; height: 5rem;
}
/* Logo */
.logo-btn {
  display: flex; align-items: center; gap: 0.75rem;
  background: none; border: none; cursor: pointer;
  text-align: left;
}
.logo-icon-wrap { position: relative; }
.logo-icon-box {
  width: 2.75rem; height: 2.75rem; border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--color-gulal), var(--color-sunny));
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: var(--font-heading);
  font-weight: 900; font-size: 1.25rem;
  box-shadow: 0 4px 14px rgba(255,45,120,0.3);
  transition: transform 0.3s;
}
.logo-btn:hover .logo-icon-box { transform: rotate(12deg); }
.logo-tail {
  position: absolute; bottom: -4px; right: -4px;
  width: 1rem; height: 1rem;
  background: #FACC15; transform: rotate(45deg);
  border-right: 1px solid var(--color-gulal);
  border-bottom: 1px solid var(--color-gulal);
  animation: float-gentle 6s ease-in-out infinite;
}
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-title-row { display: flex; align-items: center; gap: 0.375rem; }
.logo-brand {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 1.5rem; color: var(--color-royal); letter-spacing: -0.025em;
}
.logo-badge {
  padding: 0.125rem 0.5rem; font-size: 0.625rem; font-weight: 700;
  background: rgba(255,45,120,0.1); color: var(--color-gulal);
  border-radius: 9999px; border: 1px solid rgba(255,45,120,0.2);
  text-transform: uppercase; letter-spacing: 0.1em;
  animation: pulse 2s ease-in-out infinite;
}
.logo-tagline {
  font-size: 0.6875rem; color: #6B7280; font-weight: 500; letter-spacing: 0.05em;
}
/* Desktop Nav */
#desktop-nav {
  display: none; align-items: center; gap: 0.25rem;
}
@media (min-width: 768px) { #desktop-nav { display: flex; } }
.nav-btn {
  position: relative; padding: 0.5rem 1rem;
  border-radius: 9999px; font-family: var(--font-heading);
  font-weight: 600; font-size: 0.875rem;
  color: #4B5563; transition: all 0.3s; border: none; background: none;
}
.nav-btn:hover { color: var(--color-royal); background: #F3F4F6; }
.nav-btn.active {
  color: var(--color-gulal); font-weight: 700; background: rgba(255,45,120,0.05);
}
.nav-btn.active::after {
  content: '';
  position: absolute; inset: 0; border-radius: 9999px;
  background: linear-gradient(to right, rgba(236,72,153,0.1), rgba(251,191,36,0.1));
  border-bottom: 2px solid var(--color-gulal);
}
.nav-divider {
  margin-left: 1rem; padding-left: 1rem;
  border-left: 1px solid #E5E7EB;
  display: flex; align-items: center;
}
#trail-toggle-btn {
  padding: 0.375rem 0.75rem; border-radius: 9999px;
  font-family: var(--font-heading); font-weight: 500;
  font-size: 0.75rem; display: flex; align-items: center; gap: 0.375rem;
  transition: all 0.3s; cursor: pointer;
}
#trail-toggle-btn.trail-on {
  background: linear-gradient(to right, var(--color-gulal), var(--color-soft-purple));
  color: white; box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
#trail-toggle-btn.trail-off { background: #F3F4F6; color: #4B5563; }
#trail-toggle-btn:hover.trail-off { background: #E5E7EB; }
.trail-icon { width: 0.875rem; height: 0.875rem; }
/* Mobile buttons */
.mobile-nav-btns { display: flex; align-items: center; gap: 0.75rem; }
@media (min-width: 768px) { .mobile-nav-btns { display: none; } }
.mobile-trail-btn {
  padding: 0.5rem; border-radius: 9999px; transition: all 0.2s;
}
.mobile-trail-btn.trail-on { color: var(--color-gulal); background: rgba(255,45,120,0.1); }
.mobile-trail-btn.trail-off { color: #6B7280; }
#mobile-menu-toggle {
  padding: 0.5rem; border-radius: 0.75rem;
  color: #4B5563; transition: all 0.2s;
}
#mobile-menu-toggle:hover { color: var(--color-royal); background: #F3F4F6; }
/* Mobile Drawer */
#mobile-menu {
  display: none; /* JS toggles this */
  overflow: hidden;
  background: var(--color-brand-bg);
  border-top: 1px solid #F3F4F6;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
#mobile-menu.open { display: block; animation: page-enter 0.3s ease; }
.mobile-menu-inner { padding: 1rem 1rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-nav-btn {
  width: 100%; text-align: left; padding: 0.875rem 1rem;
  border-radius: 0.75rem; font-family: var(--font-heading);
  font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.2s; color: #374151;
}
.mobile-nav-btn:hover { background: #F9FAFB; color: var(--color-royal); }
.mobile-nav-btn.active {
  background: linear-gradient(to right, rgba(236,72,153,0.1), rgba(251,191,36,0.1));
  color: var(--color-gulal); border-left: 4px solid var(--color-gulal);
}
.mobile-nav-kite {
  width: 14px; height: 14px; transform: rotate(45deg);
  border: 1px solid #D1D5DB;
}
.mobile-nav-btn.active .mobile-nav-kite {
  background: var(--color-gulal); border-color: white;
  box-shadow: 0 0 6px #FF2D78;
}
.mobile-trail-section {
  padding-top: 1rem; border-top: 1px solid #F3F4F6;
  display: flex; flex-direction: column; gap: 0.75rem; padding-inline: 1rem;
}
.mobile-trail-label {
  font-size: 0.75rem; color: #6B7280;
  display: flex; align-items: center; gap: 0.25rem;
}
.mobile-trail-full-btn {
  width: 100%; padding: 0.625rem 1rem; border-radius: 0.5rem;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.875rem;
  text-align: center; transition: all 0.2s;
}
.mobile-trail-full-btn.trail-on {
  background: linear-gradient(to right, var(--color-gulal), var(--color-soft-purple));
  color: white;
}
.mobile-trail-full-btn.trail-off { background: #F3F4F6; color: #374151; }

/* ─── AMBIENT BACKGROUND LAYER ─── */
#ambient-bg {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0.25; pointer-events: none;
  overflow: hidden; z-index: 0;
}
.bg-glow {
  position: absolute; border-radius: 50%;
}
.bg-glow-pink {
  top: -5%; left: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,45,120,0.4) 0%, transparent 70%);
  filter: blur(110px);
}
.bg-glow-blue {
  bottom: 20%; right: -10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.3) 0%, transparent 70%);
  filter: blur(130px);
}
.bg-glow-yellow {
  top: 30%; right: 5%; width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(250,204,21,0.4) 0%, transparent 70%);
  filter: blur(100px);
}
.bg-glow-purple {
  bottom: -5%; left: -5%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(168,85,247,0.3) 0%, transparent 70%);
  filter: blur(110px);
}

/* ─── HOLI CLOUDS ─── */
.holi-clouds {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none;
  user-select: none; z-index: 0;
}
.holi-cloud-1 {
  position: absolute; border-radius: 50%;
  width: clamp(350px, 45vw, 500px); height: clamp(350px, 45vw, 500px);
  background: radial-gradient(circle, rgba(255,45,120,0.18) 0%, rgba(255,45,120,0) 70%);
  filter: blur(clamp(90px, 10vw, 130px));
  top: 5%; left: -10%;
  animation: cloud-drift-1 18s ease-in-out infinite;
}
.holi-cloud-2 {
  position: absolute; border-radius: 50%;
  width: clamp(300px, 40vw, 450px); height: clamp(300px, 40vw, 450px);
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, rgba(59,130,246,0) 70%);
  filter: blur(clamp(80px, 9vw, 120px));
  bottom: 15%; right: -5%;
  animation: cloud-drift-2 22s ease-in-out infinite;
}
.holi-cloud-3 {
  position: absolute; border-radius: 50%;
  width: clamp(250px, 35vw, 400px); height: clamp(250px, 35vw, 400px);
  background: radial-gradient(circle, rgba(250,204,21,0.13) 0%, rgba(250,204,21,0) 75%);
  filter: blur(clamp(70px, 8vw, 110px));
  top: 45%; left: 35%;
  animation: cloud-drift-3 25s ease-in-out infinite;
}
.holi-cloud-4 {
  position: absolute; border-radius: 50%;
  width: clamp(280px, 38vw, 420px); height: clamp(280px, 38vw, 420px);
  background: radial-gradient(circle, rgba(168,85,247,0.14) 0%, rgba(168,85,247,0) 70%);
  filter: blur(clamp(80px, 9vw, 120px));
  top: -15%; right: 25%;
  animation: cloud-drift-4 20s ease-in-out infinite;
}
.holi-dot-1 {
  position: absolute; top: 20%; left: 8%;
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,45,120,0.3);
  animation: pulse 2s ease-in-out infinite;
}
.holi-dot-2 {
  position: absolute; top: 55%; right: 12%;
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(34,197,94,0.3);
  animation: ping 3s cubic-bezier(0,0,0.2,1) infinite;
}
.holi-dot-3 {
  position: absolute; bottom: 20%; left: 45%;
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(250,204,21,0.2);
  animation: pulse 4s ease-in-out infinite;
}

/* ─── FLYING KITES ─── */
#flying-kites {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none;
  user-select: none; z-index: 10;
}
.flying-kite {
  position: absolute;
  display: none; /* hidden on mobile */
}
@media (min-width: 640px) { .flying-kite { display: block; } }
.flying-kite svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
  transition: transform 0.3s;
}
.flying-kite:hover svg { transform: scale(1.1); }
.flying-kite .kite-wind-spark {
  position: absolute; top: 0; right: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: white; opacity: 0;
  transition: opacity 0.3s;
}
.flying-kite:hover .kite-wind-spark {
  opacity: 1;
  animation: ping 1s cubic-bezier(0,0,0.2,1) infinite;
}

/* ─── FESTIVE SPARKLES ─── */
#festive-sparkles {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none;
  user-select: none; z-index: 10;
}
.sparkle-item {
  position: absolute; opacity: 0;
  animation: sparkle-float var(--sparkle-dur, 12s) ease-in-out infinite;
  animation-delay: var(--sparkle-delay, 0s);
}

/* ─── CURSOR TRAIL ─── */
#cursor-dot {
  position: fixed; pointer-events: none; z-index: 999;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--color-gulal);
  border: 1px solid white;
  box-shadow: 0 0 8px #FF2D78;
  transform: translate(-50%, -50%);
  transition: transform 0.075s;
  display: none;
}
@media (min-width:768px) { #cursor-dot { display: block; } }
.cursor-particle {
  position: fixed; pointer-events: none; z-index: 998;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* ─── CONFETTI LAYER ─── */
#confetti-layer {
  position: fixed; inset: 0;
  pointer-events: none; user-select: none;
  z-index: 50; overflow: hidden;
}
.confetti-particle {
  position: absolute; border-radius: 50%;
  animation: confetti-fly 1.5s ease-out forwards;
}

/* ─── MAIN & PAGE SECTIONS ─── */
#main-content { flex: 1; }
.page-section { display: none; }
.page-section.active {
  display: block;
  animation: page-enter 0.35s ease-out;
}

/* ─── HOME PAGE ─── */
.home-hero {
  position: relative; padding: 3rem 1rem 5rem;
  max-width: 80rem; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  z-index: 20;
}
@media (min-width:1024px) {
  .home-hero { padding-top: 5rem; padding-bottom: 9rem; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,45,120,0.1); border: 1px solid rgba(255,45,120,0.2);
  color: var(--color-gulal); padding: 0.375rem 1.125rem;
  border-radius: 9999px; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  animation: bounce 1s infinite;
}
.hero-h1 {
  margin-top: 1.5rem; font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.75rem); color: var(--color-royal);
  line-height: 1.2; letter-spacing: -0.025em; max-width: 48rem;
}
.hero-gradient-word {
  display: inline; background-clip: text;
  -webkit-background-clip: text; color: transparent;
  background-image: linear-gradient(to right, var(--color-gulal), #facc15, #3b82f6);
  transition: background-image 0.7s ease;
}
.hero-subtitle {
  margin-top: 1.5rem; font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #57534E; max-width: 40rem; line-height: 1.65;
}
/* Color Powder Plate */
.powder-plate-wrap {
  margin-top: 2rem; max-width: 32rem; width: 100%;
  padding: 1rem; border-radius: 1rem;
  background: rgba(255,255,255,0.75); backdrop-filter: blur(4px);
  border: 1px solid rgba(229,231,235,0.5);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.powder-plate-label {
  font-size: 0.625rem; font-family: var(--font-heading); font-weight: 800;
  color: #78716C; text-transform: uppercase; letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 0.25rem;
}
.powder-plates { display: flex; align-items: center; gap: 1.125rem; }
.powder-plate-btn {
  position: relative; width: 2.5rem; height: 2.5rem;
  border-radius: 50%; border: none; cursor: pointer;
  transition: all 0.3s; display: flex; align-items: center; justify-content: center;
}
.powder-plate-btn:hover { transform: scale(1.15) translateY(-4px); }
.powder-plate-btn .inner-ring {
  position: absolute; inset: 2px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
}
.powder-plate-btn .inner-texture {
  position: absolute; inset: 4px; border-radius: 50%;
  background: radial-gradient(circle at center, transparent 40%, rgba(255,255,255,0.1) 60%);
}
.powder-plate-btn .sparkle-icon {
  width: 1rem; height: 1rem; color: white; fill: white;
}
.powder-active-color {
  font-size: 0.625rem; font-family: var(--font-sans); font-weight: 700;
  color: #57534E;
}
/* CTA Buttons */
.hero-cta-row {
  margin-top: 2.5rem; display: flex; flex-direction: column;
  align-items: center; gap: 1rem; width: 100%;
}
@media (min-width:640px) { .hero-cta-row { flex-direction: row; justify-content: center; } }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.625rem;
  padding: 1rem 2rem; border-radius: 9999px;
  background: linear-gradient(to right, var(--color-gulal), #f97316, var(--color-sunny));
  color: white; font-family: var(--font-heading); font-weight: 800;
  font-size: 1rem; border: none; cursor: pointer;
  box-shadow: 0 4px 18px rgba(255,45,120,0.45);
  transition: all 0.3s; width: 100%;
}
@media (min-width:640px) { .btn-primary { width: auto; } }
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(255,45,120,0.65);
}
.btn-secondary {
  position: relative; display: inline-flex; align-items: center;
  justify-content: center; gap: 0.625rem;
  padding: 0.875rem 2rem; border-radius: 9999px;
  background: white; color: var(--color-royal);
  font-family: var(--font-heading); font-weight: 800;
  font-size: 1rem; border: 2px solid transparent;
  cursor: pointer; overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: all 0.3s; width: 100%;
}
@media (min-width:640px) { .btn-secondary { width: auto; } }
.btn-secondary:hover { transform: scale(1.03); color: var(--color-gulal); }
.hero-note {
  margin-top: 1.5rem; font-size: 0.6875rem; font-family: 'Courier New', monospace;
  color: #9CA3AF; font-weight: 500; letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 0.375rem;
}
/* Ambient overlay */
.hero-glow {
  position: absolute; top: 5%; left: 20%;
  width: 60%; height: 35%; border-radius: 50%;
  filter: blur(155px); opacity: 0.2; pointer-events: none;
  transition: background-color 1.2s ease-out; z-index: 0;
}

/* ─── BRAND CANVAS (Home Interactive Sandbox) ─── */
.brand-canvas-section {
  padding: 3rem 1rem; max-width: 80rem; margin: 0 auto; position: relative; z-index: 20;
}
.brand-canvas-panel {
  padding: 1.5rem; border-radius: 1.5rem;
  border: 1px solid rgba(229,231,235,0.8);
  background: rgba(255,255,255,0.8);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
@media (min-width:640px) { .brand-canvas-panel { padding: 2.5rem; } }
.brand-canvas-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width:1024px) { .brand-canvas-grid { grid-template-columns: 5fr 7fr; } }
.canvas-controls { display: flex; flex-direction: column; gap: 1.5rem; }
.canvas-badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.75rem; font-family: var(--font-heading); font-weight: 800;
  background: rgba(59,130,246,0.1); color: var(--color-royal);
  border: 1px solid rgba(59,130,246,0.2); padding: 0.25rem 0.75rem;
  border-radius: 9999px; text-transform: uppercase; letter-spacing: 0.05em;
}
.canvas-title {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(1.25rem, 3vw, 1.875rem); color: var(--color-royal);
  line-height: 1.25; letter-spacing: -0.025em;
}
.canvas-desc { color: #78716C; font-size: 0.875rem; line-height: 1.6; }
.control-label {
  font-size: 0.6875rem; font-family: 'Courier New', monospace;
  font-weight: 700; color: #78716C;
  text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 0.5rem;
}
.industry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.industry-btn {
  padding: 0.875rem; border-radius: 1rem; border: 1px solid #E5E7EB;
  text-align: left; cursor: pointer; transition: all 0.2s;
  background: #FAFAF9;
}
.industry-btn:hover { border-color: #9CA3AF; background: rgba(250,250,249,0.5); }
.industry-btn.active { background: var(--color-royal); color: white; border-color: var(--color-royal); box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.industry-btn-label { font-size: 0.75rem; font-family: var(--font-heading); font-weight: 900; }
.industry-btn-desc { font-size: 0.5625rem; font-family: 'Courier New', monospace; text-transform: uppercase; letter-spacing: 0.05em; color: #9CA3AF; margin-top: 2px; }
.industry-btn.active .industry-btn-desc { color: var(--color-sunny); }
.theme-toggle-wrap {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding: 1.125rem; border-radius: 1rem;
  background: #FAFAF9; border: 1px solid rgba(229,231,235,0.6);
}
.theme-toggle-btns {
  display: flex; gap: 0.25rem; padding: 0.25rem;
  background: white; border-radius: 9999px; border: 1px solid #E5E7EB;
}
.theme-btn {
  display: flex; align-items: center; gap: 0.25rem;
  padding: 0.375rem 0.75rem; border-radius: 9999px;
  font-size: 0.75rem; font-family: var(--font-heading); font-weight: 800;
  cursor: pointer; transition: all 0.2s; color: #78716C;
}
.theme-btn.active { background: var(--color-royal); color: white; box-shadow: 0 1px 2px rgba(0,0,0,0.1); }
.wind-slider { display: flex; flex-direction: column; gap: 0.5rem; }
.wind-row { display: flex; justify-content: space-between; font-size: 0.6875rem; font-family: 'Courier New', monospace; font-weight: 700; color: #78716C; text-transform: uppercase; letter-spacing: 0.1em; }
input[type="range"] { width: 100%; height: 6px; border-radius: 9999px; appearance: none; cursor: pointer; }
input[type="range"]::-webkit-slider-thumb { appearance: none; width: 16px; height: 16px; border-radius: 50%; background: var(--color-gulal); cursor: pointer; }
.canvas-action-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.btn-splatter {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.625rem 1rem; border-radius: 9999px;
  background: linear-gradient(to right, var(--color-gulal), #FF70A6);
  color: white; font-size: 0.75rem; font-family: var(--font-heading); font-weight: 900;
  cursor: pointer; box-shadow: 0 1px 4px rgba(0,0,0,0.08); transition: transform 0.15s;
}
.btn-splatter:hover { transform: scale(1.03); }
.btn-clear {
  display: inline-flex; align-items: center; gap: 0.25rem;
  padding: 0.625rem 0.875rem; border-radius: 9999px;
  border: 1px solid #E5E7EB; background: white; color: #57534E;
  font-size: 0.75rem; font-family: var(--font-heading); font-weight: 700;
  cursor: pointer; transition: all 0.15s;
}
.btn-clear:hover { border-color: #9CA3AF; color: var(--color-royal); }
/* Mockup preview */
.canvas-mockup {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.mockup-frame {
  width: 100%; max-width: 36rem; height: 400px;
  border-radius: 1.5rem; border: 3px solid #D1D5DB;
  overflow: hidden; position: relative;
  transition: all 0.5s;
  background: var(--color-brand-bg); color: #292524;
  box-shadow: 0 8px 24px rgba(209,213,219,0.3);
}
.mockup-frame.night { background: #0F172A; border-color: #1E293B; color: #F1F5F9; box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.mockup-header-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.125rem; border-bottom: 2px solid #E5E7EB;
  background: #FAFAF9; font-family: 'Courier New', monospace; font-size: 0.5rem;
}
.mockup-frame.night .mockup-header-bar { background: #1E293B; border-bottom-color: #334155; }
.mockup-dots { display: flex; align-items: center; gap: 0.375rem; }
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-url-bar {
  margin-left: 0.5rem; padding: 0.125rem 0.5rem;
  border-radius: 0.375rem; border: 1px solid #E5E7EB;
  font-size: 0.5rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em;
  color: #9CA3AF; background: white;
}
.mockup-frame.night .mockup-url-bar { border-color: #334155; color: #64748B; background: #0F172A; }
.mockup-speed-tags { display: flex; gap: 0.75rem; font-size: 0.5rem; font-weight: 700; }
.mockup-body { padding: 1.5rem; height: calc(100% - 42px); position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; }
.mockup-kite {
  position: absolute; z-index: 10; pointer-events: none;
  width: 2rem; height: 2rem;
  top: 25%; left: 60%;
  animation: kite-fly 3s ease-in-out infinite;
  --kite-angle: 15deg;
}
.paint-blob {
  position: absolute; border-radius: 50%;
  filter: blur(2px); opacity: 0;
  pointer-events: none;
  animation: fade-up 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes blob-appear {
  from { transform: scale(0.1); opacity: 0; }
  to { transform: scale(1); opacity: 0.55; }
}
.paint-blob.visible { animation: blob-appear 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards; }
.mockup-brand-row { display: flex; align-items: center; justify-content: space-between; font-size: 0.625rem; }
.mockup-brand-icon {
  width: 1.25rem; height: 1.25rem; border-radius: 0.25rem;
  background: var(--color-royal); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.5625rem;
}
.mockup-brand-name { font-family: var(--font-heading); font-weight: 900; color: var(--color-royal); font-size: 0.625rem; margin-left: 4px; }
.mockup-frame.night .mockup-brand-name { color: var(--color-sunny); }
.mockup-headline { font-family: var(--font-heading); font-weight: 900; font-size: clamp(0.875rem, 1.5vw, 1.125rem); color: var(--color-royal); line-height: 1.3; max-width: 80%; }
.mockup-frame.night .mockup-headline { color: white; }
.mockup-desc { font-size: 0.5625rem; line-height: 1.5; color: #78716C; max-width: 85%; }
.mockup-frame.night .mockup-desc { color: #94A3B8; }
.mockup-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.875rem; }
.mockup-card {
  padding: 0.625rem; border-radius: 0.75rem;
  border: 1px solid #E5E7EB; background: rgba(255,255,255,0.8);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.mockup-frame.night .mockup-card { background: rgba(30,41,59,0.8); border-color: #334155; }
.mockup-card-tag { font-size: 0.4375rem; font-family: 'Courier New', monospace; font-weight: 900; text-transform: uppercase; color: #9CA3AF; }
.mockup-card-title { font-size: 0.5rem; font-family: var(--font-heading); font-weight: 900; margin-top: 2px; color: var(--color-royal); }
.mockup-frame.night .mockup-card-title { color: var(--color-sunny); }

/* ─── TRUST / LOGOS SECTION ─── */
.trust-section {
  background: var(--color-brand-bg); border-top: 1px solid #E7E5E0;
  border-bottom: 1px solid #E7E5E0;
  padding: 4rem 1rem; position: relative; z-index: 20; overflow: hidden;
}
.trust-title { font-family: var(--font-heading); font-weight: 900; font-size: clamp(1.25rem, 3vw, 2rem); color: var(--color-royal); line-height: 1.3; }
.trust-logos-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  align-items: center; justify-items: center;
}
@media (min-width:640px) { .trust-logos-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width:768px) { .trust-logos-grid { grid-template-columns: repeat(6, 1fr); gap: 1.25rem; } }
.trust-logo-card {
  position: relative; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: white; border: 1px solid rgba(229,231,235,0.8);
  border-radius: 1rem; padding: 1rem 1.25rem; width: 100%;
  height: 7rem; cursor: pointer; text-align: center;
  transition: all 0.3s;
  opacity: 0; transform: translateY(20px);
}
.trust-logo-card.visible {
  animation: fade-up 0.5s ease forwards;
}
.trust-logo-card:hover { transform: translateY(-5px) scale(1.05); }
.trust-logo-card.active { border-color: var(--color-royal); box-shadow: 0 0 0 3px rgba(30,58,138,0.05); }
.trust-logo-dot { position: absolute; top: 0.75rem; right: 0.75rem; width: 8px; height: 8px; border-radius: 50%; transition: all 0.3s; }
.trust-logo-icon-box { width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 0.625rem; transition: all 0.3s; border: 1px solid #E5E7EB; background: var(--color-brand-bg); }
.trust-logo-card:hover .trust-logo-icon-box { transform: scale(1.1); }
.trust-logo-name { font-size: 0.75rem; font-family: var(--font-heading); font-weight: 800; color: #57534E; transition: color 0.3s; line-height: 1.2; }
.trust-logo-card.active .trust-logo-name { color: var(--color-royal); }
.trust-logo-industry { font-size: 0.5625rem; font-family: 'Courier New', monospace; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #9CA3AF; margin-top: 2px; }
.trust-logo-bar { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); height: 4px; border-radius: 4px 4px 0 0; width: 0; transition: width 0.3s; }
.trust-logo-card.active .trust-logo-bar { width: 60%; }
/* Testimonial panel */
.testimonial-panel {
  max-width: 56rem; margin: 0 auto;
  border-radius: 1.5rem; padding: 1.5rem;
  border: 1px solid; position: relative; overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  animation: slide-in-right 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
@media (min-width:640px) { .testimonial-panel { padding: 2.25rem; } }
.testimonial-inner { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width:640px) { .testimonial-inner { flex-direction: row; align-items: flex-start; } }
.testimonial-quote-icon { padding: 1rem; border-radius: 1rem; color: white; flex-shrink: 0; display: none; }
@media (min-width:640px) { .testimonial-quote-icon { display: flex; align-items: center; justify-content: center; } }
.testimonial-quote-text { font-family: var(--font-sans); font-size: clamp(0.875rem, 2vw, 1.0625rem); color: #44403C; line-height: 1.7; font-weight: 600; font-style: italic; }
.testimonial-footer { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid rgba(229,231,235,0.6); }
@media (min-width:640px) { .testimonial-footer { flex-direction: row; align-items: center; justify-content: space-between; } }
.testimonial-author-name { font-family: var(--font-heading); font-weight: 800; color: var(--color-royal); font-size: 0.9375rem; }
.testimonial-author-role { font-size: 0.6875rem; font-family: 'Courier New', monospace; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-top: 2px; }
.testimonial-badge { font-size: 0.625rem; font-family: 'Courier New', monospace; font-weight: 800; padding: 0.375rem 0.75rem; border-radius: 9999px; border: 1px solid; }


/* ─── ABOUT PAGE: FOUNDERS INTERACTIVE SECTION ─── */
/* Founder switcher buttons */
.founder-switcher {
  display: inline-flex;
  padding: 0.375rem;
  background: #F3F4F6;
  border-radius: 1rem;
  border: 1px solid #E5E7EB;
}
.founder-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8125rem;
  cursor: pointer;
  border: none;
  background: transparent;
  color: #6B7280;
  transition: all 0.3s;
}
.founder-btn:hover { color: var(--color-royal); }
.founder-btn.active { color: white; }
/* Founder grid */
.about-founders-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .about-founders-grid { grid-template-columns: repeat(2, 1fr); } }
/* Left column */
.about-founder-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
/* Profile header */
.about-founder-profile {
  display: flex; align-items: center; gap: 1rem;
}
.about-founder-avatar {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 900;
  font-size: 1.5rem; color: white;
  flex-shrink: 0;
}
.about-founder-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-royal);
  line-height: 1;
}
.about-founder-role {
  font-size: 0.6875rem;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.375rem;
}
/* Tasks list */
.about-founder-tasks-wrap { padding-top: 0.5rem; }
.about-founder-tasks-label {
  font-size: 0.6875rem;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.about-founder-tasks-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.625rem;
}
.about-founder-task-item {
  display: flex; align-items: flex-start; gap: 0.625rem;
  font-size: 0.8125rem; color: #374151;
  line-height: 1.5;
}
.about-founder-check {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.2rem 0.4rem;
  border-radius: 0.375rem;
  font-weight: 700; font-size: 0.6875rem;
  flex-shrink: 0;
  margin-top: 1px;
}
/* Quote */
.about-founder-quote-wrap { padding-top: 1.5rem; border-top: 1px solid #E5E7EB; }
.about-founder-quote-label {
  display: flex; align-items: center; gap: 0.375rem;
  font-size: 0.625rem;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.about-founder-quote-box {
  padding: 1.25rem;
  border-left: 4px solid;
  border-radius: 0 1rem 1rem 0;
}
.about-founder-quote-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #1C1917;
}
.about-founder-quote-attr {
  font-size: 0.625rem;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-top: 0.5rem;
  text-align: right;
}
/* Right sandbox panel */
.about-founder-sandbox {
  border: 1px solid #E5E7EB;
  background: #FFFDF7;
  border-radius: 1.5rem;
  padding: 1.25rem;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 640px) { .about-founder-sandbox { padding: 2rem; } }
.about-sandbox-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.75rem;
}
.about-sandbox-tag {
  font-size: 0.5625rem;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-sandbox-tag-label {
  font-size: 0.5625rem;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-sandbox-desc {
  font-size: 0.75rem;
  color: #57534E;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
/* Wireframe canvas */
.about-wireframe-canvas {
  height: 14rem;
  background: #F3F4F6;
  border: 2px dashed #D1D5DB;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  cursor: crosshair;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.about-wireframe-canvas:hover { background: #F9FAFB; }
.about-wireframe-empty {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.25rem;
}
.about-wireframe-empty-icon { margin-bottom: 0.25rem; }
.about-wireframe-count {
  position: absolute; bottom: 0.5rem; right: 0.625rem;
  font-size: 0.5rem; font-family: 'Courier New', monospace;
  font-weight: 700; color: #9CA3AF;
  pointer-events: none;
}
.about-sandbox-footer {
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Courier New', monospace;
  font-size: 0.625rem; color: #78716C; font-weight: 600;
  background: rgba(243,244,246,0.5);
  padding: 0.625rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #E5E7EB;
  margin-top: 0.5rem;
}
.about-sandbox-reset {
  color: var(--color-gulal);
  font-weight: 700;
  cursor: pointer;
  background: none; border: none;
  font-family: inherit; font-size: inherit;
  transition: color 0.2s;
}
.about-sandbox-reset:hover { color: var(--color-royal); }
/* Compiler terminal */
.about-compiler-terminal {
  background: #1E1B4B;
  border-radius: 1rem;
  padding: 1rem;
  color: white;
  font-family: 'Courier New', monospace;
  font-size: 0.625rem;
  height: 13rem;
  overflow-y: auto;
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid #312E81;
}
.about-compiler-stage {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; text-align: center; gap: 0.5rem;
}
.about-compiler-run-btn {
  background: var(--color-royal);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-family: 'Courier New', monospace;
  font-weight: 900;
  font-size: 0.5625rem;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: background 0.2s;
  text-transform: uppercase;
}
.about-compiler-run-btn:hover { background: #1E40AF; }
.about-compiler-log {
  display: flex; flex-direction: column; gap: 0.25rem;
  font-size: 0.625rem; line-height: 1.6;
}
.about-compiler-footer {
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Courier New', monospace;
  font-size: 0.6875rem; color: #6B7280; font-weight: 700;
  background: rgba(238,242,255,0.6);
  padding: 0.625rem 0.875rem;
  border-radius: 0.75rem;
  border: 1px solid #C7D2FE;
  margin-top: 0.5rem;
}
/* Micro stats footer */
.about-sandbox-micro-stats {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid #E5E7EB;
  padding-top: 1rem;
  font-family: 'Courier New', monospace;
  font-size: 0.625rem;
  color: #9CA3AF; font-weight: 700;
  flex-wrap: wrap; gap: 0.5rem;
}

/* ─── ABOUT PAGE: TOGETHER BANNER ─── */
.about-together-banner {
  position: relative;
  margin-top: 4rem;
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
  padding: 2.5rem;
  border-radius: 1.5rem;
  background: #FFFDF7;
  border: 2px solid rgba(229,231,235,0.8);
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.5s;
}
.about-together-banner:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.about-together-blob-left {
  position: absolute; top: -3rem; left: -3rem;
  width: 8rem; height: 8rem;
  background: rgba(255,45,120,0.05);
  border-radius: 50%; filter: blur(2rem);
  pointer-events: none;
  transition: background 0.5s;
}
.about-together-banner:hover .about-together-blob-left { background: rgba(255,45,120,0.1); }
.about-together-blob-right {
  position: absolute; bottom: -3rem; right: -3rem;
  width: 8rem; height: 8rem;
  background: rgba(59,130,246,0.05);
  border-radius: 50%; filter: blur(2rem);
  pointer-events: none;
  transition: background 0.5s;
}
.about-together-banner:hover .about-together-blob-right { background: rgba(59,130,246,0.1); }
.about-together-word {
  display: block;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  color: var(--color-gulal);
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: transform 0.3s;
  cursor: default;
}
.about-together-banner:hover .about-together-word { transform: scale(1.05); }
.about-together-desc {
  font-size: 0.9375rem;
  color: #57534E;
  line-height: 1.7;
  position: relative; z-index: 2;
}

/* ─── SERVICES CARDS (Home) ─── */

.services-home-section { padding: 5rem 1rem; max-width: 80rem; margin: 0 auto; position: relative; z-index: 20; }
.service-card {
  position: relative; padding: 2rem; border-radius: 1.5rem; cursor: default;
  transition: all 0.3s; opacity: 0; transform: translateY(30px) scale(0.95);
}
.service-card.visible {
  animation: fade-up 0.6s cubic-bezier(0.34,1,0.64,1) forwards;
}
.service-card:hover { transform: translateY(-12px) scale(1.02); }
.service-card::before {
  content: ''; position: absolute; inset: 8px; border-radius: 1rem;
  border: 2px dashed rgba(229,231,235,0.6); opacity: 0.6; pointer-events: none;
  transition: all 0.3s;
}
.service-card:hover::before { opacity: 1; border-color: rgba(255,45,120,0.2); }
.service-icon-box {
  width: 3rem; height: 3rem; border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 800; color: white;
  transition: all 0.3s;
}
.service-icon-box svg { width: 1.5rem; height: 1.5rem; }
.service-card:hover .service-icon-box { transform: scale(1.1) rotate(6deg); }
.service-title { margin-top: 1.5rem; font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem; color: var(--color-royal); }
.service-desc { margin-top: 0.75rem; color: #78716C; font-size: 0.875rem; line-height: 1.6; }
.service-features { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.service-feature { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 600; color: #374151; }
.service-check { width: 1rem; height: 1rem; color: var(--color-vibrant-green); flex-shrink: 0; }
.service-card-footer { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid #E5E7EB; display: flex; align-items: center; justify-content: space-between; }
.service-link-btn { font-size: 0.75rem; font-family: var(--font-heading); font-weight: 800; color: var(--color-gulal); display: flex; align-items: center; gap: 0.25rem; cursor: pointer; background: none; border: none; transition: color 0.2s; }
.service-link-btn:hover { color: var(--color-royal); }

/* ─── WHY CHOOSE US CARDS (Home, used in WHY section) ─── */
.why-section { background: linear-gradient(to bottom, white, var(--color-brand-bg)); padding: 5rem 1rem; border-top: 1px solid #E7E5E0; border-bottom: 1px solid #E7E5E0; position: relative; z-index: 20; }
.why-card { padding: 1.625rem; border-radius: 1.5rem; transition: all 0.3s; cursor: default; opacity: 0; transform: translateX(25px); }
.why-card.visible { animation: slide-in-right 0.5s cubic-bezier(0.34,1,0.64,1) forwards; }
.why-card:hover { transform: translateY(-6px) scale(1.015); }
.why-icon-box { width: 2.75rem; height: 2.75rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; font-size: 1.375rem; }

/* ─── WHY CHOOSE US PAGE (Full page design matching TSX) ─── */
/* Hero section */
.wcu-hero-section {
  position: relative;
  width: 100%;
  padding: 5rem 1rem 4rem;
  text-align: center;
  background: linear-gradient(to bottom, var(--color-brand-bg), var(--color-brand-bg), white);
  border-bottom: 1px solid #E7E5E0;
  overflow: hidden;
  z-index: 10;
}
/* Parallax powder clouds */
.wcu-hero-clouds { position: absolute; inset: 0; pointer-events: none; opacity: 0.3; }
.wcu-cloud {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: float-gentle 8s ease-in-out infinite;
}
.wcu-cloud-pink { width: 11rem; height: 11rem; background: #FF2D78; top: 16.67%; left: 10%; animation-delay: 0s; }
.wcu-cloud-yellow { width: 13rem; height: 13rem; background: #FACC15; top: 25%; right: 8%; animation-delay: 1s; }
.wcu-cloud-blue { width: 15rem; height: 15rem; background: #3B82F6; bottom: 20%; left: 20%; animation-delay: 2s; }
/* Floating kite decorations */
.wcu-kite-left {
  position: absolute; top: 4rem; left: 5%; width: 2.75rem; height: 2.75rem;
  color: var(--color-gulal); opacity: 0.3;
  animation: float-gentle 8s ease-in-out infinite;
}
.wcu-kite-right {
  position: absolute; bottom: 6rem; right: 8%; width: 2.25rem; height: 2.25rem;
  color: var(--color-soft-purple); opacity: 0.3;
  animation: float-gentle 9s ease-in-out infinite;
  animation-delay: 1s;
}
/* Hero inner */
.wcu-hero-inner { max-width: 56rem; margin: 0 auto; position: relative; z-index: 10; }
/* Floating dots row */
.wcu-dots-row {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  margin-bottom: 1.5rem; flex-wrap: wrap;
}
.wcu-dot {
  width: 0.875rem; height: 0.875rem; border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s;
  animation: pulse 2s ease-in-out infinite;
}
.wcu-dot:hover { transform: scale(1.8) rotate(180deg); }
/* Main headline */
.wcu-headline {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  color: var(--color-royal);
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 1.25rem;
}
/* Animated gradient underline (kite string) */
.wcu-underline-wrap {
  position: absolute;
  left: 10%; right: 10%; bottom: -0.875rem;
  height: 1.25rem;
  pointer-events: none;
}
.wcu-underline-svg { width: 100%; height: 100%; }
.wcu-underline-path {
  stroke-dasharray: 320 320;
  stroke-dashoffset: 320;
  animation: wcu-draw-line 1.6s ease-out 0.3s forwards;
}
@keyframes wcu-draw-line {
  to { stroke-dashoffset: 0; }
}
/* Tiny kite at end of line */
.wcu-kite-end {
  position: absolute; right: 0; bottom: -0.5rem;
  width: 1.125rem; height: 1.125rem;
  animation: float-gentle 2.2s ease-in-out infinite;
}
/* Handwritten subline */
.wcu-subline {
  margin-top: 3rem;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--color-gulal);
  letter-spacing: 0.03em;
  max-width: 36rem;
  margin-inline: auto;
  line-height: 1.6;
}

/* Cards section */
.wcu-cards-section {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
  z-index: 10;
}
/* Blurred orbs behind cards */
.wcu-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.2;
}
.wcu-orb-left {
  width: 24rem; height: 24rem;
  background: radial-gradient(circle, rgba(255,45,120,0.25), transparent);
  filter: blur(110px);
  left: -11%; top: 0;
  animation: float-gentle 25s ease-in-out infinite;
}
.wcu-orb-right {
  width: 24rem; height: 24rem;
  background: radial-gradient(circle, rgba(59,130,246,0.25), transparent);
  filter: blur(115px);
  right: -11%; bottom: 2.5rem;
  animation: float-gentle 28s ease-in-out infinite;
  animation-delay: 2s;
}
/* 6-card grid: 1 col mobile, 2 col tablet, 3 col desktop */
.wcu-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 20;
}
@media (min-width: 640px) { .wcu-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .wcu-cards-grid { grid-template-columns: repeat(3, 1fr); } }

/* Individual card */
.wcu-card {
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 2px dashed;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  overflow: hidden;
  cursor: default;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.35s ease,
              border-color 0.35s ease,
              background 0.35s ease;
  opacity: 0;
  transform: translateY(35px);
}
.wcu-card.visible { animation: slide-in-up 0.5s cubic-bezier(0.34,1,0.64,1) forwards; }
.wcu-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.88);
}
/* Corner tag */
.wcu-card-tag {
  position: absolute; top: 1.25rem; right: 1.25rem;
  display: flex; align-items: center; gap: 0.375rem;
  opacity: 0.35;
  font-family: 'Courier New', monospace;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #9CA3AF;
  pointer-events: none;
}
.wcu-card-tag-dot {
  width: 0.375rem; height: 0.375rem;
  border-radius: 50%;
}
/* Icon wrapper */
.wcu-card-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}
.wcu-card-icon-box {
  padding: 0.75rem;
  background: rgba(255,255,255,0.95);
  border-radius: 1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border: 1px solid #F0EDEA;
  position: relative;
  transition: transform 0.3s;
}
.wcu-card:hover .wcu-card-icon-box { transform: scale(1.05); }
/* Spinning dashed ring on hover */
.wcu-card-icon-ring {
  position: absolute;
  inset: 1px;
  border: 2px dashed transparent;
  border-radius: 0.875rem;
  pointer-events: none;
  transition: border-color 0.2s;
}
.wcu-card:hover .wcu-card-icon-ring {
  animation: spin-slow 3s linear infinite;
}
/* SVG icons inside the card icon box */
.wcu-card-icon-box svg {
  width: 5rem; height: 5rem;
  display: block;
}
/* Card text */
.wcu-card-text { text-align: center; position: relative; z-index: 10; }
.wcu-card-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--color-royal);
  letter-spacing: -0.01em;
}
.wcu-card-desc {
  color: #57534E;
  font-size: 0.875rem;
  line-height: 1.65;
  margin-top: 0.625rem;
  max-width: 18rem;
  margin-inline: auto;
}
/* Bottom accent bar */
.wcu-card-bar {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  height: 0.375rem; border-radius: 0.375rem 0.375rem 0 0;
  width: 0;
  transition: width 0.4s ease, box-shadow 0.4s ease;
}
.wcu-card:hover .wcu-card-bar { width: 60%; }
/* Magnetic glow orb inside card */
.wcu-card-glow {
  position: absolute;
  width: 8.75rem; height: 8.75rem;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  filter: blur(45px);
  z-index: 0;
  transition: opacity 0.3s;
  transform: translate(-50%, -50%);
}
.wcu-card:hover .wcu-card-glow { opacity: 0.25; }

/* Closing handwritten quote */
.wcu-closing-quote {
  margin-top: 5rem;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 20;
}
.wcu-quote-text {
  font-size: clamp(1.1rem, 3vw, 1.75rem);
  color: var(--color-royal);
  letter-spacing: 0.02em;
  max-width: 56rem;
  margin: 0 auto;
  line-height: 1.6;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.05));
}

/* CTA section */
.wcu-cta-wrap {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 30;
  max-width: 36rem;
  margin-inline: auto;
  text-align: center;
}
.wcu-cta-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}
@media (min-width: 640px) {
  .wcu-cta-btns { flex-direction: row; justify-content: center; }
}
/* Book Free Call button */
.wcu-btn-call {
  display: inline-flex; align-items: center; gap: 0.625rem;
  padding: 1.125rem 2.25rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #FF2D78, #FF588A, #FF70A6);
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 10px 25px rgba(255,45,120,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wcu-pulse-shadow 2s ease-in-out infinite;
  width: 100%;
  justify-content: center;
}
@media (min-width: 640px) { .wcu-btn-call { width: auto; } }
.wcu-btn-call:hover { transform: scale(1.05); box-shadow: 0 14px 35px rgba(255,45,120,0.5); }
.wcu-btn-call:active { transform: scale(0.97); }
@keyframes wcu-pulse-shadow {
  0%, 100% { box-shadow: 0 10px 25px rgba(255,45,120,0.35); }
  50% { box-shadow: 0 10px 35px rgba(255,45,120,0.55); }
}
/* Confetti burst from button */
.wcu-btn-confetti { position: absolute; inset: 0; pointer-events: none; }
.wcu-confetti-dot {
  position: absolute;
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  left: 50%; top: 50%;
  margin-left: -4px; margin-top: -4px;
  pointer-events: none;
  z-index: 50;
  animation: wcu-confetti-burst 0.9s ease-out forwards;
}
@keyframes wcu-confetti-burst {
  from { transform: translate(0,0) scale(1); opacity: 1; }
  to { transform: var(--tx,0) var(--ty,0) scale(0); opacity: 0; }
}
/* WhatsApp button */
.wcu-btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.625rem;
  padding: 1.125rem 2.25rem;
  border-radius: 9999px;
  background: white;
  color: #22C55E;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: 2px solid #22C55E;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  width: 100%;
  justify-content: center;
}
@media (min-width: 640px) { .wcu-btn-whatsapp { width: auto; } }
.wcu-btn-whatsapp:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(34,197,94,0.25); background: rgba(34,197,94,0.05); }
.wcu-btn-whatsapp:active { transform: scale(0.97); }
/* Pulsing dot inside WhatsApp button */
.wcu-wa-dot {
  width: 0.625rem; height: 0.625rem;
  border-radius: 50%;
  background: #22C55E;
  animation: pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
/* Money-back badge */
.wcu-guarantee-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  background: white;
  border: 1px solid #E5E7EB;
  color: var(--color-royal);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: transform 0.2s;
  cursor: default;
}
.wcu-guarantee-badge:hover { transform: scale(1.05); }
.wcu-guarantee-badge svg { animation: pulse 2s ease-in-out infinite; flex-shrink: 0; }

/* WCU SVG icon animations - continuous on card icons */
/* Rocket card: sparks fall & flame flickers */
#wcu-card-1 .wcu-spark { animation: wcu-spark-1 1s ease-out infinite; }
/* Plant card: leaves sway, coin bounces */
#wcu-card-2 .wcu-leaf-l { transform-origin: right bottom; animation: wcu-leaf-sway 2s ease-in-out infinite; }
#wcu-card-2 .wcu-leaf-r { transform-origin: left bottom; animation: wcu-leaf-sway 2s ease-in-out infinite 0.3s; }
#wcu-card-2 .wcu-bud { transform-origin: bottom center; animation: wcu-leaf-sway 1.5s ease-in-out infinite 0.1s; }
#wcu-card-2 .wcu-coin { animation: wcu-coin-bounce 2s ease-in-out infinite; transform-origin: 75px 20px; }
/* Mobile card: phone glows, kite loops */
#wcu-card-3 .wcu-phone { animation: wcu-phone-glow 2s ease-in-out infinite; }
#wcu-card-3 .wcu-kite-fly { animation: wcu-kite-loop 5s ease-in-out infinite; }
/* Chat bubble: bounces, planes fly */
#wcu-card-4 .wcu-bubble { animation: wcu-bubble-bounce 2.5s ease-in-out infinite; }
#wcu-card-4 .wcu-thumbs { animation: wcu-leaf-sway 2s ease-in-out infinite; }
#wcu-card-4 .wcu-plane-1 { animation: wcu-coin-bounce 1.8s ease-out infinite; }
#wcu-card-4 .wcu-plane-2 { animation: wcu-coin-bounce 1.8s ease-out infinite 0.3s; }
/* Founder: flame dances */
#wcu-card-5 .wcu-flame { transform-origin: 50px 72px; animation: wcu-flame-dance 0.3s ease-in-out infinite; }
#wcu-card-5 .wcu-shake { animation: wcu-leaf-sway 1.8s ease-in-out infinite; transform-origin: 50px 50px; }
/* Growth: kite soars, sprout grows */
#wcu-card-6 .wcu-kite-soar { animation: wcu-kite-loop 2.5s ease-in-out infinite; }
#wcu-card-6 .wcu-sprout { animation: wcu-coin-bounce 3s ease-in-out infinite; transform-origin: 50px 78px; }

/* ─── STATS BUNTING ─── */
.stats-section { padding: 4rem 1rem; background: white; overflow: hidden; position: relative; z-index: 20; }
.bunting-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem; }
@media (min-width:640px) { .bunting-grid { gap: 2.5rem; } }
.bunting-flag {
  position: relative; cursor: default; transition: all 0.3s;
}
.bunting-flag:hover { transform: translateY(-8px) rotate(2deg); }
.bunting-flag-inner {
  width: 10rem; height: 11rem;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 1rem; text-align: center;
  border-top: 8px solid var(--color-gulal);
  border-radius: 0 0 1rem 1rem;
}
.bunting-flag-knot {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  width: 1rem; height: 1rem; border-radius: 50%;
  background: rgba(255,255,255,0.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.5rem; font-weight: 700; color: var(--color-gulal);
  border: 1px solid rgba(255,255,255,0.5);
}
.bunting-number { font-family: var(--font-heading); font-weight: 800; font-size: 1.875rem; color: var(--color-royal); line-height: 1.1; }
.bunting-label { font-size: 0.625rem; font-weight: 700; color: #78716C; line-height: 1.3; }

/* ─── TESTIMONIALS SECTION ─── */
.testimonials-section { padding: 5rem 1rem; max-width: 80rem; margin: 0 auto; position: relative; z-index: 20; }
.testimonials-grid { display: grid; gap: 3rem; }
@media (min-width:1024px) { .testimonials-grid { grid-template-columns: 5fr 7fr; align-items: center; } }
.testimonial-dots { display: flex; gap: 0.5rem; margin-top: 2rem; }
.testimonial-dot { width: 0.875rem; height: 0.875rem; border-radius: 9999px; background: #E5E7EB; border: none; cursor: pointer; transition: all 0.3s; }
.testimonial-dot.active { background: var(--color-gulal); width: 2rem; }
.testimonial-card {
  padding: 2rem; border-radius: 1.5rem; position: relative; overflow: hidden;
  animation: slide-in-right 0.4s ease;
}
@media (min-width:640px) { .testimonial-card { padding: 2.5rem; } }
.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1.5rem; }
.testimonial-star { width: 1.25rem; height: 1.25rem; color: var(--color-sunny); fill: var(--color-sunny); }
.testimonial-text { font-family: var(--font-handwritten); font-size: clamp(1.1rem, 2.5vw, 1.5rem); color: var(--color-royal); line-height: 1.5; }
.testimonial-avatar-row { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #E5E7EB; display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { position: relative; }
.testimonial-avatar img { width: 3rem; height: 3rem; border-radius: 50%; object-fit: cover; border: 2px solid var(--color-gulal); }
.testimonial-verified { position: absolute; bottom: -4px; right: -4px; width: 1.25rem; height: 1.25rem; background: var(--color-vibrant-green); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.5rem; font-weight: 700; }

/* ─── FINAL CTA SECTION ─── */
.final-cta-section { margin-bottom: 2.5rem; padding: 0 1rem; max-width: 80rem; margin-inline: auto; position: relative; z-index: 20; }
.final-cta-box {
  background: linear-gradient(135deg, var(--color-royal), var(--color-gulal));
  border-radius: 1.5rem; padding: 2rem; text-align: center;
  color: white; position: relative; overflow: hidden;
  box-shadow: 0 8px 32px rgba(30,58,138,0.2);
}
@media (min-width:640px) { .final-cta-box { padding: 3.5rem; } }
.final-cta-rangoli {
  position: absolute; inset: 0; opacity: 0.1;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.final-cta-rangoli svg {
  width: 50%; height: 50%;
  animation: spin-slow 60s linear infinite;
}
.final-cta-title { font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.5rem, 4vw, 3rem); line-height: 1.2; }
.final-cta-desc { margin-top: 1rem; color: rgba(255,255,255,0.9); font-size: clamp(0.875rem, 2vw, 1rem); max-width: 36rem; margin-inline: auto; }
.final-cta-btns { margin-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width:640px) { .final-cta-btns { flex-direction: row; justify-content: center; } }
.btn-sunny {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: 9999px;
  background: var(--color-sunny); color: var(--color-royal);
  font-family: var(--font-heading); font-weight: 800; font-size: 1rem;
  cursor: pointer; transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.btn-sunny:hover { background: #FDE047; transform: scale(1.03); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.3); color: white;
  font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ─── SECTION HEADERS (shared) ─── */
.section-badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.375rem 0.875rem; border-radius: 9999px;
  font-size: 0.75rem; font-family: var(--font-heading); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.5rem); color: var(--color-royal);
  letter-spacing: -0.025em; line-height: 1.2;
}
.section-desc { margin-top: 0.875rem; color: #78716C; font-size: clamp(0.875rem, 2vw, 1rem); line-height: 1.65; }

/* ─── ABOUT PAGE ─── */
.about-page { position: relative; min-height: 100vh; background: var(--color-brand-bg); overflow-x: hidden; padding: 3rem 0; }
.about-hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width:768px) { .about-hero-grid { grid-template-columns: 1fr 1fr; } }
.about-brand-glass { padding: 1.5rem; border-radius: 1.5rem; max-width: 28rem; width: 100%; }
.about-brand-banner {
  height: 12rem; border-radius: 1rem;
  background: linear-gradient(135deg, var(--color-royal), var(--color-gulal));
  padding: 1.5rem; color: white; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
}
.values-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width:640px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width:1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card { padding: 1.625rem; border-radius: 1.5rem; transition: all 0.3s; }
.value-card:hover { transform: translateY(-6px); }
.value-icon-box { width: 3rem; height: 3rem; border-radius: 1rem; background: #F3F4F6; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.value-card:hover .value-icon-box { background: linear-gradient(135deg, var(--color-gulal), var(--color-sunny)); }
.value-title { margin-top: 1.25rem; font-family: var(--font-heading); font-weight: 800; font-size: 1.125rem; color: var(--color-royal); transition: color 0.2s; }
.value-card:hover .value-title { color: var(--color-gulal); }
.value-desc { margin-top: 0.5rem; color: #78716C; font-size: 0.8125rem; line-height: 1.6; }
/* Timeline */
.timeline-year-btns { display: flex; align-items: center; gap: 0.625rem; overflow-x: auto; padding-bottom: 0.5rem; }
.timeline-year-btn {
  padding: 0.625rem 1.25rem; border-radius: 9999px;
  border: 2px solid transparent;
  font-family: var(--font-heading); font-weight: 800; font-size: 0.875rem;
  cursor: pointer; transition: all 0.3s; white-space: nowrap; display: flex; align-items: center; gap: 0.375rem;
  background: transparent; color: #9CA3AF;
}
.timeline-year-btn:hover { color: #374151; }
.timeline-year-btn.active { color: var(--color-royal); }
.timeline-dot { width: 6px; height: 6px; border-radius: 50%; }
.timeline-content { border-radius: 1rem; padding: 1.5rem; overflow: hidden; position: relative; cursor: crosshair; }
@media (min-width:640px) { .timeline-content { padding: 2rem; } }
.timeline-content-grid { display: grid; gap: 2rem; }
@media (min-width:1280px) { .timeline-content-grid { grid-template-columns: 5fr 7fr; align-items: center; } }
.timeline-sphere { width: 8rem; height: 8rem; border-radius: 50%; position: relative; display: flex; align-items: center; justify-content: center; transition: all 0.5s; border: 2px dashed; margin: 0 auto 1rem; }
.timeline-string { position: absolute; bottom: -2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; pointer-events: none; opacity: 0.4; }
.timeline-string-line { height: 3.5rem; width: 2px; border-right: 2px dashed #9CA3AF; animation: pulse 2s ease-in-out infinite; }
.timeline-string-dot { width: 6px; height: 6px; border-radius: 50%; background: #9CA3AF; }
.timeline-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 3rem; max-width: 28rem; margin-inline: auto; }
.timeline-metric {
  background: rgba(255,255,255,0.9); border: 1px solid #E7E5E0;
  padding: 0.875rem; border-radius: 1rem; text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04); transition: box-shadow 0.2s;
}
.timeline-metric:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.timeline-milestone-tag { font-size: 0.625rem; font-family: 'Courier New', monospace; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: white; padding: 0.25rem 0.625rem; border-radius: 0.375rem; }
.timeline-milestone-title { font-family: var(--font-heading); font-weight: 900; font-size: clamp(1.25rem, 2.5vw, 1.875rem); color: var(--color-royal); margin-top: 0.25rem; }
.timeline-achievements { display: flex; flex-direction: column; gap: 0.5rem; }
.timeline-achievement { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.8125rem; color: #374151; }
.timeline-trivia { border-top: 1px solid rgba(229,231,235,0.5); padding-top: 1rem; }
.timeline-trivia-text { font-family: var(--font-handwritten); font-size: 1rem; color: var(--color-royal); font-style: italic; line-height: 1.6; }
.timeline-controls { display: flex; align-items: center; gap: 0.875rem; }
.timeline-ctrl-btn { width: 2rem; height: 2rem; border-radius: 9999px; background: var(--color-brand-bg); border: 1px solid #E5E7EB; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; color: #78716C; }
.timeline-ctrl-btn:hover { background: #F3F4F6; border-color: #9CA3AF; }
.autoplay-btn { display: flex; align-items: center; gap: 0.375rem; padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.75rem; font-family: 'Courier New', monospace; font-weight: 800; letter-spacing: 0.05em; cursor: pointer; border: 1px solid; transition: all 0.2s; }
.autoplay-btn.playing { background: rgba(34,197,94,0.1); color: var(--color-vibrant-green); border-color: rgba(34,197,94,0.2); animation: pulse 2s ease-in-out infinite; }
.autoplay-btn.paused { background: var(--color-brand-bg); color: #78716C; border-color: #E5E7EB; }
.splash-indicator { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(2px); }
/* Founders */
.founder-switcher { display: flex; gap: 0.375rem; padding: 0.375rem; background: #F3F4F6; border-radius: 1rem; border: 1px solid #E5E7EB; }
.founder-btn { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 0.75rem; font-size: 0.8125rem; font-family: var(--font-heading); font-weight: 800; cursor: pointer; transition: all 0.2s; }
.founder-btn.bhasha.active { background: var(--color-gulal); color: white; box-shadow: 0 4px 12px rgba(255,45,120,0.2); }
.founder-btn.ishant.active { background: var(--color-royal); color: white; box-shadow: 0 4px 12px rgba(30,58,138,0.2); }
.founder-avatar { width: 3.5rem; height: 3.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; font-family: var(--font-heading); color: white; }
.founder-tasks { display: flex; flex-direction: column; gap: 0.625rem; }
.founder-task { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.8125rem; color: #374151; }
.founder-task-badge { padding: 0.25rem; border-radius: 0.375rem; font-weight: 700; font-size: 0.75rem; flex-shrink: 0; margin-top: 1px; }
.founder-quote-wrap { border-left: 4px solid var(--color-gulal); padding-left: 1.125rem; }
.founder-quote { font-family: var(--font-handwritten); font-size: clamp(1rem, 2vw, 1.25rem); color: var(--color-royal); line-height: 1.6; }
.mission-card { display: flex; gap: 0.875rem; padding: 1.125rem; border-radius: 1rem; border: 1px solid #E7E5E0; background: rgba(255,255,255,0.6); transition: all 0.2s; }
.mission-card:hover { border-color: rgba(255,45,120,0.25); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.mission-icon-box { width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ─── WHY CHOOSE US PAGE ─── */
.wcu-hero { text-align: center; padding: 4rem 1rem 2rem; max-width: 80rem; margin: 0 auto; }
.wcu-pillars-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width:640px) { .wcu-pillars-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width:1024px) { .wcu-pillars-grid { grid-template-columns: repeat(4, 1fr); } }
.wcu-pillar { padding: 2rem; border-radius: 1.5rem; text-align: center; transition: all 0.3s; opacity: 0; }
.wcu-pillar.visible { animation: fade-up 0.5s ease forwards; }
.wcu-pillar:hover { transform: translateY(-8px); }

/* ─── SERVICES PAGE ─── */
.services-page { position: relative; min-height: 100vh; background: var(--color-brand-bg); overflow-x: hidden; padding: 2.5rem 0 5rem; }
.niche-tabs { display: flex; align-items: center; justify-content: center; gap: 0.75rem; overflow-x: auto; padding-bottom: 0.75rem; height: 4rem; }
.niche-tab {
  padding: 0.75rem 1.25rem; border-radius: 1rem; border: 2px solid transparent;
  font-family: var(--font-heading); font-weight: 800; font-size: 0.875rem;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
  display: flex; align-items: center; gap: 0.625rem;
  transition: all 0.3s;
  background: rgba(255,255,255,0.7); color: #9CA3AF;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.niche-tab:hover { color: #374151; box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.niche-tab.active { color: var(--color-royal); }
.niche-dot { width: 10px; height: 10px; border-radius: 50%; }
.simulator-panel { background: rgba(255,255,255,0.8); backdrop-filter: blur(12px); border: 1px solid rgba(229,231,235,0.8); padding: 1.5rem; border-radius: 1.5rem; box-shadow: 0 8px 32px rgba(0,0,0,0.06); position: relative; }
@media (min-width:640px) { .simulator-panel { padding: 2.5rem; } }
.simulator-grid { display: grid; gap: 2rem; }
@media (min-width:1280px) { .simulator-grid { grid-template-columns: 5fr 7fr; } }
.sim-console { background: var(--color-brand-bg); border: 2px solid rgba(229,231,235,0.8); border-radius: 1.25rem; padding: 1.25rem; min-height: 350px; display: flex; flex-direction: column; }
.sim-header { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(229,231,235,0.6); padding-bottom: 0.75rem; margin-bottom: 1rem; }
.sim-live-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--color-gulal); animation: pulse 2s ease-in-out infinite; }
.sim-dots { display: flex; gap: 0.375rem; }
.sim-notice-feed { background: white; border: 1px solid rgba(229,231,235,0.7); padding: 0.75rem; border-radius: 0.75rem; max-height: 140px; overflow-y: auto; display: flex; flex-direction: column; gap: 0.5rem; }
.notice-item { padding: 0.625rem 0.75rem; border-radius: 0.5rem; border: 1px solid rgba(229,231,235,0.5); font-size: 0.75rem; font-weight: 500; color: #374151; background: var(--color-brand-bg); display: flex; gap: 0.5rem; animation: notice-in 0.3s ease; }
.sim-input-row { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.sim-input { flex: 1; padding: 0.625rem 0.875rem; border-radius: 0.75rem; border: 1px solid #D1D5DB; font-size: 0.75rem; background: white; color: #1C1917; outline: none; }
.sim-input:focus { border-color: var(--color-gulal); box-shadow: 0 0 0 3px rgba(255,45,120,0.1); }
.sim-add-btn { padding: 0.625rem 1rem; background: var(--color-gulal); color: white; border-radius: 0.75rem; font-family: var(--font-heading); font-weight: 800; font-size: 0.75rem; display: flex; align-items: center; gap: 0.375rem; transition: background 0.2s; }
.sim-add-btn:hover { background: #E01A61; }
.subject-tabs { display: flex; gap: 0.375rem; border-bottom: 1px solid rgba(229,231,235,0.6); padding-bottom: 0.5rem; margin-bottom: 0.75rem; }
.subject-tab { padding: 0.25rem 0.625rem; border-radius: 0.375rem; font-size: 0.625rem; font-family: 'Courier New', monospace; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; color: #9CA3AF; transition: all 0.2s; }
.subject-tab.active { background: rgba(59,130,246,0.1); color: var(--color-electric); border: 1px solid rgba(59,130,246,0.2); font-weight: 900; }
.batch-row { display: flex; align-items: center; justify-content: space-between; background: white; border: 1px solid rgba(229,231,235,0.6); padding: 1rem; border-radius: 0.75rem; }
.batch-enroll-btn { padding: 0.375rem 0.75rem; border-radius: 0.5rem; font-size: 0.625rem; font-family: var(--font-heading); font-weight: 800; cursor: pointer; transition: all 0.2s; }
.batch-enroll-btn.enrolled { background: #F0FDF4; color: #16A34A; border: 1px solid #BBF7D0; }
.batch-enroll-btn.unenrolled { background: var(--color-electric); color: white; border: none; }
.gym-price-box { background: white; border: 1px solid rgba(229,231,235,0.6); padding: 1rem; border-radius: 0.75rem; }
.gym-book-btn { width: 100%; padding: 0.625rem; border-radius: 0.75rem; font-family: var(--font-heading); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; transition: all 0.2s; margin-top: 0.75rem; }
.gym-book-btn.booked { background: #F0FDF4; color: #16A34A; border: 1px solid #BBF7D0; }
.gym-book-btn.unbooked { background: var(--color-vibrant-green); color: white; border: none; }
.review-list { background: white; border: 1px solid rgba(229,231,235,0.6); padding: 0.75rem; border-radius: 0.75rem; max-height: 120px; overflow-y: auto; }
.review-item { border-bottom: 1px solid #F3F4F6; padding-bottom: 0.5rem; margin-bottom: 0.5rem; font-size: 0.75rem; }
.review-item:last-child { border-bottom: none; margin-bottom: 0; }
.review-form { display: flex; flex-direction: column; gap: 0.5rem; }
.review-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.review-input { padding: 0.625rem 0.75rem; border-radius: 0.75rem; border: 1px solid #D1D5DB; font-size: 0.75rem; background: white; }
.review-submit { width: 100%; padding: 0.5rem; background: var(--color-soft-purple); color: white; border-radius: 0.5rem; font-family: var(--font-heading); font-weight: 800; font-size: 0.75rem; cursor: pointer; }
/* Scope details */
.scope-niche-tag { padding: 0.25rem 0.625rem; border-radius: 0.375rem; font-size: 0.625rem; font-family: 'Courier New', monospace; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: white; }
.scope-ping-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--color-gulal); animation: ping 1s cubic-bezier(0,0,0.2,1) infinite; }
.feature-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.feature-item { display: flex; align-items: center; gap: 0.625rem; font-size: 0.8125rem; color: #374151; padding: 0.75rem; border-radius: 0.75rem; background: #FAFAF9; border: 1px solid rgba(229,231,235,0.5); transition: all 0.15s; cursor: pointer; }
.feature-item:hover { background: white; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.scope-footer { padding-top: 1.25rem; border-top: 1px solid #E5E7EB; display: flex; flex-direction: column; gap: 1rem; }
@media (min-width:640px) { .scope-footer { flex-direction: row; align-items: center; justify-content: space-between; } }
.btn-book-build { padding: 0.75rem 1.5rem; background: var(--color-royal); color: white; font-family: var(--font-heading); font-weight: 800; border-radius: 9999px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; box-shadow: 0 4px 12px rgba(30,58,138,0.2); transition: all 0.2s; }
.btn-book-build:hover { opacity: 0.9; }
.btn-splash-colors { padding: 0.75rem 1.25rem; border-radius: 9999px; border: 1px solid #E5E7EB; background: var(--color-brand-bg); color: #57534E; font-family: var(--font-heading); font-weight: 800; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; display: flex; align-items: center; gap: 0.375rem; cursor: pointer; transition: all 0.2s; }
.btn-splash-colors:hover { background: #F3F4F6; }
/* Steps section */
.step-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (min-width:768px) { .step-cards { grid-template-columns: repeat(4, 1fr); } }
.step-card { padding: 1rem; border-radius: 1rem; border: 2px solid transparent; cursor: pointer; transition: all 0.3s; background: rgba(255,255,255,0.7); text-align: left; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.step-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.step-card.active { color: var(--color-royal); }
.step-expanded { display: flex; flex-direction: column; align-items: center; gap: 2rem; padding: 1.5rem; border-radius: 1.5rem; border: 1px solid rgba(229,231,235,0.6); background: rgba(var(--color-brand-bg), 0.4); position: relative; overflow: hidden; }
@media (min-width:768px) { .step-expanded { flex-direction: row; } }
.step-icon-bubble { width: 5rem; height: 5rem; border-radius: 50%; background: white; border: 1px solid #E7E5E0; box-shadow: 0 4px 16px rgba(0,0,0,0.06); display: flex; align-items: center; justify-content: center; position: relative; flex-shrink: 0; animation: bounce 1s infinite; }
.step-number-badge { position: absolute; top: -4px; right: -4px; width: 1.625rem; height: 1.625rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.625rem; font-family: 'Courier New', monospace; font-weight: 900; color: white; }
.step-big-number { position: absolute; right: -10px; bottom: -20px; font-family: var(--font-heading); font-weight: 900; font-size: 5rem; color: var(--color-royal); opacity: 0.03; pointer-events: none; user-select: none; }
/* Tech stack */
.tech-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width:640px) { .tech-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width:1024px) { .tech-grid { grid-template-columns: repeat(6, 1fr); } }
.tech-card { position: relative; padding: 1.5rem; background: rgba(255,255,255,0.7); backdrop-filter: blur(12px); border-radius: 1.25rem; display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; border: 1px solid rgba(229,231,235,0.6); box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.tech-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.95); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.tech-icon { width: 3rem; height: 3rem; border-radius: 0.75rem; background: #FAFAF9; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; transition: transform 0.3s; }
.tech-card:hover .tech-icon { transform: scale(1.15); }
.tech-card::after { content: ''; position: absolute; inset: 0; border-radius: 1.25rem; border: 2px dashed rgba(255,45,120,0.25); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.tech-card:hover::after { opacity: 1; }

/* ─── PRICING PAGE ─── */
.pricing-section { position: relative; padding: 6rem 1rem 8rem; overflow: hidden; z-index: 20; background: linear-gradient(to bottom, white, var(--color-brand-bg), white); }
.pricing-float-1 { position: absolute; top: 20%; left: 10%; width: 120px; height: 120px; border-radius: 50%; background: radial-gradient(circle, rgba(255,45,120,0.25) 0%, transparent 70%); filter: blur(20px); animation: float-gentle 8s ease-in-out infinite; pointer-events: none; opacity: 0.3; }
.pricing-float-2 { position: absolute; top: 50%; right: 10%; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(59,130,246,0.25) 0%, transparent 70%); filter: blur(20px); animation: float-gentle 10s ease-in-out infinite; animation-delay: 2s; pointer-events: none; opacity: 0.3; }
.pricing-float-3 { position: absolute; bottom: 10%; left: 30%; width: 140px; height: 140px; border-radius: 50%; background: radial-gradient(circle, rgba(250,204,21,0.2) 0%, transparent 70%); filter: blur(20px); animation: float-gentle 12s ease-in-out infinite; animation-delay: 1s; pointer-events: none; opacity: 0.3; }
.offer-banner { border-radius: 1rem; padding: 0.75rem 1.5rem; box-shadow: 0 8px 24px rgba(0,0,0,0.15); display: flex; flex-direction: column; align-items: center; gap: 0.75rem; position: relative; overflow: hidden; }
@media (min-width:640px) { .offer-banner { flex-direction: row; padding: 0.75rem 2rem; } }
.offer-ping-1 { position: absolute; top: -6px; left: -6px; width: 12px; height: 12px; border-radius: 50%; background: #FDE047; animation: ping 1s cubic-bezier(0,0,0.2,1) infinite; }
.offer-ping-2 { position: absolute; bottom: -4px; right: -4px; width: 10px; height: 10px; border-radius: 50%; background: #7DD3FC; animation: bounce 1s infinite; }
.pricing-cards-wrapper { position: relative; }
.pricing-cards-scroll {
  display: flex; gap: 2rem;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 0 1rem 2rem;
}
/* Hide scrollbar */
.pricing-cards-scroll::-webkit-scrollbar { display: none; }
.pricing-cards-scroll { -ms-overflow-style: none; scrollbar-width: none; }
@media (min-width:768px) { .pricing-cards-scroll { display: grid; grid-template-columns: repeat(3, 1fr); overflow-x: visible; padding: 0; } }
.pricing-card-wrap { min-width: 85vw; scroll-snap-align: center; display: flex; flex-direction: column; }
@media (min-width:640px) { .pricing-card-wrap { min-width: 26rem; } }
@media (min-width:768px) { .pricing-card-wrap { min-width: 0; scroll-snap-align: none; } }
.pricing-card {
  flex: 1; border-radius: 1.5rem; padding: 2rem;
  position: relative; overflow: hidden;
  transition: all 0.3s; display: flex; flex-direction: column; justify-content: space-between;
}
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card.featured:hover { transform: translateY(-9px); }
.pricing-accent-bar { position: absolute; top: 0; left: 0; right: 0; height: 6px; }
.pricing-most-popular {
  position: absolute; top: 1rem; right: 1rem;
  background: linear-gradient(to right, var(--color-sunny), #FB923C, var(--color-gulal));
  color: #292524; font-size: 0.5625rem;
  font-family: var(--font-heading); font-weight: 900;
  padding: 0.25rem 0.875rem; border-radius: 9999px;
  text-transform: uppercase; letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 0.25rem;
}
.pricing-most-popular svg { animation: spin-slow 4s linear infinite; }
.pricing-tier-label { font-size: 0.6875rem; font-family: 'Courier New', monospace; font-weight: 700; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.1em; }
.pricing-icon-box { padding: 0.5rem; border-radius: 1rem; }
.pricing-card-title { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--color-royal); letter-spacing: -0.025em; }
.pricing-card-tagline { font-family: var(--font-handwritten); font-size: 1.25rem; margin-top: 0.25rem; font-weight: 600; }
.pricing-price-box { margin: 1.5rem 0; padding: 1.125rem 1.25rem; border-radius: 1rem; position: relative; overflow: hidden; transition: all 0.3s; border: 1px solid; }
.pricing-price-label { font-size: 0.625rem; font-family: 'Courier New', monospace; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.25rem; }
.pricing-currency { font-size: 1.25rem; font-weight: 500; vertical-align: top; }
.pricing-amount { font-family: var(--font-sans); font-weight: 900; font-size: clamp(2rem, 4vw, 2.5rem); color: var(--color-royal); letter-spacing: -0.025em; }
.pricing-corner-deco { position: absolute; bottom: -3rem; right: -3rem; width: 6rem; height: 6rem; border-radius: 50%; pointer-events: none; }
.pricing-features { display: flex; flex-direction: column; gap: 0.875rem; margin: 2rem 0; }
.pricing-feature { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.8125rem; font-weight: 500; }
.pricing-check-icon { width: 1.25rem; height: 1.25rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; transition: all 0.3s; }
.pricing-check-icon svg { width: 0.875rem; height: 0.875rem; }
.pricing-cta-btn { width: 100%; padding: 1.125rem; border-radius: 1rem; color: white; font-family: var(--font-heading); font-weight: 800; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; border: none; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.pricing-cta-btn:hover { transform: scale(1.03); filter: brightness(1.05); }
.pricing-mobile-dots { display: flex; align-items: center; justify-content: center; gap: 0.625rem; margin: 0.5rem 0 1.5rem; }
@media (min-width:768px) { .pricing-mobile-dots { display: none; } }
.pricing-mobile-dot { height: 10px; border-radius: 9999px; background: #D1D5DB; border: none; cursor: pointer; transition: all 0.3s; width: 10px; }
.pricing-mobile-dot.active { width: 1.75rem; background: var(--color-gulal); box-shadow: 0 0 6px var(--color-gulal); }
.trust-note { max-width: 56rem; margin: 3rem auto 0; background: #FAFAF9; border: 1px solid #E7E5E0; border-radius: 1rem; padding: 1.625rem; text-align: center; position: relative; overflow: hidden; }
.pricing-faq-section { max-width: 56rem; margin: 6rem auto 0; }
.faq-accordion { background: rgba(255,255,255,0.7); backdrop-filter: blur(12px); border-radius: 1rem; border: 1px solid #E7E5E0; overflow: hidden; transition: all 0.3s; margin-bottom: 1rem; }
.faq-question { width: 100%; text-align: left; padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; font-family: var(--font-heading); font-weight: 800; font-size: 0.9375rem; color: var(--color-royal); cursor: pointer; background: none; border: none; transition: all 0.2s; }
.faq-question:hover { color: var(--color-gulal); background: #FAFAF9; }
.faq-chevron { width: 1rem; height: 1rem; color: #9CA3AF; flex-shrink: 0; transition: transform 0.3s; }
.faq-accordion.open .faq-chevron { transform: rotate(180deg); color: var(--color-gulal); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, opacity 0.3s ease; opacity: 0; }
.faq-accordion.open .faq-answer { max-height: 500px; opacity: 1; }
.faq-answer-inner { padding: 0.5rem 1.5rem 1.5rem; font-size: 0.875rem; color: #57534E; line-height: 1.7; border-top: 1px solid rgba(229,231,235,0.5); background: rgba(var(--color-brand-bg), 0.4); }
.coupon-code { font-weight: 700; text-decoration: underline; cursor: pointer; }
.copied-msg { display: inline-block; background: #F0FDF4; color: #16A34A; font-size: 0.75rem; padding: 0.25rem 0.75rem; border-radius: 9999px; margin-left: 0.5rem; font-weight: 700; }

/* ─── PORTFOLIO PAGE ─── */
.portfolio-page { padding: 3rem 0 5rem; }
.portfolio-filters { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.filter-btn { padding: 0.5rem 1.25rem; border-radius: 9999px; border: 2px solid transparent; font-family: var(--font-heading); font-weight: 700; font-size: 0.875rem; cursor: pointer; transition: all 0.25s; background: rgba(255,255,255,0.7); color: #9CA3AF; }
.filter-btn:hover { color: #374151; border-color: #D1D5DB; }
.filter-btn.active { color: var(--color-royal); border-color: var(--color-royal); background: rgba(30,58,138,0.06); }
.portfolio-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width:640px) { .portfolio-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width:1024px) { .portfolio-grid { grid-template-columns: repeat(4, 1fr); } }
.project-card { border-radius: 1.5rem; overflow: hidden; background: white; border: 1px solid rgba(229,231,235,0.8); box-shadow: 0 2px 8px rgba(0,0,0,0.04); cursor: pointer; transition: all 0.3s; opacity: 0; transform: translateY(20px); }
.project-card.visible { animation: fade-up 0.5s ease forwards; }
.project-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.project-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.project-card-body { padding: 1.25rem; }
.project-card-cat { display: inline-block; font-size: 0.625rem; font-family: 'Courier New', monospace; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.25rem 0.625rem; border-radius: 9999px; margin-bottom: 0.75rem; }
.project-card-title { font-family: var(--font-heading); font-weight: 800; font-size: 1rem; color: var(--color-royal); line-height: 1.3; }
.project-card-desc { font-size: 0.75rem; color: #78716C; margin-top: 0.5rem; line-height: 1.5; }
.project-card-tags { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-top: 0.875rem; }
.project-tag { font-size: 0.5625rem; font-family: 'Courier New', monospace; font-weight: 700; padding: 0.25rem 0.5rem; border-radius: 0.375rem; background: #F3F4F6; color: #57534E; }
.project-card-cta { margin-top: 1rem; font-size: 0.75rem; font-family: var(--font-heading); font-weight: 800; color: var(--color-gulal); display: flex; align-items: center; gap: 0.25rem; }

/* ─── PROJECT MODAL ─── */
#project-modal-overlay {
  position: fixed; inset: 0; z-index: 50;
  display: none; align-items: center; justify-content: center;
  padding: 1rem; background: rgba(30,58,138,0.4);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
#project-modal-overlay.open { display: flex; }
#project-modal {
  width: 100%; max-width: 56rem;
  max-height: 90vh; display: flex; flex-direction: column;
  border-radius: 1.5rem; overflow: hidden;
  box-shadow: 0 24px 64px rgba(30,58,138,0.25);
  animation: modal-enter 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.modal-top-bar { height: 8px; background: linear-gradient(to right, var(--color-gulal), var(--color-sunny), var(--color-vibrant-green)); }
.modal-header { display: flex; justify-content: space-between; align-items: flex-start; padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); }
.modal-cat-badge { padding: 0.125rem 0.625rem; border-radius: 9999px; font-size: 0.75rem; font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.modal-title { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--color-royal); margin-top: 0.25rem; }
.modal-close-btn { padding: 0.625rem; border-radius: 50%; color: #9CA3AF; cursor: pointer; transition: all 0.2s; background: none; border: none; }
.modal-close-btn:hover { background: #F3F4F6; color: #374151; }
.modal-body { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 2rem; }
.modal-content-grid { display: grid; gap: 2rem; }
@media (min-width:768px) { .modal-content-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.modal-story-h4 { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; color: var(--color-royal); display: flex; align-items: center; gap: 0.375rem; padding-bottom: 0.5rem; border-bottom: 1px solid #F3F4F6; }
.modal-story-text { margin-top: 0.875rem; font-size: 0.875rem; color: #57534E; line-height: 1.7; }
.modal-tags-title { font-family: var(--font-heading); font-weight: 600; font-size: 0.75rem; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.modal-tags-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.modal-tag-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 500; color: #374151; background: rgba(249,250,251,0.7); padding: 0.5rem; border-radius: 0.5rem; }
.modal-stats-title { font-family: var(--font-heading); font-weight: 700; font-size: 0.875rem; color: var(--color-royal); display: flex; align-items: center; gap: 0.375rem; margin-bottom: 1rem; }
.modal-stats-list { display: flex; flex-direction: column; gap: 0.875rem; }
.modal-stat-item { display: flex; align-items: center; justify-content: space-between; padding: 0.875rem; border-radius: 0.75rem; }
.modal-stat-label { font-size: 0.75rem; font-weight: 600; color: #57534E; }
.modal-stat-value { font-family: var(--font-heading); font-weight: 800; font-size: 1rem; color: var(--color-gulal); }
/* Before/After Slider */
.slider-section { display: flex; flex-direction: column; gap: 1rem; }
.slider-header { display: flex; align-items: flex-start; justify-content: space-between; }
.slider-badge { padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-family: var(--font-heading); font-weight: 700; transition: all 0.3s; }
.slider-badge.celebrating { background: rgba(34,197,94,0.1); color: var(--color-vibrant-green); animation: bounce 1s infinite; }
.slider-badge.normal { background: #FEF3C7; color: #D97706; }
.slider-container { position: relative; height: 250px; border-radius: 1rem; overflow: hidden; cursor: ew-resize; user-select: none; border: 1px solid #E5E7EB; box-shadow: inset 0 2px 4px rgba(0,0,0,0.06); }
@media (min-width:640px) { .slider-container { height: 350px; } }
.slider-after { position: absolute; inset: 0; }
.slider-after img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.slider-after-badge { position: absolute; top: 1rem; right: 1rem; background: linear-gradient(to right, var(--color-vibrant-green), #4ADE80); color: #0D1117; padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 700; border-radius: 9999px; display: flex; align-items: center; gap: 0.25rem; }
.slider-before { position: absolute; inset: 0; right: auto; background: #F3F4F6; overflow: hidden; }
.slider-before img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; filter: grayscale(1); opacity: 0.75; }
.slider-before-badge { position: absolute; top: 1rem; left: 1rem; background: rgba(68,64,60,0.9); color: white; padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 700; border-radius: 9999px; display: flex; align-items: center; gap: 0.25rem; }
.slider-divider { position: absolute; top: 0; bottom: 0; width: 6px; background: linear-gradient(to bottom, var(--color-gulal), var(--color-sunny), var(--color-vibrant-green)); transition: box-shadow 0.2s; }
.slider-divider:hover { box-shadow: 0 0 12px rgba(250,204,21,1); }
.slider-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 2.75rem; height: 2.75rem; background: linear-gradient(135deg, var(--color-gulal), var(--color-sunny)); border-radius: 50%; border: 2px solid white; box-shadow: 0 4px 14px rgba(0,0,0,0.25); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.1s; }
.slider-handle:hover { transform: translate(-50%,-50%) scale(1.15); }
.slider-handle:active { transform: translate(-50%,-50%) scale(0.95); }
.slider-celebration { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,45,120,0.15), transparent); pointer-events: none; display: flex; align-items: center; justify-content: center; }
.slider-spark { position: absolute; border-radius: 50%; animation: confetti-fly 1.5s ease-out infinite; }
.modal-footer { padding: 1.5rem; border-top: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.2); backdrop-filter: blur(4px); display: flex; flex-direction: column; gap: 1rem; }
@media (min-width:640px) { .modal-footer { flex-direction: row; align-items: center; justify-content: space-between; } }
.modal-footer-text { font-size: 0.75rem; color: #78716C; font-weight: 500; }
.modal-footer-btns { display: flex; align-items: center; gap: 0.75rem; width: 100%; }
@media (min-width:640px) { .modal-footer-btns { width: auto; } }
.btn-go-back { padding: 0.625rem 1.25rem; border-radius: 0.75rem; border: 1px solid #E5E7EB; color: #57534E; font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: all 0.2s; background: none; flex: 1; }
@media (min-width:640px) { .btn-go-back { flex: none; } }
.btn-go-back:hover { background: #F3F4F6; color: #1C1917; }
.btn-launch-site { padding: 0.625rem 1.25rem; border-radius: 0.75rem; background: linear-gradient(to right, var(--color-gulal), var(--color-sunny)); color: white; font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 0.375rem; flex: 1; box-shadow: 0 4px 12px rgba(255,45,120,0.3); }
@media (min-width:640px) { .btn-launch-site { flex: none; } }
.btn-launch-site:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(255,45,120,0.4); }

/* ─── CONTACT PAGE ─── */
.contact-page { position: relative; min-height: 100vh; background: var(--color-brand-bg); overflow-x: hidden; padding: 2.5rem 0 5rem; }
.color-pots { display: flex; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width:640px) { .color-pots { gap: 1.5rem; } }
.color-pot { display: flex; flex-direction: column; align-items: center; gap: 0.375rem; cursor: pointer; transition: transform 0.35s; background: none; border: none; }
.color-pot.active { transform: scale(1.1); }
.color-pot:hover:not(.active) { transform: scale(1.05); }
.pot-body { position: relative; width: 2.75rem; height: 2.75rem; border-radius: 0.75rem 0.75rem 1rem 1rem; border: 2px solid #D1D5DB; background: #E2B992; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; transition: box-shadow 0.2s; }
.pot-body:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.pot-color-fill { position: absolute; top: 0; left: 0; right: 0; height: 1.125rem; border-radius: 0 0 0.5rem 0.5rem; animation: pulse 2s ease-in-out infinite; }
.pot-ridge-1, .pot-ridge-2 { width: 100%; height: 4px; background: rgba(68,64,60,0.25); }
.pot-ridge-1 { margin-bottom: 6px; }
.pot-ridge-2 { margin-bottom: 12px; }
.pot-label { font-size: 0.5625rem; font-family: 'Courier New', monospace; font-weight: 900; color: #9CA3AF; }
.color-pot.active .pot-label { color: var(--color-royal); text-decoration: underline; }
/* Price calculator */
.calculator-panel { background: rgba(255,255,255,0.8); backdrop-filter: blur(12px); border: 1px solid #E5E7EB; border-radius: 1.5rem; padding: 1.5rem; box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
@media (min-width:640px) { .calculator-panel { padding: 2.25rem; } }
.calculator-grid { display: grid; gap: 2rem; }
@media (min-width:1024px) { .calculator-grid { grid-template-columns: 7fr 5fr; align-items: stretch; } }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.pkg-btn { padding: 1rem; border-radius: 0.75rem; border: 2px solid #E5E7EB; text-align: left; cursor: pointer; transition: all 0.3s; background: white; }
.pkg-btn.active { background: #FAFAF9; }
.pkg-name { font-family: var(--font-heading); font-weight: 800; color: var(--color-royal); font-size: 0.875rem; display: flex; align-items: center; justify-content: space-between; }
.pkg-price { font-size: 1rem; font-weight: 900; margin-top: 0.375rem; }
.pkg-target { font-size: 0.625rem; color: #9CA3AF; margin-top: 0.375rem; line-height: 1.4; }
.addon-row { display: flex; align-items: center; justify-content: space-between; padding: 0.875rem; border-radius: 0.75rem; border: 2px solid #E5E7EB; cursor: pointer; transition: all 0.3s; background: white; }
.addon-row.active-whatsapp { background: rgba(240,253,244,0.4); border-color: #86EFAC; }
.addon-row.active-notice { background: rgba(245,243,255,0.4); border-color: rgba(168,85,247,0.35); }
.addon-row.active-branding { background: rgba(255,251,235,0.4); border-color: #FCD34D; }
.addon-icon-box { width: 2rem; height: 2rem; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; background: #F3F4F6; color: #78716C; transition: all 0.2s; }
.addon-row.active-whatsapp .addon-icon-box { background: #22C55E; color: white; }
.addon-row.active-notice .addon-icon-box { background: #A855F7; color: white; }
.addon-row.active-branding .addon-icon-box { background: #F59E0B; color: white; }
.addon-check { width: 1.25rem; height: 1.25rem; border-radius: 0.375rem; border: 1px solid #E5E7EB; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; background: #FAFAF9; transition: all 0.2s; }
.addon-check.checked-whatsapp { background: #22C55E; border-color: #22C55E; color: white; }
.addon-check.checked-notice { background: #A855F7; border-color: #A855F7; color: white; }
.addon-check.checked-branding { background: #F59E0B; border-color: #F59E0B; color: white; }
/* Invoice slip */
.invoice-slip { background: var(--color-brand-bg); border: 2px solid #E5E7EB; border-radius: 1.25rem; padding: 1.625rem; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; min-height: 360px; }
.barcode-strip { height: 1.5rem; width: 100%; opacity: 0.6; display: flex; gap: 1px; filter: grayscale(1); }
.invoice-line { display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; }
.invoice-total-row { padding-top: 0.75rem; display: flex; justify-content: space-between; align-items: flex-end; }
.paste-btn { width: 100%; padding: 0.75rem; border-radius: 0.75rem; color: white; font-family: var(--font-heading); font-weight: 800; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; border: none; display: flex; align-items: center; justify-content: center; gap: 0.375rem; transition: all 0.2s; }
.paste-btn:hover { filter: brightness(1.05); }
/* Contact form */
.contact-form-area { background: rgba(255,255,255,0.95); border: 1px solid #E5E7EB; padding: 1.5rem; border-radius: 1.5rem; box-shadow: 0 8px 32px rgba(0,0,0,0.06); position: relative; overflow: hidden; }
@media (min-width:640px) { .contact-form-area { padding: 2.25rem; } }
.form-progress-bar { position: absolute; top: 0; left: 0; right: 0; height: 6px; background: #F3F4F6; }
.form-progress-fill { height: 100%; transition: width 0.4s cubic-bezier(0.34,1,0.64,1); }
.form-field { display: flex; flex-direction: column; gap: 0.375rem; }
.form-label { font-size: 0.75rem; font-weight: 700; font-family: var(--font-heading); color: #4B5563; text-transform: uppercase; letter-spacing: 0.05em; display: flex; align-items: center; gap: 0.25rem; }
.form-input, .form-textarea {
  width: 100%; background: var(--color-brand-bg); border: 1px solid #E5E7EB;
  border-radius: 0.75rem; padding: 0.875rem 1rem;
  font-size: 0.875rem; color: #1C1917; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: var(--font-sans);
}
.form-input:focus, .form-textarea:focus {
  box-shadow: 0 0 0 4px rgba(255,45,120,0.08);
}
.form-textarea { resize: none; }
.fuel-gauge { background: #FAFAF9; border: 1px solid rgba(229,231,235,0.8); padding: 0.625rem 0.75rem; border-radius: 0.75rem; display: flex; align-items: center; gap: 0.75rem; }
.fuel-icon { position: relative; width: 2.125rem; height: 2.125rem; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; color: white; }
.fuel-ping { position: absolute; bottom: -4px; right: -4px; }
.fuel-ping-outer { position: absolute; display: inline-flex; width: 10px; height: 10px; border-radius: 50%; background: rgba(74,222,128,0.75); animation: ping 1s cubic-bezier(0,0,0.2,1) infinite; }
.fuel-ping-inner { position: relative; display: inline-flex; border-radius: 50%; width: 10px; height: 10px; background: #22C55E; }
.submit-btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem 1.75rem; border-radius: 9999px; color: white; font-family: var(--font-heading); font-weight: 900; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; border: none; transition: all 0.2s; box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.submit-btn:hover:not(:disabled) { transform: scale(1.02); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
/* Launch overlay */
.launch-overlay { position: absolute; inset: 0; background: rgba(15,23,42,0.95); z-index: 40; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: white; padding: 1.5rem; border-radius: 1.5rem; }
.launch-spinner { width: 5rem; height: 5rem; border-radius: 50%; border: 4px solid rgba(255,45,120,0.24); border-top-color: var(--color-gulal); animation: spin 1s linear infinite; margin: 0 auto; }
/* Success state */
.success-icon { width: 6rem; height: 6rem; background: #F0FDF4; color: #22C55E; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto; box-shadow: 0 4px 16px rgba(0,0,0,0.06); position: relative; }
.success-check { position: absolute; top: -4px; right: -4px; width: 1.5rem; height: 1.5rem; background: #22C55E; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.625rem; font-weight: 700; }
/* FAQ (contact page) */
.contact-faq-section { max-width: 80rem; margin: 5rem auto 0; padding: 0 1rem; }
/* Info card */
.info-card { padding: 1.5rem; border-radius: 1.5rem; background: rgba(255,255,255,0.7); border: 1px solid #E7E5E0; }
.info-row { display: flex; align-items: flex-start; gap: 0.875rem; }
.info-icon { width: 2.25rem; height: 2.25rem; border-radius: 0.75rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
/* Hotspots */
.office-map { position: relative; height: 300px; background: linear-gradient(135deg, rgba(30,58,138,0.08), rgba(255,45,120,0.06)); border-radius: 1rem; overflow: hidden; border: 1px solid #E7E5E0; }
.hotspot-btn { position: absolute; width: 2rem; height: 2rem; background: var(--color-gulal); border: 2px solid white; border-radius: 50%; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; box-shadow: 0 0 0 4px rgba(255,45,120,0.2); animation: pulse 2s ease-in-out infinite; }
.hotspot-btn:hover { transform: scale(1.2); }
.hotspot-btn.active { background: var(--color-royal); box-shadow: 0 0 0 4px rgba(30,58,138,0.2); }
.hotspot-info { padding: 0.875rem; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); border: 1px solid #E7E5E0; border-radius: 0.75rem; }

/* ─── LOST KITE (404) PAGE ─── */
.lost-kite-page { position: relative; min-height: 80vh; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 1rem; overflow: hidden; background: var(--color-brand-bg); }
.lost-kite-inner { position: relative; text-align: center; max-width: 36rem; z-index: 20; display: flex; flex-direction: column; gap: 1.5rem; }
.error-warning-icon { display: inline-flex; padding: 0.75rem; border-radius: 9999px; background: #FEF3C7; color: #D97706; margin-bottom: 0.5rem; animation: bounce 1s infinite; }
.error-number { font-family: var(--font-heading); font-weight: 800; font-size: clamp(3rem, 12vw, 4.5rem); color: var(--color-royal); line-height: 1; }
.error-subtitle { font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.25rem, 3vw, 1.5rem); color: var(--color-gulal); }
.error-desc { color: #57534E; font-size: clamp(0.875rem, 2vw, 1rem); line-height: 1.65; max-width: 28rem; margin: 0 auto; }
.kite-animation-area { position: relative; height: 11rem; display: flex; align-items: center; justify-content: center; padding: 1.5rem 0; }
.lost-kite-svg { width: 4rem; height: 4rem; animation: kite-drift 7s ease-out infinite; transform-origin: bottom right; }
.wind-indicator { position: absolute; left: 25%; bottom: 33%; display: flex; align-items: center; gap: 0.375rem; color: #D1D5DB; animation: pulse 2s ease-in-out infinite; }
.fly-back-btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem 2rem; background: linear-gradient(to right, var(--color-gulal), var(--color-sunny)); color: white; font-family: var(--font-heading); font-weight: 800; font-size: clamp(0.875rem, 2vw, 1rem); border-radius: 9999px; border: none; cursor: pointer; box-shadow: 0 4px 16px rgba(255,45,120,0.3); transition: all 0.2s; }
.fly-back-btn:hover { transform: scale(1.05); box-shadow: 0 8px 24px rgba(255,45,120,0.4); }
.fly-back-btn:active { transform: scale(0.96); }

/* ─── FOOTER ─── */
#site-footer {
  position: relative; background: #0F172A; color: white;
  padding-top: 4rem; padding-bottom: 3rem;
  overflow: hidden; z-index: 25; margin-top: auto;
  border-top: 1px solid #1E293B;
}
.footer-inner { max-width: 80rem; margin: 0 auto; padding: 0 1rem; position: relative; z-index: 10; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width:768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width:1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-brand-icon { width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; background: linear-gradient(135deg, var(--color-gulal), var(--color-sunny)); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 900; color: #0F172A; font-size: 1.125rem; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.footer-brand-name { font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem; color: white; letter-spacing: -0.025em; }
.footer-section-title { font-family: var(--font-heading); font-weight: 800; color: var(--color-sunny); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-nav-links { display: grid; grid-template-columns: 1fr 1fr; gap-y: 0.625rem; gap-x: 0.5rem; list-style: none; }
.footer-nav-btn { font-size: 0.75rem; color: #CBD5E1; font-weight: 500; cursor: pointer; background: none; border: none; text-transform: capitalize; transition: color 0.2s; text-align: left; }
.footer-nav-btn:hover { color: var(--color-gulal); }
.footer-easter { width: auto; grid-column: span 2; margin-top: 0.25rem; }
.footer-easter .footer-nav-btn { color: #64748B; font-family: 'Courier New', monospace; font-size: 0.75rem; display: flex; align-items: center; gap: 0.375rem; }
.footer-address { color: #CBD5E1; font-size: 0.75rem; line-height: 1.7; }
.footer-email-label { color: var(--color-sunny); font-family: 'Courier New', monospace; font-size: 0.625rem; text-transform: uppercase; font-weight: 700; display: block; margin-top: 0.25rem; }
.footer-email { color: white; font-size: 0.875rem; margin-top: 0.125rem; transition: color 0.2s; cursor: default; }
.footer-email:hover { color: var(--color-gulal); }
.footer-social-icons { display: flex; gap: 0.625rem; padding-top: 0.375rem; align-items: center; }
.footer-social-btn { width: 2rem; height: 2rem; border-radius: 0.5rem; background: #1E293B; color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; border: none; }
.footer-social-btn:hover { background: var(--color-electric); }
.footer-social-btn:nth-child(3):hover { background: var(--color-gulal); transform: scale(1.1); }
.footer-confetti-btn { width: 2rem; height: 2rem; border-radius: 0.5rem; background: #1E293B; color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; border: none; }
.footer-confetti-btn:hover { background: var(--color-gulal); }
.footer-star-icon { width: 1rem; height: 1rem; color: var(--color-sunny); fill: var(--color-sunny); animation: pulse 2s ease-in-out infinite; }
.footer-bottom { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #1E293B; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; font-size: 0.75rem; color: #64748B; }
@media (min-width:640px) { .footer-bottom { flex-direction: row; } }
.footer-heart { display: flex; align-items: center; gap: 0.25rem; }
.heart-icon { width: 0.875rem; height: 0.875rem; color: #EF4444; fill: #EF4444; }
.footer-bottom-gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(30,41,59,0.2), transparent); pointer-events: none; }

/* ─── BACK TO TOP ─── */
#back-to-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 40;
  padding: 0.75rem; border-radius: 9999px;
  background: linear-gradient(135deg, var(--color-gulal), var(--color-sunny));
  color: white; cursor: pointer; border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 16px rgba(255,45,120,0.4);
  transition: all 0.2s; display: none;
}
#back-to-top.visible {
  display: flex; align-items: center; justify-content: center;
  animation: btn-appear 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
#back-to-top:hover { transform: scale(1.1); box-shadow: 0 8px 24px rgba(255,45,120,0.5); }

/* ─── SVG ICON HELPERS ─── */
.icon { display: inline-block; vertical-align: middle; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-fill { fill: currentColor; stroke: none; }

/* ─── RESPONSIVE HELPERS ─── */
.grid-1 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width:640px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width:768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width:1024px) { .grid-1.lg-2 { grid-template-columns: 1fr 1fr; } .grid-1.lg-12-5-7 { grid-template-columns: 7fr 5fr; } }
.text-center { text-align: center; }
.text-left { text-align: left; }
.hidden { display: none !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mx-auto { margin-inline: auto; }
.max-w-4xl { max-width: 56rem; }
.max-w-2xl { max-width: 42rem; }
.p-4 { padding: 1rem; }
.py-16 { padding-block: 4rem; }
.px-4 { padding-inline: 1rem; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.z-20 { position: relative; z-index: 20; }

/* ─── SCROLLBAR HIDE UTILITY ─── */
.scrollbar-none::-webkit-scrollbar { display: none; }
.scrollbar-none { -ms-overflow-style: none; scrollbar-width: none; }

/* ─── SECTION SPACING ─── */
.section-pad { padding: 4rem 1rem; }
@media (min-width:640px) { .section-pad { padding: 5rem 1rem; } }
@media (min-width:1024px) { .section-pad { padding: 7rem 1rem; } }

/* ─── WHY CHOOSE US PAGE sections ─── */
.wcu-page { padding: 3rem 0 5rem; }
.wcu-features-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width:640px) { .wcu-features-grid { grid-template-columns: 1fr 1fr; } }
.wcu-feature-card { padding: 2rem; border-radius: 1.5rem; transition: all 0.3s; }
.wcu-feature-card:hover { transform: translateY(-6px); }
/* WCU pillars grid - responsive */
#wcu-pillars-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width:640px) { #wcu-pillars-grid { grid-template-columns: 1fr 1fr; } }
/* WCU stats - always 2 col mobile, 4 col desktop */
#wcu-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (min-width:768px) { #wcu-stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* splash animation for contact */
.splash-backdrop { position: absolute; inset: 0; pointer-events: none; z-index: 10; border-radius: 50%; animation: splash-expand 0.8s ease-out forwards; }

/* check icon */
.check-green { color: #22C55E; width: 0.875rem; height: 0.875rem; }

/* Lucide star for testimonials */
.star-icon { width: 1.25rem; height: 1.25rem; fill: #FACC15; color: #FACC15; }

/* Form 2-col */
.form-row-2 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width:640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }

/* Quote icon */
.quote-watermark { position: absolute; right: 2rem; top: 2rem; width: 3rem; height: 3rem; color: rgba(255,45,120,0.05); pointer-events: none; }

/* PRICING CARD HOVER ANIMATIONS TO MATCH TSX */
.pricing-card:hover {
  box-shadow: 0 25px 50px -12px rgba(255, 45, 120, 0.1);
  border-color: rgba(255, 45, 120, 0.5);
}
.pricing-card.featured:hover {
  box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 1);
}
.pricing-card:nth-child(3):hover {
  box-shadow: 0 25px 50px -12px rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.5);
}

.pricing-card:hover .pricing-check-icon {
  transform: scale(1.1);
  background-color: var(--color-gulal) !important;
}
.pricing-card:hover .pricing-check-icon svg {
  color: white !important;
}

.pricing-card.featured:hover .pricing-check-icon {
  transform: scale(1.1) rotate(360deg);
  background-color: #3B82F6 !important;
}
.pricing-card.featured:hover .pricing-check-icon svg {
  color: white !important;
}

.pricing-card:nth-child(3):hover .pricing-check-icon {
  transform: scale(1.1);
  background-color: #22C55E !important;
}
.pricing-card:nth-child(3):hover .pricing-check-icon svg {
  color: white !important;
}

.pricing-cta-btn {
  position: relative;
  overflow: hidden;
}
.pricing-cta-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}
.pricing-cta-btn:hover .anim-icon {
  animation: pulse 1s infinite;
}
/* ── PORTFOLIO V2 INTERACTIVE SANDBOX ── */
.sandbox-container { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(8px); border: 2px solid rgba(229, 231, 235, 0.9); border-radius: 1.5rem; padding: 2.5rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.sandbox-header { display: flex; flex-direction: column; justify-content: space-between; border-bottom: 1px solid #E5E7EB; padding-bottom: 1.25rem; margin-bottom: 2rem; gap: 1rem; }
@media (min-width: 768px) { .sandbox-header { flex-direction: row; align-items: center; } }
.sandbox-super { font-size: 0.625rem; font-family: monospace; font-weight: 700; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.1em; display: block; }
.sandbox-title { font-family: var(--font-heading); font-weight: 900; font-size: 1.5rem; color: var(--color-royal); }
.sandbox-tabs { display: flex; flex-wrap: wrap; gap: 0.375rem; background: #F3F4F6; padding: 0.375rem; border-radius: 1rem; border: 1px solid #E5E7EB; }
.sandbox-tab { padding: 0.5rem 1rem; border-radius: 0.75rem; font-size: 0.75rem; font-family: var(--font-heading); font-weight: 800; cursor: pointer; transition: all 0.2s; background: transparent; color: #4B5563; border: none; }
.sandbox-tab:hover { background: #E5E7EB; }
.sandbox-tab.active { background: var(--color-royal); color: white; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }

.sandbox-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: stretch; }
@media (min-width: 1024px) { .sandbox-grid { grid-template-columns: 1fr 1fr; } }

/* Slider */
.sandbox-left { display: flex; flex-direction: column; justify-content: space-between; }
.sandbox-mini-title { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.625rem; font-family: monospace; font-weight: 800; color: var(--color-gulal); text-transform: uppercase; margin-bottom: 0.5rem; }
.sandbox-p-bold { font-family: var(--font-heading); font-weight: 800; font-size: 1.125rem; color: #1F2937; }
.sandbox-p-small { font-size: 0.75rem; color: #6B7280; font-family: var(--font-sans); margin-top: 0.25rem; line-height: 1.5; }

.sandbox-slider-wrapper { position: relative; height: 250px; border-radius: 1rem; overflow: hidden; border: 1px solid #E5E7EB; margin: 1.5rem 0; box-shadow: inset 0 2px 4px rgba(0,0,0,0.05); user-select: none; }
@media (min-width: 640px) { .sandbox-slider-wrapper { height: 320px; } }
.sandbox-before { position: absolute; inset: 0; background: #F3F4F6; }
.sandbox-before img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
.sandbox-after { position: absolute; inset: 0; pointer-events: none; z-index: 10; clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%); }
.sandbox-after img { width: 100%; height: 100%; object-fit: cover; }
.sandbox-tag-before { position: absolute; bottom: 0.75rem; left: 0.75rem; background: rgba(220,38,38,0.9); color: white; font-family: monospace; font-size: 0.5625rem; font-weight: 800; text-transform: uppercase; padding: 0.125rem 0.5rem; border-radius: 0.375rem; border: 1px solid #EF4444; }
.sandbox-tag-after { position: absolute; bottom: 0.75rem; right: 0.75rem; background: linear-gradient(to right, var(--color-gulal), var(--color-sunny)); color: white; font-family: monospace; font-size: 0.5625rem; font-weight: 900; text-transform: uppercase; padding: 0.125rem 0.5rem; border-radius: 0.375rem; pointer-events: auto; z-index:20; }
.sandbox-slider-line { position: absolute; top: 0; bottom: 0; width: 6px; background: #FBBF24; pointer-events: none; z-index: 20; left: 50%; transform: translateX(-50%); box-shadow: 0 0 12px rgba(245,158,11,0.6); }
.sandbox-slider-knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 2rem; height: 2rem; border-radius: 50%; background: #FBBF24; border: 2px solid white; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.sandbox-range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: col-resize; z-index: 30; }

.sandbox-slider-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.6875rem; font-family: monospace; font-weight: 700; background: #F9FAFB; padding: 0.375rem 0.875rem; border-radius: 0.75rem; border: 1px solid #E5E7EB; color: #6B7280; }

/* Right Engine */
.sandbox-right { border-radius: 1rem; border: 1px solid rgba(229,231,235,0.8); background: #FFFDF7; padding: 1.125rem; box-shadow: 0 1px 2px rgba(0,0,0,0.05); display: flex; flex-direction: column; justify-content: space-between; }
@media (min-width: 640px) { .sandbox-right { padding: 1.75rem; } }
.sandbox-right-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.sandbox-engine-badge { font-family: monospace; font-size: 0.625rem; font-weight: 800; text-transform: uppercase; padding: 0.125rem 0.625rem; border-radius: 0.375rem; background: var(--color-royal); color: white; letter-spacing: 0.1em; }
.sandbox-client-badge { font-size: 0.625rem; font-family: var(--font-sans); font-weight: 700; color: #9CA3AF; }
.sandbox-client-badge strong { color: #374151; font-weight: 700; }
.sandbox-right-title { font-family: var(--font-heading); font-weight: 900; font-size: 1.125rem; color: var(--color-royal); }
.sandbox-right-desc { font-size: 0.75rem; color: #6B7280; font-family: var(--font-sans); margin-top: 0.25rem; }

.sandbox-form-container { display: none; flex-direction: column; gap: 1rem; animation: fade-in 0.3s ease; }
.sandbox-form-container.active { display: flex; }
.feature-focus-box { padding: 0.75rem; border: 1px solid transparent; border-radius: 0.75rem; }
.feature-focus-box span { font-size: 0.5625rem; font-family: monospace; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 0.125rem; }
.feature-focus-box p { font-size: 0.75rem; font-family: var(--font-heading); font-weight: 800; color: #374151; }

.sandbox-label { display: block; font-size: 0.625rem; font-family: monospace; font-weight: 700; color: #6B7280; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.sandbox-input { width: 100%; font-size: 0.75rem; font-family: var(--font-sans); background: white; border: 1px solid #D1D5DB; border-radius: 0.75rem; padding: 0.625rem 0.75rem; outline: none; }
.sandbox-input:focus { border-color: var(--color-gulal); box-shadow: 0 0 0 2px rgba(255,45,120,0.2); }
.sandbox-btn { font-family: var(--font-heading); font-weight: 900; font-size: 0.75rem; padding: 0.625rem 1rem; border-radius: 0.75rem; border: none; cursor: pointer; transition: all 0.2s; text-align: center; }
.sandbox-btn.primary { background: var(--color-gulal); color: white; }
.sandbox-btn.primary.p2 { background: #3B82F6; }
.sandbox-btn.primary.p4 { background: var(--color-royal); }
.sandbox-btn.primary:hover { transform: translateY(-1px); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.sandbox-btn.outline { background: white; border: 1px solid #D1D5DB; color: #6B7280; }
.sandbox-btn.outline:hover { border-color: #9CA3AF; color: var(--color-royal); }

.sim-list-box { display: flex; flex-direction: column; gap: 0.5rem; max-height: 120px; overflow-y: auto; padding-right: 0.25rem; }
.sim-list-item { padding: 0.625rem; border-radius: 0.75rem; background: white; border: 1px solid #E5E7EB; display: flex; align-items: center; justify-content: space-between; animation: slide-in-right 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.sim-item-l { display: flex; align-items: center; gap: 0.5rem; }
.sim-check { width: 1.25rem; height: 1.25rem; border-radius: 50%; background: #D1FAE5; color: #059669; display: flex; align-items: center; justify-content: center; font-size: 0.625rem; font-weight: 700; }
.sim-item-l p { font-family: var(--font-heading); font-weight: 900; color: #1E3A8A; font-size: 0.75rem; margin: 0; }
.sim-item-l span { font-size: 0.5625rem; color: #9CA3AF; font-family: monospace; letter-spacing: 0.05em; }
.sim-item-time { font-family: monospace; font-size: 0.5rem; color: #9CA3AF; text-transform: uppercase; background: #F9FAFB; border: 1px solid #E5E7EB; padding: 0.125rem 0.375rem; border-radius: 0.375rem; }

.sim-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.sim-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.sim-flex-wrap { display: flex; flex-wrap: wrap; gap: 0.375rem; }

.sim-select-btn { padding: 0.625rem; border-radius: 0.75rem; border: 1px solid #E5E7EB; background: white; color: #4B5563; font-family: var(--font-heading); font-weight: 700; font-size: 0.75rem; text-align: left; cursor: pointer; transition: all 0.2s; }
.sim-select-btn.active { background: var(--color-royal); border-color: var(--color-royal); color: white; }
.sim-slot-btn { padding: 0.5rem 0.75rem; border-radius: 0.5rem; border: 1px solid #E5E7EB; font-family: monospace; font-size: 0.625rem; font-weight: 700; cursor: pointer; transition: all 0.2s; background: #F9FAFB; color: #4B5563; }
.sim-slot-btn.active { background: #D1FAE5; border-color: #6EE7B7; color: #065F46; }

.sim-msg { padding: 0.75rem; border-radius: 0.75rem; border: 1px solid transparent; font-family: var(--font-sans); font-size: 0.75rem; display: flex; align-items: center; gap: 0.5rem; animation: fade-in 0.3s ease; margin-top: 0.75rem; background: #ECFDF5; border-color: #A7F3D0; color: #065F46; }
.sim-msg strong { font-family: var(--font-heading); font-weight: 800; color: #064E3B; }

.sim-month-btn { padding: 0.375rem 0.5rem; border-radius: 0.5rem; border: 1px solid #E5E7EB; font-family: monospace; font-size: 0.75rem; font-weight: 700; cursor: pointer; transition: all 0.2s; background: white; color: #4B5563; }
.sim-month-btn.active { background: #312E81; border-color: #1E1B4B; color: var(--color-sunny); }
.sim-addon-btn { padding: 0.5rem; border-radius: 0.75rem; font-family: var(--font-heading); font-weight: 700; font-size: 0.75rem; display: flex; justify-content: space-between; align-items: center; border: 1px solid #E5E7EB; background: white; color: #6B7280; cursor: pointer; transition: all 0.2s; }
.sim-addon-btn.active { background: rgba(34, 197, 94, 0.15); border-color: #22C55E; color: #15803D; }
.sim-gym-bill { padding: 0.875rem; border-radius: 1rem; background: #312E81; color: white; font-family: monospace; font-size: 0.625rem; margin-top: 0.75rem; }
.flex-bw { display: flex; justify-content: space-between; align-items: center; color: #D1D5DB; margin-bottom: 0.25rem; }

.sim-cafe-btn { padding: 0.625rem; border-radius: 0.75rem; border: 1px solid #E5E7EB; text-align: left; background: white; cursor: pointer; display: flex; flex-direction: column; justify-content: space-between; gap: 0.5rem; transition: all 0.2s; }
.sim-cafe-btn strong { font-family: var(--font-heading); font-weight: 900; font-size: 0.75rem; color: #4B5563; }
.sim-cafe-btn span { font-family: monospace; font-weight: 700; font-size: 0.5625rem; color: #9CA3AF; }
.sim-cafe-btn.active { background: rgba(168, 85, 247, 0.1); border-color: #A855F7; }
.sim-cafe-btn.active strong { color: var(--color-royal); }
.sim-cafe-btn.active span { color: var(--color-gulal); }

.sim-cafe-progress-box { padding: 0.75rem; border-radius: 0.75rem; background: #FAF5FF; border: 1px solid #F3E8FF; margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.375rem; }
.sim-cafe-progress-box .flex-bw { color: #6B21A8; font-family: monospace; font-weight: 800; font-size: 0.5625rem; margin-bottom: 0; }
.sim-progress-bar { width: 100%; height: 6px; background: #E5E7EB; border-radius: 9999px; overflow: hidden; }
.sim-progress-fill { height: 100%; background: linear-gradient(to right, var(--color-gulal), #A855F7); width: 0%; transition: width 0.3s ease; }

.sandbox-footer { padding-top: 1.25rem; margin-top: 1.25rem; border-top: 1px solid #E5E7EB; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; font-size: 0.6875rem; font-family: monospace; font-weight: 700; color: #9CA3AF; }
.pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: #10B981; animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.sandbox-view-btn { background: none; border: none; font-family: var(--font-heading); font-weight: 900; color: var(--color-gulal); font-size: 0.75rem; cursor: pointer; transition: color 0.2s; display: flex; align-items: center; }
.sandbox-view-btn:hover { color: var(--color-royal); }

/* Portfolio Search & Filters */
.portfolio-controls { background: rgba(255,255,255,0.7); backdrop-filter: blur(12px); border-radius: 1rem; padding: 1.25rem; border: 1px solid rgba(229,231,235,0.5); display: flex; flex-direction: column; gap: 1rem; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
@media (min-width: 768px) { .portfolio-controls { flex-direction: row; align-items: center; justify-content: space-between; } }
.search-box { flex: 1; display: flex; align-items: center; gap: 0.5rem; background: white; padding: 0.5rem 0.875rem; border-radius: 0.75rem; border: 1px solid rgba(229,231,235,0.85); }
.search-box input { width: 100%; border: none; background: transparent; font-size: 0.75rem; font-family: var(--font-sans); color: #1F2937; outline: none; }
.sort-box { display: flex; align-items: center; gap: 0.875rem; font-size: 0.75rem; font-family: var(--font-sans); }
.sort-btns { display: flex; background: white; border-radius: 0.75rem; border: 1px solid #E5E7EB; overflow: hidden; font-family: var(--font-heading); font-weight: 800; font-size: 0.75rem; }
.sort-btns button { padding: 0.375rem 0.75rem; background: white; color: #4B5563; border: none; cursor: pointer; transition: all 0.2s; }
.sort-btns button:hover { background: #F9FAFB; }
.sort-btns button.active { background: var(--color-royal); color: white; }

/* Bunting Category Tabs */
.bunting-tabs { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
@media (min-width: 640px) { .bunting-tabs { gap: 1.5rem; } }
.bunting-rope { position: absolute; top: 26px; left: 2.5rem; right: 2.5rem; height: 2px; background: #E5E7EB; pointer-events: none; z-index: -1; }
.bunting-tab { position: relative; padding: 0.75rem 1.25rem; border-radius: 0 0 1rem 1rem; border-left: 1px solid rgba(229,231,235,0.6); border-right: 1px solid rgba(229,231,235,0.6); border-bottom: 1px solid rgba(229,231,235,0.6); border-top: none; font-family: var(--font-heading); font-weight: 800; font-size: 0.75rem; cursor: pointer; transition: all 0.3s; display: flex; flex-direction: column; align-items: center; justify-content: space-between; width: 7rem; background: white; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
@media (min-width: 640px) { .bunting-tab { width: 8rem; font-size: 0.875rem; } }
.bunting-tab:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.bunting-tab.active { border-top: 4px solid var(--color-gulal); background: #FFFDF7; animation: bunting-swing 4s ease-in-out infinite alternate; }
.bunting-knob { width: 8px; height: 8px; border-radius: 50%; background: #D1D5DB; margin-bottom: 0.25rem; }
.b-l { color: #6B7280; transition: color 0.3s; }
.bunting-tab.active .b-l { color: var(--color-gulal); font-weight: 900; }
.bunting-icon { color: #D1D5DB; margin-top: 0.375rem; font-size: 0.75rem; }
@keyframes bunting-swing {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(3deg); }
  100% { transform: translateY(0) rotate(-2deg); }
}

/* Portfolio New Grid */
.portfolio-grid-new { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .portfolio-grid-new { grid-template-columns: 1fr 1fr; } }
.new-p-card { background: white; border: 1px solid rgba(229,231,235,0.9); border-radius: 1.5rem; padding: 1.5rem; box-shadow: 0 1px 2px rgba(0,0,0,0.05); cursor: pointer; transition: all 0.3s; display: flex; flex-direction: column; justify-content: space-between; }
.new-p-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.new-p-img-box { position: relative; height: 200px; border-radius: 1rem; overflow: hidden; background: #F3F4F6; border: 1px solid #E5E7EB; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .new-p-img-box { height: 240px; } }
.new-p-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.new-p-card:hover .new-p-img-box img { transform: scale(1.06); }
.card-holi-mask { position: absolute; inset: 0; background: linear-gradient(to top right, rgba(30,58,138,0.95), rgba(255,45,120,0.7), rgba(250,204,21,0.2)); opacity: 0; transition: opacity 0.3s; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; color: white; pointer-events: none; }
.new-p-card:hover .card-holi-mask { opacity: 1; }
.c-mask-title { font-size: 0.75rem; color: var(--color-sunny); font-weight: 600; display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.375rem; }
.c-mask-desc { font-family: var(--font-sans); font-size: 0.75rem; color: #F3F4F6; line-height: 1.5; }
.c-cat-badge { position: absolute; top: 1rem; left: 1rem; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); color: var(--color-royal); padding: 0.25rem 0.75rem; font-size: 0.625rem; font-family: var(--font-heading); font-weight: 800; border-radius: 9999px; border: 1px solid rgba(229,231,235,0.8); text-transform: uppercase; letter-spacing: 0.05em; }
.c-icon-badge { position: absolute; top: 1rem; right: 1rem; background: rgba(255,255,255,0.9); padding: 0.375rem; border-radius: 50%; font-size: 0.75rem; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }

.c-body-top { display: flex; justify-content: space-between; align-items: center; }
.c-client { font-size: 0.75rem; font-family: monospace; font-weight: 700; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.1em; }
.c-live { font-size: 0.625rem; padding: 0.125rem 0.5rem; background: #ECFDF5; color: #047857; font-weight: 700; border: 1px solid #A7F3D0; border-radius: 0.375rem; }
.c-title { margin-top: 0.625rem; font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem; color: var(--color-royal); letter-spacing: -0.025em; transition: color 0.3s; }
.new-p-card:hover .c-title { color: var(--color-gulal); }
.c-desc { margin-top: 0.5rem; color: #6B7280; font-size: 0.75rem; font-family: var(--font-sans); line-height: 1.5; }
@media (min-width: 640px) { .c-desc { font-size: 0.875rem; } }

.c-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; padding: 0.75rem; margin-top: 1.125rem; border-radius: 1rem; background: #F9FAFB; border: 1px solid #F3F4F6; text-align: center; }
.c-stat-item { border-right: 1px solid rgba(229,231,235,0.6); }
.c-stat-item:last-child { border-right: none; }
.c-stat-val { display: block; font-size: 0.9375rem; font-family: var(--font-heading); font-weight: 900; color: #312E81; line-height: 1.2; }
.c-stat-lbl { font-size: 0.5625rem; font-family: monospace; font-weight: 700; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.125rem; display: block; }

.c-tags { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 0.375rem; }
.c-tag { font-size: 0.625rem; font-weight: 600; color: #6B7280; background: #F3F4F6; padding: 0.25rem 0.625rem; border-radius: 0.375rem; border: 1px solid rgba(229,231,235,0.5); }
.c-tag:hover { background: #E5E7EB; }

.c-footer { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid #F3F4F6; display: flex; align-items: center; justify-content: space-between; font-family: var(--font-heading); font-weight: 800; font-size: 0.75rem; color: var(--color-gulal); }
.c-footer-l { color: #9CA3AF; font-family: monospace; font-size: 0.625rem; display: flex; align-items: center; gap: 0.25rem; }
.c-footer-r { display: flex; align-items: center; gap: 0.25rem; transition: color 0.3s; }
.new-p-card:hover .c-footer-r { color: var(--color-royal); }

/* Immersive Banner */
.immersive-banner { background: var(--color-royal); color: white; border-radius: 1.5rem; padding: 2rem; text-align: center; position: relative; overflow: hidden; }
@media (min-width: 640px) { .immersive-banner { padding: 3rem; } }
.immersive-blob-1 { position: absolute; top: 0; left: 0; width: 8rem; height: 8rem; background: rgba(255,45,120,0.1); border-radius: 50%; filter: blur(24px); transition: background 0.3s; pointer-events: none; }
.immersive-blob-2 { position: absolute; bottom: 0; right: 0; width: 11rem; height: 11rem; background: rgba(250,204,21,0.1); border-radius: 50%; filter: blur(24px); transition: background 0.3s; pointer-events: none; }
.immersive-banner:hover .immersive-blob-1 { background: rgba(255,45,120,0.2); }
.immersive-banner:hover .immersive-blob-2 { background: rgba(250,204,21,0.25); }
.immersive-title { font-family: var(--font-heading); font-weight: 900; font-size: 1.5rem; letter-spacing: -0.025em; position: relative; z-index: 2; }
@media (min-width: 640px) { .immersive-title { font-size: 1.875rem; } }
.immersive-desc { margin-top: 0.875rem; color: #D1D5DB; font-size: 0.75rem; font-family: var(--font-sans); max-width: 36rem; margin-left: auto; margin-right: auto; line-height: 1.5; position: relative; z-index: 2; }
@media (min-width: 640px) { .immersive-desc { font-size: 0.875rem; } }
.immersive-actions { margin-top: 2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; position: relative; z-index: 2; }
@media (min-width: 640px) { .immersive-actions { flex-direction: row; } }
.immersive-btn { padding: 0.75rem 1.5rem; background: linear-gradient(to right, var(--color-gulal), #FF70A6); color: white; font-family: var(--font-heading); font-weight: 900; font-size: 0.75rem; border-radius: 9999px; border: none; cursor: pointer; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); transition: transform 0.2s, color 0.2s; }
@media (min-width: 640px) { .immersive-btn { font-size: 0.875rem; } }
.immersive-btn:hover { transform: scale(1.03); color: var(--color-royal); }
.immersive-tag { font-size: 0.75rem; color: #D1D5DB; font-family: monospace; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.375rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 0.5rem; user-select: none; }


/* ========================================= */
/* MOBILE OPTIMIZATION POLISH                */
/* ========================================= */
@media (max-width: 639px) {
  /* Prevent horizontal overflow on mobile screens */
  body, .site-wrapper { overflow-x: hidden; }

  /* Bunting Tabs - allow horizontal scroll instead of wrap to keep flags looking like a rope */
  .bunting-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: -1rem; /* negative margin to span full width */
    margin-right: -1rem;
    scrollbar-width: none; /* hide scrollbar firefox */
    -webkit-overflow-scrolling: touch;
  }
  .bunting-tabs::-webkit-scrollbar { display: none; } /* hide scrollbar webkit */
  .bunting-rope { left: 0; right: 0; }

  /* Sandbox Grids - ensure 1 column on small screens */
  .sim-grid-3 { grid-template-columns: 1fr; }
  .sim-grid-2 { grid-template-columns: 1fr; }
  
  /* Portfolio search controls stack */
  .portfolio-controls { flex-direction: column; gap: 0.75rem; align-items: stretch; }
  
  /* Sandbox general adjustments */
  .sandbox-right { padding: 1rem; }
  .sandbox-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  
  /* Section padding scale down */
  .section-pad { padding: 3rem 1rem; }
  
  /* Typography fine-tuning for smaller displays */
  .hero-title { font-size: 2.25rem !important; }
  .section-title { font-size: 1.75rem !important; }
  .sandbox-title { font-size: 1.25rem !important; }
  
  /* Modal optimization */
  .modal-content {
    margin: 1rem;
    max-height: 90vh;
    border-radius: 1rem;
  }
  .modal-body {
    padding: 1rem;
  }
  
  /* Hide the desktop cursor trail on mobile entirely to improve performance */
  #cursor-dot { display: none !important; }

  /* Fix for Immersive Banner on mobile */
  .immersive-banner { padding: 2rem 1rem; text-align: center; }
  .immersive-actions { flex-direction: column; width: 100%; }
  .immersive-btn { width: 100%; text-align: center; }
}
