.pricing-main {
    padding-top: 80px;
}

.pricing-hero {
    height: 60vh;
    background: linear-gradient(135deg, var(--primary-purple), rgba(194, 153, 255, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pricing-bg.jpg') center/cover;
    opacity: 0.2;
    z-index: -1;
}

.pricing-hero-content {
    text-align: center;
    color: var(--white);
    position: relative;
}

.pricing-subtitle {
    font-family: 'N27', sans-serif;
    font-size: 23.36px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.pricing-title {
    font-family: 'Quinn', sans-serif;
    font-size: 215.52px;
    font-weight: 700;
    line-height: 0.9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing-decorations {
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
}

.decoration-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.decoration-corner.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.decoration-corner.top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.decoration-corner.bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.decoration-corner.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.pricing-plans {
    padding: 100px 0;
    background: var(--body-bg);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.plan-card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    padding: 40px 30px;
    color: var(--white);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-card.starter {
    background: linear-gradient(135deg, rgba(85, 18, 138, 0.9), rgba(85, 18, 138, 0.7));
}

.plan-card.professional {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(194, 153, 255, 0.3);
}

.plan-card.enterprise {
    background: linear-gradient(135deg, rgba(85, 18, 138, 0.9), rgba(194, 153, 255, 0.8));
}

.plan-name {
    font-family: 'N27', sans-serif;
    font-size: 17.76px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.plan-card.professional .plan-name {
    color: rgba(194, 153, 255, 0.8);
}

.plan-price {
    margin-bottom: 30px;
}

.price-amount {
    font-family: 'Quinn', sans-serif;
    font-size: 60px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.price-period {
    font-family: 'N27', sans-serif;
    font-size: 14px;
    opacity: 0.8;
}

.plan-button {
    background: var(--primary-purple);
    color: var(--button-text);
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    text-align: center;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-card.professional .plan-button {
    background: rgba(194, 153, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(194, 153, 255, 0.5);
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(85, 18, 138, 0.3);
}

.features-title {
    font-family: 'N27', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.features-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-icon {
    color: #4ade80;
    font-weight: bold;
    font-size: 16px;
    margin-top: 2px;
}

.feature-content strong {
    font-family: 'N27', sans-serif;
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.4;
}

.pricing-info {
    text-align: center;
}

.info-title {
    font-family: 'Quinn', sans-serif;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-primary);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    font-family: 'N27', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.info-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .pricing-title {
        font-size: 120px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .info-title {
        font-size: 35px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .pricing-title {
        font-size: 80px;
    }
    
    .pricing-subtitle {
        font-size: 18px;
    }
}
