/* ====== Pricing Hero ====== */
.pricing-hero {
    padding: 30px 0 22px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.pricing-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(37,99,235,0.08);
    color: var(--accent);
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 0.01em;
}
.pricing-hero__title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 12px;
}
.pricing-hero__sub {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}
.pricing-proof {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.pricing-proof span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.2;
}
.pricing-proof strong {
    color: var(--text);
    font-weight: 800;
}
.pricing-section {
    padding-top: 30px;
}

/* ====== Pricing Compare ====== */
.pricing-compare__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    text-align: center;
}
.pricing-compare__sub {
    font-size: 15px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 24px;
    line-height: 1.6;
}
.pricing-compare__note {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
}

/* ====== Pricing Table ====== */
.pricing-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg);
}
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    white-space: nowrap;
}
.pricing-table thead {
    background: rgba(37,99,235,0.04);
}
.pricing-table th {
    padding: 14px 16px;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.pricing-table th:first-child {
    text-align: left;
    min-width: 200px;
    white-space: normal;
}
.pricing-table td {
    padding: 12px 16px;
    text-align: center;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}
.pricing-table td:first-child {
    text-align: left;
}
.pricing-table tbody tr.pricing-row:last-of-type td,
.pricing-table tbody tr.pricing-row:last-of-type th {
    border-bottom: none;
}
.pricing-table tbody tr.pricing-row:hover {
    background: rgba(37,99,235,0.02);
}
.pricing-na {
    color: var(--text-muted) !important;
    opacity: 0.5;
}
.pricing-free {
    color: #059669 !important;
    font-weight: 600;
}
.pricing-badge {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 8px;
    background: rgba(37,99,235,0.08);
    color: var(--accent);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    vertical-align: middle;
}

/* ====== Calculator ====== */
.calc-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.calc-card[hidden] { display: none; }
.calc-card__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.calc-card__sub {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 4px;
}
.calc-field { margin-top: 20px; }
.calc-field:first-of-type { margin-top: 14px; }
.calc-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}
.calc-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.calc-chip {
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.2s;
}
.calc-chip:hover { border-color: var(--accent); color: var(--accent); }
.calc-chip.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }
.calc-chips--tariffs .calc-chip { text-align: left; }
.calc-chip--tariff {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 8px 16px;
    border-radius: 12px;
}
.calc-chip-title { font-size: 14px; font-weight: 600; }
.calc-chip-price { font-size: 12px; font-weight: 500; color: var(--text-muted); }
.calc-chip--tariff.is-active .calc-chip-price { color: rgba(255,255,255,0.7); }
.calc-tariff-details {
    margin: 14px 0 0;
    min-height: 18px;
}
.calc-tariff-bullets {
    list-style: none;
    margin: 0;
    padding: 12px 14px;
    background: rgba(37,99,235,0.04);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.calc-tariff-bullets li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.calc-tariff-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 700;
}
.calc-tariff-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    padding: 0;
    border: none;
    background: none;
    color: var(--accent);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}
.calc-tariff-more:hover { text-decoration: underline; }
.calc-tariff-full {
    margin: 10px 0 0;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}
.calc-tariff-full.is-hidden { display: none; }
.calc-slider {
    width: 100%;
    margin-top: 8px;
    accent-color: var(--accent);
    height: 6px;
}
.calc-slider-scale {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}
.calc-result {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
}
.calc-price {
    font-size: 34px;
    font-weight: 800;
    color: var(--text);
    white-space: nowrap;
}
.calc-price-note {
    font-size: 13px;
    color: var(--text-muted);
    flex: 1 1 180px;
}
.calc-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-left: auto;
}

/* ====== Pricing CTA ====== */
.pricing-cta-card {
    background: linear-gradient(135deg, #0b1120, #1e293b, #312e81, #0b1120);
    background-size: 300% 300%;
    color: white;
    border-radius: var(--radius-lg);
    padding: 30px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
    animation: gradientShift 10s ease-in-out infinite;
}
.pricing-cta-card::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}
.pricing-cta-text {
    position: relative;
    flex: 1;
}
.pricing-cta-text h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}
.pricing-cta-text p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.6;
}
.pricing-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
}
.pricing-cta-actions .btn-primary {
    background: white;
    color: var(--text);
}
.pricing-cta-actions .btn-primary:hover {
    opacity: 0.95;
}
.pricing-cta-actions .btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: white;
}
.pricing-cta-actions .btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

/* ====== Responsive: ≤1024 ====== */
@media (max-width: 1024px) {
    .pricing-cta-card { flex-direction: column; text-align: center; }
    .pricing-cta-actions { justify-content: center; }
}

/* ====== Responsive: ≤768 ====== */
@media (max-width: 768px) {
    .pricing-hero { padding: 24px 0 18px; }
    .pricing-hero__title { font-size: 32px; }
    .pricing-hero__sub { font-size: 16px; }
    .pricing-proof { justify-content: flex-start; }
    .pricing-proof span { width: 100%; justify-content: space-between; }
    .pricing-table { font-size: 13px; }
    .pricing-table th,
    .pricing-table td { padding: 10px 12px; }
    .calc-card { padding: 24px 20px; }
    .calc-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .calc-chips--tariffs { grid-template-columns: 1fr; }
    .calc-chip { width: auto; justify-content: center; text-align: center; padding: 12px 10px; font-size: 13px; }
    .calc-chip--tariff { align-items: center; }
    .calc-result { gap: 12px; }
    .calc-actions { margin-left: 0; width: 100%; flex-direction: column; }
    .calc-actions .btn-primary,
    .calc-actions .btn-outline { width: 100%; justify-content: center; text-align: center; padding: 14px 24px; font-size: 15px; min-height: 48px; }
    .calc-price { font-size: 28px; }
    .pricing-cta-card { padding: 36px 24px; }
    .pricing-cta-text h2 { font-size: 24px; }
    .pricing-cta-actions { flex-direction: column; width: 100%; }
    .pricing-cta-actions .btn-primary,
    .pricing-cta-actions .btn-outline { width: 100%; justify-content: center; text-align: center; }
}

/* ====== Responsive: ≤480 ====== */
@media (max-width: 480px) {
    .pricing-hero__title { font-size: 28px; }
    .pricing-table { font-size: 12px; }
    .pricing-table th,
    .pricing-table td { padding: 8px 10px; }
}
