:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --bg: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --radius: 24px;
    --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

body {
    background-color: var(--bg);
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
}

/* Header */
.pricing-header {
    padding: 80px 20px 60px;
    text-align: center;
    background: radial-gradient(circle at top, #eef2ff 0%, var(--bg) 100%);
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: #e0e7ff;
    color: var(--primary-dark);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Plans Grid */
.plans-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.plan-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

/* Pro Highlight */
.plan-card.pro {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 10;
}

.plan-card.pro:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Card Content */
.plan-type {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    min-height: 50px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.plan-features .material-symbols-rounded {
    color: #10b981;
    font-size: 20px;
}

/* Buttons */
.btn-select {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: white;
    display: block;
    text-align: center;
    color: var(--text-main);
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.pro .btn-select {
    background: var(--primary);
    color: white;
    border: none;
}

.ultimate .btn-select {
    background: var(--text-main);
    color: white;
    border: none;
}

.btn-select:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Info Section */
.pricing-info {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px;
    background: #1e293b;
    border-radius: 20px 20px 0 0;
    color: white;
}

.info-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.info-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.seo-box {
    padding-left: 30px;
    border-left: 2px solid var(--primary);
}

.seo-text {
    font-style: italic;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 968px) {
    .plans-container {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    .plan-card.pro {
        transform: scale(1);
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
}