/* ============================================================
   JOBS.LYAMORSDJ.FR - APPLE-INSPIRED STYLE
   Style Apple Human Interface Guidelines
   ============================================================ */

:root {
    /* Apple Dark Mode Colors */
    --bg: #000000;
    --surface: #1c1c1e;
    --surface2: #2c2c2e;
    --border: rgba(255, 255, 255, 0.08);
    --border2: rgba(255, 255, 255, 0.12);
    --accent: #007aff;
    --accent-h: #0051d5;
    --accent-light: rgba(0, 122, 255, 0.1);
    --accent2: #5ac8fa;
    --green: #34c759;
    --red: #ff3b30;
    --yellow: #ff9500;
    --text: #f5f5f7;
    --muted: #86868b;
    --muted2: #aeaeb2;
    
    /* Apple Border Radius */
    --radius-sm: 6px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    
    /* Apple Shadows */
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    /* Apple Transitions - Spring Physics */
    --trans: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    --trans-fast: 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    --trans-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Apple Spacing */
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 80px;
}

[data-theme="light"] {
    /* Apple Light Mode Colors */
    --bg: #ffffff;
    --surface: #ffffff;
    --surface2: #f5f5f7;
    --border: rgba(0, 0, 0, 0.08);
    --border2: rgba(0, 0, 0, 0.12);
    --accent: #007aff;
    --accent-h: #0051d5;
    --accent-light: rgba(0, 122, 255, 0.08);
    --accent2: #5ac8fa;
    --green: #34c759;
    --red: #ff3b30;
    --yellow: #ff9500;
    --text: #1d1d1f;
    --muted: #86868b;
    --muted2: #aeaeb2;
    
    /* Light Mode Shadows */
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.14);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.18);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all var(--trans-spring);
}

a:hover {
    color: var(--accent-h);
}

input, select, textarea, button {
    font-family: inherit;
}

.shell, .container, .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   BUTTONS - Apple Style
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--trans-spring);
    text-decoration: none !important;
    white-space: nowrap;
    letter-spacing: 0.1px;
}

.btn-primary {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.btn-primary:hover {
    background: var(--accent-h);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
    transform: translateY(-1px);
    color: #ffffff;
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text);
    font-weight: 600;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
}

.btn-secondary:hover {
    color: var(--text);
    border-color: var(--border2);
    background: var(--surface2);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
}

/* ============================================================
   NAVIGATION - Apple Glassmorphism
   ============================================================ */

.nav {
    background: rgba(28, 28, 30, 0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

[data-theme="light"] .nav {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
    text-decoration: none !important;
    letter-spacing: -0.01em;
}

.nav-logo-icon {
    width: 44px;
    height: 44px;
    background: var(--surface2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.nav-logo-icon img {
    max-width: 28px;
    max-height: 28px;
    width: auto;
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    padding: 8px 12px;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    transition: all var(--trans-spring);
    text-decoration: none;
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--text);
    background: var(--surface2);
}

.nav-cta {
    margin-left: auto;
    display: flex;
    gap: 8px;
    align-items: center;
}

/* ============================================================
   HERO - Apple Style
   ============================================================ */

.hero {
    background: linear-gradient(160deg, #001a4d 0%, #002e99 55%, #0047cc 100%);
    color: #ffffff;
    padding: 88px 24px 72px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0 5.5 4.5 10 10 10s10-4.5 10-10-4.5-10-10-10-10 4.5-10 10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
}

.hero h1 em {
    color: #93c5fd;
    font-style: normal;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: #ffffff;
    color: var(--accent);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    background: #f0f4ff;
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-ghost-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 60px;
    padding-top: 44px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
}

.hero-stat .val {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1;
}

.hero-stat .lbl {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

/* ============================================================
   SECTIONS - Apple Style
   ============================================================ */

.section {
    padding: 80px 24px;
}

.section-alt {
    background: var(--surface);
}

.section-eyebrow {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
}

.section-h {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-p {
    color: var(--muted);
    font-size: 1rem;
    max-width: 580px;
    line-height: 1.75;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================================
   CARDS - Apple Glassmorphism
   ============================================================ */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: all var(--trans-spring);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: var(--accent);
}

.card h3,
.card h2 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.card p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.65;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-light);
    color: var(--accent);
    padding: 7px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.84rem;
    font-weight: 700;
    margin-bottom: 14px;
}

/* ============================================================
   STEPS - Apple Style
   ============================================================ */

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.step {
    padding: 32px;
    border-right: 1px solid var(--border);
    background: var(--surface);
}

.step:last-child {
    border-right: none;
}

.step-num {
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.step p {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ============================================================
   PAGE HEAD
   ============================================================ */

.page-head {
    padding: 40px 24px 0;
}

.page-head-inner {
    max-width: 860px;
    margin: 0 auto;
}

.page-head h1 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: 8px;
}

.page-head p {
    color: var(--muted);
    font-size: 0.975rem;
    line-height: 1.7;
    max-width: 600px;
}

/* ============================================================
   FORMS - Apple Style
   ============================================================ */

.form-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.form-sec {
    padding: 28px 32px;
    border-bottom: 1px solid var(--border);
}

.form-sec:last-child {
    border-bottom: none;
}

.form-sec-title {
    font-size: 0.9375rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    color: var(--text);
}

.form-sec-sub {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 20px;
}

.fgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fgrid .full {
    grid-column: 1 / -1;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--surface2);
    outline: none;
    transition: all var(--trans-spring);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.15);
}

.field textarea {
    resize: vertical;
    min-height: 90px;
}

.field small {
    font-size: 0.75rem;
    color: var(--muted2);
    margin-top: 4px;
}

.cb-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.cb-row input[type=checkbox] {
    margin-top: 3px;
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.cb-row label {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    cursor: pointer;
}

.form-foot {
    padding: 24px 32px;
    background: var(--surface2);
    border-top: 1px solid var(--border);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ============================================================
   ALERTS - Apple Style
   ============================================================ */

.alert {
    padding: 14px 16px;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    margin: 0 auto 16px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-error,
.alert.error {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid var(--red);
    color: var(--red);
}

.alert-success,
.alert.success {
    background: rgba(52, 199, 89, 0.1);
    border: 1px solid var(--green);
    color: var(--green);
}

.alert-info,
.alert.warning {
    background: var(--accent-light);
    border: 1px solid var(--accent);
    color: var(--accent);
}

/* ============================================================
   AUTH - Apple Style
   ============================================================ */

.auth-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(150deg, #f0f5ff 0%, #e8effd 100%);
    padding: 24px;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.auth-head {
    padding: 32px 32px 24px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.auth-head h1 {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.auth-head p {
    font-size: 0.875rem;
    color: var(--muted);
}

.auth-body {
    padding: 28px 32px;
}

.auth-foot {
    padding: 16px 32px;
    background: var(--surface2);
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.8rem;
    color: var(--muted);
}

.auth-field {
    margin-bottom: 16px;
}

.auth-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 6px;
}

.auth-field input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    color: var(--text);
    outline: none;
    transition: all var(--trans-spring);
    background: var(--surface);
}

.auth-field input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.15);
}

/* ============================================================
   ADMIN - Apple Style
   ============================================================ */

.admin-body {
    background: var(--bg);
}

.admin-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: var(--surface);
    border-right: 1px solid var(--border);
    padding: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    text-decoration: none !important;
}

.admin-brand small {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
}

.admin-nav {
    display: grid;
    gap: 8px;
    margin-top: 24px;
}

.admin-link {
    display: block;
    padding: 10px 12px;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    transition: all var(--trans-spring);
    text-decoration: none;
}

.admin-link:hover,
.admin-link.is-active {
    color: var(--text);
    background: var(--surface2);
}

.admin-link.danger {
    color: var(--red);
}

.admin-main {
    padding: 28px;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.admin-topbar h1 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.015em;
}

.admin-topbar p {
    color: var(--muted);
    font-size: 0.95rem;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.stat-card span {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 8px;
}

.stat-card strong {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1;
}

.filters-bar {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 14px;
    align-items: end;
    padding: 20px;
    margin-bottom: 24px;
}

.filter-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.table-card,
.full-card {
    padding: 0;
}

.table-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.table-wrap {
    overflow: auto;
}

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

.data-table th,
.data-table td {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.data-table th {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.data-table td small {
    display: block;
    color: var(--muted);
    margin-top: 4px;
}

.empty-cell {
    text-align: center;
    color: var(--muted);
    padding: 32px;
}

/* ============================================================
   BADGES - Apple Style
   ============================================================ */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.82rem;
    font-weight: 700;
}

.badge-success {
    background: rgba(52, 199, 89, 0.1);
    color: var(--green);
}

.badge-warning {
    background: rgba(255, 149, 0, 0.1);
    color: var(--yellow);
}

.badge-info {
    background: var(--accent-light);
    color: var(--accent);
}

.badge-danger {
    background: rgba(255, 59, 48, 0.1);
    color: var(--red);
}

.badge-neutral {
    background: var(--surface2);
    color: var(--muted);
}

/* ============================================================
   DETAIL GRID
   ============================================================ */

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.info-list {
    display: grid;
    gap: 0;
}

.info-list div {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.info-list dt {
    font-weight: 600;
    color: var(--text);
}

.info-list dd {
    margin: 0;
    color: var(--muted);
}

.stack-form {
    display: grid;
    gap: 16px;
}

.rich-text {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.8;
}

/* ============================================================
   FOOTER - Apple Style
   ============================================================ */

.footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.65);
    padding: 56px 24px 28px;
    margin-top: 80px;
}

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

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-brand .logo .nav-logo-icon img {
    max-width: 18px;
    max-height: 18px;
}

.footer-brand p {
    font-size: 0.84rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    font-size: 0.84rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: all var(--trans-spring);
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }
    
    .admin-stats,
    .detail-grid,
    .filters-bar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .step {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    
    .fgrid {
        grid-template-columns: 1fr;
    }
    
    .fgrid .full {
        grid-column: 1;
    }
    
    .hero-stats {
        gap: 28px;
    }
    
    .cards {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   SCROLLBAR - Apple Style
   ============================================================ */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(134, 134, 139, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(134, 134, 139, 0.5);
}

[data-theme="light"] ::-webkit-scrollbar-thumb {
    background: rgba(134, 134, 139, 0.2);
}

[data-theme="light"] ::-webkit-scrollbar-thumb:hover {
    background: rgba(134, 134, 139, 0.4);
}

/* ============================================================
   SELECTION - Apple Style
   ============================================================ */

::selection {
    background: var(--accent);
    color: #ffffff;
}

[data-theme="light"] ::selection {
    background: var(--accent);
    color: #ffffff;
}
