/* ===== Base ===== */
body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: #f6f9fc;
    margin: 0;
    color: #1a1a1a;
}

/* Container */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

/* Headings */
h1, h2, h3 {
    margin-bottom: 10px;
}

/* ===== Cards ===== */
.card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
}

/* Featured Card */
.featured {
    border: 2px solid #4f46e5;
    transform: scale(1.04);
}

/* Badge */
.badge {
    background: #4f46e5;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/* ===== Pricing Grid ===== */
.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* Price */
.price {
    font-size: 34px;
    font-weight: 700;
    margin: 15px 0;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #fff;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline {
    border: 1px solid #ddd;
}

/* ===== Forms ===== */
input, select {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

button {
    margin-top: 15px;
}

/* ===== Tables ===== */
.table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.table th, .table td {
    padding: 14px;
    border-bottom: 1px solid #eee;
}

.table th {
    background: #f9fafb;
    text-align: left;
}

/* ===== Status Badges ===== */
.status {
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.status.paid {
    background: #dcfce7;
    color: #16a34a;
}

.status.pending {
    background: #fef3c7;
    color: #d97706;
}

/* ===== Quill Editor ===== */
.ql-container {
    border-radius: 10px;
}

.ql-toolbar {
    border-radius: 10px 10px 0 0;
}

/* ===== Features ===== */
.features ul {
    padding-left: 18px;
}

.features li {
    margin: 8px 0;
}

/* ===== Responsive ===== */
@media(max-width: 768px) {
    .featured {
        transform: none;
    }
}
