  :root{
    --accent: #6D5EF2;       /* tweak this to change the highlight color */
    --text:   #0f172a;
    --muted:  #475569;
    --card:   #ffffff;
    --border: #e5e7eb;
  }
  @media (prefers-color-scheme: dark){
    :root{
      --text:   #e5e7eb;
      --muted:  #94a3b8;
      --card:   #0b1220;
      --border: #1f2937;
    }
  }

  .features-wrap{
    max-width: 960px;
    margin: 32px auto;
    padding: 0 16px;
  }
  .features-title{
    margin: 0 0 16px 0;
    font-size: clamp(1.25rem, 1vw + 1rem, 1.75rem);
    color: var(--text);
    letter-spacing: .2px;
  }

  .modern-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 30px;
  }
  @media (min-width: 640px){
    .modern-list{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }

  .modern-list li{
     position: relative;
    padding: 16px 16px 16px 56px;
    background: #28d8ff7a;
    color: #000;
    /* border: 1px solid var(--border); */
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    line-height: 1.45;  
  }
  .modern-list li:hover{
    transform: translateY(-2px);
    border-color: color-mix(in oklab, var(--accent) 25%, var(--border));
  }

  /* Check badge */
  .modern-list li::before{
    content: "✓";
    position: absolute;
    left: 16px;
    top: 35px;
    translate: 0 -50%;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    background: radial-gradient(40% 40% at 30% 30%, #ffffff66 0 60%, transparent 60%) , #01b1d8;
    box-shadow: 0 3px 10px rgba(0,0,0,.15), inset 0 0 0 1px #ffffff26;
  }

  /* Optional subtle divider for long lines */
 

  /* Reduce density on very small screens */
  @media (max-width: 360px){
    .modern-list li{ padding-left: 52px; }
    .modern-list li::before{ width: 24px; height: 24px; font-size: 14px; }
  }

  /* ===== Pricing styles (drop in once) ===== */
:root{
  --accent: #6D5EF2;
  --sky: #cfeaf8;         /* matches your light blue cards */
  --text: #0f172a;
  --muted:#46637a;
  --border:#cfeaf8;
  --card:#e7f5fd;
  --shadow: 0 2px 10px rgba(2,6,23,.06), 0 6px 24px rgba(2,6,23,.06);
}

.section-heading{
  display:flex;
  align-items:center;
  gap:12px;
  margin: 8px 0 18px;
}
.price-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background: linear-gradient(180deg, var(--card), #d7effb);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 14px;
}

/* Card */
.price-card{
  max-width: 420px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 18px;
  margin-top: 14px;
}
.price-top{
  display:flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.plan-name{
  font-weight: 700;
  color: var(--text);
}
.price{
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--text);
}
.price sup{
  font-size: .55em;
  top: -0.35em;
  position: relative;
}
.price .period{
  font-size: .45em;
  font-weight: 600;
  color: var(--muted);
  margin-left: 4px;
}

.price-includes{
  list-style: none;
  margin: 10px 0 16px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.price-includes li{
  position: relative;
  padding-left: 28px;
  color: var(--text);
}
.price-includes li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: var(--accent);
  box-shadow: inset 0 0 0 1px #ffffff33;
}

.price-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .15s ease, opacity .15s ease;
}
.price-cta:hover{ transform: translateY(-1px); opacity: .95; }

/* Nice fit inside your two-column list area */
@media (min-width: 840px){
  .price-card{ margin-left: auto; }
}

.no-dec{
  text-decoration: none;
  color: inherit;

}
.no-dec:hover{
  text-decoration: none;
  color: inherit;
}
@media (max-width: 500px) {
    .cus-row{
      flex-direction: column-reverse;
    }
}