/* ====== GLOBAL RESET & BASE ====== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0b0f1a;
  width: 100%;
  position: relative;
}

/* ====== CSS VARIABLES ====== */
:root {
  --electric-cyan: #00f0ff;
  --bright-blue: #0066ff;
  --deep-blue: #0a1a3a;
  --vivid-purple: #8b5cf6;
  --hot-pink: #ec4899;
  --neon-green: #22ff8a;
  --amber: #ffaa00;
  --coral: #ff6b6b;
  --dark-bg: #0b0f1a;
  --card-bg: #111827;
  --card-border: rgba(0, 240, 255, 0.08);
}

/* ====== KEYFRAME ANIMATIONS ====== */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-60px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(60px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}
@keyframes floatReverse {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(18px) rotate(-3deg); }
}
@keyframes floatDiag {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(15px, -15px); }
  66% { transform: translate(-10px, 10px); }
}
@keyframes pulseGlow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.3)); }
  50% { filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.7)); }
}
@keyframes pulseGlowGold {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(255, 170, 0, 0.3)); }
  50% { filter: drop-shadow(0 0 30px rgba(255, 170, 0, 0.7)); }
}
@keyframes pulseGlowGreen {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(34, 255, 138, 0.3)); }
  50% { filter: drop-shadow(0 0 30px rgba(34, 255, 138, 0.7)); }
}
@keyframes pulseGlowPurple {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.3)); }
  50% { filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.7)); }
}
@keyframes textGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(0, 240, 255, 0.3), 0 0 20px rgba(0, 240, 255, 0.1); }
  50% { text-shadow: 0 0 20px rgba(0, 240, 255, 0.6), 0 0 40px rgba(0, 240, 255, 0.3), 0 0 60px rgba(0, 240, 255, 0.1); }
}
@keyframes borderGlow {
  0%, 100% { border-color: rgba(0, 240, 255, 0.2); box-shadow: 0 0 15px rgba(0, 240, 255, 0.1); }
  50% { border-color: rgba(0, 240, 255, 0.6); box-shadow: 0 0 30px rgba(0, 240, 255, 0.3), 0 0 60px rgba(0, 240, 255, 0.1); }
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 30px) scale(1.05); }
}
@keyframes spinSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes coinSpin {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}
@keyframes chartRise {
  0% { height: 0; opacity: 0; }
  100% { opacity: 1; }
}
@keyframes floatRocket {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes inputGlow {
  0%, 100% { border-color: rgba(0, 240, 255, 0.1); box-shadow: 0 0 8px rgba(0, 240, 255, 0.05); }
  50% { border-color: rgba(0, 240, 255, 0.3); box-shadow: 0 0 20px rgba(0, 240, 255, 0.12), inset 0 0 8px rgba(0, 240, 255, 0.03); }
}
@keyframes cornerPulse {
  0%, 100% { opacity: 0.4; filter: drop-shadow(0 0 4px rgba(0, 240, 255, 0.2)); }
  50% { opacity: 1; filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.5)); }
}

/* ====== BASE UTILITIES ====== */
img { max-width: 100%; height: auto; }
iframe { max-width: 100%; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0b0f1a; }
::-webkit-scrollbar-thumb { background: rgba(0, 240, 255, 0.2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0, 240, 255, 0.4); }

/* ====== NAVBAR ====== */
.navbar-toggler:focus { box-shadow: none !important; outline: none !important; }
@media (max-width: 991.98px) {
  .navbar-collapse { background: rgba(11, 15, 26, 0.98); padding: 16px; border-radius: 16px; margin-top: 12px; border: 1px solid rgba(0, 240, 255, 0.08); }
}
@media (min-width: 992px) {
  .navbar .container button[data-bs-toggle="collapse"] { display: none !important; }
}
.navbar {
  padding: 14px 0;
  background: rgba(11, 15, 26, 0.85) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.06);
  transition: all 0.4s ease;
  z-index: 1000;
}
.navbar.scrolled {
  background: rgba(11, 15, 26, 0.97) !important;
  border-bottom-color: rgba(0, 240, 255, 0.12);
  box-shadow: 0 4px 40px rgba(0, 240, 255, 0.06);
}
.navbar-brand {
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  color: #fff !important;
}
.navbar-brand span {
  background: linear-gradient(135deg, #00f0ff, #0066ff, #8b5cf6);
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar-brand i {
  color: #00f0ff;
  -webkit-text-fill-color: #00f0ff;
  margin-right: 8px;
  filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.6));
}
.nav-btn {
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.35s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
.nav-btn-outline {
  border: 1.5px solid rgba(0, 240, 255, 0.3);
  color: #00f0ff;
  background: transparent;
}
.nav-btn-outline:hover {
  border-color: #00f0ff;
  background: rgba(0, 240, 255, 0.08);
  color: #fff;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.2);
  transform: translateY(-2px);
}
.nav-btn-solid {
  background: linear-gradient(135deg, #00f0ff, #0066ff);
  color: #fff;
  border: none;
}
.nav-btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.35), 0 8px 25px rgba(0, 102, 255, 0.3);
  color: #fff;
}

/* ====== SECTION COMMON ====== */
section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.25;
}
.section-title .gradient-text {
  background: linear-gradient(135deg, #00f0ff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 650px;
  line-height: 1.8;
}

/* ====== BUTTONS ====== */
.btn-primary-gradient {
  background: linear-gradient(135deg, #00f0ff, #0066ff);
  color: #fff;
  border: none;
}
.btn-primary-gradient::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}
.btn-primary-gradient:hover::before { left: 100%; }
.btn-primary-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.4), 0 12px 35px rgba(0, 102, 255, 0.3);
  color: #fff;
}
.btn-outline-light-custom {
  border: 1.5px solid rgba(0, 240, 255, 0.2);
  color: #00f0ff;
  background: transparent;
}
.btn-outline-light-custom:hover {
  border-color: #00f0ff;
  background: rgba(0, 240, 255, 0.06);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.15);
}

/* ====== SCROLL ANIMATIONS ====== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.animate-on-scroll-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
.animate-delay-6 { transition-delay: 0.6s; }
.animate-delay-7 { transition-delay: 0.7s; }
.animate-delay-8 { transition-delay: 0.8s; }
.animate-delay-9 { transition-delay: 0.9s; }
.animate-delay-10 { transition-delay: 1.0s; }
.animate-delay-11 { transition-delay: 1.1s; }
.animate-delay-12 { transition-delay: 1.2s; }

/* ====== HERO DECORATIONS (shared shape/glow helpers) ====== */
.hero-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

/* ====== HERO SECTION (index page) ====== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0b0f1a 0%, #0f1a2e 25%, #0a1628 50%, #0f1020 75%, #0b0f1a 100%);
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
  overflow: hidden;
  z-index: 1;
}
.hero-grid {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
}
.hero .hero-glow-line {
  position: absolute;
  width: 200px; height: 2px;
  background: linear-gradient(90deg, transparent, #00f0ff, transparent);
  filter: blur(4px);
  opacity: 0.4;
  animation: floatReverse 5s ease-in-out infinite;
}
.hero .hero-glow-line:nth-child(2) {
  top: 20%; left: 10%;
  width: 300px;
  animation-delay: 1s;
}
.hero .hero-glow-line:nth-child(3) {
  bottom: 30%; right: 15%;
  width: 250px;
  animation-delay: 2s;
}
.hero .hero-shape {
  font-weight: 900;
  opacity: 0.4;
  mix-blend-mode: screen;
}
.hero .hero-shape.s-dollar {
  font-size: 5rem;
  color: #00f0ff;
  text-shadow: 0 0 40px rgba(0, 240, 255, 0.9), 0 0 80px rgba(0, 240, 255, 0.5), 0 0 120px rgba(0, 240, 255, 0.2);
  top: 7%; left: 3%;
  animation: float 7s ease-in-out infinite;
}
.hero .hero-shape.s-dollar2 {
  font-size: 6rem;
  color: #8b5cf6;
  text-shadow: 0 0 40px rgba(139, 92, 246, 0.9), 0 0 80px rgba(139, 92, 246, 0.5), 0 0 120px rgba(139, 92, 246, 0.2);
  bottom: 12%; right: 2%;
  animation: floatReverse 9s ease-in-out infinite;
}
.hero .hero-shape.s-euro {
  font-size: 3.5rem;
  color: #22ff8a;
  text-shadow: 0 0 40px rgba(34, 255, 138, 0.9), 0 0 80px rgba(34, 255, 138, 0.5), 0 0 120px rgba(34, 255, 138, 0.2);
  top: 55%; left: 0%;
  animation: floatDiag 8s ease-in-out infinite;
}
.hero .hero-shape.s-sterling {
  font-size: 5rem;
  color: #ffaa00;
  text-shadow: 0 0 40px rgba(255, 170, 0, 0.9), 0 0 80px rgba(255, 170, 0, 0.5), 0 0 120px rgba(255, 170, 0, 0.2);
  top: 15%; right: 5%;
  animation: float 10s ease-in-out infinite;
}
.hero .hero-shape.s-percent {
  font-size: 4.5rem;
  color: #ec4899;
  text-shadow: 0 0 40px rgba(236, 72, 153, 0.9), 0 0 80px rgba(236, 72, 153, 0.5), 0 0 120px rgba(236, 72, 153, 0.2);
  bottom: 25%; left: 4%;
  animation: floatReverse 8s ease-in-out infinite;
}
.hero .hero-shape.s-percent2 {
  font-size: 3rem;
  color: #00f0ff;
  text-shadow: 0 0 40px rgba(0, 240, 255, 0.9), 0 0 80px rgba(0, 240, 255, 0.5), 0 0 120px rgba(0, 240, 255, 0.2);
  top: 42%; right: 4%;
  animation: float 11s ease-in-out infinite;
}
.hero .hero-shape.s-chart {
  font-size: 4.5rem;
  color: #0066ff;
  text-shadow: 0 0 40px rgba(0, 102, 255, 0.9), 0 0 80px rgba(0, 102, 255, 0.5), 0 0 120px rgba(0, 102, 255, 0.2);
  bottom: 5%; left: 15%;
  animation: floatDiag 10s ease-in-out infinite;
}
.hero .hero-shape.s-plus {
  font-size: 3rem;
  color: #22ff8a;
  text-shadow: 0 0 40px rgba(34, 255, 138, 0.9), 0 0 80px rgba(34, 255, 138, 0.5), 0 0 120px rgba(34, 255, 138, 0.2);
  top: 75%; right: 6%;
  animation: float 6s ease-in-out infinite;
}
.hero .hero-shape.s-calc {
  font-size: 4rem;
  color: #8b5cf6;
  text-shadow: 0 0 40px rgba(139, 92, 246, 0.9), 0 0 80px rgba(139, 92, 246, 0.5), 0 0 120px rgba(139, 92, 246, 0.2);
  top: 30%; left: 0%;
  animation: floatReverse 12s ease-in-out infinite;
}
.hero .hero-shape.s-bitcoin {
  font-size: 4.5rem;
  color: #ffaa00;
  text-shadow: 0 0 40px rgba(255, 170, 0, 0.9), 0 0 80px rgba(255, 170, 0, 0.5), 0 0 120px rgba(255, 170, 0, 0.2);
  top: 12%; right: 18%;
  animation: float 9s ease-in-out infinite;
}
.hero .hero-shape.s-yen {
  font-size: 3.5rem;
  color: #22ff8a;
  text-shadow: 0 0 40px rgba(34, 255, 138, 0.9), 0 0 80px rgba(34, 255, 138, 0.5), 0 0 120px rgba(34, 255, 138, 0.2);
  top: 50%; left: 8%;
  animation: floatDiag 11s ease-in-out infinite;
}
.hero .hero-shape.s-trend {
  font-size: 4rem;
  color: #00f0ff;
  text-shadow: 0 0 40px rgba(0, 240, 255, 0.9), 0 0 80px rgba(0, 240, 255, 0.5), 0 0 120px rgba(0, 240, 255, 0.2);
  top: 3%; left: 20%;
  animation: floatReverse 7s ease-in-out infinite;
}
.hero .hero-shape.s-cash {
  font-size: 4rem;
  color: #ec4899;
  text-shadow: 0 0 40px rgba(236, 72, 153, 0.9), 0 0 80px rgba(236, 72, 153, 0.5), 0 0 120px rgba(236, 72, 153, 0.2);
  bottom: 15%; right: 12%;
  animation: float 10s ease-in-out infinite;
}
.hero .hero-shape.s-check {
  font-size: 3.5rem;
  color: #0066ff;
  text-shadow: 0 0 40px rgba(0, 102, 255, 0.9), 0 0 80px rgba(0, 102, 255, 0.5), 0 0 120px rgba(0, 102, 255, 0.2);
  top: 45%; right: 12%;
  animation: floatDiag 8s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #fff;
  animation: fadeInUp 0.8s 0.2s ease forwards;
  opacity: 0;
}
.hero h1 .num {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: -3px;
  display: inline-block;
  margin-right: 8px;
}
.hero h1 .text-group {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}
.hero h1 .highlight {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, #00f0ff, #0066ff, #8b5cf6, #ec4899);
  background-size: 300% 300%;
  animation: gradientShift 5s ease infinite, textGlow 3s ease-in-out infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .glow-text {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.5rem);
  display: inline-block;
  letter-spacing: 1px;
  animation: textGlow 3s ease-in-out infinite;
}
.hero-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00f0ff, #8b5cf6);
  border-radius: 2px;
  margin: 32px 0 28px;
  animation: fadeInUp 0.8s 0.35s ease forwards;
  opacity: 0;
}
.hero-actions {
  animation: fadeInUp 0.8s 0.5s ease forwards;
  opacity: 0;
}
.hero-actions .btn {
  padding: 14px 38px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* ====== HERO VISUAL CARD ====== */
.hero-visual-card {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  position: relative;
}
.hero-visual-card .card-inner {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 240, 255, 0.15);
  padding: 36px;
  position: relative;
  overflow: hidden;
  animation: borderGlow 3s ease-in-out infinite;
}
.hero-visual-card .card-inner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(0, 240, 255, 0.03), transparent, rgba(139, 92, 246, 0.03), transparent);
  animation: spinSlow 10s linear infinite;
  pointer-events: none;
}
.hero-visual-card .brand-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem;
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
  animation: floatRocket 3s ease-in-out infinite;
}
.hero-visual-card .brand-icon i {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  transform: rotate(-45deg);
}
.hero-visual-card .live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #22ff8a;
  background: rgba(34, 255, 138, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(34, 255, 138, 0.2);
  margin-left: auto;
}
.hero-visual-card .live-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22ff8a;
  box-shadow: 0 0 8px #22ff8a;
  animation: pulse 1.5s ease-in-out infinite;
}
.hero-visual-card .kpi-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-visual-card .kpi-item {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.hero-visual-card .kpi-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}
.hero-visual-card .kpi-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}
.hero-visual-card .kpi-value.green { color: #22ff8a; }
.hero-visual-card .kpi-value.red { color: #ff6b6b; }
.hero-visual-card .kpi-value.cyan { color: #00f0ff; }
.hero-visual-card .dashboard-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.hero-visual-card .donut-container {
  flex: 0 0 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-visual-card .donut {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: conic-gradient(#00f0ff 0% 45%, #8b5cf6 45% 70%, #ec4899 70% 85%, #ffaa00 85% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-visual-card .donut::after {
  content: '';
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #0f1a2e;
  position: absolute;
}
.hero-visual-card .donut-label {
  position: relative;
  z-index: 1;
  font-size: 0.55rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}
.hero-visual-card .breakdown-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.hero-visual-card .breakdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
}
.hero-visual-card .breakdown-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-visual-card .breakdown-name {
  color: rgba(255, 255, 255, 0.6);
  flex: 1;
}
.hero-visual-card .breakdown-pct {
  color: #fff;
  font-weight: 700;
}
.hero-visual-card .chart-section {
  margin-top: 4px;
}
.hero-visual-card .chart-section .chart-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 12px;
}
.hero-visual-card .chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
}
.hero-visual-card .chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #00f0ff, #0066ff);
  position: relative;
  min-height: 10px;
  transition: height 0.3s ease;
}
.hero-visual-card .chart-bar-label {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

/* ====== LICENSE SECTION ====== */
.license-section {
  padding: 80px 0;
  background: var(--dark-bg);
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(0, 240, 255, 0.04);
  border-bottom: 1px solid rgba(0, 240, 255, 0.04);
}
.license-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.5s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.license-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(0, 240, 255, 0.04), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.license-card:hover::before { opacity: 1; }
.license-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.08), 0 20px 40px -12px rgba(0, 0, 0, 0.5);
}
.license-card .icon {
  width: 68px; height: 68px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 18px;
  position: relative;
  transition: all 0.5s ease;
}
.license-card:nth-child(1) .icon {
  background: rgba(0, 240, 255, 0.1);
  color: #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}
.license-card:nth-child(2) .icon {
  background: rgba(255, 170, 0, 0.1);
  color: #ffaa00;
  box-shadow: 0 0 20px rgba(255, 170, 0, 0.1);
}
.license-card:hover .icon {
  transform: scale(1.1) rotateY(180deg);
}
.license-card:nth-child(1):hover .icon {
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.3);
}
.license-card:nth-child(2):hover .icon {
  box-shadow: 0 0 40px rgba(255, 170, 0, 0.3);
}
.license-card .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 8px;
}
.license-card .value {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  word-break: break-word;
}
.license-card .value.empty {
  color: rgba(255, 255, 255, 0.2);
  font-weight: 400;
  font-style: italic;
}

/* ====== FEATURES SECTION ====== */
.features-section {
  background: var(--dark-bg);
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #00f0ff, #0066ff, #8b5cf6);
  background-size: 200% 100%;
  animation: gradientShift 3s linear infinite;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 240, 255, 0.15);
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.06), 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.feature-icon {
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: all 0.5s ease;
  position: relative;
}
.feature-card:nth-child(1) .feature-icon { background: rgba(0, 240, 255, 0.1); color: #00f0ff; box-shadow: 0 0 15px rgba(0, 240, 255, 0.1); }
.feature-card:nth-child(2) .feature-icon { background: rgba(34, 255, 138, 0.1); color: #22ff8a; box-shadow: 0 0 15px rgba(34, 255, 138, 0.1); }
.feature-card:nth-child(3) .feature-icon { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; box-shadow: 0 0 15px rgba(139, 92, 246, 0.1); }
.feature-card:nth-child(4) .feature-icon { background: rgba(255, 170, 0, 0.1); color: #ffaa00; box-shadow: 0 0 15px rgba(255, 170, 0, 0.1); }
.feature-card:nth-child(5) .feature-icon { background: rgba(236, 72, 153, 0.1); color: #ec4899; box-shadow: 0 0 15px rgba(236, 72, 153, 0.1); }
.feature-card:nth-child(6) .feature-icon { background: rgba(0, 240, 255, 0.1); color: #00f0ff; box-shadow: 0 0 15px rgba(0, 240, 255, 0.1); }
.feature-card:nth-child(7) .feature-icon { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; box-shadow: 0 0 15px rgba(139, 92, 246, 0.1); }
.feature-card:nth-child(8) .feature-icon { background: rgba(255, 107, 107, 0.1); color: #ff6b6b; box-shadow: 0 0 15px rgba(255, 107, 107, 0.1); }
.feature-card:nth-child(9) .feature-icon { background: rgba(0, 150, 255, 0.1); color: #0096ff; box-shadow: 0 0 15px rgba(0, 150, 255, 0.1); }
.feature-card:nth-child(10) .feature-icon { background: rgba(255, 193, 7, 0.1); color: #ffc107; box-shadow: 0 0 15px rgba(255, 193, 7, 0.1); }
.feature-card:nth-child(11) .feature-icon { background: rgba(0, 200, 83, 0.1); color: #00c853; box-shadow: 0 0 15px rgba(0, 200, 83, 0.1); }
.feature-card:nth-child(12) .feature-icon { background: rgba(255, 45, 85, 0.1); color: #ff2d55; box-shadow: 0 0 15px rgba(255, 45, 85, 0.1); }
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotateY(180deg);
}
.feature-card:nth-child(1):hover .feature-icon { box-shadow: 0 0 35px rgba(0, 240, 255, 0.25); }
.feature-card:nth-child(2):hover .feature-icon { box-shadow: 0 0 35px rgba(34, 255, 138, 0.25); }
.feature-card:nth-child(3):hover .feature-icon { box-shadow: 0 0 35px rgba(139, 92, 246, 0.25); }
.feature-card:nth-child(4):hover .feature-icon { box-shadow: 0 0 35px rgba(255, 170, 0, 0.25); }
.feature-card:nth-child(5):hover .feature-icon { box-shadow: 0 0 35px rgba(236, 72, 153, 0.25); }
.feature-card:nth-child(6):hover .feature-icon { box-shadow: 0 0 35px rgba(0, 240, 255, 0.25); }
.feature-card:nth-child(7):hover .feature-icon { box-shadow: 0 0 35px rgba(139, 92, 246, 0.25); }
.feature-card:nth-child(8):hover .feature-icon { box-shadow: 0 0 35px rgba(255, 107, 107, 0.25); }
.feature-card:nth-child(9):hover .feature-icon { box-shadow: 0 0 35px rgba(0, 150, 255, 0.25); }
.feature-card:nth-child(10):hover .feature-icon { box-shadow: 0 0 35px rgba(255, 193, 7, 0.25); }
.feature-card:nth-child(11):hover .feature-icon { box-shadow: 0 0 35px rgba(0, 200, 83, 0.25); }
.feature-card:nth-child(12):hover .feature-icon { box-shadow: 0 0 35px rgba(255, 45, 85, 0.25); }
.feature-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0;
}

/* ====== FEATURE DETAILS ====== */
.details-section {
  background: rgba(17, 24, 39, 0.5);
}
.detail-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px;
  background: var(--card-bg);
  border-radius: 16px;
  transition: all 0.5s ease;
  height: 100%;
  border: 1px solid var(--card-border);
}
.detail-card:hover {
  border-color: rgba(0, 240, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.06), 0 15px 35px -10px rgba(0, 0, 0, 0.4);
}
.detail-card .icon-box {
  min-width: 50px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: all 0.4s ease;
}
.detail-card:nth-child(1) .icon-box { background: rgba(0, 240, 255, 0.1); color: #00f0ff; }
.detail-card:nth-child(2) .icon-box { background: rgba(34, 255, 138, 0.1); color: #22ff8a; }
.detail-card:nth-child(3) .icon-box { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.detail-card:nth-child(4) .icon-box { background: rgba(255, 170, 0, 0.1); color: #ffaa00; }
.detail-card:nth-child(5) .icon-box { background: rgba(236, 72, 153, 0.1); color: #ec4899; }
.detail-card:nth-child(6) .icon-box { background: rgba(0, 240, 255, 0.1); color: #00f0ff; }
.detail-card:nth-child(7) .icon-box { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.detail-card:nth-child(8) .icon-box { background: rgba(255, 107, 107, 0.1); color: #ff6b6b; }
.detail-card:nth-child(9) .icon-box { background: rgba(0, 150, 255, 0.1); color: #0096ff; }
.detail-card:nth-child(10) .icon-box { background: rgba(255, 193, 7, 0.1); color: #ffc107; }
.detail-card:nth-child(11) .icon-box { background: rgba(0, 200, 83, 0.1); color: #00c853; }
.detail-card:nth-child(12) .icon-box { background: rgba(255, 45, 85, 0.1); color: #ff2d55; }
.detail-card:hover .icon-box { transform: scale(1.1); }
.detail-card:nth-child(1):hover .icon-box { box-shadow: 0 0 25px rgba(0, 240, 255, 0.2); }
.detail-card:nth-child(2):hover .icon-box { box-shadow: 0 0 25px rgba(34, 255, 138, 0.2); }
.detail-card:nth-child(3):hover .icon-box { box-shadow: 0 0 25px rgba(139, 92, 246, 0.2); }
.detail-card:nth-child(4):hover .icon-box { box-shadow: 0 0 25px rgba(255, 170, 0, 0.2); }
.detail-card:nth-child(5):hover .icon-box { box-shadow: 0 0 25px rgba(236, 72, 153, 0.2); }
.detail-card:nth-child(6):hover .icon-box { box-shadow: 0 0 25px rgba(0, 240, 255, 0.2); }
.detail-card:nth-child(7):hover .icon-box { box-shadow: 0 0 25px rgba(139, 92, 246, 0.2); }
.detail-card:nth-child(8):hover .icon-box { box-shadow: 0 0 25px rgba(255, 107, 107, 0.2); }
.detail-card:nth-child(9):hover .icon-box { box-shadow: 0 0 25px rgba(0, 150, 255, 0.2); }
.detail-card:nth-child(10):hover .icon-box { box-shadow: 0 0 25px rgba(255, 193, 7, 0.2); }
.detail-card:nth-child(11):hover .icon-box { box-shadow: 0 0 25px rgba(0, 200, 83, 0.2); }
.detail-card:nth-child(12):hover .icon-box { box-shadow: 0 0 25px rgba(255, 45, 85, 0.2); }
.detail-card .text h6 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.detail-card .text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0;
}

/* ====== PAGE HEADER (login / signup) ====== */
.page-header {
  padding: 140px 0 40px;
  background: linear-gradient(135deg, #0b0f1a 0%, #0f1a2e 25%, #0a1628 50%, #0f1020 75%, #0b0f1a 100%);
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}
.page-header h1 .gradient-text {
  background: linear-gradient(135deg, #00f0ff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-header p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
  max-width: 550px;
  margin: 12px auto 0;
}
.page-header .hero-glow-line {
  position: absolute;
  width: 200px; height: 2px;
  background: linear-gradient(90deg, transparent, #00f0ff, transparent);
  filter: blur(4px);
  opacity: 0.3;
  animation: floatReverse 5s ease-in-out infinite;
  pointer-events: none;
}
.page-header .hero-glow-line:nth-child(2) {
  top: 15%; left: 5%;
  width: 300px;
  animation-delay: 1s;
}
.page-header .hero-glow-line:nth-child(3) {
  bottom: 25%; right: 10%;
  width: 250px;
  animation-delay: 2s;
}
.page-header .hero-shape {
  font-weight: 900;
  opacity: 0.3;
  mix-blend-mode: screen;
}
.page-header .hero-shape.s-dollar {
  font-size: 3.5rem;
  color: #00f0ff;
  text-shadow: 0 0 40px rgba(0, 240, 255, 0.9), 0 0 80px rgba(0, 240, 255, 0.5);
  top: 8%; left: 4%;
  animation: float 7s ease-in-out infinite;
}
.page-header .hero-shape.s-euro {
  font-size: 3rem;
  color: #22ff8a;
  text-shadow: 0 0 40px rgba(34, 255, 138, 0.9), 0 0 80px rgba(34, 255, 138, 0.5);
  bottom: 15%; right: 3%;
  animation: floatReverse 9s ease-in-out infinite;
}
.page-header .hero-shape.s-percent {
  font-size: 3rem;
  color: #ec4899;
  text-shadow: 0 0 40px rgba(236, 72, 153, 0.9), 0 0 80px rgba(236, 72, 153, 0.5);
  top: 55%; left: 1%;
  animation: floatDiag 8s ease-in-out infinite;
}
.page-header .hero-shape.s-chart {
  font-size: 2.5rem;
  color: #0066ff;
  text-shadow: 0 0 40px rgba(0, 102, 255, 0.9), 0 0 80px rgba(0, 102, 255, 0.5);
  bottom: 10%; left: 8%;
  animation: float 10s ease-in-out infinite;
}
.page-header .hero-shape.s-calc {
  font-size: 2.5rem;
  color: #8b5cf6;
  text-shadow: 0 0 40px rgba(139, 92, 246, 0.9), 0 0 80px rgba(139, 92, 246, 0.5);
  top: 30%; right: 2%;
  animation: floatReverse 12s ease-in-out infinite;
}
.page-header .hero-shape.s-plus {
  font-size: 2.5rem;
  color: #22ff8a;
  text-shadow: 0 0 40px rgba(34, 255, 138, 0.9), 0 0 80px rgba(34, 255, 138, 0.5);
  top: 70%; right: 5%;
  animation: float 6s ease-in-out infinite;
}

/* ====== FORM ELEMENTS (shared) ====== */
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}
.form-label .required {
  color: #ff6b6b;
  margin-left: 2px;
}
.form-control {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 10px;
  font-size: 0.9rem;
  color: #fff;
  transition: all 0.3s ease;
}
.form-control:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: #00f0ff;
  color: #fff;
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.82rem;
}
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0 30px #1a2332 inset;
  transition: background-color 5000s ease-in-out 0s;
}

/* ====== LOGIN FORM ====== */
.login-section {
  padding: 40px 0 80px;
  background: var(--dark-bg);
}
.login-card {
  background: var(--card-bg);
  border: 1px solid rgba(0, 240, 255, 0.08);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.login-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 80px; height: 80px;
  border-top: 3px solid #00f0ff;
  border-left: 3px solid #00f0ff;
  border-radius: 24px 0 0 0;
  animation: cornerPulse 4s ease-in-out infinite;
  pointer-events: none;
}
.login-card::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 80px; height: 80px;
  border-bottom: 3px solid #8b5cf6;
  border-right: 3px solid #8b5cf6;
  border-radius: 0 0 24px 0;
  animation: cornerPulse 4s ease-in-out infinite 2s;
  pointer-events: none;
}
.login-card:hover {
  border-color: rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.06), 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}
.login-card .login-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #00f0ff, #0066ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  margin: 0 auto 16px;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.25);
}
.login-card .login-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 28px;
}
.login-card .form-control {
  padding: 12px 14px;
  animation: inputGlow 3s ease-in-out infinite;
}
.login-card .form-control:focus {
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3), 0 0 0 2px rgba(0, 240, 255, 0.1);
  animation: none;
}
.forgot-link {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: all 0.3s ease;
}
.forgot-link:hover {
  color: #00f0ff;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}
.btn-login {
  background: linear-gradient(135deg, #00f0ff, #0066ff);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 48px;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.btn-login::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}
.btn-login:hover::before { left: 100%; }
.btn-login:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.4), 0 12px 35px rgba(0, 102, 255, 0.3);
  color: #fff;
}
.login-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.82rem;
  font-weight: 500;
}
.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0, 240, 255, 0.08);
}
.signup-link {
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.signup-link:hover {
  color: #00f0ff;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}
.signup-link i {
  margin-right: 6px;
}
.btn-cancel-login {
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
  text-decoration: none;
  margin-top: 12px;
  transition: all 0.3s ease;
}
.btn-cancel-login:hover {
  color: #ff6b6b;
}

/* ====== SIGNUP FORM ====== */
.form-section {
  padding: 40px 0 80px;
  background: var(--dark-bg);
}
.form-card {
  background: var(--card-bg);
  border: 1px solid rgba(0, 240, 255, 0.08);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.form-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 80px; height: 80px;
  border-top: 3px solid #00f0ff;
  border-left: 3px solid #00f0ff;
  border-radius: 24px 0 0 0;
  animation: cornerPulse 4s ease-in-out infinite;
  pointer-events: none;
}
.form-card::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 80px; height: 80px;
  border-bottom: 3px solid #8b5cf6;
  border-right: 3px solid #8b5cf6;
  border-radius: 0 0 24px 0;
  animation: cornerPulse 4s ease-in-out infinite 2s;
  pointer-events: none;
}
.form-card:hover {
  border-color: rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.06), 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}
.form-section-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 240, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-section-title i {
  color: #00f0ff;
  font-size: 1.3rem;
}
.form-card .form-control,
.form-card .form-select {
  padding-top: 10px;
  padding-bottom: 10px;
}
.form-card .form-control:focus,
.form-card .form-select:focus {
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1), 0 0 0 2px rgba(0, 240, 255, 0.05);
}
.form-select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 10px;
  font-size: 0.9rem;
  color: #fff;
  transition: all 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300f0ff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  padding-right: 36px;
  animation: selectGlow 2.5s ease-in-out infinite;
}
.form-select:focus {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: #00f0ff;
  color: #fff;
}
@keyframes selectGlow {
  0%, 100% { border-color: rgba(0, 240, 255, 0.1); box-shadow: 0 0 6px rgba(0, 240, 255, 0.04); }
  50% { border-color: rgba(0, 240, 255, 0.25); box-shadow: 0 0 16px rgba(0, 240, 255, 0.1); }
}
.form-select option {
  background: #111827;
  color: #fff;
}
textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

/* ====== FILE INPUT ====== */
.form-control[type="file"] {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.5);
}
.form-control[type="file"]::file-selector-button {
  background: linear-gradient(135deg, #00f0ff, #0066ff);
  border: none;
  border-radius: 6px;
  padding: 6px 16px;
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 10px;
}
.form-control[type="file"]::file-selector-button:hover {
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

/* ====== CHECKBOXES ====== */
.form-check {
  margin-bottom: 10px;
}
.form-check-input {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(0, 240, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 2px;
}
.form-check-input:checked {
  background: #00f0ff;
  border-color: #00f0ff;
}
.form-check-input:focus {
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.15);
  border-color: #00f0ff;
}
.form-check-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}
.form-check-label a {
  color: #00f0ff;
  text-decoration: none;
}
.form-check-label a:hover {
  text-decoration: underline;
}

/* ====== CAPTCHA ====== */
.captcha-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.captcha-image {
  background: linear-gradient(135deg, #1a2a4a, #2a1a3a);
  border-radius: 8px;
  padding: 12px 24px;
  font-family: 'Courier New', monospace;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 6px;
  color: #00f0ff;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
  border: 1px solid rgba(0, 240, 255, 0.15);
  user-select: none;
  line-height: 1;
}
.captcha-input {
  flex: 1;
  min-width: 140px;
}

/* ====== SIGNUP BUTTONS ====== */
.btn-submit {
  background: linear-gradient(135deg, #00f0ff, #0066ff);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 48px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.btn-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}
.btn-submit:hover::before { left: 100%; }
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.4), 0 12px 35px rgba(0, 102, 255, 0.3);
  color: #fff;
}
.btn-cancel {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 14px 38px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s ease;
}
.btn-cancel:hover {
  border-color: rgba(255, 107, 107, 0.4);
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.06);
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255, 107, 107, 0.1);
}

/* ====== MODAL ====== */
.modal-content {
  background: #111827;
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.05);
}
.modal-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 80px; height: 3px;
  background: linear-gradient(90deg, #00f0ff, transparent);
  border-radius: 2px 0 0 0;
}
.modal-content::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 3px;
  background: linear-gradient(270deg, #8b5cf6, transparent);
  border-radius: 0 0 2px 0;
}
.modal-header {
  border-bottom: 1px solid rgba(0, 240, 255, 0.08);
  padding: 20px 24px;
}
.modal-header .modal-title {
  font-weight: 700;
  color: #fff;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-header .modal-title i {
  color: #00f0ff;
}
.modal-header .btn-close-custom {
  background: transparent;
  opacity: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 0;
  cursor: pointer;
}
.modal-header .btn-close-custom:hover {
  border-color: #ff6b6b;
  color: #ff6b6b;
  box-shadow: 0 0 15px rgba(255, 107, 107, 0.2);
}
.modal-body {
  padding: 24px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.8;
}
.modal-body h6 {
  color: #fff;
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 8px;
}
.modal-body h6:first-child {
  margin-top: 0;
}
.licence-bullets {
  padding-left: 20px;
  margin-bottom: 0;
}
.licence-bullets li {
  margin-bottom: 6px;
  list-style-type: disc;
  color: rgba(255, 255, 255, 0.65);
}
.licence-bullets li::marker {
  color: #00f0ff;
}
.modal-footer {
  border-top: 1px solid rgba(0, 240, 255, 0.08);
  padding: 16px 24px;
}
.modal-footer .btn {
  border-radius: 50px;
  padding: 8px 28px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.35s ease;
}
.modal-footer .btn-primary-gradient {
  background: linear-gradient(135deg, #00f0ff, #0066ff);
  color: #fff;
  border: none;
}
.modal-footer .btn-primary-gradient:hover {
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.3);
  transform: translateY(-2px);
  color: #fff;
}
.modal-backdrop.show {
  opacity: 0.7;
}

/* ====== FOOTER ====== */
footer {
  background: #060a12;
  padding: 48px 0 32px;
  border-top: 1px solid rgba(0, 240, 255, 0.05);
  position: relative;
  z-index: 1;
}
footer .footer-brand {
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff !important;
  text-decoration: none;
}
footer .footer-brand img {
  height: 90px;
  width: auto;
  max-width: 100%;
  display: inline-block;
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.3));
}
footer p, footer a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
footer a:hover {
  color: #00f0ff;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}
footer hr {
  border-color: rgba(0, 240, 255, 0.06);
  margin: 24px 0;
}
footer .copyright {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.2);
}
footer .copyright a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1199.98px) {
  .hero .hero-shape.s-dollar2, .hero .hero-shape.s-sterling,
  .hero .hero-shape.s-percent, .hero .hero-shape.s-percent2,
  .hero .hero-shape.s-plus,
  .hero .hero-shape.s-bitcoin, .hero .hero-shape.s-yen,
  .hero .hero-shape.s-trend, .hero .hero-shape.s-cash,
  .hero .hero-shape.s-check { display: none; }
}

@media (max-width: 991.98px) {
  .hero { text-align: center; padding-top: 100px; min-height: auto; padding-bottom: 80px; align-items: flex-start; overflow: visible; animation: none !important; }
  .hero-actions .d-flex { justify-content: center; }
  .hero h1 { opacity: 1 !important; animation: none !important; }
  .hero-actions { opacity: 1 !important; animation: none !important; }
  .hero-actions .btn { padding: 12px 28px; }
  .hero-visual-card { margin: 40px auto 0; max-width: 380px; }
  section { padding: 60px 0; }
  .section-title { text-align: center; font-size: clamp(1.5rem, 4vw, 2rem); }
  .section-subtitle { margin: 0 auto !important; text-align: center; }
  .hero .hero-shape.s-dollar, .hero .hero-shape.s-calc,
  .hero .hero-shape.s-euro, .hero .hero-shape.s-chart,
  .hero .hero-shape.s-bitcoin, .hero .hero-shape.s-yen,
  .hero .hero-shape.s-trend, .hero .hero-shape.s-cash,
  .hero .hero-shape.s-check { opacity: 0.2; font-size: 3rem; }
  .hero .hero-shape.s-dollar { top: 4%; left: 2%; }
  .hero .hero-shape.s-euro { top: 60%; left: 0%; }
  .hero .hero-shape.s-chart { bottom: 2%; left: 10%; }
  .hero .hero-shape.s-calc { top: 25%; left: 0%; }
  .hero .hero-shape.s-bitcoin { top: 15%; right: 15%; }
  .hero .hero-shape.s-yen { top: 50%; left: 5%; }
  .hero .hero-shape.s-trend { top: 3%; left: 18%; }
  .hero .hero-shape.s-cash { bottom: 12%; right: 10%; }
  .hero .hero-shape.s-check { top: 42%; right: 10%; }
}

@media (max-width: 767.98px) {
  .hero { padding-top: 80px; padding-bottom: 60px; min-height: auto; overflow: visible; align-items: center; }
  .hero h1 { font-size: clamp(1.8rem, 5vw, 2.5rem); letter-spacing: -1px; opacity: 1 !important; animation: none !important; }
  .hero h1 .highlight, .hero h1 .glow-text { display: block; }
  .hero-actions { opacity: 1 !important; animation: none !important; }
  .hero { animation: none !important; background-size: auto !important; }
  .hero .row { --bs-gutter-x: 1.5rem; }
  .hero-visual-card { max-width: 300px; margin-top: 30px; }
  .hero-visual-card .card-inner { padding: 20px; }
  .hero-actions { margin-top: 30px !important; }
  .hero-actions .btn { padding: 14px 28px; font-size: 0.9rem; width: 100%; }
  .hero-actions .d-flex { flex-direction: column; align-items: center; gap: 14px !important; }
  .hero .hero-shape.s-dollar, .hero .hero-shape.s-calc { display: none; }
  .hero .hero-shape.s-euro { font-size: 2.5rem; top: 50%; }
  .hero .hero-shape.s-chart { font-size: 2.5rem; bottom: 5%; left: 5%; }
  section { padding: 40px 0; }
  .section-title { font-size: 1.4rem; }
  .section-subtitle { font-size: 0.9rem; }
  .feature-card { padding: 20px 16px; }
  .feature-card h5 { font-size: 1rem; }
  .feature-card p { font-size: 0.82rem; }
  .feature-icon { width: 62px; height: 62px; font-size: 1.6rem; margin-bottom: 14px; }
  .detail-card { flex-direction: column; align-items: center; text-align: center; padding: 20px 16px; }
  .detail-card .icon-box { margin-bottom: 8px; }
  .detail-card .text p { font-size: 0.82rem; }
  .license-card { padding: 28px 20px; }
  .license-card .icon { width: 66px; height: 66px; font-size: 1.7rem; }
  .license-card .value { font-size: 1rem; }
  .page-header { padding: 120px 0 30px; }
  .page-header h1 { font-size: 1.6rem; }
  .login-card { padding: 32px 20px; border-radius: 16px; }
  .btn-login { padding: 12px 24px; }
  .form-card { padding: 28px 18px; border-radius: 16px; }
  .form-section-title { font-size: 1rem; }
  .form-label { font-size: 0.8rem; }
  .form-control, .form-select { font-size: 0.85rem; padding: 8px 12px; }
  .form-select { padding-right: 32px; }
  .captcha-box { flex-direction: column; align-items: stretch; }
  .captcha-image { text-align: center; }
  .btn-submit, .btn-cancel { width: 100%; padding: 12px 24px; }
  footer { padding: 32px 0 24px; text-align: center; }
  footer .text-md-end { text-align: center !important; margin-top: 16px; }
  .navbar { padding: 6px 10px; }
  .navbar > .container { overflow: visible; }
  .navbar-brand { font-size: 1.25rem; margin-right: 0 !important; white-space: nowrap; }
  .navbar-brand i { margin-right: 4px; font-size: 1.6rem; }
  .nav-btn { padding: 14px 32px; font-size: 0.82rem; display: inline-block; text-align: center; margin: 0 auto; }
  .navbar-nav { gap: 8px !important; align-items: center; }
  .navbar-nav .nav-item { width: auto; }
}

@media (max-width: 575.98px) {
  .hero { padding-top: 110px; padding-bottom: 30px; min-height: 75vh; align-items: center; overflow: visible; }
  .hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); letter-spacing: -0.5px; line-height: 1.2; opacity: 1 !important; animation: none !important; }
  .hero h1 .highlight, .hero h1 .glow-text { display: block; }
  .hero-actions { margin-top: 25px !important; opacity: 1 !important; animation: none !important; }
  .hero-actions .btn { font-size: 0.85rem; padding: 12px 20px; width: 100%; }
  .hero-actions .d-flex { flex-direction: column; gap: 14px !important; }
  .hero .row { --bs-gutter-x: 0; }
  .hero-visual-card { max-width: 280px; margin-top: 16px; }
  .hero { animation: none !important; background-size: auto !important; }
  .hero-visual-card .card-inner { padding: 12px; }
  .hero-visual-card .kpi-row { gap: 6px; margin-bottom: 14px; }
  .hero-visual-card .kpi-item { padding: 8px 6px; }
  .hero-visual-card .kpi-value { font-size: 0.85rem; }
  .hero-visual-card .dashboard-row { gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
  .hero-visual-card .donut-container { flex: 0 0 70px; }
  .hero-visual-card .donut { width: 60px; height: 60px; }
  .hero-visual-card .donut::after { width: 40px; height: 40px; }
  .hero-visual-card .donut-label { font-size: 0.45rem; }
  .hero-visual-card .breakdown-list { gap: 3px; }
  .hero-visual-card .breakdown-item { font-size: 0.6rem; }
  .hero-visual-card .chart-bars { height: 50px; gap: 4px; }
  .hero-visual-card .chart-bar-label { font-size: 0.45rem; bottom: -14px; }
  .hero .hero-shape.s-dollar { display: block; font-size: 2.5rem; top: 3%; left: 1%; opacity: 0.2; }
  .hero .hero-shape.s-euro { display: block; font-size: 3rem; top: 60%; left: 2%; opacity: 0.25; }
  .hero .hero-shape.s-chart { display: block; font-size: 3rem; bottom: 5%; left: 5%; opacity: 0.25; }
  .hero .hero-shape.s-calc { display: block; font-size: 3rem; top: 25%; left: 0%; opacity: 0.2; }
  .hero .hero-shape.s-percent { display: block; font-size: 2rem; bottom: 30%; left: 60%; opacity: 0.2; }
  .hero .hero-shape.s-plus { display: block; font-size: 1.8rem; top: 15%; right: 5%; opacity: 0.2; }
  .hero .hero-shape.s-bitcoin { display: block; font-size: 3rem; top: 45%; right: 2%; opacity: 0.2; }
  .hero .hero-shape.s-yen { display: block; font-size: 2.5rem; top: 70%; left: 40%; opacity: 0.2; }
  .hero .hero-shape.s-trend { display: block; font-size: 2rem; top: 2%; left: 40%; opacity: 0.2; }
  .hero .hero-shape.s-cash { display: block; font-size: 3rem; bottom: 8%; right: 2%; opacity: 0.2; }
  .hero .hero-shape.s-check { display: block; font-size: 2.5rem; top: 30%; right: 1%; opacity: 0.2; }
  section { padding: 24px 0; }
  .section-title { font-size: 1.1rem; }
  .section-subtitle { font-size: 0.82rem; }
  .feature-card { padding: 14px 10px; }
  .feature-card h5 { font-size: 0.85rem; }
  .feature-card p { font-size: 0.75rem; }
  .feature-icon { width: 64px; height: 64px; font-size: 1.7rem; margin-bottom: 12px; }
  .detail-card { padding: 14px 10px; }
  .detail-card .text h6 { font-size: 0.85rem; }
  .detail-card .text p { font-size: 0.75rem; }
  .detail-card .icon-box { width: 60px; height: 60px; font-size: 1.6rem; min-width: 60px; }
  .license-card { padding: 16px 12px; }
  .license-card .icon { width: 68px; height: 68px; font-size: 1.8rem; }
  .license-card .value { font-size: 0.85rem; }
  .login-card { padding: 24px 16px; }
  .form-card { padding: 20px 12px; }
  .modal-dialog { margin: 12px; }
  .modal-header { padding: 16px 18px; }
  .modal-body { padding: 18px; font-size: 0.85rem; }
  .modal-footer { padding: 12px 18px; }
  footer { padding: 20px 0 12px; }
  footer .footer-brand { font-size: 0.9rem; }
  footer p, footer a { font-size: 0.75rem; }
  .navbar { padding: 18px 6px; }
  .navbar > .container { overflow: visible; }
  .navbar-brand { font-size: 1.25rem; animation: none !important; margin-right: 0 !important; white-space: nowrap; }
  .navbar-brand i { font-size: 1.6rem; }
}

@media (min-width: 1921px) {
  .hero h1 { font-size: 5rem; }
}