/* PRICING PAGE STYLES */

/* Pricing Hero Section */
.pricing-hero {
    min-height: 40vh;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    background: #fff5f5;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

.pricing-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.pricing-title {
    font-size: 52px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.pricing-subtitle {
    font-size: 20px;
    color: #666666;
    margin-bottom: 0;
    letter-spacing: 1px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    background: #fff5f5;
}

.pricing-section.ecommerce-section,
.pricing-section.ai-section {
    background: #ffffff;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-section-header .psh-icon {
    width: 70px;
    height: 70px;
    background: #000;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pricing-section-header .psh-icon i {
    font-size: 28px;
    color: #fff;
}

.pricing-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.pricing-section-header p {
    font-size: 16px;
    color: #888888;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

/* Pricing Card */
.pricing-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    background: #000000;
    border-color: #000000;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -32px;
    background: #fff;
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 25px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

/* Card Header */
.card-header {
    margin-bottom: 25px;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

.starter-icon {
    background: rgba(0, 200, 100, 0.12);
    color: #00c864;
}

.growth-icon {
    background: rgba(0, 150, 255, 0.12);
    color: #0096ff;
}

.pro-icon {
    background: rgba(150, 80, 255, 0.12);
    color: #9650ff;
}

.elite-icon {
    background: rgba(255, 180, 0, 0.12);
    color: #ffb400;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
}

.card-tag {
    font-size: 13px;
    color: #888888;
}

/* Card Price */
.card-price {
    margin-bottom: 20px;
    position: relative;
}

.price-original {
    font-size: 14px;
    color: #aaaaaa;
    text-decoration: line-through;
    display: block;
    margin-bottom: 5px;
}

.price-currency {
    font-size: 20px;
    color: #888888;
    vertical-align: top;
}

.price-value {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    line-height: 1;
}

.popular .price-currency,
.popular .price-value {
    color: #ffffff;
}

.price-period {
    display: block;
    font-size: 13px;
    color: #888888;
    margin-top: 5px;
}

.price-custom {
    font-size: 36px;
    font-weight: 700;
    color: #ffb400;
}

/* Card Features */
.card-features {
    margin-bottom: 25px;
}

.card-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-features li {
    color: #555555;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.popular .card-features li {
    color: #cccccc;
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.card-features li:last-child {
    border-bottom: none;
}

.card-features li i {
    color: #00c864;
    font-size: 12px;
}

.popular .card-features li i {
    color: #00ff88;
}

/* Card Button */
.card-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.starter-btn {
    background: #00c864;
    color: #ffffff;
}

.starter-btn:hover {
    background: #00b058;
}

.growth-btn {
    background: #0096ff;
    color: #ffffff;
}

.growth-btn:hover {
    background: #0077cc;
}

.popular .growth-btn {
    background: #ffffff;
    color: #000000;
}

.popular .growth-btn:hover {
    background: #e0e0e0;
}

.pro-btn {
    background: #9650ff;
    color: #ffffff;
}

.pro-btn:hover {
    background: #8033ee;
}

.elite-btn {
    background: #ffb400;
    color: #000000;
}

.elite-btn:hover {
    background: #e6a300;
}

/* Premium Section */
.premium-section {
    background: #ffffff;
}

/* Category Block */
.pricing-category-block {
    margin-bottom: 60px;
}

.pricing-category-block:last-child {
    margin-bottom: 0;
}

.pricing-cat-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.pricing-cat-title i {
    font-size: 28px;
    color: #000;
}

.pricing-cat-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

/* Add-Ons Section */
.addons-section {
    background: #fff5f5;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.addon-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.addon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.addon-icon {
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.addon-icon i {
    color: #fff;
    font-size: 20px;
}

.addon-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.addon-card p {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.addon-price {
    font-size: 18px;
    font-weight: 700;
    color: #00c864;
}

/* Trust Section */
.trust-section {
    background: #ffffff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    text-align: center;
    padding: 30px 20px;
}

.trust-item i {
    font-size: 36px;
    color: #000;
    margin-bottom: 15px;
}

.trust-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 14px;
    color: #666;
}

/* CTA Section */
.pricing-cta-section {
    padding: 100px 20px;
    background: #000000;
    text-align: center;
}

.pricing-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.pricing-cta-content p {
    font-size: 16px;
    color: #888888;
    margin-bottom: 30px;
}

.pricing-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #000000;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-cta-btn:hover {
    background: #e0e0e0;
    transform: translateY(-3px);
}

/* Dark Theme */
[data-theme="dark"] .pricing-hero,
[data-theme="dark"] .pricing-section,
[data-theme="dark"] .addons-section {
    background: #0a0a0a;
}

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

[data-theme="dark"] .pricing-subtitle,
[data-theme="dark"] .pricing-section-header p {
    color: #888888;
}

[data-theme="dark"] .pricing-card {
    background: #141414;
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .pricing-card.popular {
    background: #000000;
    border-color: #000000;
}

[data-theme="dark"] .pricing-section-header h2,
[data-theme="dark"] .card-title,
[data-theme="dark"] .price-value,
[data-theme="dark"] .card-features li {
    color: #ffffff;
}

[data-theme="dark"] .pricing-cat-title h3,
[data-theme="dark"] .pricing-cat-title i {
    color: #ffffff;
}

[data-theme="dark"] .addon-card {
    background: #141414;
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .addon-card h4 {
    color: #ffffff;
}

[data-theme="dark"] .addon-card p {
    color: #aaa;
}

[data-theme="dark"] .trust-item h4 {
    color: #ffffff;
}

[data-theme="dark"] .trust-item p {
    color: #aaa;
}

[data-theme="dark"] .premium-section,
[data-theme="dark"] .pricing-section.ecommerce-section,
[data-theme="dark"] .pricing-section.ai-section {
    background: #0a0a0a;
}

[data-theme="dark"] .pricing-section-header .psh-icon {
    background: #fff;
}

[data-theme="dark"] .pricing-section-header .psh-icon i {
    color: #000;
}

[data-theme="dark"] .trust-section {
    background: #0a0a0a;
}

[data-theme="dark"] .pricing-cta-section {
    background: #000000;
}

[data-theme="dark"] .pricing-cta-content h2 {
    color: #ffffff;
}

[data-theme="dark"] .pricing-cta-btn {
    background: #ffffff;
    color: #000000;
}

[data-theme="dark"] .pricing-cta-btn:hover {
    background: #e0e0e0;
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-title {
        font-size: 36px;
    }

    .pricing-subtitle {
        font-size: 16px;
    }

    .pricing-section {
        padding: 60px 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .addons-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .trust-item {
        padding: 20px 15px;
    }

    .pricing-section-header h2 {
        font-size: 28px;
    }

    .pricing-cta-content h2 {
        font-size: 28px;
    }

    .pricing-cat-title {
        flex-direction: column;
        text-align: center;
    }
}
