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

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background-color: #0F172A;
  color: #F9FAFB;
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
}

/* ── Gradient text ── */
.text-gradient {
  background: linear-gradient(135deg, #10B981 0%, #34D399 40%, #6366F1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Orbs ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
}
.orb-green {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #10B981, #059669);
  top: -200px; left: -150px;
  animation: floatA 10s ease-in-out infinite;
}
.orb-indigo {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #6366F1, #4338CA);
  top: -100px; right: -150px;
  animation: floatB 13s ease-in-out infinite;
}
.orb-purple {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #8B5CF6, #7C3AED);
  bottom: 80px; left: 30%;
  animation: floatC 11s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% { transform: translate(0px, 0px) scale(1); }
  33%       { transform: translate(40px, -30px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.97); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0px, 0px) scale(1); }
  40%       { transform: translate(-35px, 25px) scale(1.08); }
  70%       { transform: translate(20px, -15px) scale(0.95); }
}
@keyframes floatC {
  0%, 100% { transform: translate(0px, 0px) scale(1); }
  50%       { transform: translate(25px, -35px) scale(1.06); }
}

/* ── Glow badge ── */
.badge-glow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.1);
  color: #34D399;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(16, 185, 129, 0.2), inset 0 0 12px rgba(16, 185, 129, 0.05);
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 8px #34D399;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

/* ── Glass cards ── */
.glass-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}
.glass-card.hover-green:hover  { border-color: rgba(16, 185, 129, 0.35); box-shadow: 0 24px 48px rgba(16, 185, 129, 0.1); }
.glass-card.hover-purple:hover { border-color: rgba(139, 92, 246, 0.35); box-shadow: 0 24px 48px rgba(139, 92, 246, 0.1); }
.glass-card.hover-pink:hover   { border-color: rgba(236, 72, 153, 0.35); box-shadow: 0 24px 48px rgba(236, 72, 153, 0.1); }
.glass-card.hover-amber:hover  { border-color: rgba(245, 158, 11, 0.35); box-shadow: 0 24px 48px rgba(245, 158, 11, 0.1); }
.glass-card.hover-cyan:hover   { border-color: rgba(56, 189, 248, 0.35); box-shadow: 0 24px 48px rgba(56, 189, 248, 0.1); }

/* ── Icon circle ── */
.icon-circle {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}

/* ── Animated dots (teaser) ── */
.dot-row { display: flex; gap: 10px; justify-content: center; margin-top: 1.25rem; }
.dot-row span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10B981;
  opacity: 0.5;
  animation: bounce-dot 1.4s ease-in-out infinite;
}
.dot-row span:nth-child(2) { animation-delay: 0.2s; }
.dot-row span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce-dot {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.5; }
  40%            { transform: translateY(-10px); opacity: 1; }
}

/* ── Section divider ── */
.divider {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, #10B981, #6366F1);
  border-radius: 99px;
  margin: 0 auto 1.5rem;
}

/* ── Comparison table ── */
.compare-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}
.compare-table th,
.compare-table td {
  padding: 0.875rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.compare-table thead th {
  background: rgba(30, 41, 59, 0.8);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: sticky;
  top: 0;
}
.compare-table thead th:first-child {
  border-radius: 12px 0 0 0;
  text-align: left;
}
.compare-table thead th:last-child {
  border-radius: 0 12px 0 0;
}
.compare-table tbody tr:hover {
  background: rgba(16, 185, 129, 0.04);
}
.compare-table td:first-child {
  text-align: left;
  font-weight: 500;
}
.compare-table .kavi-col {
  background: rgba(16, 185, 129, 0.06);
}

/* ── FAQ accordion ── */
.faq-item {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(16, 185, 129, 0.25);
}
.faq-item summary {
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: #10B981;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item .faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: #9CA3AF;
  line-height: 1.7;
}

/* ── Footer ── */
footer {
  border-top: 1px solid rgba(255,255,255,0.05);
}
#footer-copy:hover { color: #10B981 !important; cursor: pointer; }
