:root {
  --bg: #f6f3ff;
  --text: #1a1531;
  --muted: #5d5670;
  --primary: #6d00e7;
  --primary-dark: #4f00b4;
  --surface: #ffffff;
  --glass: rgba(255, 255, 255, 0.72);
  --border: rgba(109, 0, 231, 0.15);
  --shadow: 0 24px 60px rgba(34, 8, 80, 0.12);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #fdfbff, #f1ecff 55%, #efe8ff 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section.tight {
  padding: 56px 0;
}

.section-header {
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 2vw + 1.2rem, 2.6rem);
  margin-bottom: 10px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(109, 0, 231, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.logo-image {
  height: 60px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(109, 0, 231, 0.22);
  border: 1px solid rgba(109, 0, 231, 0.15);
  background: #fff;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  color: var(--muted);
  position: relative;
}

.nav-link.active,
.nav-link:hover {
  color: var(--primary);
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-toggle {
  border: none;
  background: transparent;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--primary);
}

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

.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: 40px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(109,0,231,0.18), transparent 70%);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: 28px;
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.badge {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(109, 0, 231, 0.08);
  color: var(--primary-dark);
  font-size: 0.85rem;
}

.card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid.cols-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.btn {
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(109, 0, 231, 0.18);
}

.btn.primary {
  background: var(--primary);
  color: #fff;
}

.btn.secondary {
  background: #fff;
  border-color: rgba(109, 0, 231, 0.3);
  color: var(--primary-dark);
}

.btn.ghost {
  border-color: rgba(109, 0, 231, 0.2);
  color: var(--primary-dark);
  background: transparent;
}

.tag {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}

.tiny {
  font-size: 0.9rem;
  color: var(--muted);
}

.feature-tile img {
  border-radius: 16px;
  margin-bottom: 12px;
}

.pricing-card {
  border: 1px solid rgba(109, 0, 231, 0.2);
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  position: relative;
}

.pricing-card.highlight {
  border: 2px solid var(--primary);
  box-shadow: 0 26px 50px rgba(109, 0, 231, 0.2);
}

.pricing-card ul {
  list-style: none;
  margin-top: 16px;
  color: var(--muted);
}

.pricing-card li {
  margin-bottom: 8px;
}

.cta-band {
  background: linear-gradient(120deg, rgba(109, 0, 231, 0.92), rgba(160, 91, 255, 0.9));
  color: #fff;
  padding: 48px;
  border-radius: 22px;
  display: grid;
  gap: 16px;
}

.cta-band .btn {
  background: #fff;
  color: var(--primary-dark);
}

.accordion-item {
  border-bottom: 1px solid rgba(109, 0, 231, 0.12);
  padding: 16px 0;
}

.accordion-button {
  background: none;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
  color: var(--muted);
}

.accordion-panel.open {
  padding-top: 8px;
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(109, 0, 231, 0.12);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

input,
textarea,
select {
  border-radius: 12px;
  border: 1px solid rgba(109, 0, 231, 0.2);
  padding: 12px;
  font-family: inherit;
}

.site-footer {
  background: #110924;
  color: #d7cfff;
  margin-top: auto;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.site-footer a {
  color: #c7b9ff;
  display: block;
  margin-top: 8px;
  font-size: 0.95rem;
}

.footer-brand {
  display: flex;
  gap: 14px;
}

.footer-bottom {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 74px;
    right: 0;
    background: #fff;
    height: calc(100vh - 74px);
    width: 280px;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    transform: translateX(100%);
    transition: transform 0.2s ease;
    box-shadow: -10px 0 40px rgba(30, 10, 60, 0.12);
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 90px 0 60px;
  }

  .nav-cta .btn {
    display: none;
  }

  .cta-band {
    padding: 32px;
  }
}
