/**
 * voip-starter.css
 * VoIP Starter — Interactive Package Configurator
 * Prefix: vs-
 *
 * @package JamTelecom
 */

/* ─── Design tokens (local overrides) ──────────────────────────────────── */
:root {
    --vs-indigo-50:  #eef2ff;
    --vs-indigo-100: #e0e7ff;
    --vs-indigo-200: #c7d2fe;
    --vs-indigo-500: #6366f1;
    --vs-indigo-600: #4F46E5;
    --vs-indigo-700: #4338ca;
    --vs-indigo-800: #3730A3;
    --vs-violet-500: #8B5CF6;
    --vs-cyan-400:   #22d3ee;
    --vs-green-500:  #10B981;
    --vs-amber-500:  #F59E0B;
    --vs-transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─────────────────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────────────────── */
.vs-hero {
    position: relative;
    padding: 7rem 0 5rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--vs-indigo-50) 0%, #ffffff 60%);
}

.vs-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.vs-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .4;
}

.vs-hero__orb--1 {
    width: 600px; height: 600px;
    top: -200px; right: -100px;
    background: radial-gradient(circle, #c7d2fe 0%, transparent 70%);
    animation: vs-float1 12s ease-in-out infinite;
}

.vs-hero__orb--2 {
    width: 400px; height: 400px;
    bottom: -150px; left: -100px;
    background: radial-gradient(circle, #ddd6fe 0%, transparent 70%);
    animation: vs-float2 15s ease-in-out infinite;
}

@keyframes vs-float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(-40px, 30px) scale(1.05); }
}

@keyframes vs-float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(30px, -20px) scale(1.08); }
}

.vs-hero__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(99,102,241,.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(99,102,241,.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.vs-hero__container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 1;
}

.vs-hero__back {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--vs-indigo-600);
    text-decoration: none;
    margin-bottom: 1.5rem;
    opacity: .8;
    transition: opacity var(--vs-transition);
}

.vs-hero__back:hover { opacity: 1; }

.vs-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .9rem;
    background: var(--vs-indigo-100);
    border: 1px solid var(--vs-indigo-200);
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--vs-indigo-700);
    margin-bottom: 1.25rem;
}

.vs-pill__dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--vs-green-500);
    box-shadow: 0 0 0 0 rgba(16,185,129,.5);
    animation: vs-pulse 2s infinite;
}

@keyframes vs-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(16,185,129,.5); }
    70%  { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
    100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

.vs-hero__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--color-text);
    margin-bottom: 1.1rem;
}

.vs-hero__desc {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 1.5rem;
}

.vs-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.25rem;
    margin-bottom: 2rem;
}

.vs-hero__trust-item {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--color-text-light);
}

/* Progress indicator */
.vs-progress {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.vs-progress__track {
    height: 4px;
    background: var(--vs-indigo-100);
    border-radius: 100px;
    overflow: hidden;
}

.vs-progress__fill {
    height: 100%;
    width: 33.33%;
    background: linear-gradient(90deg, var(--vs-indigo-600), var(--vs-violet-500));
    border-radius: 100px;
    transition: width .5s cubic-bezier(.4,0,.2,1);
}

.vs-progress__steps {
    display: flex;
    justify-content: space-between;
    font-size: .78rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.vs-progress__step.is-active {
    color: var(--vs-indigo-600);
    font-weight: 700;
}

/* Phone UI mockup */
.vs-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vs-phone {
    position: relative;
    width: 280px;
}

.vs-phone__frame {
    border-radius: 28px !important;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(79,70,229,.2), 0 8px 24px rgba(0,0,0,.08);
    transform: perspective(1000px) rotateY(-8deg) rotateX(3deg);
    transition: transform .4s ease;
    background: rgba(255,255,255,.92) !important;
    backdrop-filter: blur(20px);
}

.vs-phone__frame:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.vs-phone__bar {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .7rem 1rem;
    background: var(--vs-indigo-50);
    border-bottom: 1px solid var(--vs-indigo-100);
    font-size: .75rem;
    font-weight: 600;
    color: var(--vs-indigo-700);
}

.vs-phone__dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--vs-indigo-200);
}

.vs-phone__dot:first-child { background: #ff6b6b; }
.vs-phone__dot:nth-child(2) { background: #ffd166; }
.vs-phone__dot:nth-child(3) { background: #06d6a0; }

.vs-phone__screen {
    padding: 1.25rem;
}

.vs-phone__call {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--vs-indigo-100);
}

.vs-phone__avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vs-indigo-500), var(--vs-violet-500));
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(99,102,241,.3);
}

.vs-phone__caller-name {
    font-weight: 700;
    font-size: .9rem;
    color: var(--color-text);
    margin: 0;
}

.vs-phone__caller-sub {
    font-size: .73rem;
    color: var(--color-text-light);
    margin: 0;
}

.vs-phone__badge {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .7rem;
    color: var(--color-text-light);
    background: var(--vs-indigo-50);
    padding: .2rem .6rem;
    border-radius: 100px;
}

.vs-phone__quality {
    display: inline-flex;
    align-items: center;
    gap: .2rem;
    color: var(--vs-green-500);
    font-weight: 600;
}

.vs-phone__actions {
    display: flex;
    gap: 1rem;
}

.vs-phone__btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .15s ease, box-shadow .15s ease;
}

.vs-phone__btn:hover { transform: scale(1.08); }

.vs-phone__btn--reject {
    background: #fee2e2;
    color: #dc2626;
}

.vs-phone__btn--accept {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    box-shadow: 0 4px 14px rgba(16,185,129,.35);
    animation: vs-ring 1.4s ease-in-out infinite;
}

@keyframes vs-ring {
    0%, 100% { box-shadow: 0 4px 14px rgba(16,185,129,.35); }
    50%       { box-shadow: 0 4px 22px rgba(16,185,129,.6); }
}

.vs-phone__wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 32px;
    margin: .75rem 0;
}

.vs-phone__wave-bar {
    display: block;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(to top, var(--vs-indigo-500), var(--vs-cyan-400));
    animation: vs-wave 0.9s ease-in-out infinite alternate;
    height: 8px;
}

@keyframes vs-wave {
    from { height: 4px; opacity: .4; }
    to   { height: 24px; opacity: 1; }
}

.vs-phone__stats {
    display: flex;
    justify-content: space-between;
    background: var(--vs-indigo-50);
    border-radius: 12px;
    padding: .6rem .75rem;
}

.vs-phone__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.vs-phone__stat strong {
    font-family: 'JetBrains Mono', monospace;
    font-size: .82rem;
    font-weight: 700;
    color: var(--vs-indigo-700);
}

.vs-phone__stat span {
    font-size: .65rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.vs-phone__badge-float {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: #fff;
    border: 1.5px solid var(--vs-indigo-200);
    border-radius: 100px;
    padding: .35rem .85rem;
    font-size: .75rem;
    font-weight: 600;
    color: var(--vs-indigo-700);
    box-shadow: 0 4px 16px rgba(79,70,229,.15);
    display: flex;
    align-items: center;
    gap: .4rem;
    white-space: nowrap;
}

/* ─────────────────────────────────────────────────────────────────────────
   CONFIGURATOR LAYOUT
   ───────────────────────────────────────────────────────────────────────── */
.vs-configurator {
    padding: 5rem 0;
    background: #fff;
}

.vs-config-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: start;
}

/* ─────────────────────────────────────────────────────────────────────────
   STEPS SYSTEM
   ───────────────────────────────────────────────────────────────────────── */
.vs-step {
    display: none;
}

.vs-step.is-active {
    display: block;
    animation: vs-step-in .3s ease;
}

@keyframes vs-step-in {
    from { opacity: 0; transform: translateX(16px); }
    to   { opacity: 1; transform: translateX(0); }
}

.vs-step__header {
    margin-bottom: 2rem;
}

.vs-step__badge {
    display: inline-block;
    padding: .2rem .65rem;
    background: var(--vs-indigo-100);
    color: var(--vs-indigo-600);
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: .6rem;
}

.vs-step__badge--green {
    background: #d1fae5;
    color: #065f46;
}

.vs-step__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: .4rem;
    letter-spacing: -.02em;
}

.vs-step__desc {
    font-size: .9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.vs-step__back {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .82rem;
    font-weight: 500;
    color: var(--color-text-light);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-bottom: .75rem;
    transition: color var(--vs-transition);
}

.vs-step__back:hover { color: var(--vs-indigo-600); }

/* ─────────────────────────────────────────────────────────────────────────
   BILLING TOGGLE
   ───────────────────────────────────────────────────────────────────────── */
.vs-billing-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: var(--vs-indigo-50);
    border: 1.5px solid var(--vs-indigo-100);
    border-radius: 12px;
    padding: 4px;
    gap: 0;
    margin-bottom: 1.5rem;
}

.vs-billing-toggle__btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1.1rem;
    border: none;
    background: transparent;
    border-radius: 9px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--color-text-light);
    cursor: pointer;
    transition: color var(--vs-transition);
}

.vs-billing-toggle__btn.is-active {
    color: var(--vs-indigo-700);
}

.vs-billing-toggle__slider {
    position: absolute;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    width: calc(50% - 4px);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 8px rgba(0,0,0,.1);
    transition: transform .28s cubic-bezier(.4,0,.2,1);
    z-index: 0;
}

.vs-billing-toggle__slider.is-annual {
    transform: translateX(100%);
}

.vs-billing-toggle__save {
    background: linear-gradient(90deg, var(--vs-green-500), #059669);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    padding: .1rem .4rem;
    border-radius: 100px;
    letter-spacing: .03em;
    text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────────────────────
   PLAN CARDS
   ───────────────────────────────────────────────────────────────────────── */
.vs-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.vs-plan-card {
    position: relative;
    border: 2px solid var(--color-border, #e8edf5);
    border-radius: 16px;
    padding: 1.4rem;
    cursor: pointer;
    background: #fff;
    transition: border-color var(--vs-transition), box-shadow var(--vs-transition), transform var(--vs-transition);
    outline: none;
}

.vs-plan-card:hover {
    border-color: var(--vs-indigo-200);
    box-shadow: 0 4px 20px rgba(79,70,229,.1);
    transform: translateY(-2px);
}

.vs-plan-card:focus-visible {
    outline: 2px solid var(--vs-indigo-500);
    outline-offset: 2px;
}

.vs-plan-card.is-selected {
    border-color: var(--vs-indigo-500);
    box-shadow: 0 0 0 3px rgba(99,102,241,.15), 0 8px 24px rgba(79,70,229,.15);
    transform: translateY(-3px);
}

.vs-plan-card--featured {
    background: linear-gradient(135deg, #fafaff 0%, #f5f3ff 100%);
    border-color: var(--vs-violet-500);
}

.vs-plan-card--featured.is-selected {
    border-color: var(--vs-violet-500);
    box-shadow: 0 0 0 3px rgba(139,92,246,.2), 0 8px 24px rgba(139,92,246,.2);
}

.vs-plan-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--vs-indigo-600), var(--vs-violet-500));
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    padding: .2rem .75rem;
    border-radius: 100px;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.vs-plan-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: .5rem;
    margin-bottom: 1rem;
}

.vs-plan-card__name-wrap {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.vs-plan-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
}

.vs-plan-card__icon--blue   { background: #eff6ff; color: #3b82f6; }
.vs-plan-card__icon--violet { background: #f5f3ff; color: var(--vs-violet-500); }
.vs-plan-card__icon--amber  { background: #fffbeb; color: var(--vs-amber-500); }

.vs-plan-card__name {
    font-size: .95rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.vs-plan-card__tag {
    font-size: .7rem;
    color: var(--color-text-light);
    margin: 0;
}

.vs-plan-card__price-wrap {
    text-align: right;
}

.vs-plan-card__price {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    line-height: 1;
}

.vs-plan-card__currency {
    font-size: .8rem;
    font-weight: 700;
    color: var(--vs-indigo-700);
    margin-top: 3px;
}

.vs-plan-card__amount {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--vs-indigo-700);
    transition: all .3s ease;
}

.vs-plan-card__period {
    font-size: .68rem;
    color: var(--color-text-light);
    display: block;
    text-align: right;
}

.vs-plan-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.vs-plan-card__features li {
    display: flex;
    align-items: flex-start;
    gap: .4rem;
    font-size: .78rem;
    color: var(--color-text-light);
    line-height: 1.35;
}

.vs-plan-card__features li svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.vs-plan-card__select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--vs-indigo-100);
    padding-top: .9rem;
}

.vs-plan-card__btn {
    font-size: .78rem;
    font-weight: 600;
    color: var(--vs-indigo-600);
}

.vs-plan-card__check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px; height: 24px;
    border-radius: 50%;
    border: 2px solid var(--vs-indigo-200);
    color: var(--vs-indigo-600);
    transition: background var(--vs-transition), border-color var(--vs-transition);
}

.vs-plan-card.is-selected .vs-plan-card__check {
    background: var(--vs-indigo-600);
    border-color: var(--vs-indigo-600);
    color: #fff;
}

/* Next/Continue buttons */
.vs-step-next {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 1.75rem;
    background: linear-gradient(135deg, var(--vs-indigo-600), var(--vs-violet-500));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity var(--vs-transition), transform var(--vs-transition), box-shadow var(--vs-transition);
    box-shadow: 0 4px 16px rgba(79,70,229,.3);
}

.vs-step-next:hover:not(:disabled) {
    box-shadow: 0 6px 24px rgba(79,70,229,.45);
    transform: translateY(-1px);
}

.vs-step-next:disabled {
    opacity: .4;
    cursor: not-allowed;
}

/* ─────────────────────────────────────────────────────────────────────────
   USER SLIDER
   ───────────────────────────────────────────────────────────────────────── */
.vs-config-block {
    margin-bottom: 2rem;
}

.vs-config-block__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: .85rem;
}

.vs-config-block__badge {
    font-size: .7rem;
    font-weight: 700;
    background: var(--vs-indigo-100);
    color: var(--vs-indigo-600);
    border-radius: 100px;
    padding: .15rem .55rem;
}

.vs-config-block__hint {
    font-size: .78rem;
    color: var(--vs-indigo-600);
    margin-top: .4rem;
    font-weight: 500;
    min-height: 1.1em;
}

.vs-user-count-display {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--vs-indigo-600);
    min-width: 3ch;
    text-align: right;
    transition: transform .1s ease;
}

.vs-slider-wrap {
    position: relative;
    padding-bottom: .25rem;
}

.vs-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 100px;
    background: var(--vs-indigo-100);
    outline: none;
    cursor: pointer;
}

.vs-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vs-indigo-600), var(--vs-violet-500));
    box-shadow: 0 2px 8px rgba(79,70,229,.4);
    cursor: grab;
    border: 3px solid #fff;
    transition: transform .15s ease;
}

.vs-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.15); }

.vs-slider::-moz-range-thumb {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vs-indigo-600), var(--vs-violet-500));
    box-shadow: 0 2px 8px rgba(79,70,229,.4);
    cursor: grab;
    border: 3px solid #fff;
}

.vs-slider__labels {
    display: flex;
    justify-content: space-between;
    font-size: .68rem;
    color: var(--color-text-light);
    margin-top: .4rem;
    font-weight: 500;
}

/* QTY control */
.vs-qty-control {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.vs-qty-btn {
    width: 38px; height: 38px;
    border-radius: 10px;
    border: 1.5px solid var(--vs-indigo-200);
    background: var(--vs-indigo-50);
    color: var(--vs-indigo-700);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--vs-transition), border-color var(--vs-transition);
}

.vs-qty-btn:hover {
    background: var(--vs-indigo-100);
    border-color: var(--vs-indigo-300, #a5b4fc);
}

.vs-qty-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--vs-indigo-700);
    min-width: 2ch;
    text-align: center;
}

/* ─────────────────────────────────────────────────────────────────────────
   ADD-ONS
   ───────────────────────────────────────────────────────────────────────── */
.vs-addons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
}

.vs-addon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .9rem 1rem;
    border: 1.5px solid var(--color-border, #e8edf5);
    border-radius: 12px;
    cursor: pointer;
    background: #fff;
    transition: border-color var(--vs-transition), box-shadow var(--vs-transition), background var(--vs-transition);
    user-select: none;
}

.vs-addon input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.vs-addon:hover {
    border-color: var(--vs-indigo-200);
    background: var(--vs-indigo-50);
}

.vs-addon.is-checked {
    border-color: var(--vs-indigo-500);
    background: linear-gradient(135deg, #fafaff, #f5f3ff);
    box-shadow: 0 0 0 2px rgba(99,102,241,.12);
}

.vs-addon__content {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    flex: 1;
}

.vs-addon__icon { font-size: 1.25rem; }

.vs-addon__content strong {
    display: block;
    font-size: .82rem;
    font-weight: 700;
    color: var(--color-text);
}

.vs-addon__content span {
    display: block;
    font-size: .7rem;
    color: var(--color-text-light);
    line-height: 1.3;
}

.vs-addon__price {
    font-size: .8rem;
    font-weight: 700;
    color: var(--vs-indigo-600);
    font-family: 'JetBrains Mono', monospace;
    white-space: nowrap;
    text-align: right;
}

.vs-addon__price small {
    font-family: inherit;
    font-size: .6rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.vs-addon__check {
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 1.5px solid var(--vs-indigo-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: background var(--vs-transition), border-color var(--vs-transition), color var(--vs-transition);
    flex-shrink: 0;
}

.vs-addon.is-checked .vs-addon__check {
    background: var(--vs-indigo-600);
    border-color: var(--vs-indigo-600);
    color: #fff;
}

/* Highlighted / promoted addon (e.g. AI Agent) */
.vs-addon--highlight {
    grid-column: 1 / -1;
    border-color: rgba(124,58,237,.25);
    background: linear-gradient(135deg, #faf5ff, #f3e8ff);
    position: relative;
    overflow: visible;
}
.vs-addon--highlight::before {
    content: 'NEW';
    position: absolute;
    top: -8px; right: 12px;
    background: linear-gradient(135deg, #7C3AED, #6366F1);
    color: #fff;
    font-size: .6rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 6px;
    letter-spacing: .06em;
}
.vs-addon--highlight:hover {
    border-color: rgba(124,58,237,.45);
    background: linear-gradient(135deg, #f3e8ff, #ede9fe);
}
.vs-addon--highlight.is-checked {
    border-color: #7C3AED;
    background: linear-gradient(135deg, #f3e8ff, #ede9fe);
    box-shadow: 0 0 0 2px rgba(124,58,237,.15);
}

/* ─────────────────────────────────────────────────────────────────────────
   REVIEW SUMMARY (step 3)
   ───────────────────────────────────────────────────────────────────────── */
.vs-review-summary {
    padding: 1.25rem !important;
    margin-bottom: 1.5rem;
    font-size: .88rem;
}

/* ─────────────────────────────────────────────────────────────────────────
   CONTACT FORM (step 3)
   ───────────────────────────────────────────────────────────────────────── */
.vs-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.vs-form__group {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-bottom: 1rem;
}

.vs-form__group:last-child { margin-bottom: 0; }

.vs-form__label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--color-text);
}

.vs-form__label span { color: #ef4444; }

.vs-form__input,
.vs-form__textarea {
    padding: .7rem .95rem;
    border: 1.5px solid var(--vs-indigo-100);
    border-radius: 10px;
    font-size: .9rem;
    font-family: inherit;
    color: var(--color-text);
    background: var(--vs-indigo-50);
    transition: border-color var(--vs-transition), box-shadow var(--vs-transition);
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.vs-form__input:focus,
.vs-form__textarea:focus {
    border-color: var(--vs-indigo-500);
    box-shadow: 0 0 0 3px rgba(99,102,241,.12);
    background: #fff;
}

.vs-form__input.is-error { border-color: #ef4444; }

.vs-form__textarea {
    resize: vertical;
    min-height: 80px;
}

.vs-form__check {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    margin: 1rem 0;
    font-size: .83rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.vs-form__check input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: var(--vs-indigo-600);
    cursor: pointer;
}

.vs-form__check a { color: var(--vs-indigo-600); }

.vs-form__submit {
    margin-top: .5rem;
}

.vs-form__reassure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    font-size: .75rem;
    color: var(--color-text-light);
    margin-top: .75rem;
    text-align: center;
}

.vs-success {
    text-align: center;
    padding: 2rem;
}

.vs-success__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vs-success h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: .5rem;
}

.vs-success p {
    font-size: .92rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ─────────────────────────────────────────────────────────────────────────
   STICKY SUMMARY PANEL
   ───────────────────────────────────────────────────────────────────────── */
.vs-summary {
    position: sticky;
    top: 100px;
}

.vs-summary__inner {
    padding: 1.5rem !important;
    border-radius: 20px !important;
}

.vs-summary__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.vs-summary__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
}

.vs-summary__period-badge {
    font-size: .72rem;
    font-weight: 700;
    padding: .18rem .55rem;
    border-radius: 100px;
    background: var(--vs-indigo-100);
    color: var(--vs-indigo-700);
    transition: all .25s ease;
}

.vs-summary__period-badge.is-annual {
    background: #d1fae5;
    color: #065f46;
}

.vs-summary__empty {
    text-align: center;
    padding: 1.5rem 0;
    color: var(--color-text-light);
}

.vs-summary__empty-icon {
    color: var(--vs-indigo-200);
    margin-bottom: .75rem;
}

.vs-summary__empty p {
    font-size: .85rem;
    line-height: 1.5;
}

.vs-summary__plan {
    margin-bottom: 1rem;
}

.vs-summary__plan-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem .9rem;
    background: var(--vs-indigo-50);
    border-radius: 10px;
    border: 1px solid var(--vs-indigo-100);
}

.vs-summary__plan-name {
    font-weight: 700;
    font-size: .9rem;
    color: var(--vs-indigo-700);
}

.vs-summary__plan-price {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: var(--vs-indigo-600);
    font-size: .9rem;
}

.vs-summary__line-items {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-bottom: .5rem;
}

.vs-summary__line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .83rem;
    color: var(--color-text-light);
    padding: .3rem 0;
    border-bottom: 1px dashed var(--vs-indigo-100);
}

.vs-summary__line:last-child { border-bottom: none; }

.vs-summary__line strong {
    color: var(--color-text);
}

.vs-summary__divider {
    height: 1px;
    background: var(--vs-indigo-100);
    margin: .75rem 0;
}

.vs-summary__total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .88rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: .35rem;
}

.vs-summary__total {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--vs-indigo-700);
    transition: all .25s ease;
}

.vs-summary__annual-hint {
    font-size: .77rem;
    color: var(--color-text-light);
    text-align: right;
    margin-bottom: .75rem;
}

.vs-summary__savings {
    font-size: .8rem;
    font-weight: 700;
    color: var(--vs-green-500);
    background: rgba(16,185,129,.08);
    border: 1px solid rgba(16,185,129,.2);
    border-radius: 8px;
    padding: .45rem .8rem;
    text-align: center;
    margin-bottom: .85rem;
}

.vs-summary__cta {
    margin-top: .75rem;
}

.vs-summary__guarantees {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-top: 1.1rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--vs-indigo-100);
}

.vs-summary__guarantee {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .77rem;
    color: var(--color-text-light);
}

.vs-summary__trusted {
    margin-top: .9rem;
    padding-top: .9rem;
    border-top: 1px solid var(--vs-indigo-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vs-summary__trusted p {
    font-size: .75rem;
    color: var(--color-text-light);
    margin: 0;
}

.vs-summary__avatars {
    display: flex;
    gap: -4px;
}

.vs-summary__avatars span {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    font-weight: 700;
    margin-left: -6px;
}

.vs-summary__avatars span:first-child { margin-left: 0; }

.vs-summary__talk {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding: .75rem 1rem;
    background: var(--vs-indigo-50);
    border-radius: 12px;
    border: 1px solid var(--vs-indigo-100);
}

.vs-summary__talk p {
    font-size: .8rem;
    color: var(--color-text-light);
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────────────────
   COMPARISON TABLE
   ───────────────────────────────────────────────────────────────────────── */
.vs-compare {
    padding: 5rem 0;
    background: var(--vs-indigo-50);
}

.vs-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

.vs-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: .87rem;
}

.vs-table thead tr {
    background: linear-gradient(135deg, var(--vs-indigo-700), var(--vs-violet-500));
}

.vs-table thead th {
    padding: 1.1rem 1.25rem;
    text-align: center;
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .04em;
}

.vs-table__feature-col {
    text-align: left !important;
    width: 38%;
}

.vs-table__plan-col span {
    display: block;
    font-size: .72rem;
    font-weight: 400;
    opacity: .82;
    margin-top: .15rem;
}

.vs-table__plan-col--featured {
    background: rgba(255,255,255,.15);
    position: relative;
}

.vs-table__group-row td {
    padding: .7rem 1.25rem .3rem;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--vs-indigo-600);
    background: #f8faff;
    border-bottom: 1px solid var(--vs-indigo-100);
    text-align: left;
}

.vs-table tbody tr:nth-child(even) { background: #fafaff; }
.vs-table tbody tr:hover { background: #f0f4ff; }

.vs-table__label {
    padding: .7rem 1.25rem;
    color: var(--color-text);
    font-weight: 500;
    text-align: left;
    border-bottom: 1px solid var(--vs-indigo-100);
}

.vs-table__cell {
    padding: .7rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--vs-indigo-100);
    color: var(--color-text-light);
    font-weight: 500;
}

.vs-table__cell--featured {
    background: rgba(249,246,255,.6);
}

.vs-table tfoot td {
    padding: 1rem 1.25rem;
    text-align: center;
    background: #f8faff;
    border-top: 2px solid var(--vs-indigo-100);
}

.vs-table__cta {
    min-width: 130px;
}

/* ─────────────────────────────────────────────────────────────────────────
   GUARANTEE STRIP
   ───────────────────────────────────────────────────────────────────────── */
.vs-guarantees {
    padding: 3rem 0;
    background: #fff;
    border-top: 1px solid var(--vs-indigo-100);
    border-bottom: 1px solid var(--vs-indigo-100);
}

.vs-guarantees__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.vs-guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
}

.vs-guarantee-item__icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    line-height: 1;
}

.vs-guarantee-item strong {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: .25rem;
}

.vs-guarantee-item p {
    font-size: .8rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────────────────────────────────────── */
.vs-testimonials {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--vs-indigo-50), #fff);
}

.vs-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.vs-testimonial {
    padding: 1.75rem !important;
    border-radius: 20px !important;
    border: 1px solid var(--vs-indigo-100) !important;
    transition: transform var(--vs-transition), box-shadow var(--vs-transition);
    margin: 0;
}

.vs-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(79,70,229,.12);
}

.vs-testimonial__stars {
    display: flex;
    gap: 2px;
    margin-bottom: .85rem;
}

.vs-testimonial__quote {
    font-size: .92rem;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0 0 1.25rem;
    font-style: italic;
}

.vs-testimonial__author {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-style: normal;
}

.vs-testimonial__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    font-weight: 800;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vs-testimonial__author strong {
    display: block;
    font-size: .88rem;
    font-weight: 700;
    color: var(--color-text);
}

.vs-testimonial__author span {
    display: block;
    font-size: .75rem;
    color: var(--color-text-light);
    line-height: 1.3;
}

.vs-testimonial__plan-badge {
    display: inline-block;
    font-size: .67rem;
    font-weight: 700;
    background: var(--vs-indigo-100);
    color: var(--vs-indigo-600);
    padding: .12rem .45rem;
    border-radius: 100px;
    margin-top: .2rem;
}

/* ─────────────────────────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────────────────────────── */
.vs-faq {
    padding: 5rem 0;
    background: #fff;
}

.vs-faq__list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: 2rem;
}

.vs-faq__item {
    padding: 0 !important;
    border-radius: 14px !important;
    overflow: hidden;
    border: 1px solid var(--vs-indigo-100) !important;
    transition: box-shadow var(--vs-transition);
}

.vs-faq__item:hover {
    box-shadow: 0 4px 16px rgba(79,70,229,.08);
}

.vs-faq__item[open] {
    box-shadow: 0 4px 20px rgba(79,70,229,.1);
    border-color: var(--vs-indigo-200) !important;
}

.vs-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.35rem;
    cursor: pointer;
    list-style: none;
    font-size: .92rem;
    font-weight: 600;
    color: var(--color-text);
    user-select: none;
}

.vs-faq__question::-webkit-details-marker { display: none; }

.vs-faq__item[open] .vs-faq__question {
    border-bottom: 1px solid var(--vs-indigo-100);
}

.vs-faq__chevron {
    flex-shrink: 0;
    color: var(--vs-indigo-400, #818cf8);
    transition: transform .25s ease;
}

.vs-faq__item[open] .vs-faq__chevron {
    transform: rotate(180deg);
}

.vs-faq__answer {
    padding: 1rem 1.35rem;
    animation: vs-faq-open .2s ease;
}

@keyframes vs-faq-open {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.vs-faq__answer p {
    font-size: .88rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────────────────
   FINAL CTA
   ───────────────────────────────────────────────────────────────────────── */
.vs-final-cta {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--vs-indigo-700) 0%, #312e81 50%, #1e1b4b 100%);
    overflow: hidden;
}

.vs-final-cta__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.vs-final-cta__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .3;
}

.vs-final-cta__orb--1 {
    width: 500px; height: 500px;
    top: -200px; right: -100px;
    background: radial-gradient(circle, var(--vs-violet-500) 0%, transparent 70%);
}

.vs-final-cta__orb--2 {
    width: 400px; height: 400px;
    bottom: -200px; left: -100px;
    background: radial-gradient(circle, var(--vs-cyan-400) 0%, transparent 70%);
}

.vs-final-cta__inner {
    position: relative;
    text-align: center;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.vs-final-cta__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -.02em;
}

.vs-final-cta__desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 2rem;
}

.vs-final-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────────────────────────
   ANIMATION HELPERS
   ───────────────────────────────────────────────────────────────────────── */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .vs-config-layout {
        grid-template-columns: 1fr 340px;
    }
}

@media (max-width: 1024px) {
    .vs-hero__container {
        grid-template-columns: 1fr;
    }

    .vs-hero__visual {
        display: none;
    }

    .vs-config-layout {
        grid-template-columns: 1fr;
    }

    .vs-summary {
        position: static;
        order: -1;
    }

    .vs-plans {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .vs-guarantees__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vs-testimonials__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .vs-hero { padding: 5rem 0 3rem; }

    .vs-plans { grid-template-columns: 1fr; }

    .vs-addons { grid-template-columns: 1fr; }

    .vs-form__row { grid-template-columns: 1fr; }

    .vs-table thead { font-size: .75rem; }

    .vs-guarantees__grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .vs-testimonials__grid { grid-template-columns: 1fr; }

    .vs-final-cta { padding: 4rem 0; }
}

@media (max-width: 480px) {
    .vs-guarantees__grid { grid-template-columns: 1fr; }

    .vs-billing-toggle { width: 100%; justify-content: space-between; }
}
