:root.page-pricing {
    --primary: #0077BE;
    --primary-dark: #005a8d;
    --primary-light: #00CED1;
    --gradient-main: linear-gradient(135deg, #0077BE 0%, #00CED1 100%);
}

.pricing-hero {
    padding: 80px 20px 40px;
    text-align: center;
    background: #ffffff;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.pricing-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
}

.pricing-section {
    padding: 40px 20px 80px;
    background: #fafafa;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-card-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 24px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.plan-price {
    margin-bottom: 8px;
}

.plan-price .price {
    font-size: 3rem;
    font-weight: 900;
    color: #1f2937;
}

.plan-price .period {
    font-size: 1rem;
    color: #6b7280;
}

.plan-desc {
    font-size: 0.95rem;
    color: #6b7280;
}

.plan-desc.trial {
    color: #10b981;
    font-weight: 600;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.plan-features li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 0.95rem;
    color: #374151;
    border-bottom: 1px solid #f9fafb;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li.included::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
}

.plan-features li.excluded {
    color: #9ca3af;
}

.plan-features li.excluded::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #d1d5db;
    font-weight: 700;
}

.pricing-card-footer {
    margin-top: auto;
}

.plan-btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.plan-btn-secondary {
    background: #f3f4f6;
    color: #374151;
}

.plan-btn-secondary:hover {
    background: #e5e7eb;
}

.plan-btn-primary {
    background: var(--gradient-main);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 119, 190, 0.3);
}

.plan-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 190, 0.4);
}

.plan-btn-dark {
    background: #1f2937;
    color: #ffffff;
}

.plan-btn-dark:hover {
    background: #111827;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
        order: -1;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 60px 20px 30px;
    }

    .pricing-title {
        font-size: 2rem;
    }

    .pricing-subtitle {
        font-size: 1rem;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .plan-price .price {
        font-size: 2.5rem;
    }
}