:root {
  --primary: #2e5bff;
  --primary-dark: #1d3ab3;
  --accent: #00c2ff;
  --bg-light: #f5f8ff;
  --text: #0f1a3c;
  --muted: #6b7a99;
  --border: #d6def3;
  --shadow: 0 16px 40px rgba(15, 26, 60, 0.12);
  --radius: 16px;
  --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--primary);
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(214, 222, 243, 0.6);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

nav .logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: inherit;
}

nav .logo img {
  height: 32px;
  width: auto;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

nav li {
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
}

nav li:hover {
  color: var(--primary);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(46, 91, 255, 0.35);
}

.hero {
  padding: 120px 0 80px;
  background: var(--bg-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.badge {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(46, 91, 255, 0.1);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.section {
  padding: 96px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.section-heading p {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.card {
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 24px 40px rgba(15, 26, 60, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 48px rgba(15, 26, 60, 0.08);
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.stat {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(46, 91, 255, 0.08);
  text-align: center;
}

.stat h4 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.list-item {
  display: flex;
  gap: 16px;
}

.list-item span {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.testimonial {
  padding: 32px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 24px 40px rgba(15, 26, 60, 0.06);
}

.testimonial p {
  color: var(--muted);
  margin-bottom: 24px;
}

.testimonial .author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.price-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 24px 40px rgba(15, 26, 60, 0.05);
  padding: 40px 32px;
  text-align: center;
}

.price-card.featured {
  border: 2px solid var(--primary);
  transform: translateY(-8px);
}

.price-card h3 {
  margin-bottom: 12px;
}

.price-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.price-card ul {
  list-style: none;
  color: var(--muted);
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

footer {
  background: #050b1d;
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.footer-nav {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.66);
}

.footer-nav a:hover {
  color: #fff;
}

footer .legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.9rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.tag span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: start;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.table th,
.table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.muted-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.highlight {
  background: rgba(0, 194, 255, 0.08);
  padding: 18px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 194, 255, 0.3);
  margin-top: 24px;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .hero {
    padding: 96px 0 64px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .section {
    padding: 72px 0;
  }
}
