/* Pricing Page Specific Styles */

.pricing-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #FFF 0%, #FCE4EC 100%);
    text-align: center;
}

.pricing-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pricing-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Pricing Calculator */
.pricing-calculator {
    padding: 4rem 0;
    background: var(--background);
}

.calculator-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--shadow);
    overflow: hidden;
}

.calculator-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.calculator-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.calculator-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.calculator-body {
    padding: 3rem 2rem;
}

.member-count-display {
    text-align: center;
    margin-bottom: 2rem;
}

.count-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.count-value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.slider-container {
    margin: 3rem 0;
}

.member-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 12px;
    border-radius: 6px;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-light) 100%);
    outline: none;
    cursor: pointer;
}

.member-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
    transition: all 0.3s;
}

.member-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.6);
}

.member-slider::-moz-range-thumb {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
    transition: all 0.3s;
}

.member-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.6);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Module Options */
.module-options {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.module-options h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.module-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.module-checkbox {
    display: block;
    padding: 1.5rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.module-checkbox:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px var(--shadow);
}

.module-checkbox.checked {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05), rgba(233, 30, 99, 0.02));
}

.module-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.module-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.module-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.module-icon i {
    font-size: 1.5rem;
    color: white;
}

.module-text {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.module-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.module-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.module-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 66px;
}

.module-checkbox .module-input:checked ~ .module-info .module-icon {
    background: linear-gradient(135deg, var(--success), #45a049);
}

.module-checkbox .module-input:checked ~ .module-info .module-icon::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    color: white;
    font-size: 1rem;
}

.pricing-result {
    margin-top: 3rem;
}

.price-breakdown {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.price-item.total {
    margin: 1rem 0;
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.price-value-large {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.currency {
    font-size: 2rem;
}

.period {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
}

.price-value.annual {
    color: var(--success);
}

.price-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.5rem 0;
}

.pricing-features {
    background: white;
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.pricing-features h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-list i {
    color: var(--success);
    font-size: 1.1rem;
}

/* Pricing Tiers */
.pricing-tiers {
    padding: 5rem 0;
    background: var(--background-light);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.tier-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
    border-color: var(--primary-color);
}

.tier-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.2);
    transform: scale(1.05);
}

.tier-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.tier-icon i {
    font-size: 2rem;
    color: white;
}

.tier-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.tier-members {
    text-align: center;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 2rem;
}

.tier-price {
    text-align: center;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.price-from {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.tier-price .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-unit {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.tier-features {
    list-style: none;
    margin-bottom: 2rem;
}

.tier-features li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tier-features i {
    color: var(--success);
    margin-top: 0.25rem;
}

.tier-example {
    background: var(--background-light);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

.tier-example strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Price Comparison */
.price-comparison {
    padding: 5rem 0;
    background: var(--background);
}

.price-comparison h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.comparison-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
}

.comparison-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-dark);
}

.competitor-prices {
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row.our-price {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(233, 30, 99, 0.05));
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border: none;
}

.price-row.our-price .provider {
    font-weight: 700;
    color: var(--primary-color);
}

.price-row.our-price .amount {
    font-weight: 800;
    color: var(--primary-color);
}

.provider {
    font-weight: 500;
    color: var(--text-dark);
}

.amount {
    font-weight: 600;
    color: var(--text-light);
}

.savings {
    text-align: center;
    background: var(--success);
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 700;
}

.comparison-note {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.comparison-note p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--background-light);
}

/* Why Best Value Section */
.why-best-value {
    padding: 6rem 0;
    background: var(--background);
}

.value-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.value-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.value-points {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.value-point {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-point h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.value-point p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.value-cta {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 12px;
}

.value-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.cta-hint {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.value-visual {
    position: sticky;
    top: 100px;
}

.comparison-boxes {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow);
}

.competitors-box,
.emembership-box {
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.competitors-box {
    background: #FFEBEE;
    border: 2px solid #E53935;
}

.emembership-box {
    background: #E8F5E9;
    border: 2px solid var(--success);
}

.competitors-box h3,
.emembership-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.competitors-box h3 {
    color: #E53935;
}

.emembership-box h3 {
    color: var(--success);
}

.tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tool-tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: white;
    border: 1px solid #E53935;
    color: #E53935;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.single-platform {
    text-align: center;
    margin-bottom: 1.5rem;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
}

.platform-badge i {
    font-size: 1.3rem;
}

.cost-indicator {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.cost-indicator.competitors {
    background: rgba(229, 57, 53, 0.1);
}

.cost-indicator.emembership {
    background: rgba(76, 175, 80, 0.1);
}

.cost-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cost-amount {
    font-size: 1.8rem;
    font-weight: 800;
}

.cost-indicator.competitors .cost-amount {
    color: #E53935;
}

.cost-indicator.emembership .cost-amount {
    color: var(--success);
}

.drawbacks,
.benefits {
    list-style: none;
}

.drawbacks li,
.benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.drawbacks i {
    color: #E53935;
}

.benefits i {
    color: var(--success);
}

.arrow-down {
    text-align: center;
    padding: 1rem 0;
    color: var(--primary-color);
}

.arrow-down i {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.arrow-down span {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.savings-highlight {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--success), #45a049);
    color: white;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.savings-highlight i {
    font-size: 3rem;
}

.savings-label {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.savings-amount {
    font-size: 2rem;
    font-weight: 800;
}

/* FAQ Section (keeping existing styles) */

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px var(--shadow);
}

.faq-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-item h4 i {
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .pricing-hero h1 {
        font-size: 2.5rem;
    }

    .calculator-header h2 {
        font-size: 1.75rem;
    }

    .count-value {
        font-size: 3rem;
    }

    .price-value-large {
        font-size: 2.5rem;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .module-options {
        padding: 1.5rem;
    }

    .module-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .tiers-grid {
        grid-template-columns: 1fr;
    }

    .tier-card.featured {
        transform: scale(1);
    }

    .tier-card.featured:hover {
        transform: translateY(-5px);
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .value-content {
        grid-template-columns: 1fr;
    }

    .value-visual {
        position: static;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 3rem 0 2rem;
    }

    .pricing-hero h1 {
        font-size: 2rem;
    }

    .calculator-body {
        padding: 2rem 1.5rem;
    }

    .count-value {
        font-size: 2.5rem;
    }

    .price-value-large {
        font-size: 2rem;
    }

    .currency {
        font-size: 1.5rem;
    }

    .period {
        font-size: 1rem;
    }

    .price-breakdown {
        padding: 1.5rem;
    }

    .pricing-features {
        padding: 1.5rem;
    }

    .slider-labels {
        font-size: 0.8rem;
    }

    .module-options {
        padding: 1rem;
        margin: 2rem 0;
    }

    .module-checkbox {
        padding: 1rem;
    }

    .module-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .module-icon {
        width: 40px;
        height: 40px;
    }

    .module-icon i {
        font-size: 1.2rem;
    }

    .module-description {
        padding-left: 0;
        font-size: 0.9rem;
    }

    .tier-price .price {
        font-size: 2rem;
    }

    .comparison-item {
        padding: 1.5rem;
    }

    .why-best-value {
        padding: 4rem 0;
    }

    .value-text h2 {
        font-size: 2rem;
    }

    .value-intro {
        font-size: 1.1rem;
    }

    .value-points {
        gap: 1.5rem;
    }

    .value-icon {
        width: 45px;
        height: 45px;
    }

    .value-icon i {
        font-size: 1.3rem;
    }

    .value-cta {
        padding: 1.5rem;
    }

    .comparison-boxes {
        padding: 1.5rem;
    }

    .competitors-box,
    .emembership-box {
        padding: 1.5rem;
    }

    .cost-amount {
        font-size: 1.5rem;
    }

    .savings-highlight {
        flex-direction: column;
        text-align: center;
    }

    .savings-highlight i {
        font-size: 2.5rem;
    }

    .savings-amount {
        font-size: 1.8rem;
    }
}
