:root {
    --wp-purple: #4120a9;
    --wp-purple-dark: #2e1680;
    --wp-pink: #fd49a0;
    --wp-muted: #7b7b9a;
    --wp-border: rgba(65,32,169,0.12);
    --wp-bg-tint: #f7f5ff;
    --wp-text: #1e1e2e;
  }




  #calc-wrap {
    max-width: 720px;
    margin: 0 auto;
  }

  /* Header */
  #calc-header {
    text-align: center;
    margin-bottom: 40px;
       margin-top: 40px;

  }

  #calc-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--wp-purple);
    margin-bottom: 8px;
  }

  #calc-header p {
    color: var(--wp-muted);
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* Progress bar */
  #calc-progress-wrap {
    margin-bottom: 32px;
  }

  #calc-progress-bar-bg {
    background: var(--wp-border);
    border-radius: 99px;
    height: 6px;
    overflow: hidden;
    margin-bottom: 8px;
  }

  #calc-progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--wp-pink), var(--wp-purple));
    border-radius: 99px;
    transition: width 0.4s ease;
    width: 0%;
  }

  #calc-progress-label {
    font-size: 0.78rem;
    color: var(--wp-muted);
    text-align: right;
    font-weight: 600;
  }

  /* Step card */
  .calc-step {
    display: none;
    animation: fadeUp 0.4s ease both;
  }

  .calc-step.active {
    display: block;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .calc-card {
    background: #fff;
    border: 2px solid var(--wp-border);
    border-radius: 20px;
    padding: 36px 32px;
  }

  .calc-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--wp-purple);
    margin-bottom: 6px;
    line-height: 1.4;
  }

  .calc-card .calc-sub {
    font-size: 0.83rem;
    color: var(--wp-muted);
    margin-bottom: 24px;
    line-height: 1.6;
  }

  /* Choice buttons */
  .calc-choices {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .calc-choices.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .calc-choice-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 2px solid var(--wp-border);
    border-radius: 14px;
    padding: 16px 20px;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    width: 100%;
  }

  .calc-choice-btn:hover {
    border-color: rgba(65,32,169,0.35);
    background: var(--wp-bg-tint);
  }

  .calc-choice-btn.selected {
    border-color: var(--wp-purple);
    background: linear-gradient(135deg, rgba(253,73,160,0.05), rgba(65,32,169,0.07));
  }

  .calc-choice-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(253,73,160,0.1), rgba(65,32,169,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .calc-choice-icon i {
    color: var(--wp-pink);
    font-size: 16px;
  }

  .calc-choice-btn.selected .calc-choice-icon {
    background: linear-gradient(135deg, var(--wp-pink), var(--wp-purple));
  }

  .calc-choice-btn.selected .calc-choice-icon i {
    color: #fff;
  }

  .calc-choice-text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--wp-purple);
    margin-bottom: 2px;
  }

  .calc-choice-text span {
    font-size: 0.78rem;
    color: var(--wp-muted);
    line-height: 1.4;
  }

  /* Nav buttons */
  .calc-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    gap: 12px;
  }

  .calc-btn-back {
    background: transparent;
    border: 2px solid var(--wp-border);
    color: var(--wp-muted);
    padding: 12px 24px;
    border-radius: 50px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .calc-btn-back:hover {
    border-color: var(--wp-muted);
    color: var(--wp-text);
  }

  .calc-btn-next {
    background: linear-gradient(135deg, var(--wp-pink), var(--wp-purple));
    color: #fff;
    border: none;
    padding: 13px 32px;
    border-radius: 50px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

  .calc-btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(253,73,160,0.35);
  }

  .calc-btn-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }

  /* ---- RESULTS ---- */
  #calc-results {
    display: none;
    animation: fadeUp 0.45s ease both;
  }

  .result-plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--wp-pink), var(--wp-purple));
    color: #fff;
    padding: 6px 18px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
  }

  .result-header {
    background: linear-gradient(160deg, var(--wp-purple-dark), var(--wp-purple));
    border-radius: 20px;
    padding: 36px 32px;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
  }

  .result-header::after {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: rgba(253,73,160,0.15);
  }

  .result-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    opacity: 0.85;
    margin-bottom: 4px;
  }

  .result-price-build {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 4px;
  }

  .result-price-note {
    font-size: 0.78rem;
    opacity: 0.65;
    margin-bottom: 20px;
  }

  .result-divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 20px 0;
  }

  .result-running {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .result-running-label {
    font-size: 0.82rem;
    opacity: 0.75;
  }

  .result-running-price {
    font-size: 1.3rem;
    font-weight: 800;
  }

  /* Features list */
  .result-features-card {
    background: #fff;
    border: 2px solid var(--wp-border);
    border-radius: 20px;
    padding: 28px 28px;
    margin-bottom: 16px;
  }

  .result-features-card h4 {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--wp-purple);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .result-features-card h4 i {
    color: var(--wp-pink);
  }

  .result-features-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
  }

  .result-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.82rem;
    color: var(--wp-text);
    line-height: 1.5;
  }

  .result-features-list li i {
    color: #51cf66;
    font-size: 0.75rem;
    margin-top: 3px;
    flex-shrink: 0;
  }

  /* Promo callout */
  .result-promo {
    background: linear-gradient(135deg, rgba(253,73,160,0.08), rgba(65,32,169,0.08));
    border: 1px solid rgba(65,32,169,0.15);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .result-promo-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--wp-pink), var(--wp-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .result-promo-icon i { color: #fff; font-size: 18px; }

  .result-promo-text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--wp-purple);
    margin-bottom: 3px;
  }

  .result-promo-text span {
    font-size: 0.78rem;
    color: var(--wp-muted);
    line-height: 1.5;
  }

  /* CTA buttons */
  .result-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
  }

  .result-cta-primary {
    flex: 1;
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--wp-pink), var(--wp-purple));
    color: #fff;
    padding: 15px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }

  .result-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(253,73,160,0.35);
    color: #fff;
    text-decoration: none;
  }

  .result-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--wp-purple);
    padding: 15px 24px;
    border-radius: 50px;
    border: 2px solid var(--wp-border);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    cursor: pointer;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    transition: all 0.2s ease;
  }

  .result-cta-secondary:hover {
    border-color: var(--wp-purple);
    background: var(--wp-bg-tint);
  }

  /* Responsive */
  @media (max-width: 600px) {
    .calc-card { padding: 28px 20px; }
    .calc-choices.grid-2 { grid-template-columns: 1fr; }
    .result-header { padding: 28px 22px; }
    .result-price-build { font-size: 2rem; }
    .result-features-card { padding: 22px 18px; }
  }