:root{
      --bg:#e3deff;
      --card:#ffffff;
      --muted:#6b7280;
      --accent:#5f57f3;
      --green:#16a34a;
      --gold:#fb923c;
      --glass: rgba(15,98,255,0.06);
      --maxw:1180px;
      --radius:14px;
      --shadow: 0 8px 30px rgba(16,24,40,0.06);
      --chip-bg: #eef2ff;
    }
    *{box-sizing:border-box}
    body{

    }

.p-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
}

.p-carousel-track {
  display: flex;
  transition: transform 0.3s ease;
}

.p-carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
}
.p-carousel-slide img {
  width: 100%;
  display: block;
}

/* Controls row */
.p-carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  gap: 10px;
}

.p-carousel-btn {
  border: none;
  color: #333333;
  font-size: 1.5rem;
  background:none;
  cursor: pointer;
  padding-left:32px;
  padding-right:32px;
}
.p-carousel-btn:hover {
  color:#776ac8;
}

.p-carousel-dots {
  display: flex;
  gap: 6px;
}
.p-carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
}
.p-carousel-dots button.active {
  background: #333;
}

.wizard-step{display:none;}
.wizard-step.active{display:block;}
.wizard-nav{margin-top:16px;display:flex;justify-content:space-between;}
.madlib p{font-size:15px;line-height:1.6;}
.madlib input{width:70px;padding:3px 6px;border-radius:6px;border:1px solid #d1d5db;font-size:14px;margin:0 4px;}
.wizardButton{background:var(--accent);color:#fff;border:none;border-radius:8px;padding:8px 14px;font-size:14px;cursor:pointer;}
.wizardButton:disabled{opacity:0.5;cursor:not-allowed;}
    .wrap{
      max-width:var(--maxw);
      margin:36px auto;
      padding:28px;
    }

    header.hero{
      text-align:center;
      margin-bottom:20px;
    }
    header.hero h1{
      margin:0;
      font-size:28px;
      letter-spacing:-0.01em;
    }
    header.hero p{
      margin:10px auto 0;
      color:var(--muted);
      max-width:880px;
      font-size:15px;
    }

    /* Three persona blurbs */
    .personas{
      display:flex;
      gap:12px;
      margin:22px 0 28px;
      justify-content:center;
      flex-wrap:wrap;
    }
    .persona{
      background:var(--card);
      border-radius:12px;
      padding:12px 16px;
      box-shadow: var(--shadow);
      min-width:220px;
      max-width:320px;
      text-align:left;
    }
    .persona h4{margin:0 0 8px;font-size:14px}
    .persona p{margin:0;color:var(--muted);font-size:13px}

    /* Legend for icons */
    .legend{
      display:flex;
      gap:10px;
      justify-content:center;
      margin:12px 0 24px;
      flex-wrap:wrap;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:var(--chip-bg);
      font-size:13px;
      color:#0f172a;
      box-shadow: 0 1px 0 rgba(15,23,42,0.03);
    }
    .icon{
      width:18px;height:18px;border-radius:4px;display:inline-grid;place-items:center;font-weight:700;
    }
    .icon.inherited{background: rgba(22,163,74,0.12); color:var(--green)}
    .icon.new{background: rgba(251,146,60,0.12); color:var(--gold)}

    /* pricing grid */
    .pricingGrid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:20px;
      align-items:start;
    }
    @media (max-width:980px){ .pricingGrid{grid-template-columns:1fr} .persona{min-width:100%} }

    .pricingCard{
      background:var(--card);
      border-radius:var(--radius);
      padding:20px;
      box-shadow:var(--shadow);
      display:flex;
      flex-direction:column;
      min-height:520px;
      min-width: 338px;
      position:relative;
      border:1px solid rgba(15,23,42,0.03);
    }

    /* subtle recommended ribbon on middle card */
    .pricingBadge{
      position:absolute;
      top:14px;
      right:14px;
      background:linear-gradient(90deg,#0f62ff,#5f57f3);
      color:white;
      padding:6px 10px;
      font-size:12px;
      border-radius:999px;
      box-shadow:0 6px 18px rgba(15,98,255,0.4);
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .pricingCard h2{margin:8px 0 2px;font-size:18px}
    .price{font-weight:700;color:var(--accent);font-size:20px;margin:6px 0 12px}
    .sub{color:var(--muted);font-size:13px;margin-bottom:14px}

    /* feature list split into "Core (included)" and "New in this plan" */
    .features{
      margin:10px 0 18px;
      padding:0;
      list-style:none;
      flex:1;
    }
    .features h3{
      margin:8px 0 8px;
      font-size:13px;
      color:#374151;
    }
    .list{
      margin:0;padding:0 0 0 0;
      list-style:none;
    }
    .list li{
      padding:8px 0;
      display:flex;
      gap:12px;
      align-items:flex-start;
      border-bottom:1px dashed rgba(15,23,42,0.03);
    }
    .list li:last-child{border-bottom:0}
    .list .ico{
      min-width:26px;
      height:26px;
      display:inline-grid;
      place-items:center;
      border-radius:6px;
      font-weight:700;
    }
    .ico.inherited{background: rgba(22,163,74,0.12); color:var(--green)}
    .ico.new{background: rgba(251,146,60,0.12); color:var(--gold)}

    .feat-title{font-weight:600;font-size:14px;color:#0f172a}
    .feat-desc{font-size:13px;color:var(--muted);margin-top:3px}

    /* CTA buttons */
    .cta-row{
      margin-top:16px;
      display:flex;
      gap:10px;
      align-items:center;
      justify-content:flex-start;
      flex-wrap:wrap;
    }
    .break {
  flex-basis: 100%; /* takes the whole row */
  height: 0;        /* no visual height */
}
    .btn{
      padding:10px 14px;
      border-radius:10px;
      text-decoration:none;
      font-weight:700;
      font-size:14px;
      display:inline-block;
      cursor: pointer;
    }
    .btn.primary{
      background:var(--accent);
      color:white;
      box-shadow: 0 8px 22px rgba(15,98,255,0.12);
      border:0;
    }
    .btn.ghost{
      background:transparent;
      color:var(--accent);
      border:1px solid rgba(15,98,255,0.14);
    }

    /* discount UI (for Practice card) */
    .discount-wrap{
      margin-top:12px;
      background:linear-gradient(180deg,#ffffff,#fbfdff);
      border-radius:10px;
      padding:12px;
      border:1px solid rgba(15,23,42,0.04);
      box-shadow: 0 6px 18px rgba(2,6,23,0.2);
    }
    .discount-title{font-size:13px;font-weight:700;margin-bottom:8px;color:#0f172a}
    .discount-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:8px;
    }
    .disc-tile{
      padding:10px;
      border-radius:10px;
      background:linear-gradient(180deg, rgba(15,98,255,0.03), rgba(250,250,255,0.6));
      text-align:center;
      font-size:13px;
      color:#0f172a;
      border:1px solid rgba(15,23,42,0.03);
    }
    .disc-tile small{display:block;color:var(--muted);font-size:12px;margin-top:6px}
    .disc-big{font-size:18px;font-weight:800;color:#073985}
    .disc-pop{box-shadow:0 8px 22px rgba(7,61,193,0.06);transform:translateY(-4px);border:1px solid rgba(7,61,193,0.06)}
    .discount-note{margin-top:10px;font-size:13px;color:var(--muted)}

    /* small footer / fine print */
    .fine{
      margin-top:14px;
      font-size:12px;
      color:var(--muted);
    }
    .calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0;
  font-size: 14px;
}
.calc-control {
  display: flex;
  align-items: center;
  gap: 6px;
}
.calc-control input {
  width: 60px;
  text-align: center;
  padding: 6px;
  border-radius: 6px;
  border: 1px solid rgba(15,23,42,0.15);
}
.calc-control button {
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 6px;
  width: 28px;
  height: 28px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.calc-result {
  margin-top: 12px;
  font-size: 14px;
}
.calc-price {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}
.calc-note {
  color: var(--muted);
  font-size: 12px;
}

.savingsWrap{
  max-width:900px;
  margin:36px auto;
  padding:0px;
}
h1{font-size:28px;text-align:center;margin-bottom:24px;}
.savingsCard{
  background:var(--card);
  border-radius:var(--radius);
  padding:20px;
  box-shadow:var(--shadow);
  margin-bottom:20px;
}
.inline-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  margin-bottom:12px;
}
.inline-row label{
  font-size:13px;
  color:var(--muted);
  min-width:180px;
}
.inline-row input{
  width:80px;
  padding:6px 8px;
  border-radius:8px;
  border:1px solid #d1d5db;
  font-size:13px;
}
.savingsResults{
  display:grid;
  grid-template-columns:1fr auto;
  gap:6px 12px;
  align-items:start;
}
.result-row{
  display:flex;
  flex-direction:column;
}
.result-row span.label{
  font-size:14px;
}
.result-row strong{
  color:var(--accent);
  font-size:16px;
}
.result-row small{
  color:var(--muted);
  font-size:11px;
  margin-top:2px;
}
.copy-link {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.copy-link button {
  background-color: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
}
.copy-link button:hover {
  background-color: #0952cc;
}