@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f5f7ff;
  --surface: #ffffff;
  --ink: #111827;
  --muted: #5b6475;
  --primary: #5a4dff;
  --primary-dark: #4238d5;
  --accent: #00c2a8;
  --ring: rgba(90, 77, 255, 0.18);
  --hero-grad: linear-gradient(135deg, #6d63ff 0%, #b15dff 45%, #00c2a8 100%);
  --radius-xl: 24px;
  --radius-lg: 16px;
  --shadow-sm: 0 4px 18px rgba(17, 24, 39, 0.08);
  --shadow-lg: 0 20px 60px rgba(17, 24, 39, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 15% -10%, #ede9ff, transparent 40%),
              radial-gradient(circle at 90% 5%, #ddfff8, transparent 35%),
              var(--bg);
  line-height: 1.6;
}

.hero {
  color: #fff;
  background: var(--hero-grad);
  padding: 28px 32px 72px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  filter: blur(2px);
}

.hero::before {
  width: 380px;
  height: 380px;
  top: -140px;
  left: -100px;
}

.hero::after {
  width: 260px;
  height: 260px;
  right: -70px;
  bottom: -90px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.2);
  padding: 5px;
}

.brand span {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-link {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.28);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  opacity: 0.95;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.12;
}

.hero-subtitle {
  margin: 0 0 12px;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 500;
  opacity: 0.95;
}

.subtext {
  margin: 0 0 28px;
  max-width: 650px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.94);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary,
.ghost,
.secondary {
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary {
  color: #fff;
  background: linear-gradient(90deg, #ff5f99, #ff7eb0);
  padding: 13px 24px;
  box-shadow: 0 10px 24px rgba(255, 95, 153, 0.35);
}

.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 95, 153, 0.45);
}

.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.38);
  padding: 12px 24px;
}

.ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.28);
}

.hero-badges {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius-xl);
  padding: 24px 22px;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.panel-title {
  margin: 0 0 14px;
  font-weight: 700;
  font-size: 1.02rem;
}

.panel-list {
  margin: 0;
  padding-left: 18px;
}

.panel-list li {
  margin-bottom: 9px;
  font-size: 0.93rem;
}

.panel-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.panel-stats div {
  padding: 10px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.16);
  text-align: center;
}

.panel-stats strong {
  display: block;
  font-size: 1.1rem;
}

.panel-stats span {
  font-size: 0.75rem;
  opacity: 0.9;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 34px;
}

.section-header h3,
.section-header h5 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.2;
}

.section-subtitle {
  margin: 0 auto;
  max-width: 700px;
  color: var(--muted);
}

.features-section {
  background: transparent;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.card {
  background: var(--surface);
  border: 1px solid #e6e8f0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  min-height: 240px;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #d4d9ff;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.card h4 {
  margin: 0 0 6px;
  font-size: 1.02rem;
}

.card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.secondary {
  background: var(--primary);
  color: #fff;
  width: fit-content;
  padding: 10px 18px;
  margin-top: auto;
  box-shadow: 0 8px 20px rgba(90, 77, 255, 0.25);
}

.secondary:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
}

.benefits-section {
  max-width: none;
  background: linear-gradient(180deg, #ffffff 0%, #f3f6ff 100%);
}

.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.benefit-card {
  background: #fff;
  border: 1px solid #e8ebf4;
  border-radius: var(--radius-lg);
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.benefit-icon {
  font-size: 2.1rem;
}

.benefit-card h6 {
  margin: 6px 0 6px;
  font-size: 1rem;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-section {
  margin: 40px auto 0;
  max-width: 1200px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(120deg, #111827 0%, #3627a9 50%, #00a88d 100%);
  padding: 58px 32px;
}

.cta-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.cta-tagline {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
}

.cta-content p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.92);
}

.footer {
  text-align: center;
  padding: 32px 20px 40px;
}

.footer a {
  color: #4f46e5;
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero,
  .section,
  .cta-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .actions {
    flex-direction: column;
  }

  .primary,
  .ghost {
    text-align: center;
  }

  .panel-stats {
    grid-template-columns: 1fr;
  }
}
