* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-1: #061029;
  --bg-2: #0b1535;
  --bg-3: #111f52;
  --text-main: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.72);
  --text-muted: rgba(255, 255, 255, 0.62);
  --border-soft: rgba(255, 255, 255, 0.1);
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-bg-strong: rgba(255, 255, 255, 0.07);
  --cyan: #67e8f9;
  --blue: #60a5fa;
  --green: #86efac;
  --shadow-xl: 0 24px 80px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  min-height: 100vh;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.28), transparent 30%),
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.18), transparent 25%),
    linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 45%, var(--bg-3) 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  transition: 0.3s ease;
}

.container {
  width: min(90%, 1200px);
  margin: 0 auto;
}

/* NAVBAR */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 16, 41, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.logo {
  text-decoration: none;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.4px;
  background: linear-gradient(to right, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.nav-links a.active {
  color: #1fb6ff;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: #1fb6ff;
  border-radius: 999px;
}

.nav-demo-btn {
  padding: 12px 20px;
  border-radius: 14px;
  background: linear-gradient(90deg, #38bdf8, #4f46e5);
  color: white !important;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.22);
}

.nav-demo-btn:hover {
  transform: translateY(-2px);
  color: white !important;
}

/* HERO */

.hero {
  padding: 100px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.2);
  color: #b6f4ff;
  font-size: 14px;
}

.hero h1 {
  margin-top: 22px;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -1px;
}

.highlight {
  background: linear-gradient(to right, #ffffff, #bae6fd, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-soft);
  max-width: 620px;
}

.hero-buttons {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 16px;
  font-weight: 600;
  display: inline-block;
}

.btn-primary {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 10px 30px rgba(96, 165, 250, 0.18);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-tags {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-tags span {
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* DASHBOARD */

.dashboard-card {
  padding: 20px;
  border-radius: 28px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-xl);
}

.dashboard-inner {
  background: #081227;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 24px;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-top p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.dashboard-top h3 {
  margin-top: 6px;
  font-size: 24px;
}

.live-badge {
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.stats-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-box {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-box.blue {
  background: linear-gradient(
    to bottom right,
    rgba(59, 130, 246, 0.18),
    rgba(34, 211, 238, 0.08)
  );
}

.stat-box p.small {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.stat-box h4 {
  margin-top: 12px;
  font-size: 30px;
}

.stat-box p.note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--green);
}

.chart-box {
  grid-column: span 2;
}

.chart-bars {
  margin-top: 18px;
  height: 140px;
  display: flex;
  align-items: end;
  gap: 10px;
}

.chart-bars span {
  flex: 1;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(to top, rgba(6, 182, 212, 0.75), rgba(96, 165, 250, 0.9));
}

/* SHARED SECTIONS */

.value-strip {
  padding: 0 0 80px;
}

.section {
  padding: 80px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  color: rgba(103, 232, 249, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 13px;
  font-weight: 600;
}

.section-header h2 {
  margin-top: 14px;
  font-size: 48px;
  line-height: 1.1;
}

.section-header p {
  margin-top: 18px;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 18px;
}

/* GRIDS */

.value-grid,
.modules-grid,
.features-grid,
.pricing-grid,
.footer-grid {
  display: grid;
  gap: 20px;
}

.value-grid {
  grid-template-columns: repeat(4, 1fr);
}

.modules-grid,
.features-grid,
.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* CARDS */

.value-card,
.feature-card,
.plan-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--border-soft);
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.feature-card:hover,
.plan-card:hover,
.value-card:hover {
  background: var(--card-bg-strong);
  transform: translateY(-3px);
}

.value-card h3,
.feature-card h3,
.plan-card h3 {
  font-size: 22px;
  line-height: 1.3;
}

.value-card p,
.feature-card p,
.plan-card p {
  margin-top: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

.plan-card ul {
  margin-top: 18px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
}

.plan-card ul li {
  margin-bottom: 4px;
}

/* CTA */

.cta-box {
  padding: 50px;
  border-radius: 32px;
  border: 1px solid rgba(103, 232, 249, 0.12);
  background: linear-gradient(
    to right,
    rgba(34, 211, 238, 0.08),
    rgba(59, 130, 246, 0.08),
    rgba(99, 102, 241, 0.08)
  );
}

.cta-box h2 {
  font-size: 46px;
  line-height: 1.1;
}

.cta-box p {
  margin-top: 16px;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 18px;
}

/* CONTACT / MODERN INNER LAYOUT */

.contact-hero {
  padding: 70px 0 30px;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.contact-hero-left h1 {
  margin-top: 18px;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -1px;
}

.contact-hero-left p {
  margin-top: 22px;
  max-width: 720px;
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.contact-hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-visual-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at top, rgba(96, 165, 250, 0.3), rgba(59, 130, 246, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 80px rgba(59, 130, 246, 0.18);
}

.contact-visual-icon {
  width: 130px;
  height: 130px;
  border-radius: 30px;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.3);
}

.contact-main-section {
  padding: 20px 0 80px;
}

.contact-modern-card {
  display: grid;
  grid-template-columns: 1.55fr 0.95fr;
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(19, 37, 79, 0.88), rgba(20, 28, 67, 0.88));
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.28);
}

.contact-form-side {
  padding: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-side {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-form-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-form-head h2 {
  font-size: 24px;
  line-height: 1.2;
}

.contact-form-head p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}

.contact-icon-box {
  min-width: 64px;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
}

.contact-icon-box.blue {
  background: linear-gradient(135deg, #3b82f6, #4338ca);
}

.contact-icon-box.green {
  background: linear-gradient(135deg, #10b981, #22c55e);
}

.contact-icon-box.purple {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
}

.contact-icon-box.gold {
  background: linear-gradient(135deg, #ca8a04, #eab308);
}

.contact-modern-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form-grid input,
.contact-form-grid select,
.contact-form-grid textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  outline: none;
  background: rgba(7, 20, 54, 0.8);
  color: #ffffff;
  font-size: 15px;
}

.contact-form-grid input::placeholder,
.contact-form-grid textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.contact-form-grid select {
  color: rgba(255, 255, 255, 0.86);
}

.contact-form-grid textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-submit-btn {
  width: fit-content;
  padding: 16px 28px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(90deg, #38bdf8, #4f46e5);
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(79, 70, 229, 0.24);
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
}

.contact-note {
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 64px 1fr 20px;
  gap: 16px;
  align-items: start;
  padding: 22px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-content h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.contact-info-content p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.contact-arrow {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
  margin-top: 6px;
}

.contact-info-large .contact-info-content p {
  max-width: 280px;
}

/* SIMPLE CONTACT PAGE GRID */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
}

.contact-form-card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--border-soft);
  background: var(--card-bg);
  backdrop-filter: blur(16px);
}

.contact-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  outline: none;
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  font-size: 15px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CONTACT PAGE EXTRA */

.contact-form-card h3 {
  line-height: 1.2;
}

.contact-form button {
  border: none;
  cursor: pointer;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(15, 23, 42, 0.55);
}

.contact-form select {
  cursor: pointer;
}

.contact-info-stack .value-card {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* FEATURES / PRICING SPECIALS */

.contact-form-side .features-grid {
  grid-template-columns: 1fr 1fr;
}

.contact-form-side .feature-card {
  background: rgba(255, 255, 255, 0.04);
}

.pricing-grid-modern {
  grid-template-columns: 1fr;
}

.pricing-grid-modern .plan-card {
  position: relative;
}

.plan-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(96, 165, 250, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.2);
  color: #bfe7ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.featured-plan {
  border-color: rgba(96, 165, 250, 0.28);
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.12),
    rgba(79, 70, 229, 0.08)
  );
}

.featured-plan .plan-badge {
  background: linear-gradient(90deg, #38bdf8, #4f46e5);
  color: white;
  border: none;
}

/* FOOTER */

.footer {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 11, 29, 0.7);
}

.footer-grid {
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  padding: 50px 0;
}

.footer h4 {
  margin-bottom: 14px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
}

.footer a,
.footer p,
.footer li {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  line-height: 1.9;
  list-style: none;
}

.footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
}

/* RESPONSIVE */

@media (min-width: 993px) {
  .pricing-grid-modern {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 1100px) {
  .hero h1,
  .contact-hero-left h1 {
    font-size: 54px;
  }

  .section-header h2,
  .cta-box h2 {
    font-size: 40px;
  }
}

@media (max-width: 992px) {
  .hero-grid,
  .value-grid,
  .modules-grid,
  .features-grid,
  .pricing-grid,
  .footer-grid,
  .contact-grid,
  .contact-hero-grid,
  .contact-modern-card,
  .contact-form-grid,
  .contact-form-side .features-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero h1,
  .contact-hero-left h1 {
    font-size: 42px;
  }

  .section,
  .value-strip {
    padding: 60px 0;
  }

  .section-header h2,
  .cta-box h2 {
    font-size: 34px;
  }

  .nav-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a.active::after {
    display: none;
  }

  .nav-demo-btn {
    margin-top: 6px;
  }

  .cta-box {
    padding: 34px 24px;
  }

  .dashboard-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form-side {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .contact-visual-circle {
    width: 220px;
    height: 220px;
  }

  .contact-visual-icon {
    width: 110px;
    height: 110px;
    font-size: 46px;
  }

  .contact-info-stack .value-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: 92%;
  }

  .logo {
    font-size: 24px;
  }

  .hero h1,
  .contact-hero-left h1 {
    font-size: 34px;
  }

  .hero p,
  .section-header p,
  .cta-box p,
  .contact-hero-left p {
    font-size: 16px;
    line-height: 1.7;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .chart-box {
    grid-column: span 1;
  }

  .chart-bars {
    gap: 8px;
    height: 120px;
  }

  .section-header h2,
  .cta-box h2 {
    font-size: 30px;
  }

  .value-card,
  .feature-card,
  .plan-card,
  .contact-form-card,
  .contact-form-side,
  .contact-info-side {
    padding: 20px;
  }

  .contact-submit-btn {
    width: 100%;
    text-align: center;
  }
}
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: white;
  padding: 16px 22px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.admin-stats .value-card h3 {
  font-size: 36px;
  margin-bottom: 8px;
}

.admin-table-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  overflow: hidden;
}

.admin-table-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-table-top h3 {
  font-size: 22px;
}

.admin-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 950px;
}

.admin-table th,
.admin-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

.admin-table th {
  color: #bfe7ff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.03);
}

.admin-table td {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  font-size: 14px;
}

.admin-loading {
  text-align: center;
  padding: 30px !important;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 992px) {
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .admin-table-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(37, 99, 235, 0.2);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.hero-tags {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.hero-tags span {
  background: rgba(255,255,255,0.08);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 16px;
}

.testimonial-card h4 {
  margin: 0;
}

.testimonial-card span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.comparison-table-wrap {
  margin-top: 40px;
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.comparison-table th {
  color: #bfe7ff;
  background: rgba(255,255,255,0.04);
}

.comparison-table td {
  color: rgba(255,255,255,0.75);
}

.comparison-table td:nth-child(2) {
  color: #86efac;
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}
.cta-final {
  text-align: center;
  padding: 60px 30px;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  border-radius: 24px;
}

.cta-final h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-final p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}