/* ── Pricing Widget ─────────────────────────────────────────────────────────── */
.neweb-pricing {
    padding: 10rem 1.5rem 14rem;
    overflow: hidden;
}

.neweb-pricing__inner {
    max-width: 72rem;
    margin: 0 auto;
}

.neweb-pricing__header {
    text-align: center;
    margin-bottom: 5rem;
}

.neweb-pricing__label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-brand);
}

.neweb-pricing__heading {
    margin-top: 1.25rem;
    font-family: var(--font-body);
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
}

[data-theme="dark"] .neweb-pricing__heading {
    color: #ffffff;
}

.neweb-pricing__heading-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.neweb-pricing__subtitle {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: #64748b;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

[data-theme="dark"] .neweb-pricing__subtitle {
    color: #94a3b8;
}

.neweb-pricing__note {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Grid */
.neweb-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: start;
}

/* Card */
.neweb-pricing__card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    transition: all 0.5s;
}

.neweb-pricing__card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .neweb-pricing__card {
    border-color: #334155;
    background: rgba(30, 41, 59, 0.5);
}

[data-theme="dark"] .neweb-pricing__card:hover {
    border-color: #475569;
}

/* Highlighted card */
.neweb-pricing__card--highlighted {
    border-color: rgba(36, 127, 195, 0.4);
    background: transparent;
}

@media (min-width: 1024px) {
    .neweb-pricing__card--highlighted {
        margin-top: -1rem;
        margin-bottom: -1rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.neweb-pricing__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    border-radius: 9999px;
    background: var(--color-brand);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    box-shadow: 0 0 20px rgba(36, 127, 195, 0.3);
}

.neweb-pricing__plan-name {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
}

[data-theme="dark"] .neweb-pricing__plan-name {
    color: #ffffff;
}

.neweb-pricing__plan-desc {
    margin-top: 6px;
    font-size: 0.875rem;
    color: #64748b;
}

[data-theme="dark"] .neweb-pricing__plan-desc {
    color: #94a3b8;
}

/* Price */
.neweb-pricing__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 1.75rem;
}

.neweb-pricing__currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: #94a3b8;
}

.neweb-pricing__card--highlighted .neweb-pricing__currency {
    color: rgba(36, 127, 195, 0.7);
}

.neweb-pricing__amount {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f172a;
}

[data-theme="dark"] .neweb-pricing__amount {
    color: #ffffff;
}

.neweb-pricing__interval {
    margin-left: 4px;
    color: #94a3b8;
}

/* CTA */
.neweb-pricing__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 2rem;
    padding: 14px 0;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: transparent;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.neweb-pricing__cta:hover {
    border-color: rgba(36, 127, 195, 0.3);
    background: #f8fafc;
    color: #1e293b;
}

[data-theme="dark"] .neweb-pricing__cta {
    border-color: #475569;
    color: #cbd5e1;
}

[data-theme="dark"] .neweb-pricing__cta:hover {
    background: #334155;
    color: #ffffff;
}

.neweb-pricing__cta--primary {
    width: 100%;
    margin-top: 2rem;
    padding: 14px 0;
}

/* Features list */
.neweb-pricing__features {
    list-style: none;
    margin-top: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.neweb-pricing__features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #64748b;
}

.neweb-pricing__card--highlighted .neweb-pricing__features li {
    color: #475569;
}

[data-theme="dark"] .neweb-pricing__card--highlighted .neweb-pricing__features li {
    color: #cbd5e1;
}

.neweb-pricing__check {
    flex-shrink: 0;
    margin-top: 2px;
    color: #cbd5e1;
}

.neweb-pricing__check--brand {
    color: var(--color-brand);
}

@media (max-width: 1024px) {
    .neweb-pricing__grid {
        grid-template-columns: 1fr;
        max-width: 28rem;
        margin-left: auto;
        margin-right: auto;
    }
}
