/* ========================================
   科途网络 - Main Stylesheet
   Mobile-first responsive design
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&display=swap');

:root {
    --primary: #0a2540;
    --primary-light: #1a3a5c;
    --accent: #00d4aa;
    --accent-dark: #00b894;
    --accent-glow: rgba(0, 212, 170, 0.15);
    --bg: #f8fafb;
    --bg-card: #ffffff;
    --text: #1a1a2e;
    --text-secondary: #5a6677;
    --text-light: #8a95a5;
    --border: #e4e8ed;
    --danger: #e74c3c;
    --success: #00b894;
    --warning: #f39c12;
    --shadow-sm: 0 1px 3px rgba(10,37,64,0.06);
    --shadow-md: 0 4px 16px rgba(10,37,64,0.08);
    --shadow-lg: 0 8px 32px rgba(10,37,64,0.12);
    --shadow-xl: 0 16px 48px rgba(10,37,64,0.16);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ---- Utility ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-dark);
    background: var(--accent-glow);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.25;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.text-center { text-align: center; }

/* ---- Navigation ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(228,232,237,0.6);
    transition: var(--transition);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--primary);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1rem;
}

.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 10px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::after { width: 100%; }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    margin: 5px 0;
    border-radius: 2px;
    transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(165deg, var(--primary) 0%, #0d2d4a 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,212,170,0.12), transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,212,170,0.08), transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,212,170,0.12);
    border: 1px solid rgba(0,212,170,0.2);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 .accent { color: var(--accent); }

.hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 36px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,212,170,0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.05);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: 8px;
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-danger:hover {
    background: #c0392b;
}

/* ---- Services Section ---- */
.section {
    padding: 80px 0;
}

.section-alt {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ---- Software Cards ---- */
.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.sw-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.sw-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.sw-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
}

.sw-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    flex: 1;
}

.sw-badge {
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 600;
    white-space: nowrap;
}

.sw-badge-custom {
    background: #fff3e0;
    color: #e65100;
}

.sw-badge-free {
    background: #e8f5e9;
    color: #2e7d32;
}

.sw-card-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    flex: 1;
    margin-bottom: 16px;
    line-height: 1.65;
    white-space: pre-line;
}

.sw-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-light);
}

.sw-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-download {
    background: var(--primary);
    color: white;
    padding: 7px 16px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: inherit;
}

.btn-download:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

/* ---- Pagination ---- */
.pagination-info {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.page-count {
    font-size: 0.85rem;
    color: var(--text-light);
}

.btn-load-more {
    background: var(--bg-card);
    color: var(--primary);
    border: 1.5px solid var(--border);
    padding: 9px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 0.88rem;
}

.btn-load-more:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
    box-shadow: var(--shadow-sm);
}

.btn-load-more:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ---- Empty state ---- */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    opacity: 0.4;
}

/* ---- Modal ---- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,37,64,0.5);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    max-width: 440px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.modal p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-family: inherit;
    transition: var(--transition);
    background: white;
    color: var(--text);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

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

.form-control-file {
    padding: 10px;
    border: 2px dashed var(--border);
    border-radius: var(--radius-sm);
    width: 100%;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.88rem;
    color: var(--text-secondary);
    background: var(--bg);
}

.form-control-file:hover {
    border-color: var(--accent);
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

.btn-cancel {
    background: var(--bg);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.btn-cancel:hover {
    background: var(--border);
}

/* ---- Request form ---- */
.request-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    max-width: 520px;
    margin: 30px auto 0;
}

/* ---- Contact / QR Section ---- */
.qr-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
}

.qr-item {
    text-align: center;
}

.qr-item img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 8px;
    background: white;
}

.qr-item p {
    margin-top: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

/* ---- Footer ---- */
.footer {
    background: var(--primary);
    color: rgba(255,255,255,0.6);
    padding: 40px 0 24px;
    font-size: 0.82rem;
    text-align: center;
}

.footer-compliance {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    align-items: center;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
}

.compliance-item img {
    height: 18px;
    opacity: 0.6;
}

/* ---- Compliance Image Viewer (fullscreen) ---- */
.img-viewer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display: none;
    flex-direction: column;
    z-index: 3000;
}

.img-viewer-overlay.active {
    display: flex;
}

.img-viewer-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: rgba(0,0,0,0.6);
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    font-weight: 600;
    flex-shrink: 0;
    z-index: 2;
}

.img-viewer-actions {
    display: flex;
    gap: 4px;
}

.img-viewer-actions button {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.img-viewer-actions button:hover {
    background: rgba(255,255,255,0.2);
}

.img-viewer-actions button:last-child {
    font-size: 1.5rem;
    margin-left: 8px;
}

.img-viewer-body {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.img-viewer-body img {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
    transition: transform 0.15s ease;
    transform-origin: center center;
    pointer-events: auto;
}

.compliance-clickable {
    cursor: pointer;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
    padding-bottom: 1px;
}

.compliance-clickable:hover {
    color: rgba(255,255,255,0.85);
    border-bottom-color: rgba(255,255,255,0.5);
}

.compliance-link-icon {
    font-size: 0.72rem;
    opacity: 0.5;
    text-decoration: none;
    transition: var(--transition);
    margin-left: 2px;
}

.compliance-link-icon:hover {
    opacity: 1;
}

.footer-copy {
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* ---- Toast / Flash ---- */
.flash-msg {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 3000;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.3s ease, fadeOut 0.5s 2.5s forwards;
    max-width: 360px;
}

.flash-success {
    background: var(--success);
    color: white;
}

.flash-error {
    background: var(--danger);
    color: white;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    to { opacity: 0; transform: translateY(-10px); }
}

/* ---- Admin Styles ---- */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 240px;
    background: var(--primary);
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    padding: 20px 0;
    z-index: 100;
    overflow-y: auto;
}

.admin-sidebar-logo {
    padding: 8px 24px 28px;
    font-weight: 900;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-sidebar-logo .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
    border-radius: 8px;
}

.admin-nav {
    list-style: none;
}

.admin-nav li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 24px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.admin-nav li a:hover,
.admin-nav li a.active {
    color: white;
    background: rgba(255,255,255,0.06);
    border-left-color: var(--accent);
}

.admin-main {
    flex: 1;
    margin-left: 240px;
    padding: 32px;
    background: var(--bg);
    min-height: 100vh;
}

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

.admin-header h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.stat-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
}

.stat-card h3 {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 8px;
}

.stat-card .stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
}

/* Admin table */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.admin-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-table td {
    padding: 14px 16px;
    font-size: 0.88rem;
    border-top: 1px solid var(--border);
    color: var(--text);
    vertical-align: middle;
}

.admin-table tr:hover td {
    background: rgba(0,212,170,0.02);
}

.admin-table .actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.admin-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
}

.admin-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Login page */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(165deg, var(--primary), #0d2d4a);
    padding: 20px;
}

.login-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 400px;
    width: 100%;
    box-shadow: var(--shadow-xl);
}

.login-card h2 {
    text-align: center;
    margin-bottom: 8px;
    font-size: 1.3rem;
    color: var(--primary);
}

.login-card .login-sub {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 28px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

/* ---- About Section ---- */
.about-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.9;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        gap: 16px;
        box-shadow: var(--shadow-md);
        border-bottom-left-radius: var(--radius);
        border-bottom-right-radius: var(--radius);
    }

    .hero { padding: 110px 0 60px; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 0.95rem; }

    .services-grid { grid-template-columns: 1fr; }
    .software-grid { grid-template-columns: 1fr; }
    .section { padding: 50px 0; }
    .section-title { font-size: 1.5rem; }

    .qr-grid { gap: 20px; }
    .qr-item img { width: 120px; height: 120px; }

    /* Admin responsive */
    .admin-sidebar {
        transform: translateX(-100%);
        transition: var(--transition);
    }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-main { margin-left: 0; padding: 20px; }
    .stats-grid { grid-template-columns: 1fr; }
    .admin-form .form-row { grid-template-columns: 1fr; }

    .admin-table-wrap {
        overflow-x: auto;
    }

    .admin-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .admin-mobile-toggle {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.6rem; }
    .hero-btns { flex-direction: column; align-items: center; }
    .container { padding: 0 14px; }
    .modal { padding: 24px; }
    .footer-compliance { flex-direction: column; gap: 10px; }
}

/* Admin mobile toggle */
.admin-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-right: 12px;
}

.admin-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    margin: 4px 0;
    border-radius: 2px;
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-up {
    animation: fadeUp 0.6s ease forwards;
}

.fade-up-d1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-d2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-d3 { animation-delay: 0.3s; opacity: 0; }

/* Status badge */
.status-badge {
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 600;
}

.status-pending { background: #fff3e0; color: #e65100; }
.status-done { background: #e8f5e9; color: #2e7d32; }

/* Contact info hidden notice */
.contact-hidden {
    font-size: 0.78rem;
    color: var(--text-light);
    font-style: italic;
}
