:root {
    --highlight-bg: rgba(124, 77, 255, 0.1);
    --highlight-border: rgba(124, 77, 255, 0.3);
}

/* Hero */
.hero {
    text-align: center;
    margin-bottom: 60px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--secondary-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured {
    background: var(--highlight-bg);
    border: 1px solid var(--highlight-border);
    box-shadow: 0 0 30px rgba(124, 77, 255, 0.15);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.plan-price span {
    font-size: 1rem;
    color: var(--secondary-text);
    font-weight: 400;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.feature-list li {
    margin-bottom: 12px;
    color: var(--secondary-text);
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-list i {
    color: var(--accent-color);
    margin-top: 4px;
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }

.btn-filled {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
}
.btn-filled:hover { background: #e0e0e0; border-color: #e0e0e0; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .pricing-card { padding: 30px; }
}

/* Business Model Note */
.business-model-box {
    background: rgba(124, 77, 255, 0.05);
    border: 1px solid rgba(124, 77, 255, 0.2);
    padding: 20px;
    border-radius: 12px;
    display: inline-block;
}

.business-model-text {
    margin: 0;
    color: #b388ff;
    font-size: 0.95rem;
    text-align: left;
}
