* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

/* --- Landing Pages --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-packers { background: linear-gradient(135deg, #0061ff 0%, #003d99 100%); }
.hero-decoration { background: linear-gradient(135deg, #ff6b6b 0%, #c0392b 100%); }
.hero-home { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }

.card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.card h1 {
    font-size: 26px;
    margin-bottom: 6px;
    color: #1a1a2e;
}

.card .subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 24px;
}

.trust-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.badge {
    font-size: 13px;
    color: #555;
    background: #f0f4ff;
    padding: 6px 12px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e5ec;
    border-radius: 10px;
    font-size: 15px;
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0061ff;
}

.btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: transform 0.1s, opacity 0.2s;
    margin-top: 8px;
}

.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-packers { background: linear-gradient(135deg, #0061ff, #003d99); }
.btn-decoration { background: linear-gradient(135deg, #ff6b6b, #c0392b); }

.consent {
    font-size: 12px;
    color: #888;
    margin-top: 12px;
    text-align: center;
}

/* --- Home Page --- */
.home-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.niche-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 700px;
    width: 100%;
}

.niche-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.niche-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.15);
}

.niche-icon { font-size: 48px; margin-bottom: 16px; }
.niche-card h2 { font-size: 20px; margin-bottom: 8px; }
.niche-card p { font-size: 14px; color: #666; }

/* --- Thank You --- */
.thankyou-card {
    text-align: center;
    max-width: 500px;
}

.thankyou-card .checkmark {
    font-size: 64px;
    margin-bottom: 16px;
}

.thankyou-card h1 {
    color: #27ae60;
    margin-bottom: 12px;
}

/* --- Admin --- */
.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.admin-header h1 { font-size: 24px; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.stat-card .number {
    font-size: 32px;
    font-weight: 700;
    color: #0061ff;
}

.stat-card .label {
    font-size: 13px;
    color: #888;
    margin-top: 4px;
}

.filters {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: end;
}

.filters select,
.filters input {
    padding: 10px 14px;
    border: 2px solid #e0e5ec;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.filters button {
    padding: 10px 20px;
    background: #0061ff;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.export-btn {
    padding: 10px 20px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.leads-table {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.leads-table table {
    width: 100%;
    border-collapse: collapse;
}

.leads-table th {
    background: #f8f9fc;
    padding: 14px 16px;
    text-align: left;
    font-size: 13px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leads-table td {
    padding: 14px 16px;
    border-top: 1px solid #f0f0f0;
    font-size: 14px;
}

.leads-table tr:hover td { background: #f8f9fc; }

.status-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.status-new { background: #e3f2fd; color: #1565c0; }
.status-contacted { background: #fff3e0; color: #e65100; }
.status-sold { background: #e8f5e9; color: #2e7d32; }
.status-rejected { background: #fce4ec; color: #c62828; }

.status-form select {
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
}

.status-form button {
    padding: 6px 12px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
}

/* Login */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a2e;
    padding: 20px;
}

.login-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.login-card h1 { margin-bottom: 24px; }

.error-msg {
    color: #e74c3c;
    font-size: 14px;
    margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 600px) {
    .card { padding: 28px 20px; }
    .card h1 { font-size: 22px; }
    .niche-grid { grid-template-columns: 1fr; }
    .leads-table { overflow-x: auto; }
    .filters { flex-direction: column; }
    .admin-header { flex-direction: column; align-items: flex-start; }
}
