/* ======= Base Theme ======= */
:root {
  --brand: #6e1fff;
  --brand-2: #0bb3f0;
  --ink: #0f1221;
  --text: #404457;
  --muted: #8a90a7;
  --bg: #f7f8fc;
  --card: #ffffff;
  --ring: 0 0 0 3px rgba(110, 31, 255, .25);
  --radius: 16px;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

body {
  font-family: Inter, system-ui, Segoe UI, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

/* ======= Header / Hero ======= */
.hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--card-border);
}

.hero h1 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(26px, 5vw, 40px);
  line-height: 1.15
}

.hero p {
  margin: 0 0 20px;
  color: #ccc;
}
.hero-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: #000;
  border: 1px solid #303030;
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 10px;
  color: #fff;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:focus-visible {
  outline: none;
  box-shadow: var(--ring)
}

.btn-ghost {
  background: #FF3C38;
  border: none;
  color: #fff;
}
/* Pills (Scrollable on mobile) */
.pillbar,
.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px
}

.pill, .tab {
  background: #FF3C38;
  border: none;
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  text-decoration: none;
}

.pill.is-active,
.tab.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff
}

/* ======= Sections ======= */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.feature {
  background: var(--card-bg) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: var(--radius);
  padding: 18px;
}
.feature h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 18px;
}
.feature p {
  color: #ccc;
}

.title {
  margin: 40px 0 10px;
  color: #fff;
  font-size: clamp(22px, 4vw, 30px)
}

.subtitle {
  color: var(--muted);
  margin: 0 0 18px
}
.card h3 {
  color: #fff ;
}
.cards p {
  color: #ccc;
}
/* ======= Cards ======= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  background: transparent;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 185px;
}

.kicker {
  color: #fff;
  background: #6e1fff;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 800;
  text-align: center;
}

.price {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  text-align: center
}

.old {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 13px;
  text-align: center
}

.card .actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: auto
}

.btn-buy {
  background: #0bbf79;
  color: #fff
}

.btn-more {
  background: #eef1f8;
  color: #2d3350
}

.meta {
  font-size: 12px;
  color: var(--muted);
  text-align: center
}

/* ======= Mobile Fixes ======= */
@media (max-width:768px) {
  .container {
    padding: 16px
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px
  }

  .hero h1 {
    font-size: clamp(22px, 6.5vw, 28px);
    margin-bottom: 8px
  }

  .cta-row .btn {
    width: 100%
  }

  .pillbar,
  .tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    margin-bottom: 6px;
  }

  .pill,
  .tab {
    flex: 0 0 auto
  }

  .features {
    grid-template-columns: 1fr
  }

  .cards {
    grid-template-columns: 1fr
  }

  .card {
    min-height: auto
  }

  .trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px
  }
}

@media (max-width:480px) {
  .hero {
    padding: 18px
  }

  .title {
    margin-top: 28px
  }
}

/* Footer CTA space for chat widgets */
footer.cta {
  margin: 26px 0 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 64px
}