/* =========================================
   CORE DESIGN SYSTEM
   ========================================= */
:root {
    --ink: #0a1128;
    --paper-bright: #ffffff;
    --paper: #f8f9fa;
    --muted: #6b7280;
    --line: #e5e7eb;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --radius: 8px;
    --radius-lg: 16px;
    --header-height: 80px;
}

body.site-body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--paper-bright);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }

/* =========================================
   TYPOGRAPHY
   ========================================= */
.text-h1 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 1rem; }
.text-h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 1rem; }
.text-h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; line-height: 1.2; margin: 0 0 0.75rem; }
.text-h4 { font-size: 1.25rem; font-weight: 600; line-height: 1.3; margin: 0 0 0.5rem; }
.text-lede { font-size: clamp(1.1rem, 2vw, 1.25rem); font-weight: 400; line-height: 1.6; color: var(--muted); margin: 0 0 1.5rem; }
.text-body { font-size: 1rem; line-height: 1.6; color: var(--muted); margin: 0 0 1.5rem; }

/* =========================================
   LAYOUT & GRIDS
   ========================================= */
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 clamp(16px, 5vw, 40px); }
.section-spacing { padding: clamp(60px, 10vw, 120px) 0; }
.section-light { background: var(--paper-bright); }
.section-grey { background: var(--paper); }
.section-dark { background: var(--ink); color: var(--paper-bright); }
.section-dark .text-lede, .section-dark .text-body { color: rgba(255,255,255,0.7); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(32px, 6vw, 64px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 40px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* =========================================
   BUTTONS
   ========================================= */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0 28px; min-height: 52px; border-radius: var(--radius); font-weight: 600; font-size: 1rem; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none; }
.btn-sm { min-height: 40px; padding: 0 20px; font-size: 0.875rem; }
.btn-primary { background: var(--accent); color: var(--paper-bright); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2); }
.btn-dark { background: var(--ink); color: var(--paper-bright); }
.btn-dark:hover { background: #1c2541; transform: translateY(-2px); box-shadow: 0 8px 16px rgba(10, 17, 40, 0.15); }
.btn-outline { background: transparent; border: 1px solid var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); }

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.site-header { position: fixed; top: 0; left: 0; right: 0; height: var(--header-height); background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); z-index: 1000; transition: transform 0.3s ease; }
.header-container { max-width: 1400px; margin: 0 auto; padding: 0 clamp(16px, 5vw, 40px); height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; }
.desktop-nav { display: flex; align-items: center; gap: 32px; }
.nav-link { text-decoration: none; color: var(--muted); font-weight: 500; font-size: 0.95rem; transition: color 0.2s ease; display: flex; align-items: center; gap: 6px; background: transparent; border: none; cursor: pointer; padding: 0; }
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 100%; left: -24px; width: 260px; background: var(--paper-bright); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 32px rgba(10, 17, 40, 0.08); padding: 12px 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.2s ease; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 24px; text-decoration: none; color: var(--muted); font-size: 0.95rem; font-weight: 500; transition: background 0.2s ease, color 0.2s ease; }
.dropdown-menu a:hover, .dropdown-menu a.active { background: var(--paper); color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.mobile-menu-toggle { display: none; background: transparent; border: none; cursor: pointer; color: var(--ink); padding: 4px; }
@media (max-width: 980px) { .desktop-nav { display: none; } .header-actions .btn { display: none; } .mobile-menu-toggle { display: block; } }

/* =========================================
   MOBILE DRAWER
   ========================================= */
.mobile-drawer { margin: 0; padding: 0; border: none; width: 100%; height: 100vh; height: 100dvh; max-width: 400px; margin-left: auto; background: var(--paper-bright); box-shadow: -10px 0 30px rgba(0,0,0,0.1); opacity: 0; transform: translateX(100%); transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), display 0.3s allow-discrete; }
.mobile-drawer[open] { opacity: 1; transform: translateX(0); }
@starting-style { .mobile-drawer[open] { opacity: 0; transform: translateX(100%); } }
.mobile-drawer::backdrop { background: rgba(10,17,40,0.5); backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.3s ease; }
.mobile-drawer[open]::backdrop { opacity: 1; }
.drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid var(--line); }
.drawer-close { background: transparent; border: none; cursor: pointer; padding: 4px; color: var(--ink); }
.drawer-nav { padding: 24px; display: flex; flex-direction: column; gap: 16px; overflow-y: auto; max-height: calc(100vh - 160px); }
.drawer-link { text-decoration: none; font-size: 1.25rem; font-weight: 600; color: var(--ink); }
.drawer-link.active { color: var(--accent); }
.drawer-group { margin: 12px 0; display: flex; flex-direction: column; gap: 12px; }
.drawer-group-title { font-size: 0.85rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.drawer-sublink { text-decoration: none; font-size: 1.1rem; color: var(--muted); font-weight: 500; }
.drawer-sublink.active { color: var(--ink); }
.drawer-footer { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; border-top: 1px solid var(--line); background: var(--paper-bright); }

/* =========================================
   FOOTER
   ========================================= */
.site-footer { background: var(--ink); color: var(--paper-bright); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; margin-bottom: 64px; }
.footer-brand { max-width: 320px; }
.footer-brand .brand-logo { color: var(--paper-bright); margin-bottom: 16px; }
.footer-desc { color: rgba(255,255,255,0.7); line-height: 1.6; font-size: 0.95rem; }
.footer-heading { font-size: 1.1rem; font-weight: 600; margin: 0 0 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.7); font-size: 0.95rem; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--paper-bright); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.social-links { display: flex; gap: 16px; }
.social-links a { color: rgba(255,255,255,0.5); transition: color 0.2s ease; }
.social-links a:hover { color: var(--paper-bright); }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; } }

/* =========================================
   ANIMATION CLASSES
   ========================================= */
.reveal-up { opacity: 0; transform: translateY(24px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================
   PRODUCT SHOWCASE CARDS
   ========================================= */
.product-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; cursor: pointer; background: var(--paper-bright); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(10,17,40,0.06); }
.product-image { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--paper); border-bottom: 1px solid var(--line); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-overlay { position: absolute; inset: 0; background: rgba(10,11,24,0.3); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay-btn { background: var(--paper-bright); color: var(--ink); padding: 8px 20px; border-radius: 999px; font-weight: 600; font-size: 0.9rem; transform: translateY(10px); transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.product-card:hover .product-overlay-btn { transform: translateY(0); }
.product-content { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.product-category { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 8px; }
.product-title { font-size: 1.25rem; font-weight: 700; margin: 0 0 12px; }
.product-price { margin-top: auto; font-size: 1.1rem; font-weight: 600; color: var(--accent); }

/* =========================================
   PORTFOLIO CARDS
   ========================================= */
.portfolio-card { position: relative; display: block; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; text-decoration: none; }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.portfolio-card:hover img { transform: scale(1.05); }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,17,40,0.8) 0%, transparent 50%); padding: 32px; display: flex; flex-direction: column; justify-content: flex-end; opacity: 0; transition: opacity 0.3s ease; }
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-title { color: var(--paper-bright); font-size: 1.5rem; font-weight: 700; margin: 0 0 8px; transform: translateY(10px); transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.portfolio-client { color: rgba(255,255,255,0.7); font-size: 1rem; font-weight: 500; margin: 0; transform: translateY(10px); transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); transition-delay: 0.05s; }
.portfolio-card:hover .portfolio-title, .portfolio-card:hover .portfolio-client { transform: translateY(0); }

/* =========================================
   PAGE HERO SECTIONS
   ========================================= */
.page-hero { padding: calc(var(--header-height) + 80px) 0 80px; background: linear-gradient(135deg, var(--paper-bright) 0%, var(--paper) 100%); border-bottom: 1px solid var(--line); text-align: center; }
.page-hero-content { max-width: 800px; margin: 0 auto; }
.page-hero .text-lede { font-size: 1.25rem; }

/* =========================================
   PRODUCT MODAL
   ========================================= */
.product-modal { padding: 0; border: none; border-radius: var(--radius-lg); background: var(--paper-bright); color: var(--ink); box-shadow: 0 24px 60px rgba(10, 17, 40, 0.2); width: min(900px, calc(100% - 32px)); margin: auto; overflow: hidden; opacity: 0; transform: scale(0.95); transition: opacity 0.3s ease, transform 0.3s ease, overlay 0.3s allow-discrete, display 0.3s allow-discrete; }
.product-modal[open] { opacity: 1; transform: scale(1); }
@starting-style { .product-modal[open] { opacity: 0; transform: scale(0.95); } }
.product-modal::backdrop { background: rgba(10, 17, 40, 0.6); backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.3s ease; }
.product-modal[open]::backdrop { opacity: 1; }
@starting-style { .product-modal[open]::backdrop { opacity: 0; } }
.modal-content { position: relative; padding: clamp(24px, 5vw, 40px); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; border: none; background: var(--paper); color: var(--ink); font-size: 1.5rem; line-height: 1; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s ease; z-index: 10; }
.modal-close:hover { background: var(--line); }
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 48px); align-items: start; }
@media (max-width: 700px) { .modal-grid { grid-template-columns: 1fr; } .product-modal { margin-top: auto; margin-bottom: 0; border-bottom-left-radius: 0; border-bottom-right-radius: 0; transform: translateY(100%); } .product-modal[open] { transform: translateY(0); } @starting-style { .product-modal[open] { transform: translateY(100%); } } }

/* =========================================
   UTILITIES
   ========================================= */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; } .mb-5 { margin-bottom: 48px; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.site-main { min-height: calc(100vh - var(--header-height)); padding-top: var(--header-height); }
.btn-outline:hover {
    background: var(--ink);
    color: var(--paper-bright);
}

/* Typography Utilities */
.text-h1 {
    font-family: var(--display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 1rem 0;
}
.text-h2-massive {
    font-family: var(--display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0 0 1.5rem 0;
}
.text-h2 {
    font-family: var(--display);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0 0 1.5rem 0;
}
.text-h3 {
    font-family: var(--display);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 1rem 0;
}
.text-lede {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.6;
    color: var(--muted);
}
.text-body {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted);
}

/* =========================================
   PAGE COMPONENTS
   ========================================= */
.page-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(16px, 5vw, 40px);
    padding-bottom: clamp(60px, 10vw, 120px);
}
.inner-hero {
    padding: clamp(60px, 10vw, 100px) 0 clamp(40px, 8vw, 80px);
    max-width: 900px;
    margin: 0 auto;
}
.card-solid {
    background: var(--paper-bright);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 5vw, 48px);
    box-shadow: 0 12px 32px rgba(10, 17, 40, 0.04);
}
.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   FORMS
   ========================================= */
.form-group {
    margin-bottom: 24px;
    text-align: left;
}
.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}
.form-control {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--paper-bright);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* =========================================
   CRM & ADMIN DASHBOARD STYLES
   ========================================= */

.admin-body {
    --ink: #111827;
    --paper: #f3f4f6;
    --paper-bright: #ffffff;
    --muted: #6b7280;
    --acid: #2563eb;
    --coral: #ef4444;
    --cobalt: #1d4ed8;
    --sun: #3b82f6;
    --line: #e5e7eb;

    display: flex;
    height: 100vh;
    overflow: hidden;
    background-color: var(--paper);
    color: var(--ink);
    font-family: "Inter", sans-serif;
}

.admin-sidebar {
    width: 260px;
    background: #ffffff;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line);
    z-index: 40;
}

.admin-sidebar-header {
    padding: 24px;
    font-family: "Inter", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
}

.admin-sidebar-nav {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

.admin-nav-group {
    padding: 15px 24px 5px;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.admin-nav-item:hover, .admin-nav-item:focus-visible {
    background-color: #f3f4f6;
    color: var(--acid);
}

.admin-nav-item.is-active {
    background-color: #eff6ff;
    color: var(--acid);
    font-weight: 600;
    border-right: 4px solid var(--acid);
}

.admin-sidebar-footer {
    padding: 24px;
    border-top: 1px solid var(--line);
}

.admin-logout-btn {
    background: none;
    border: none;
    color: var(--coral);
    cursor: pointer;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
}

.admin-logout-btn:hover {
    color: #b91c1c;
}

.admin-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    background: var(--paper);
}

.admin-topbar {
    height: 72px;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    z-index: 30;
}

.admin-topbar-title {
    font-family: "Inter", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.admin-user-info {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--muted);
}

.admin-user-name {
    color: var(--ink);
    font-weight: 600;
}

.admin-content {
    flex: 1;
    overflow-y: auto;
    padding: 32px;
}

.admin-alert {
    padding: 16px 24px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 0.95rem;
}

.admin-alert-success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.admin-alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

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

.admin-card {
    background: var(--paper-bright);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.admin-card:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.admin-card-title {
    font-family: "Inter", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.metric-kicker {
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.metric-value {
    font-family: "Inter", sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 12px;
}

.metric-trend {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
    border: none;
}

.trend-up { background: #dcfce7; color: #166534; }
.trend-down { background: #fee2e2; color: #991b1b; }
.trend-neutral { background: #f3f4f6; color: #374151; }

.pipeline-track {
    height: 8px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
    margin-top: 8px;
}

.pipeline-fill {
    height: 100%;
    background: var(--acid);
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.admin-table-container {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow-x: auto;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    text-align: left;
}

.admin-table th {
    background: #f9fafb;
    color: #4b5563;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 12px 24px;
    border-bottom: 1px solid var(--line);
}

.admin-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    vertical-align: middle;
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.admin-table tbody tr:hover {
    background-color: #f8fafc;
}

.admin-table a {
    color: var(--acid);
    text-decoration: none;
    font-weight: 500;
}

.admin-table a:hover {
    text-decoration: underline;
}


/* =========================================
   CRM & ADMIN DASHBOARD STYLES
   ========================================= */

.admin-body {
    --ink: #111827;
    --paper: #f3f4f6;
    --paper-bright: #ffffff;
    --muted: #6b7280;
    --acid: #2563eb;
    --coral: #ef4444;
    --cobalt: #1d4ed8;
    --sun: #3b82f6;
    --line: #e5e7eb;

    display: flex;
    height: 100vh;
    overflow: hidden;
    background-color: var(--paper);
    color: var(--ink);