/* Prices Page Styles */

.prices-hero {
    padding: 200px 0 40px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.prices-hero::before {

    position: absolute;
    top: -20%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    border-radius: 50%;
}

.prices-hero::after {

    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(254, 198, 21, 0.2) 0%, transparent 60%);
    border-radius: 50%;
}

.hero-content {
    display: block;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #00aec9;
}

.prices-hero h1 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.prices-hero p {
    font-size: 22px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    color: #5d5d5d;
}

.pricing-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    margin-top: -50px;
}

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

.pricing-card {
    background: #fff;
    border: 2px solid #00afca;
    border-radius: 24px;
    padding: 40px 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #00AFCA;
    box-shadow: 0 30px 70px rgba(0, 175, 202, 0.2);
}

.pricing-card.featured {
    border-color: #00AFCA;
    background: linear-gradient(135deg, rgba(0, 175, 202, 0.05) 0%, rgba(254, 198, 21, 0.05) 100%);
    border-width: 3px;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-name {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(-45deg, #5FCBEA, #0299B5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.pricing-amount {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(-45deg, #00AFCA, #0299B5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1;
    letter-spacing: -2px;
}

.pricing-features {
    list-style: none;
    margin: 30px 0 40px;
    padding: 0;
}

.pricing-features li {
    padding: 14px 0;
    color: #444;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 30px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00AFCA;
    font-weight: 900;
    font-size: 18px;
}

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

.pricing-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(-45deg, #5FCBEA, #0299B5);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 175, 202, 0.4);
}

.pricing-card.featured .pricing-btn {
    background: linear-gradient(-45deg, #FFC936, #F58020);
    font-size: 17px;
    padding: 16px;
}

.pricing-card.featured .pricing-btn:hover {
    box-shadow: 0 15px 40px rgba(245, 128, 32, 0.4);
}

.comparison-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    background: linear-gradient(-45deg, #00AFCA, #0299B5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
}

.comparison-table {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.table-header {
    background: linear-gradient(-45deg, #5FCBEA, #0299B5);
    color: #fff;
    padding: 25px 30px;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 20px;
    font-weight: 700;
    font-size: 16px;
}

.table-row {
    padding: 20px 30px;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 600;
    transition: background 0.2s;
}

.table-row:hover {
    background: rgba(0, 175, 202, 0.03);
}

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

.feature-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 15px;
}

.check {
    color: #00AFCA;
    font-size: 24px;
    font-weight: 900;
    text-align: center;
}

.cross {
    color: #ddd;
    font-size: 24px;
    font-weight: 900;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 15px;
    }

    .check,
    .cross {
        text-align: left;
    }

    .table-header div:first-child,
    .feature-name {
        font-weight: 700;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .prices-hero {
        padding: 180px 0 80px;
    }

    .prices-hero h1 {
        font-size: 42px;
    }

    .prices-hero p {
        font-size: 18px;
    }

    .pricing-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .section-description {
        font-size: 16px;
    }

    .comparison-table {
        border-radius: 16px;
    }

    .table-header,
    .table-row {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .prices-hero h1 {
        font-size: 32px;
    }

    .prices-hero p {
        font-size: 16px;
    }

    .pricing-card {
        padding: 30px 25px;
    }

    .pricing-name {
        font-size: 32px;
    }

    .pricing-amount {
        font-size: 40px;
    }

    .section-title {
        font-size: 28px;
    }
}