/* Page-local tuning only (keeps base brand variables/colors) */

.pricing-hero {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 90px 0 70px;
    color: var(--light-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 46px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23f8f7fc' fill-opacity='1' d='M0,64L80,69.3C160,75,320,85,480,80C640,75,800,53,960,48C1120,43,1280,53,1360,58.7L1440,64L1440,100L1360,100C1280,100,1120,100,960,100C800,100,640,100,480,100C320,100,160,100,80,100L0,100Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
}

.pricing-hero h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

.pricing-hero p.lead {
    font-size: 1.25rem;
    max-width: 820px;
    margin: 0 auto;
    opacity: 0.95;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 18px;
}

.hero-cta {
    margin-top: 22px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    justify-content: center;
    opacity: 0.95;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}

.trust-item .material-icons-outlined {
    font-size: 20px;
}

.hero-note {
    opacity: 0.95;
    font-size: 0.98rem;
}

.hero-note a {
    color: #fff;
    text-decoration: underline;
}

.hero-note a:hover {
    color: #fff;
    opacity: 0.9;
}

.section-title {
    font-size: 2.1rem;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: rgba(44, 44, 44, 0.75);
}

.quick-nav {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.quick-nav-container {
    display: flex;
    justify-content: center;
    padding: 14px 0;
    flex-wrap: wrap;
}

.quick-nav-item {
    margin: 0 12px;
    padding: 6px 10px;
    font-weight: 600;
    color: var(--dark-color);
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.quick-nav-item:hover {
    text-decoration: none;
}

.quick-nav-item:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.quick-nav-item:hover:after {
    width: 100%;
}

.quick-nav-item.active {
    color: var(--primary-color);
}

.included-section {
    padding: 80px 0;
    background: var(--light-color);
}

.pricing-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.pricing-toggle {
    display: inline-flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.04);
    padding: 10px 18px;
    border-radius: 50px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-family: 'Montserrat', sans-serif;
}

.pricing-toggle span {
    padding: 0 14px;
    font-weight: 700;
    cursor: pointer;
    color: var(--dark-color);
    opacity: 0.65;
    transition: all 0.3s ease;
}

.pricing-toggle span.active {
    opacity: 1;
    color: var(--primary-color);
}

.save-badge {
    position: absolute;
    top: -12px;
    right: -10px;
    background-color: var(--accent-color);
    color: white;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
}

.toggle-help {
    color: rgba(44, 44, 44, 0.75);
    font-size: 0.95rem;
}

.toggle-help .material-icons-outlined {
    font-size: 18px;
    vertical-align: -4px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 28px;
    margin: 0 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

input:checked+.slider {
    background-color: var(--primary-color);
}

input:checked+.slider:before {
    transform: translateX(28px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-row {
    margin-top: 30px;
}

.pricing-card {
    background-color: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
    z-index: 1;
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 800;
    border-radius: 0 0 0 12px;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
}

.pricing-header {
    padding: 26px 22px 0;
    text-align: center;
}

.pricing-header h3 {
    margin-bottom: 8px;
    font-weight: 800;
    font-size: 1.35rem;
}

.pricing-header p {
    color: rgba(44, 44, 44, 0.70);
    margin-bottom: 0;
}

.pricing-price {
    padding: 22px 22px 10px;
    text-align: center;
}

.price-amount {
    display: inline-flex;
    align-items: baseline;
}

.currency {
    font-size: 1.35rem;
    font-weight: 800;
    margin-right: 4px;
    color: var(--dark-color);
}

.amount {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: rgba(44, 44, 44, 0.65);
    display: block;
    margin-top: 8px;
}

.price-note {
    margin-top: 10px;
    color: rgba(44, 44, 44, 0.72);
    font-size: 0.95rem;
}

.credits-included {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-top: 10px;
    padding: 6px 0;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.save-tag {
    display: inline-block;
    background-color: rgba(106, 61, 179, 0.10);
    color: var(--secondary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-top: 12px;
    font-family: 'Montserrat', sans-serif;
}

.pricing-features {
    padding: 8px 22px 20px;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .material-icons {
    margin-right: 10px;
    color: #2eaf5d;
    width: 16px;
    font-size: 1rem;
    vertical-align: middle;
}

.pricing-cta {
    padding: 0 22px 24px;
}

.btn-block {
    width: 100%;
}

.info-card--tight {
    padding: 34px 26px;
}

.callout {
    background: rgba(106, 61, 179, 0.06);
    border: 1px solid rgba(106, 61, 179, 0.12);
    border-radius: 14px;
    padding: 18px 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
}

.callout__title {
    margin: 0 0 6px 0;
    font-size: 1.15rem;
}

.callout__text {
    margin: 0;
    color: rgba(44, 44, 44, 0.78);
}

.callout__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mini-faq {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.mini-faq__item {
    background: var(--light-color);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.mini-faq__item .material-icons-outlined {
    font-size: 22px;
    color: var(--primary-color);
}

.credit-info-section {
    padding: 90px 0;
    background: var(--light-color);
}

.info-card {
    background-color: var(--bg-color);
    border-radius: 12px;
    padding: 38px 28px;
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    height: 78px;
    width: 78px;
    background-color: rgba(106, 61, 179, 0.10);
    border-radius: 50%;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon .material-icons {
    color: var(--primary-color);
    font-size: 32px;
}

.note-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.note-card__icon {
    color: var(--primary-color);
}

.note-card__content {
    color: rgba(44, 44, 44, 0.80);
}

.comparison-section {
    padding: 90px 0;
    background: var(--bg-color);
}

.comparison-table {
    background-color: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 0;
}

.comparison-table th {
    background-color: var(--secondary-color);
    color: var(--light-color);
    font-weight: 800;
    padding: 16px 14px;
    border: none;
    text-align: center;
    font-size: 1.05rem;
    font-family: 'Montserrat', sans-serif;
}

.comparison-table th:first-child {
    text-align: left;
    background-color: var(--primary-color);
}

.comparison-table td {
    padding: 14px 14px;
    border-color: var(--border-color);
    text-align: center;
    vertical-align: middle;
    font-size: 1rem;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 700;
    color: var(--dark-color);
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(106, 61, 179, 0.04);
}

.comparison-table tr:hover {
    background-color: rgba(106, 61, 179, 0.08);
}

.comparison-table .check-icon {
    color: #2eaf5d;
    font-size: 1.1rem;
    vertical-align: middle;
}

.comparison-table .remove-icon {
    color: rgba(44, 44, 44, 0.45);
    font-size: 1.1rem;
    vertical-align: middle;
}

.compare-footnote {
    margin-top: 14px;
    background: var(--light-color);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 12px 14px;
    color: rgba(44, 44, 44, 0.75);
}

.faq-section {
    padding: 90px 0;
    background: var(--bg-color);
}

.accordion-item {
    margin-bottom: 14px;
    border: none;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 18px 20px;
    background-color: var(--light-color);
    font-weight: 800;
    color: var(--dark-color);
    font-size: 1.05rem;
    font-family: 'Montserrat', sans-serif;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 18px 20px;
    background-color: #fafafa;
    font-size: 1rem;
    line-height: 1.7;
}

.faq-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    color: rgba(44, 44, 44, 0.78);
}

.cta-section {
    padding: 90px 0;
    background: var(--light-color);
}

.cta-card {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 16px;
    padding: 58px 44px;
    color: var(--light-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-card h2 {
    color: white;
    margin-bottom: 12px;
    font-weight: 800;
    font-size: 2rem;
}

.cta-card p {
    margin-bottom: 0;
    opacity: 0.95;
    font-size: 1.1rem;
}

.cta-card .btn-primary {
    background-color: var(--light-color);
    color: var(--secondary-color);
    border: none;
    font-weight: 800;
    padding: 14px 30px;
    font-size: 1.05rem;
}

.cta-card .btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

.cta-secondary-text {
    font-size: 0.95rem;
    opacity: 0.9;
}

.cta-link {
    color: #fff;
    text-decoration: underline;
}

.cta-link:hover {
    opacity: 0.9;
    color: #fff;
}

.verification-section {
    background-color: var(--bg-color);
    padding: 34px 0;
    border-top: 1px solid var(--border-color);
}

.certification-badge {
    text-align: center;
    padding: 18px;
}

.certification-badge .material-icons {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.certification-badge p {
    font-weight: 800;
    margin-bottom: 0;
    color: var(--dark-color);
    font-size: 1.05rem;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 991.98px) {
    .pricing-hero h1 {
        font-size: 2.4rem;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    .cta-card {
        padding: 46px 28px;
    }

    .mini-faq {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .pricing-hero {
        padding: 78px 0 62px;
    }

    .pricing-hero h1 {
        font-size: 2rem;
    }

    .included-section,
    .pricing-section,
    .credit-info-section,
    .comparison-section,
    .faq-section,
    .cta-section {
        padding: 70px 0;
    }

    .quick-nav-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 14px;
    }

    .quick-nav-item {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .cta-card h2 {
        font-size: 1.6rem;
    }

    .amount {
        font-size: 2.9rem;
    }
}