@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --bg-primary: #030303;
    --bg-secondary: #0a0a0f;
    --bg-card: #0e0e14;
    --bg-elevated: #141420;
    --text-primary: #f1f5f9;
    --text-secondary: rgba(255,255,255,0.4);
    --text-muted: rgba(255,255,255,0.25);
    --accent: #6366f1;
    --accent-light: #818cf8;
    --accent-rose: #f43f5e;
    --accent-glow: rgba(99, 102, 241, 0.35);
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Toggle Switch Styles */
.switch { position: relative; display: inline-block; width: 40px; height: 22px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute; cursor: pointer; inset: 0;
    background-color: rgba(255,255,255,0.1);
    transition: .4s; border-radius: 34px;
}
.slider:before {
    position: absolute; content: ""; height: 16px; width: 16px; left: 3px; bottom: 3px;
    background-color: white; transition: .4s; border-radius: 50%;
}
input:checked + .slider { background-color: var(--accent); }
input:focus + .slider { box-shadow: 0 0 1px var(--accent); }
input:checked + .slider:before { transform: translateX(18px); }
.slider.round { border-radius: 34px; }


*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Outfit', sans-serif; font-weight: 700; line-height: 1.15; }
a { color: inherit; text-decoration: none; transition: var(--transition); }

.text-gradient {
    background: linear-gradient(90deg, #a5b4fc, rgba(255,255,255,0.9), #fda4af);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-gradient-badge {
    background: linear-gradient(135deg, #6366f1 0%, #a78bfa 50%, #c084fc 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════
   HERO — Geometric Floating Shapes
   ═══════════════════════════════════════ */
.hero {
    position: relative; min-height: 100vh; width: 100%;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; background: #030303;
}

/* Subtle background gradient */
.hero-bg-gradient {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(99,102,241,0.05), transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(244,63,94,0.05), transparent 60%);
    filter: blur(60px);
}

/* Floating elegant shapes */
.elegant-shape {
    position: absolute;
    opacity: 0;
    animation: shapeEntry 2.4s cubic-bezier(0.23, 0.86, 0.39, 0.96) forwards;
}
.elegant-shape .shape-inner {
    position: relative;
    animation: shapeFloat 12s ease-in-out infinite;
}
.elegant-shape .shape-pill {
    border-radius: 9999px;
    backdrop-filter: blur(2px);
    border: 2px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 32px 0 rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}
.elegant-shape .shape-pill::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 9999px;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.2), transparent 70%);
}

/* Individual shapes */
.shape-1 { left: -10%; top: 15%; animation-delay: 0.3s; }
.shape-1 .shape-inner { width: 600px; height: 140px; }
.shape-1 .shape-pill { width: 100%; height: 100%; background: linear-gradient(to right, rgba(99,102,241,0.15), transparent); transform: rotate(12deg); }

.shape-2 { right: -5%; top: 70%; animation-delay: 0.5s; }
.shape-2 .shape-inner { width: 500px; height: 120px; }
.shape-2 .shape-pill { width: 100%; height: 100%; background: linear-gradient(to right, rgba(244,63,94,0.15), transparent); transform: rotate(-15deg); }

.shape-3 { left: 5%; bottom: 5%; animation-delay: 0.4s; }
.shape-3 .shape-inner { width: 300px; height: 80px; }
.shape-3 .shape-pill { width: 100%; height: 100%; background: linear-gradient(to right, rgba(139,92,246,0.15), transparent); transform: rotate(-8deg); }

.shape-4 { right: 15%; top: 10%; animation-delay: 0.6s; }
.shape-4 .shape-inner { width: 200px; height: 60px; }
.shape-4 .shape-pill { width: 100%; height: 100%; background: linear-gradient(to right, rgba(245,158,11,0.15), transparent); transform: rotate(20deg); }

.shape-5 { left: 20%; top: 5%; animation-delay: 0.7s; }
.shape-5 .shape-inner { width: 150px; height: 40px; }
.shape-5 .shape-pill { width: 100%; height: 100%; background: linear-gradient(to right, rgba(6,182,212,0.15), transparent); transform: rotate(-25deg); }

@keyframes shapeEntry {
    from { opacity: 0; transform: translateY(-150px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes shapeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(15px); }
}

/* Vignette overlay */
.hero-vignette {
    position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(to top, #030303, transparent 40%, rgba(3,3,3,0.8));
}

/* Hero content */
.hero-content {
    position: relative; z-index: 10;
    max-width: 800px; margin: 0 auto; text-align: center;
    padding: 0 16px;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; border-radius: 9999px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
    animation: fadeUp 1s ease 0.5s forwards;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(244,63,94,0.8); animation: pulse 2s infinite; }
.hero-badge span { font-size: 14px; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; }

.hero-title {
    font-size: clamp(40px, 7vw, 96px); font-weight: 700; letter-spacing: -2px;
    margin-bottom: 24px; line-height: 1.05;
    animation: fadeUp 1s ease 0.7s forwards;
}
.hero-title .line1 {
    display: block;
    background: linear-gradient(to bottom, #fff, rgba(255,255,255,0.8));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-title .line2 {
    display: block;
    background: linear-gradient(90deg, #a5b4fc, rgba(255,255,255,0.9), #fda4af);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-desc {
    font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,0.4);
    max-width: 560px; margin: 0 auto 40px; font-weight: 300; letter-spacing: 0.3px;
    line-height: 1.7; animation: fadeUp 1s ease 0.9s forwards;
}

.hero-btns {
    display: flex; gap: 16px; justify-content: center;
    animation: fadeUp 1s ease 1.1s forwards;
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    text-decoration: none;
}

.mouse {
    width: 22px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background: #fff;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: mouse-scroll 2s infinite;
}

.arrow { display: flex; flex-direction: column; align-items: center; }
.arrow span {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255,255,255,0.15);
    border-bottom: 2px solid rgba(255,255,255,0.15);
    transform: rotate(45deg);
    margin: -4px;
    animation: arrow-scroll 2s infinite;
}

.arrow .a2 { animation-delay: 0.2s; }
.arrow .a3 { animation-delay: 0.4s; }

@keyframes mouse-scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

@keyframes arrow-scroll {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; padding: 20px 0;
    z-index: 1000; transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(3,3,3,0.85); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border); padding: 14px 0;
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 800; display: flex; align-items: center; gap: 10px; letter-spacing: -0.5px; }
.logo-dot { width: 10px; height: 10px; background: var(--accent-rose); border-radius: 50%; box-shadow: 0 0 12px rgba(244,63,94,0.5); }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { padding: 8px 16px; border-radius: 8px; font-weight: 500; font-size: 14px; color: rgba(255,255,255,0.5); }
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.05); }
.nav-cta {
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
    color: #fff !important; padding: 8px 20px !important;
    border-radius: 8px !important; font-weight: 600 !important;
    box-shadow: 0 4px 15px var(--accent-glow);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px var(--accent-glow); }

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; border-radius: var(--radius-sm); font-weight: 600;
    font-family: 'Outfit', sans-serif; font-size: 15px; cursor: pointer;
    transition: var(--transition); border: none; position: relative; overflow: hidden;
}
.btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff; box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); }
.btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.btn-outline:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.03); color: #fff; }

/* ═══════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════ */
.section { padding: 100px 0; position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 40px; letter-spacing: -1px; margin-bottom: 12px; }
.section-header p { color: var(--text-secondary); font-size: 17px; max-width: 500px; margin: 0 auto; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 36px; position: relative; transition: var(--transition); overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99,102,241,0.5), transparent);
    opacity: 0; transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--border-hover); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 52px; height: 52px; border-radius: 14px; background: rgba(99,102,241,0.1);
    color: var(--accent-light); display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 20px;
}
.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; }

.cta-section { background: linear-gradient(135deg, rgba(99,102,241,0.06), rgba(244,63,94,0.04)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ═══════════════════════════════════════
   FOOTER (Premium Redesign)
   ═══════════════════════════════════════ */
.site-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 80px 0 24px;
    position: relative;
    overflow: hidden;
    color: var(--text-secondary);
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(99,102,241,0.08), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    font-size: 28px;
    margin-bottom: 20px;
    display: inline-flex;
    color: var(--text-primary);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--accent-glow);
}

.footer-links h3, .footer-newsletter h3 {
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--accent-light);
    transform: translateX(4px);
}

.footer-newsletter p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--border);
    padding: 14px 48px 14px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--accent);
}

.newsletter-form button {
    position: absolute;
    right: 6px;
    top: 6px;
    bottom: 6px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    width: 36px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    background: var(--accent-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 14px;
}

.footer-badges {
    display: flex;
    gap: 16px;
    font-size: 24px;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ═══════════════════════════════════════
   AUTH PAGES
   ═══════════════════════════════════════ */
.auth-bg { position: fixed; inset: 0; z-index: 0; overflow: hidden; }
.auth-wrapper { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.auth-card {
    width: 100%; max-width: 420px; background: rgba(14,14,20,0.8);
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 48px 40px; backdrop-filter: blur(20px);
}
.auth-card h2 { text-align: center; font-size: 28px; margin-bottom: 8px; }
.auth-card .subtitle { text-align: center; color: var(--text-secondary); font-size: 14px; margin-bottom: 32px; }

/* ═══════════════════════════════════════
   FORMS
   ═══════════════════════════════════════ */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.35); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.form-control {
    width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
    border: 1px solid var(--border); background: rgba(3,3,3,0.6);
    color: var(--text-primary); font-family: 'Inter', sans-serif; font-size: 14px;
    transition: var(--transition); outline: none;
}
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(99,102,241,0.15); }
.form-control::placeholder { color: var(--text-muted); }
select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.error-msg { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.15); color: var(--danger); padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 14px; text-align: center; }
.success-msg { background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.15); color: var(--success); padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 14px; text-align: center; }

/* ═══════════════════════════════════════
   DASHBOARD LAYOUT
   ═══════════════════════════════════════ */
.dash-layout { display: flex; min-height: 100vh; }
.sidebar {
    width: 260px; background: var(--bg-secondary); border-right: 1px solid var(--border);
    padding: 24px 0; display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; bottom: 0; z-index: 100;
}
.sidebar-logo { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 800; padding: 0 24px; margin-bottom: 36px; display: flex; align-items: center; gap: 10px; color: #fff; }
.sidebar-nav { list-style: none; flex: 1; }
.sidebar-nav li a {
    display: flex; align-items: center; gap: 12px; padding: 12px 24px;
    color: rgba(255,255,255,0.3); font-weight: 500; font-size: 14px;
    transition: var(--transition); border-left: 3px solid transparent; margin-bottom: 2px;
}
.sidebar-nav li a i { width: 20px; text-align: center; font-size: 16px; }
.sidebar-nav li a:hover { color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.02); }
.sidebar-nav li a.active { color: var(--accent-light); background: rgba(99,102,241,0.06); border-left-color: var(--accent); }
.sidebar-nav .sep { height: 1px; background: var(--border); margin: 16px 24px; }

.dash-main { flex: 1; margin-left: 260px; padding: 32px 40px; }
.dash-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.dash-topbar h2 { font-size: 24px; }

/* ═══════════════════════════════════════
   STAT CARDS
   ═══════════════════════════════════════ */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 32px; }
.stat-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 24px; position: relative; overflow: hidden;
}
.stat-card::after { content: ''; position: absolute; top: -20px; right: -20px; width: 100px; height: 100px; border-radius: 50%; filter: blur(40px); opacity: 0.12; }
.stat-card:nth-child(1)::after { background: var(--accent); }
.stat-card:nth-child(2)::after { background: var(--success); }
.stat-card:nth-child(3)::after { background: var(--warning); }
.stat-card .stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.stat-card .stat-value { font-family: 'Outfit', sans-serif; font-size: 30px; font-weight: 800; }
.stat-card .stat-icon { position: absolute; top: 24px; right: 24px; width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.stat-card:nth-child(1) .stat-icon { background: rgba(99,102,241,0.1); color: var(--accent-light); }
.stat-card:nth-child(2) .stat-icon { background: rgba(16,185,129,0.1); color: var(--success); }
.stat-card:nth-child(3) .stat-icon { background: rgba(245,158,11,0.1); color: var(--warning); }

.panel-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin-bottom: 24px; }
.panel-box-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.panel-box-header h3 { font-size: 18px; }

/* ═══════════════════════════════════════
   TABLES
   ═══════════════════════════════════════ */
.page-header { text-align: center; padding: 140px 0 60px; position: relative; z-index: 1; }
.table-wrap { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.services-table { width: 100%; border-collapse: collapse; }
.services-table th, .services-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); text-align: left; }
.services-table th { font-family: 'Outfit'; font-weight: 600; color: var(--text-muted); text-transform: uppercase; font-size: 11px; letter-spacing: 1px; background: rgba(0,0,0,0.3); }
.services-table tr:last-child td { border-bottom: none; }
.services-table tbody tr { transition: var(--transition); }
.services-table tbody tr:hover { background: rgba(255,255,255,0.015); }
.service-id { color: var(--text-muted); font-family: monospace; font-size: 13px; }
.service-name { font-weight: 500; font-size: 14px; }
.service-rate { color: var(--success); font-weight: 700; font-family: 'Outfit'; }
.service-category { display: inline-block; padding: 4px 10px; background: rgba(99,102,241,0.08); border-radius: 6px; font-size: 11px; color: var(--accent-light); font-weight: 500; }
.tag { display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 500; }
.tag-refill { background: rgba(16,185,129,0.1); color: var(--success); }
.tag-cancel { background: rgba(245,158,11,0.1); color: var(--warning); }

.filters { display: flex; gap: 12px; margin-bottom: 20px; }
.search-input, .select-input { background: var(--bg-card); border: 1px solid var(--border); color: #fff; padding: 12px 16px; border-radius: var(--radius-sm); font-family: 'Inter'; font-size: 14px; outline: none; transition: var(--transition); }
.search-input:focus, .select-input:focus { border-color: var(--accent); }
.search-input { flex: 1; }

.text-center { text-align: center; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; align-items: center; }
    .nav-links { display: none; }
    .sidebar { display: none; }
    .dash-main { margin-left: 0; padding: 20px; }
    .filters { flex-direction: column; }
    .services-table { display: block; overflow-x: auto; }
    .elegant-shape { display: none; }
}
