.pricing-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 140px 24px 60px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 48px;
    margin-top: 20px;
}

.pricing-header h1 {
    font-size: 2.4rem;
    color: #1F4E79;
    margin-bottom: 12px;
}

.pricing-header p {
    color: #595959;
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
}

.pricing-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.pricing-card--highlighted {
    border: 2px solid #5154db;
    background: #f8f8ff;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #5154db;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.pricing-card__header h2 {
    font-size: 1.3rem;
    color: #1F4E79;
    margin: 0 0 8px;
}

.pricing-card__desc {
    color: #595959;
    font-size: 0.9rem;
    margin: 0 0 20px;
}

.pricing-card__price {
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-symbol {
    font-size: 1.4rem;
    color: #5154db;
    font-weight: 700;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #5154db;
    line-height: 1;
}

.price-period {
    font-size: 0.85rem;
    color: #888;
    margin-left: 4px;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.92rem;
    color: #595959;
}

.feature-icon {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.9rem;
}

.feature--included .feature-icon { color: #4CAF50; }
.feature--excluded .feature-icon { color: #ccc; }
.feature--excluded { color: #aaa; }

.pricing-card__cta {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
}

.cta--primary {
    background: #5154db;
    color: #fff;
}

.cta--primary:hover {
    background: #3f41b3;
    transform: scale(1.02);
}

.cta--secondary {
    background: transparent;
    color: #5154db;
    border: 2px solid #5154db;
}

.cta--secondary:hover {
    background: #f0f0ff;
}

.pricing-footer-note {
    text-align: center;
    margin-top: 40px;
    color: #595959;
    font-size: 0.95rem;
}

.pricing-footer-note a {
    color: #5154db;
    font-weight: 600;
    text-decoration: none;
}
