/* marketing.css */

.hero {
    padding: 80px 20px;
    text-align: center;
    background: white;
}

.hero-title {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
}

/* Dashboard-native pricing layout (dark theme) */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

/* Match dashboard tool-card style */
.pricing-card {
    background: #1e1e2f; /* same as your dashboard cards */
    border: 1px solid #2a2a3d;
    border-radius: 10px;
    padding: 24px;
    text-align: left;
    color: #e5e7eb; /* light gray text */
}

.pricing-card h2 {
    margin-top: 0;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
}

.price {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0 20px;
    color: #ffffff;
}

.price span {
    font-size: 14px;
    color: #9ca3af;
}

.pricing-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.pricing-card li {
    margin: 8px 0;
    color: #cbd5e1;
}

/* Buttons matching dashboard style */
.pricing-btn {
    display: inline-block;
    padding: 12px 18px;
    background: #4f46e5;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.pricing-btn:hover {
    background: #4338ca;
}

/* Highlight Pro plan */
.pricing-card.featured {
    border: 2px solid #6366f1;
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.3);
}
