:root {
  --bg-main: #f7f4ff;
  --text-main: #1f1b2e;
  --text-muted: #6f6a7c;

  --pink: #ff3fb7;
  --purple: #8b5cf6;
  --blue: #22b8ff;

  --gradient-main: linear-gradient(135deg, #ff3fb7, #8b5cf6, #22b8ff);
  --shadow-soft: 0 20px 60px rgba(139, 92, 246, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 63, 183, 0.18), transparent 35%),
    radial-gradient(circle at top right, rgba(34, 184, 255, 0.18), transparent 35%),
    var(--bg-main);
  color: var(--text-main);
}

/* ================= HEADER ================= */

.site-header {
  padding: 20px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 26px;
  font-weight: 800;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(139, 92, 246, 0.28));
}

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

.nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
}

.nav-cta {
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.12);
  color: var(--purple) !important;
}

/* ================= HERO ================= */

.hero {
  min-height: calc(100vh - 80px);
  padding: 40px 7% 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 63, 183, 0.1);
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  margin: 0;
}

.hero p {
  margin-top: 20px;
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
}

/* ================= BUTTONS ================= */

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
}

.primary-btn,
.secondary-btn {
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
}

.primary-btn {
  background: var(--gradient-main);
  color: white;
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.35);
}

.secondary-btn {
  background: white;
  color: var(--text-main);
  box-shadow: var(--shadow-soft);
}

/* ================= BULLETS ================= */

.trust-row {
  margin-top: 25px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* ================= HERO VISUAL ================= */

.hero-visual {
  display: flex;
  justify-content: center;
}

.icon-card {
  position: relative;
}

.icon-card::before {
  content: "";
  position: absolute;
  inset: -60px;
  border-radius: 50%;
  background: var(--gradient-main);
  filter: blur(100px);
  opacity: 0.25;
  z-index: -1;
}

.icon-card img {
  width: min(430px, 80vw);
  border-radius: 42px;
  display: block;
  filter: drop-shadow(0 35px 70px rgba(31, 27, 46, 0.28));
}

/* ================= FEATURES ================= */

.features {
  padding: 80px 7%;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading span {
  color: var(--purple);
  font-weight: 700;
}

.section-heading h2 {
  font-size: 40px;
  margin-top: 10px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: rgba(255,255,255,0.85);
  border-radius: 24px;
  padding: 25px;
  box-shadow: var(--shadow-soft);
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
}

/* ================= PRODUCTS ================= */

.products {
  padding: 80px 7%;
}

.product-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.product-column {
  position: relative;
  background: rgba(255,255,255,0.86);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(139, 92, 246, 0.12);
}

.product-column.highlighted {
  transform: translateY(-10px);
  border: 2px solid rgba(139, 92, 246, 0.35);
}

.product-column h3 {
  font-size: 26px;
  margin: 0 0 8px;
}

.price {
  font-size: 18px;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 22px;
}

.product-column ul {
  padding-left: 20px;
  margin: 0 0 28px;
  color: var(--text-muted);
  line-height: 1.8;
}

.badge {
  position: absolute;
  top: -14px;
  right: 24px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--gradient-main);
  color: white;
  font-size: 13px;
  font-weight: 800;
}

/* ================= SUPPORT PAGE ================= */

.support-page {
  min-height: calc(100vh - 80px);
  padding: 70px 7% 100px;
}

.support-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255,255,255,0.88);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.support-wrap h1 {
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 58px);
}

.support-wrap p {
  color: var(--text-muted);
}

.support-form {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.support-form label {
  font-weight: 700;
}

.support-form input,
.support-form textarea,
.support-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(139, 92, 246, 0.22);
  font: inherit;
  background: white;
}

.support-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* ================= MOBILE ================= */

@media (max-width: 850px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-actions {
    justify-content: center;
  }

  .trust-row {
    justify-content: center;
  }

  .feature-grid,
  .product-table {
    grid-template-columns: 1fr;
  }

  .icon-card img {
    width: 220px;
  }

  .product-column.highlighted {
    transform: none;
  }
}