﻿:root {
  --bg: #0a0f1f;
  --bg-2: #111a34;
  --card: #121b33;
  --accent: #2dd4bf;
  --accent-2: #7c3aed;
  --accent-3: #f59e0b;
  --text: #e6ecff;
  --muted: #a8b3d1;
  --line: #253154;
  --brand: #4f9cff;
  --shadow: 0 20px 60px rgba(5, 10, 30, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  background: radial-gradient(1200px 700px at 80% -10%, rgba(124, 58, 237, 0.35), transparent 60%),
    radial-gradient(900px 600px at 0% 0%, rgba(45, 212, 191, 0.25), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background 0.4s ease, color 0.3s ease;
}

body.theme-light {
  --bg: #f6f8ff;
  --bg-2: #eef2ff;
  --card: #ffffff;
  --accent: #0ea5e9;
  --accent-2: #6d28d9;
  --accent-3: #f97316;
  --text: #0b1220;
  --muted: #5b6b8c;
  --line: #d6deef;
  --brand: #2563eb;
  --shadow: 0 20px 60px rgba(20, 30, 60, 0.12);
  background: radial-gradient(1200px 700px at 80% -10%, rgba(37, 99, 235, 0.18), transparent 60%),
    radial-gradient(900px 600px at 0% 0%, rgba(14, 165, 233, 0.18), transparent 55%),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.text-muted {
  color: var(--muted) !important;
}

.text-primary {
  color: var(--brand) !important;
}

.navbar {
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

body.theme-light .navbar {
  color: var(--text);
}

body.theme-light .navbar.navbar-dark .navbar-toggler {
  border-color: rgba(11, 18, 32, 0.25);
}

body.theme-light .navbar.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(11, 18, 32, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled {
  background: rgba(10, 15, 31, 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(3, 7, 20, 0.5);
  backdrop-filter: blur(10px);
}

body.theme-light .navbar.scrolled {
  background: rgba(246, 248, 255, 0.92);
  box-shadow: 0 10px 30px rgba(20, 30, 60, 0.15);
}

.navbar-brand {
  font-weight: 700;
  font-size: x-large;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

body.theme-light .navbar-brand {
  color: var(--brand);
}

.navbar-brand img {
  height: 50px;
  width: auto;
  display: block;
}

.hero {
  padding: 140px 0 110px;
  position: relative;
  overflow: hidden;
}

.hero-card {
  background: linear-gradient(140deg, rgba(124, 58, 237, 0.2), rgba(45, 212, 191, 0.15));
  border: 1px solid rgba(124, 58, 237, 0.4);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.glow {
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(79, 156, 255, 0.5), transparent 60%);
  filter: blur(80px);
  top: -180px;
  right: -180px;
  pointer-events: none;
}

.badge-soft {
  background: rgba(45, 212, 191, 0.15);
  color: #2dd4bf;
  border: 1px solid rgba(45, 212, 191, 0.4);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 12px 24px rgba(79, 156, 255, 0.3);
}

.btn-outline-light {
  border-color: rgba(230, 236, 255, 0.5);
}

body.theme-light .btn-outline-light {
  color: var(--text);
  border-color: rgba(11, 18, 32, 0.25);
}

.section {
  padding: 90px 0;
}

.section-title {
  font-weight: 700;
  font-size: 2.2rem;
}

.section-sub {
  color: var(--muted);
  max-width: 720px;
}

.card-glass {
  background: rgba(18, 27, 51, 0.9);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow);
  height: 100%;
}

body.theme-light .card-glass {
  background: rgba(255, 255, 255, 0.95);
}

.icon-chip {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(79, 156, 255, 0.15);
  border: 1px solid rgba(79, 156, 255, 0.5);
  font-weight: 700;
}

.icon-chip svg {
  width: 22px;
  height: 22px;
}

.grid-lines {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

body.theme-light .grid-lines {
  background-image: linear-gradient(to right, rgba(11, 18, 32, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11, 18, 32, 0.06) 1px, transparent 1px);
}

.cursor-spotlight {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease;
  mix-blend-mode: screen;
  background: radial-gradient(circle, rgba(79, 156, 255, 0.35), rgba(124, 58, 237, 0.2) 45%, transparent 70%);
  z-index: 1;
}

body.theme-light .cursor-spotlight {
  mix-blend-mode: multiply;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25), rgba(14, 165, 233, 0.2) 45%, transparent 70%);
}

body.cursor-active .cursor-spotlight {
  opacity: 1;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.12s ease;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.6);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(230, 236, 255, 0.6);
  background: rgba(230, 236, 255, 0.04);
}

body.theme-light .cursor-dot {
  background: var(--brand);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.4);
}

body.theme-light .cursor-ring {
  border-color: rgba(11, 18, 32, 0.35);
  background: rgba(11, 18, 32, 0.04);
}

body.cursor-active .cursor-dot,
body.cursor-active .cursor-ring {
  opacity: 1;
}

body.cursor-click .cursor-ring {
  transform: translate(-50%, -50%) scale(0.85);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.stat {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  opacity: 0.8;
}

.logo-tile {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(0 26 249 / 77%);
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.timeline {
  border-left: 2px solid var(--line);
  padding-left: 24px;
}

.timeline-item {
  margin-bottom: 24px;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(45, 212, 191, 0.15);
}

.pricing-card {
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.2), rgba(18, 27, 51, 0.95));
  border: 1px solid rgba(124, 58, 237, 0.6);
  border-radius: 24px;
  padding: 32px;
  height: 100%;
}

body.theme-light .pricing-card {
  background: radial-gradient(circle at 20% 20%, rgb(37 235 200 / 18%), transparent 50%), radial-gradient(circle at 80% 80%, rgb(22 130 249 / 20%), transparent 55%), rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(58, 237, 121, 0.6);
  border-radius: 24px;
  padding: 32px;
  height: 100%;
}


.pricing-card.featured {
  border-color: rgba(45, 212, 191, 0.7);
  box-shadow: 0 25px 60px rgba(45, 212, 191, 0.15);
  transform: translateY(-8px);
}

body.theme-light .pricing-card.featured {
  border-color: rgba(124, 58, 237, 0.6);
  box-shadow: 0 25px 60px rgba(45, 212, 191, 0.15);
  transform: translateY(-8px);
}

body.theme-light .table-dark {
  --bs-table-bg: transparent;
  --bs-table-color: var(--text);
  --bs-table-border-color: var(--line);
}

.table-dark{
  --bs-table-bg: transparent;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  background: rgba(18, 27, 51, 0.8);
}

body.theme-light .faq-item {
  background: rgba(255, 255, 255, 0.95);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.35);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(45, 212, 191, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(45, 212, 191, 0);
  }
}

.pulse {
  animation: pulse 3s infinite;
}

.calendar-shell {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.theme-toggle {
  border: 1px solid rgba(230, 236, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
}

body.theme-light .theme-toggle {
  border-color: rgba(11, 18, 32, 0.2);
  background: rgba(255, 255, 255, 0.7);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  display: block;
}

.theme-toggle .icon-sun {
  display: none;
}

body.theme-light .theme-toggle .icon-sun {
  display: block;
}

body.theme-light .theme-toggle .icon-moon {
  display: none;
}

.gradient-border {
  position: relative;
  border-radius: 22px;
  padding: 2px;
  background: linear-gradient(120deg, rgba(79, 156, 255, 0.8), rgba(124, 58, 237, 0.8));
}

.gradient-border>div {
  border-radius: 20px;
  background: rgba(10, 15, 31, 0.85);
  padding: 26px;
}

body.theme-light .gradient-border>div {
  border-radius: 20px;
  background: radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.18), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.2), transparent 55%),
    rgba(255, 255, 255, 0.95);
  padding: 26px;
}

.hero-illustration {
  background: radial-gradient(circle at 20% 20%, rgba(79, 156, 255, 0.4), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.35), transparent 55%),
    rgba(18, 27, 51, 0.95);
  border: 1px solid rgba(79, 156, 255, 0.35);
  border-radius: 24px;
  padding: 26px;
}

body.theme-light .hero-illustration {
  background: radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.18), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.2), transparent 55%),
    rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(37, 99, 235, 0.25);
}

.hero-illustration .meter {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.hero-illustration .meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--brand));
}

.nav-link.active {
  color: var(--accent);
}

body.theme-light .nav-link.active {
  color: var(--brand);
}

body.theme-light .nav-link {
  color: var(--text);
}

body.theme-light .nav-link:hover,
body.theme-light .nav-link:focus {
  color: var(--brand);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(10, 15, 31, 0.95);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px 16px;
    margin-top: 10px;
    box-shadow: var(--shadow);
  }

  body.theme-light .navbar-collapse {
    background: rgba(246, 248, 255, 0.98);
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 120px 0 80px;
  }

  .pricing-card.featured {
    transform: none;
  }
}