/* Dynamic Type Header */
.type-header { 
    color:#fff; border-radius:16px; padding:1rem 1.25rem; 
    display:flex; align-items:center; gap:1rem; margin-bottom:1.25rem;
    margin-top: 1.5rem;
}
.type-header .icon { width:48px; height:48px; border-radius:12px; background:rgba(255,255,255,.18); display:flex; align-items:center; justify-content:center; font-size:1.35rem; color:#fff; }
.type-header .content { display:flex; flex-direction:column; gap:.15rem; }
.type-header .title { font-weight:800; font-size:1.15rem; }
.type-header .subtitle { opacity:.9; font-size:.95rem; }
.type-header.worker { background: var(--gradient-primary); }
.type-header.company { background: var(--gradient-secondary); }
/* ============ Certifications Builder (Step 4) ============ */
.certs-builder { display: grid; gap: 1rem; }
.certs-actions { display: flex; justify-content: flex-start; }
.certs-list { display: grid; gap: 1rem; }

.cert-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.cert-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 768px) { .cert-row { grid-template-columns: 1fr; } }

.cert-field label { display:block; font-weight:600; color:#374151; font-size:.85rem; margin-bottom:.4rem; }
.cert-field input[type="text"] { width:100%; border:2px solid #e5e7eb; border-radius:8px; padding:.7rem .9rem; font-size:1rem; }
.cert-field input[type="text"]:focus { outline:none; border-color:#3b82f6; box-shadow:0 0 0 3px rgba(59,130,246,.2); }

.upload-zone { border:2px dashed #cbd5e1; border-radius:10px; padding:1rem; display:flex; align-items:center; gap:.75rem; cursor:pointer; background:#f8fafc; }
.upload-zone:hover { border-color:#3b82f6; background:#eff6ff; }
.upload-zone input[type="file"] { display:none; }
.upload-icon { width:36px; height:36px; border-radius:50%; background:#e0f2fe; display:flex; align-items:center; justify-content:center; color:#2563eb; }
.upload-hint { color:#475569; font-size:.9rem; }

.file-pill { display:none; align-items:center; gap:.6rem; background:linear-gradient(135deg,#f0fdf4,#dcfce7); border:1px solid #22c55e; border-radius:9999px; padding:.5rem .75rem; }
.file-pill .name { max-width: 260px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; font-weight:600; color:#065f46; }
.file-pill .size { color:#16a34a; font-size:.8rem; }
.file-pill .replace { background:#2563eb; color:#fff; border:none; border-radius:8px; width:28px; height:28px; display:flex; align-items:center; justify-content:center; cursor:pointer; }

.cert-actions { display:flex; justify-content:flex-end; margin-top:.5rem; }
.btn-remove { background:#fee2e2; color:#b91c1c; border:1px solid #fecaca; border-radius:8px; padding:.4rem .7rem; cursor:pointer; }
.btn-remove:hover { background:#fecaca; }

.no-certs { display:grid; gap:.5rem; }
.checkbox-inline { display:flex; align-items:center; gap:.5rem; cursor:pointer; }
.checkbox-inline input { display:none; }
.checkbox-custom { width:18px; height:18px; border:2px solid #cbd5e1; border-radius:4px; position:relative; }
.checkbox-inline input:checked + .checkbox-custom { background:#3b82f6; border-color:#3b82f6; }
.checkbox-inline input:checked + .checkbox-custom::after { content:''; position:absolute; left:4px; top:0px; width:5px; height:10px; border: solid #fff; border-width:0 2px 2px 0; transform: rotate(45deg); }

.no-cert-banner { display:flex; align-items:flex-start; gap:.5rem; background:#fffbeb; border:1px solid #f59e0b; color:#92400e; border-radius:10px; padding:.75rem; }
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* KarriWorks Brand Colors - Inspired by Australian landscape and industrial work */
    --primary-color: #E67E22;        /* Orange australien - ├®nergie et dynamisme */
    --primary: #E67E22;              /* Alias for compatibility */
    --primary-dark: #D35400;         /* Orange fonc├® */
    --secondary-color: #2ECC71;      /* Vert eucalyptus */
    --secondary: #2ECC71;            /* Alias for compatibility */
    --accent-color: #F39C12;         /* Jaune dor├® */
    --dark-color: #2C3E50;           /* Bleu-gris profond */
    --dark: #2C3E50;                 /* Alias for compatibility */
    --light-color: #ECF0F1;          /* Gris clair */
    --white: #FFFFFF;
    --black: #1A1A1A;
    
    /* Australian-inspired gradients */
    --gradient-primary: linear-gradient(135deg, #E67E22 0%, #F39C12 100%);
    --gradient-secondary: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
    --gradient-hero: linear-gradient(135deg, #E67E22 0%, #F39C12 50%, #2ECC71 100%);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Border radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-bottom: 1px solid rgba(230, 126, 34, 0.08);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    will-change: transform;
}

/* Only apply navbar styles to nav with .navbar class */
nav.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-bottom: 1px solid rgba(230, 126, 34, 0.08);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    will-change: transform;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(230, 126, 34, 0.3) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06),
                0 1px 4px rgba(230, 126, 34, 0.08);
    border-bottom-color: rgba(230, 126, 34, 0.15);
}

.navbar.scrolled::before {
    opacity: 1;
}

.navbar.hidden {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Prevent sidebar navigation from being affected by navbar scroll hide */
.sidebar,
.dashboard .sidebar,
.dashboard nav,
.dashboard .sidebar nav {
    position: static !important;
    transform: none !important;
    backdrop-filter: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.25rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 10;
}

.nav-logo img {
    height: 72px;
    width: auto;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
    object-fit: contain;
}

.nav-logo:hover img {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.nav-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 1.25rem;
    transition: color 0.3s ease;
}

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

.nav-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.625rem;
    z-index: 1001;
    border-radius: 8px;
    transition: background 0.3s ease;
    position: relative;
}

.hamburger:hover {
    background: rgba(230, 126, 34, 0.08);
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: var(--primary-color);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--primary-color);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-bottom: 1px solid rgba(230, 126, 34, 0.15);
    padding: 2.5rem 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12),
                0 2px 8px rgba(230, 126, 34, 0.1);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.mobile-menu-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.mobile-menu-header p {
    font-size: 0.9rem;
    color: #666;
}

.nav-menu-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.nav-link-mobile {
    display: block;
    padding: 0.875rem 1.25rem;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.nav-link-mobile:hover {
    background: rgba(230, 126, 34, 0.08);
    color: var(--primary-color);
    transform: translateX(4px);
}

.mobile-menu .nav-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    margin-top: 0;
}

.btn-mobile {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-container > .nav-buttons {
        display: none;
    }

    .mobile-menu {
        top: 65px;
        max-height: calc(100vh - 65px);
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-logo img {
        height: 58px;
    }

    .btn {
        padding: 0.85rem 1.75rem;
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .mobile-menu {
        top: 60px;
        max-height: calc(100vh - 60px);
        padding: 2rem 1.5rem;
    }

    .mobile-menu-header h3 {
        font-size: 1.375rem;
    }

    .nav-container {
        padding: 0.75rem 1rem;
    }

    .nav-logo img {
        height: 52px;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Buttons */
.btn {
    padding: 1rem 2.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Global loading state for buttons */
.btn { position: relative; }
.btn .btn-loader { 
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.btn.loading .btn-text { opacity: 0; visibility: hidden; }
.btn.loading .btn-loader { display: flex !important; align-items: center; justify-content: center; }
.btn-loader .spinner {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(230,126,34,0.25);
    border-top-color: #E67E22;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}
.btn-primary.loading .btn-loader .spinner {
    border-color: rgba(255,255,255,0.3);
    border-top-color: #fff;
}
@keyframes spin { to { transform: rotate(360deg); } }

.btn-primary {
    background: linear-gradient(135deg, #E67E22 0%, #F39C12 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(46, 204, 113, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--dark-color);
    border: 2px solid rgba(230, 126, 34, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 126, 34, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-outline:hover {
    background: rgba(230, 126, 34, 0.05);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.btn-outline:hover::after {
    left: 100%;
}

.btn-outline.active {
    background: var(--primary-color);
    color: var(--white);
    cursor: default;
}

.btn-primary.active {
    background: var(--primary-dark);
    transform: none;
    cursor: default;
}

.btn-outline.active:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary.active:hover {
    background: var(--primary-dark);
}

.btn-large {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1.1rem;
}

.btn-small {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.85rem;
}

/* Responsive Navigation Styles */
@media (max-width: 768px) {
    .nav-logo img {
        height: 58px;
    }

    .btn {
        padding: 0.85rem 1.75rem;
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .nav-logo img {
        height: 52px;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
    padding-top: 120px; /* Account for fixed navbar */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(230, 126, 34, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46, 204, 113, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(243, 156, 18, 0.1) 0%, transparent 50%);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    background: var(--gradient-secondary);
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(230, 126, 34, 0.1);
    color: var(--primary-color);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-md);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-extrabold);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--dark-color);
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.hero-visual {
    animation: slideInRight 1s ease-out;
    margin-top: var(--spacing-xxl);
}

.visual-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
    padding-top: var(--spacing-xl);
}

.worker-card, .company-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 300px;
    animation: cardFloat 3s ease-in-out infinite;
    margin-bottom: var(--spacing-md);
}

.worker-card {
    animation-delay: 0s;
}

.company-card {
    animation-delay: 1.5s;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.avatar, .company-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
}

.avatar {
    background: var(--gradient-primary);
}

.company-logo {
    background: var(--gradient-secondary);
}

.card-info h4 {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 2px;
}

.card-info p {
    font-size: 0.8rem;
    color: #666;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.tag {
    background: rgba(230, 126, 34, 0.1);
    color: var(--primary-color);
    padding: 2px var(--spacing-xs);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: var(--font-weight-medium);
}

.availability {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: var(--font-weight-medium);
}

.job-info {
    margin-bottom: var(--spacing-sm);
}

.job-title {
    display: block;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-xs);
}

.job-location {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.8rem;
    color: #666;
}

.job-rate {
    text-align: right;
}

.rate {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
}

.connection-line {
    width: 4px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 2px;
    position: relative;
    margin: var(--spacing-sm) 0;
}

.connection-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--white);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* How it Works Section */
.how-it-works {
    padding: var(--spacing-xxl) 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.step {
    text-align: center;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 2rem;
    color: var(--white);
}

.step h3 {
    font-size: 1.3rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
}

.service-card p {
    color: #666;
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: var(--spacing-xs) 0;
    color: #666;
    position: relative;
    padding-left: var(--spacing-md);
}

.service-card li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: var(--font-weight-bold);
}

/* Features Section */
.features {
    padding: var(--spacing-xxl) 0;
    background: var(--white);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.features-text h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: var(--spacing-xl);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.feature {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,.25);
    flex-shrink: 0;
}

.feature-icon i { color: #ffffff !important; }

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-xs);
    color: var(--dark-color);
}

.feature-content p {
    color: #666;
    line-height: 1.6;
}

.features-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: var(--dark-color);
    border-radius: 30px;
    padding: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
}

.app-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: var(--font-weight-semibold);
}

.app-logo {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.app-content {
    padding: var(--spacing-md);
    flex: 1;
}

.job-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.job-header h4 {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
}

.job-meta {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 0.8rem;
    color: #666;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 2px;
}

/* CTA Section */
.cta {
    padding: var(--spacing-xxl) 0;
    background: var(--gradient-hero);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

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

.cta .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta .btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: var(--font-weight-bold);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.footer-section p {
    color: #ccc;
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    html, body {
        height: 100%;
        min-height: 100vh;
        min-height: -webkit-fill-available;
        margin: 0;
        padding: 0;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }
    
    body {
        position: relative;
    }
    .nav-menu {
        display: none;
    }
    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: var(--spacing-sm);
        padding: var(--spacing-md);
        border-top: 1px solid rgba(0,0,0,0.06);
        box-shadow: 0 12px 28px rgba(0,0,0,0.12);
        z-index: 10000;
    }
    /* Only show Sign In / Join Now in mobile dropdown */
    .nav-menu.active .nav-link { display: none; }
    .nav-menu.active .nav-buttons { flex-direction: column; gap: var(--spacing-sm); width: 100%; }
    .nav-menu.active .nav-buttons .btn { width: 100%; justify-content: center; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(8px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-8px); }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
        padding-top: calc(var(--spacing-xl) + 24px); /* push content below fixed header */
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-top: var(--spacing-sm);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    footer {
        margin-bottom: 0 !important;
        padding-bottom: 2rem !important;
    }
    
    /* Remove any white space at bottom on mobile */
    body > *:last-child {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Funnel step 1 mobile: stack choice cards with breathing room */
    .choice-cards { 
        display: grid; 
        grid-template-columns: 1fr; 
        gap: var(--spacing-lg); 
        width: 100%; 
        margin-top: var(--spacing-lg);
    }
    .choice-card { 
        padding: var(--spacing-lg); 
        border-radius: var(--radius-md);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-text h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideInUp 0.3s ease-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    border-bottom: 1px solid #e0e0e0;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--dark-color);
    margin: 0;
}

.close {
    font-size: 2rem;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close:hover {
    color: var(--primary-color);
}

/* Auth Form Styles */
.auth-form {
    padding: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-weight: var(--font-weight-medium);
    color: var(--dark-color);
    margin-bottom: var(--spacing-xs);
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: var(--spacing-xs);
    display: none;
}

.error-message.show {
    display: block;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--dark-color);
}

.checkbox-container input[type="checkbox"] {
    width: auto;
    margin-right: var(--spacing-xs);
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: var(--primary-dark);
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

/* btn-loader styles moved to global section above */

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.form-footer {
    text-align: center;
    margin-top: var(--spacing-md);
}

.form-footer p {
    color: #666;
    font-size: 0.9rem;
}

.form-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: color 0.3s ease;
}

.form-footer a:hover {
    color: var(--primary-dark);
}

/* Password Strength Indicator */
.password-strength {
    margin-top: var(--spacing-xs);
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.password-strength.weak .password-strength-bar {
    width: 25%;
    background: #e74c3c;
}

.password-strength.fair .password-strength-bar {
    width: 50%;
    background: #f39c12;
}

.password-strength.good .password-strength-bar {
    width: 75%;
    background: #f1c40f;
}

.password-strength.strong .password-strength-bar {
    width: 100%;
    background: #2ecc71;
}

/* Password Requirements */
.password-requirements {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.password-requirements small {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.password-requirements li {
    font-size: 0.85rem;
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.password-requirements li::before {
    content: '○';
    color: #999;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.password-requirements li[style*="color: #2ECC71"]::before {
    content: '✓';
    color: #2ECC71;
    font-weight: bold;
}

/* Message Container */
.message-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    max-width: 400px;
}

.message {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid;
    animation: slideInRight 0.3s ease-out;
    position: relative;
}

.message.success {
    border-left-color: #2ecc71;
}

.message.error {
    border-left-color: #e74c3c;
}

.message.info {
    border-left-color: #3498db;
}

.message .message-icon {
    margin-right: var(--spacing-sm);
    font-size: 1.2rem;
}

.message.success .message-icon {
    color: #2ecc71;
}

.message.error .message-icon {
    color: #e74c3c;
}

.message.info .message-icon {
    color: #3498db;
}

.message .message-close {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.message .message-close:hover {
    color: var(--dark-color);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Sign In Page - Add padding for fixed navbar */
.signin-section {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    padding-top: 140px; /* Account for fixed navbar */
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.signin-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(230, 126, 34, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(46, 204, 113, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.signin-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Side - Welcome Content */
.signin-left {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.welcome-content {
    max-width: 500px;
    width: 100%;
}

.welcome-logo {
    margin-bottom: 2.5rem;
    animation: fadeInDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

.welcome-logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.welcome-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    animation: fadeInDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s backwards;
}

.welcome-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 3rem;
    animation: fadeInDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s backwards;
}

.quick-stats {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.5s backwards;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    border: 1px solid rgba(230, 126, 34, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-box:hover {
    transform: translateX(8px);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(230, 126, 34, 0.12);
    border-color: rgba(230, 126, 34, 0.2);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-box:nth-child(2) .stat-icon {
    background: var(--gradient-secondary);
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #999;
    font-weight: 500;
}

.stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    font-family: 'Inter', sans-serif;
}

/* Right Side - Sign In Form */
.signin-right {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.signin-form-container {
    width: 100%;
    max-width: 480px;
    background: var(--white);
    border-radius: 32px;
    padding: 3.5rem;
    box-shadow: 
        0 24px 64px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(230, 126, 34, 0.06);
    position: relative;
}

.signin-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 32px 32px 0 0;
}

.form-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.form-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.form-header p {
    color: #666;
    font-size: 1rem;
}

.signin-form .form-group {
    margin-bottom: 1.75rem;
}

.signin-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.signin-form .form-group label i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.signin-form .form-group input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(230, 126, 34, 0.15);
    border-radius: 14px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    color: var(--dark-color);
}

.signin-form .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.1);
    transform: translateY(-1px);
}

.password-input-wrapper {
    position: relative;
}

.password-input-wrapper input {
    padding-right: 3.5rem;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.toggle-password:hover {
    color: var(--primary-color);
}

.toggle-password.active {
    color: var(--primary-color);
}

.signin-form .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.signin-form .checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.signin-form .checkbox-container input {
    position: absolute;
    opacity: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin: 0;
    z-index: 2;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(230, 126, 34, 0.3);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.signin-form .checkbox-container input:checked + .checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.signin-form .checkbox-container input:checked + .checkbox-custom::after {
    content: '✓';
    color: var(--white);
    font-size: 0.75rem;
    font-weight: bold;
}

.signin-form .checkbox-label {
    font-size: 0.9rem;
    color: var(--dark-color);
    font-weight: 500;
    margin-left: 0;
}

.signin-form .checkmark {
    font-size: 0.9rem;
    color: var(--dark-color);
    font-weight: 500;
}

.signin-form .forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.signin-form .forgot-password::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.signin-form .forgot-password:hover {
    color: var(--primary-dark);
}

.signin-form .forgot-password:hover::after {
    width: 100%;
}

.btn-signin {
    width: 100%;
    justify-content: center;
    padding: 1.15rem 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.form-footer p {
    color: #666;
    font-size: 0.95rem;
}

.form-footer .auth-link {
    color: var(--primary-color) !important;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 2px 6px;
    border-radius: 6px;
    position: relative;
}

.form-footer .auth-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-footer .auth-link:hover::before {
    opacity: 1;
}

.back-to-home {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #666 !important;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
}

.back-link:hover {
    color: var(--dark-color) !important;
    background: rgba(0, 0, 0, 0.05);
    transform: translateX(-4px);
}

.back-link i {
    transition: transform 0.3s ease;
}

.back-link:hover i {
    transform: translateX(-4px);
}

/* Responsive Sign In */
@media (max-width: 1024px) {
    .signin-wrapper {
        gap: 4rem;
        padding: 0 2rem;
    }

    .welcome-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .signin-section {
        padding: 6rem 0 3rem;
        padding-top: 120px; /* Account for smaller navbar on mobile */
    }

    .signin-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .signin-left {
        order: 2;
        text-align: center;
    }

    .signin-right {
        order: 1;
    }

    .welcome-content {
        max-width: 100%;
    }

    .welcome-logo img {
        height: 64px;
    }

    .welcome-content h1 {
        font-size: 2rem;
    }

    .welcome-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .quick-stats {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .stat-box {
        flex: 1;
        padding: 1.25rem;
    }

    .stat-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .signin-form-container {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 640px) {
    .signin-section {
        padding: 5rem 0 2rem;
        padding-top: 110px; /* Account for smaller navbar on mobile */
    }

    .signin-wrapper {
        padding: 0 1rem;
    }

    .welcome-content h1 {
        font-size: 1.75rem;
    }

    .quick-stats {
        flex-direction: column;
    }

    .signin-form-container {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }

    .form-header h2 {
        font-size: 1.75rem;
    }
}

.auth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(230, 126, 34, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(46, 204, 113, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Auth Pages Styles - Base */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: var(--spacing-xxl) 0;
    padding-top: 140px; /* Account for fixed navbar */
    position: relative;
}

.auth-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.auth-card {
    background: var(--white);
    border-radius: 28px;
    padding: 3.5rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(230, 126, 34, 0.08);
    max-width: 520px;
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.auth-header img {
    height: 72px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    animation: fadeInDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    animation: fadeInDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s backwards;
}

.auth-header p {
    color: #666;
    font-size: 1.05rem;
    animation: fadeInDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s backwards;
}

.auth-form {
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.5s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.form-group {
    margin-bottom: 1.75rem;
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(230, 126, 34, 0.15);
    border-radius: 14px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    color: var(--dark-color);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder {
    color: #999;
}

.form-group input.error,
.form-group select.error {
    border-color: #e74c3c;
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
    animation: fadeIn 0.3s ease;
}

.error-message.show {
    display: block;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
    line-height: 1.5;
}

.checkbox-container input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.checkmark {
    display: none;
}

.checkbox-text {
    font-size: 0.9rem;
    color: var(--dark-color);
    font-weight: 500;
    line-height: 1.5;
    flex: 1;
}

.checkbox-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.checkbox-text a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.forgot-password::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.forgot-password:hover {
    color: var(--primary-dark);
}

.forgot-password:hover::after {
    width: 100%;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 1.1rem 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.auth-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 126, 34, 0.2), transparent);
}

.auth-divider span {
    background: var(--white);
    padding: 0 1.25rem;
    color: #999;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

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

.auth-footer p {
    color: #666;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.auth-link {
    color: var(--primary-color) !important;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 2px 6px;
    border-radius: 6px;
    position: relative;
}

.auth-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.auth-link:hover::before {
    opacity: 1;
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #666 !important;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 10px;
}

.back-home:hover {
    color: var(--dark-color) !important;
    background: rgba(0, 0, 0, 0.05);
    transform: translateX(-4px);
}

.auth-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s backwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.visual-content {
    text-align: center;
    max-width: 450px;
    position: relative;
}

.visual-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.visual-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.visual-content p {
    color: #666;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--dark-color);
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(230, 126, 34, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateX(8px);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(230, 126, 34, 0.15);
    border-color: rgba(230, 126, 34, 0.2);
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

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

.stat-item .stat-number {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    display: block;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Auth Pages */
@media (max-width: 768px) {
    .auth-section {
        padding: 6rem 0 3rem;
        padding-top: 120px; /* Account for smaller navbar on mobile */
    }

    .auth-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .auth-card {
        padding: 2.5rem 2rem;
        max-width: 100%;
    }

    .auth-header img {
        height: 60px;
        margin-bottom: 1.25rem;
    }

    .auth-header h1 {
        font-size: 1.875rem;
    }

    .auth-header p {
        font-size: 1rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.9rem 1.1rem;
        font-size: 1rem;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .visual-content {
        order: -1;
    }

    .visual-content h3 {
        font-size: 1.875rem;
    }

    .visual-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .feature-item {
        padding: 0.875rem 1.25rem;
    }

    .btn-full {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .auth-section {
        padding: 5rem 0 2rem;
        padding-top: 110px; /* Account for smaller navbar on mobile */
    }

    .auth-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .auth-header img {
        height: 52px;
    }

    .auth-header h1 {
        font-size: 1.625rem;
    }

    .visual-content h3 {
        font-size: 1.625rem;
    }
}

/* Premium Funnel Styles */
.funnel-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: var(--spacing-xxl) 0;
    padding-top: 140px; /* Account for fixed navbar */
}

.funnel-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.funnel-progress {
    margin-bottom: var(--spacing-xxl);
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.5s ease;
    width: 0%;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--primary-color);
    color: var(--white);
}

.step-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: var(--font-weight-medium);
}

.funnel-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.funnel-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xxl);
    box-shadow: var(--shadow-xl);
}

.step-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.step-header h1 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
}

.step-header p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

/* Choice Cards */
.choice-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    align-items: start;
}

.choice-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.choice-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.choice-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, rgba(255, 140, 0, 0.1) 100%);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.choice-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: 2rem;
    color: var(--white);
}

.choice-card h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
}

.choice-card p {
    color: #666;
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.choice-features {
    margin-bottom: var(--spacing-lg);
    flex: 1;
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
}

.feature i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.choice-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

/* Funnel Forms */
.funnel-form {
    max-width: 500px;
    margin: 0 auto;
}

.funnel-form .checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
    line-height: 1.5;
    margin-bottom: 0;
}

.funnel-form .checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.funnel-form .checkbox-container .checkmark {
    display: none;
}

.funnel-form .checkbox-container .checkbox-text {
    font-size: 0.9rem;
    color: var(--dark-color);
    font-weight: 500;
    line-height: 1.5;
    flex: 1;
}

.funnel-form .checkbox-container .checkbox-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.funnel-form .checkbox-container .checkbox-text a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: space-between;
    margin-top: var(--spacing-xl);
}

.form-actions .btn {
    flex: 1;
}

/* Location Selection Cards */
.location-selection {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.location-selection h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
}

.location-selection p {
    color: #666;
    margin-bottom: var(--spacing-xl);
}

.location-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.location-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-align: left;
}

.location-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.location-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, rgba(255, 140, 0, 0.1) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.location-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.location-info {
    flex: 1;
}

.location-info h4 {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: 2px;
}

.location-info span {
    font-size: 0.8rem;
    color: #666;
    font-weight: var(--font-weight-medium);
}

.location-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.location-card.selected .location-check {
    opacity: 1;
}

/* Certification Upload System */
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
}

    color: #666;
    margin-bottom: var(--spacing-xl);
}

    margin-bottom: var(--spacing-lg);
}

    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    text-align: left;
}

    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid #e0e0e0;
}

    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin: 0;
}

.btn-remove-cert {
    background: #ff4757;
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-remove-cert:hover {
    background: #ff3742;
    transform: scale(1.1);
}

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-display {
    border: 2px dashed #e0e0e0;
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.file-upload-display:hover {
    border-color: var(--primary-color);
    background: rgba(255, 140, 0, 0.05);
}

.file-upload-display.dragover {
    border-color: var(--primary-color);
    background: rgba(255, 140, 0, 0.1);
    transform: scale(1.02);
}

.file-upload-display.uploaded {
    border-color: var(--secondary-color);
    background: rgba(34, 197, 94, 0.1);
}

.file-upload-display i {
    font-size: 2rem;
    color: #666;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.file-upload-display.uploaded i {
    color: var(--secondary-color);
}

.file-upload-display span {
    display: block;
    font-weight: var(--font-weight-medium);
    color: var(--dark-color);
    margin-bottom: var(--spacing-xs);
}

.file-upload-display small {
    color: #666;
    font-size: 0.8rem;
}

.btn-add-cert {
    width: 100%;
    padding: var(--spacing-md);
    font-size: 1rem;
    margin-top: var(--spacing-md);
}

.btn-add-cert i {
    margin-right: var(--spacing-xs);
}

/* Responsive Certification Upload */
@media (max-width: 768px) {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
        padding: var(--spacing-md);
    }
    
    .file-upload-display {
        padding: var(--spacing-md);
    }
    
    .file-upload-display i {
        font-size: 1.5rem;
    }
}

/* Certification Selection Cards */
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
}

    color: #666;
    margin-bottom: var(--spacing-xl);
}

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-sm);
}

    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, rgba(255, 140, 0, 0.1) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

    flex: 1;
}

    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: 2px;
}

    font-size: 0.8rem;
    color: #666;
    line-height: 1.3;
}

    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    opacity: 1;
}

/* Domain Selection Cards */
.domains-selection {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.domains-selection h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
}

.domains-selection p {
    color: #666;
    margin-bottom: var(--spacing-xl);
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}
@media (max-width: 900px) {
    .domains-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
    .domains-grid { grid-template-columns: 1fr; }
}

.domain-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-sm);
}

.domain-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.domain-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, rgba(255, 140, 0, 0.1) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.domain-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.domain-info {
    flex: 1;
}

.domain-info h4 {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: 2px;
}

.domain-info span {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.3;
}

.domain-check {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.domain-card.selected .domain-check {
    opacity: 1;
}

/* Responsive Location Cards */
@media (max-width: 768px) {
    .location-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .location-card {
        padding: var(--spacing-md);
    }
    
    .location-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .location-info h4 {
        font-size: 1rem;
    }
    
    .location-info span {
        font-size: 0.8rem;
    }
    
    .domains-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .domain-card {
        padding: var(--spacing-md);
    }
    
    .domain-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .domain-info h4 {
        font-size: 1rem;
    }
    
    .domain-info span {
        font-size: 0.8rem;
    }
    
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
        padding: var(--spacing-md);
    }
    
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
        font-size: 0.9rem;
    }
    
        font-size: 0.7rem;
    }
}

/* Responsive Funnel */
@media (max-width: 768px) {
    .funnel-container {
        padding: 0 var(--spacing-md);
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .step-content {
        padding: var(--spacing-lg);
        width: 100%;
        box-sizing: border-box;
    }
    
    .step-header {
        padding: 0;
        margin-bottom: var(--spacing-lg);
    }
    
    .step-header h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .step-header p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .choice-cards {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: var(--spacing-lg);
        width: 100%;
        margin-top: var(--spacing-lg);
        padding: 0;
    }
    
    .choice-card {
        width: 100%;
        max-width: 100%;
        padding: var(--spacing-lg);
        box-sizing: border-box;
        margin: 0;
    }
    
    .choice-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        margin-bottom: var(--spacing-md);
    }
    
    .choice-card h3 {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .choice-card p {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-md);
    }
    
    .choice-features {
        margin-bottom: var(--spacing-md);
    }
    
    .feature {
        font-size: 0.9rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .choice-btn {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .progress-steps {
        gap: var(--spacing-sm);
    }
    
    .step-label {
        font-size: 0.8rem;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .funnel-container {
        padding: 0 var(--spacing-sm);
    }
    
    .step-content {
        padding: var(--spacing-md);
    }
    
    .step-header h1 {
        font-size: 1.5rem;
    }
    
    .step-header p {
        font-size: 0.9rem;
    }
    
    .choice-cards {
        gap: var(--spacing-md);
        margin-top: var(--spacing-md);
    }
    
    .choice-card {
        padding: var(--spacing-md);
    }
    
    .choice-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .choice-card h3 {
        font-size: 1.1rem;
    }
    
    .choice-card p {
        font-size: 0.85rem;
    }
    
    .feature {
        font-size: 0.85rem;
    }
    
    .choice-btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.95rem;
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: var(--spacing-md);
    }
    
    .modal-header,
    .auth-form {
        padding: var(--spacing-md);
    }
    
    .form-options {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: flex-start;
    }
}

 
 / *   C e r t i f i c a t i o n s   S e c t i o n   S t y l e s   * / 
 . c e r t i f i c a t i o n s - s e c t i o n   { 
         m a r g i n - b o t t o m :   v a r ( - - s p a c i n g - l g ) ; 
 } 
 
 . c e r t i f i c a t i o n s - l i s t   { 
         m a r g i n - b o t t o m :   v a r ( - - s p a c i n g - l g ) ; 
 } 
 
 . c e r t - i t e m   { 
         b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
         b o r d e r :   2 p x   s o l i d   # e 0 e 0 e 0 ; 
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ; 
         p a d d i n g :   v a r ( - - s p a c i n g - l g ) ; 
         m a r g i n - b o t t o m :   v a r ( - - s p a c i n g - m d ) ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . c e r t - i t e m : h o v e r   { 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ; 
 } 
 
 . c e r t - h e a d e r   { 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         m a r g i n - b o t t o m :   v a r ( - - s p a c i n g - m d ) ; 
 } 
 
 . c e r t - h e a d e r   h 3   { 
         f o n t - s i z e :   1 . 2 r e m ; 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - b o l d ) ; 
         c o l o r :   v a r ( - - d a r k - c o l o r ) ; 
         m a r g i n :   0 ; 
 } 
 
 . b t n - r e m o v e   { 
         b a c k g r o u n d :   # f f 4 7 5 7 ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         b o r d e r :   n o n e ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         w i d t h :   3 2 p x ; 
         h e i g h t :   3 2 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . b t n - r e m o v e : h o v e r   { 
         b a c k g r o u n d :   # f f 3 7 4 2 ; 
         t r a n s f o r m :   s c a l e ( 1 . 1 ) ; 
 } 
 
 . c e r t - f o r m   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ; 
         g a p :   v a r ( - - s p a c i n g - m d ) ; 
 } 
 
 . f i l e - u p l o a d - a r e a   { 
         p o s i t i o n :   r e l a t i v e ; 
 } 
 
 . f i l e - u p l o a d - a r e a   i n p u t [ t y p e = \ 
 
 f i l e \ ]   { 
         p o s i t i o n :   a b s o l u t e ; 
         o p a c i t y :   0 ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         c u r s o r :   p o i n t e r ; 
 } 
 
 . u p l o a d - d i s p l a y   { 
         b o r d e r :   2 p x   d a s h e d   # d d d ; 
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - m d ) ; 
         p a d d i n g :   v a r ( - - s p a c i n g - l g ) ; 
         t e x t - a l i g n :   c e n t e r ; 
         b a c k g r o u n d :   # f a f a f a ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         c u r s o r :   p o i n t e r ; 
 } 
 
 . u p l o a d - d i s p l a y : h o v e r   { 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
         b a c k g r o u n d :   # f 0 f 8 f f ; 
 } 
 
 . u p l o a d - d i s p l a y . d r a g o v e r   { 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
         b a c k g r o u n d :   # e 6 f 3 f f ; 
 } 
 
 . u p l o a d - d i s p l a y . u p l o a d e d   { 
         b o r d e r - c o l o r :   v a r ( - - s u c c e s s - c o l o r ) ; 
         b a c k g r o u n d :   # f 0 f f f 4 ; 
 } 
 
 . u p l o a d - d i s p l a y   i   { 
         f o n t - s i z e :   2 r e m ; 
         c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
         m a r g i n - b o t t o m :   v a r ( - - s p a c i n g - s m ) ; 
 } 
 
 . u p l o a d - d i s p l a y   s p a n   { 
         d i s p l a y :   b l o c k ; 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - m e d i u m ) ; 
         c o l o r :   v a r ( - - d a r k - c o l o r ) ; 
         m a r g i n - b o t t o m :   v a r ( - - s p a c i n g - x s ) ; 
 } 
 
 . u p l o a d - d i s p l a y   s m a l l   { 
         c o l o r :   # 6 6 6 ; 
         f o n t - s i z e :   0 . 9 r e m ; 
 } 
 
 . b t n - a d d - c e r t   { 
         w i d t h :   1 0 0 % ; 
         p a d d i n g :   v a r ( - - s p a c i n g - m d ) ; 
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - p r i m a r y ) ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         b o r d e r :   n o n e ; 
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - m d ) ; 
         f o n t - s i z e :   1 r e m ; 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - b o l d ) ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         g a p :   v a r ( - - s p a c i n g - s m ) ; 
 } 
 
 . b t n - a d d - c e r t : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
         b o x - s h a d o w :   0   8 p x   2 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ; 
 } 
 
 
 
 / *   B e a u t i f u l   C e r t i f i c a t i o n s   S e c t i o n   S t y l e s   * / 
 . c e r t i f i c a t i o n s - s e c t i o n   { 
         m a r g i n - b o t t o m :   v a r ( - - s p a c i n g - l g ) ; 
 } 
 
 . c e r t i f i c a t i o n s - l i s t   { 
         m a r g i n - b o t t o m :   v a r ( - - s p a c i n g - l g ) ; 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   v a r ( - - s p a c i n g - l g ) ; 
 } 
 
 / *   C e r t i f i c a t i o n   C a r d   * / 
 . c e r t - c a r d   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f f f f f f   0 % ,   # f 8 f 9 f a   1 0 0 % ) ; 
         b o r d e r :   2 p x   s o l i d   # e 9 e c e f ; 
         b o r d e r - r a d i u s :   2 0 p x ; 
         p a d d i n g :   0 ; 
         o v e r f l o w :   h i d d e n ; 
         t r a n s i t i o n :   a l l   0 . 4 s   c u b i c - b e z i e r ( 0 . 4 ,   0 ,   0 . 2 ,   1 ) ; 
         b o x - s h a d o w :   0   4 p x   2 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 8 ) ; 
         p o s i t i o n :   r e l a t i v e ; 
 } 
 
 . c e r t - c a r d : : b e f o r e   { 
         c o n t e n t :   ' ' ; 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ; 
         l e f t :   0 ; 
         r i g h t :   0 ; 
         h e i g h t :   4 p x ; 
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - p r i m a r y ) ; 
 } 
 
 . c e r t - c a r d : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 4 p x ) ; 
         b o x - s h a d o w :   0   1 2 p x   4 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ; 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
 } 
 
 / *   C e r t i f i c a t i o n   H e a d e r   * / 
 . c e r t - h e a d e r   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f 8 f 9 f a   0 % ,   # e 9 e c e f   1 0 0 % ) ; 
         p a d d i n g :   v a r ( - - s p a c i n g - l g ) ; 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         b o r d e r - b o t t o m :   1 p x   s o l i d   # e 9 e c e f ; 
 } 
 
 . c e r t - n u m b e r   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   v a r ( - - s p a c i n g - m d ) ; 
 } 
 
 . c e r t - b a d g e   { 
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - p r i m a r y ) ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         w i d t h :   4 0 p x ; 
         h e i g h t :   4 0 p x ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - b o l d ) ; 
         f o n t - s i z e :   1 . 1 r e m ; 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ; 
 } 
 
 . c e r t - h e a d e r   h 3   { 
         f o n t - s i z e :   1 . 3 r e m ; 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - b o l d ) ; 
         c o l o r :   v a r ( - - d a r k - c o l o r ) ; 
         m a r g i n :   0 ; 
 } 
 
 . c e r t - r e m o v e - b t n   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f f 6 b 6 b   0 % ,   # e e 5 a 5 2   1 0 0 % ) ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         b o r d e r :   n o n e ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         w i d t h :   3 6 p x ; 
         h e i g h t :   3 6 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 2 5 5 ,   1 0 7 ,   1 0 7 ,   0 . 3 ) ; 
 } 
 
 . c e r t - r e m o v e - b t n : h o v e r   { 
         t r a n s f o r m :   s c a l e ( 1 . 1 )   r o t a t e ( 9 0 d e g ) ; 
         b o x - s h a d o w :   0   6 p x   2 0 p x   r g b a ( 2 5 5 ,   1 0 7 ,   1 0 7 ,   0 . 4 ) ; 
 } 
 
 / *   C e r t i f i c a t i o n   C o n t e n t   * / 
 . c e r t - c o n t e n t   { 
         p a d d i n g :   v a r ( - - s p a c i n g - x l ) ; 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ; 
         g a p :   v a r ( - - s p a c i n g - x l ) ; 
 } 
 
 . c e r t - i n p u t - g r o u p , 
 . c e r t - f i l e - g r o u p   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   v a r ( - - s p a c i n g - s m ) ; 
 } 
 
 . c e r t - l a b e l   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   v a r ( - - s p a c i n g - s m ) ; 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - b o l d ) ; 
         c o l o r :   v a r ( - - d a r k - c o l o r ) ; 
         f o n t - s i z e :   0 . 9 5 r e m ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
 } 
 
 . c e r t - l a b e l   i   { 
         c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
         f o n t - s i z e :   1 r e m ; 
 } 
 
 . c e r t - i n p u t   { 
         p a d d i n g :   v a r ( - - s p a c i n g - m d ) ; 
         b o r d e r :   2 p x   s o l i d   # e 9 e c e f ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         f o n t - s i z e :   1 r e m ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
 } 
 
 . c e r t - i n p u t : f o c u s   { 
         o u t l i n e :   n o n e ; 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
         b o x - s h a d o w :   0   0   0   3 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 1 ) ; 
 } 
 
 / *   F i l e   D r o p   Z o n e   * / 
 . f i l e - d r o p - z o n e   { 
         p o s i t i o n :   r e l a t i v e ; 
         b o r d e r :   2 p x   d a s h e d   # d e e 2 e 6 ; 
         b o r d e r - r a d i u s :   1 6 p x ; 
         p a d d i n g :   v a r ( - - s p a c i n g - x l ) ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f 8 f 9 f a   0 % ,   # f f f f f f   1 0 0 % ) ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         c u r s o r :   p o i n t e r ; 
         m i n - h e i g h t :   1 8 0 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 } 
 
 . f i l e - d r o p - z o n e : h o v e r   { 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # e 3 f 2 f d   0 % ,   # f 8 f 9 f a   1 0 0 % ) ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
 } 
 
 . f i l e - d r o p - z o n e . d r a g o v e r   { 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # e 3 f 2 f d   0 % ,   # b b d e f b   1 0 0 % ) ; 
         t r a n s f o r m :   s c a l e ( 1 . 0 2 ) ; 
 } 
 
 . f i l e - i n p u t   { 
         p o s i t i o n :   a b s o l u t e ; 
         o p a c i t y :   0 ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         c u r s o r :   p o i n t e r ; 
 } 
 
 . f i l e - d r o p - c o n t e n t   { 
         t e x t - a l i g n :   c e n t e r ; 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   v a r ( - - s p a c i n g - m d ) ; 
 } 
 
 . f i l e - i c o n   { 
         w i d t h :   6 0 p x ; 
         h e i g h t :   6 0 p x ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - p r i m a r y ) ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         f o n t - s i z e :   1 . 8 r e m ; 
         b o x - s h a d o w :   0   8 p x   2 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ; 
 } 
 
 . f i l e - t e x t   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   v a r ( - - s p a c i n g - x s ) ; 
 } 
 
 . f i l e - m a i n - t e x t   { 
         f o n t - s i z e :   1 . 1 r e m ; 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - b o l d ) ; 
         c o l o r :   v a r ( - - d a r k - c o l o r ) ; 
 } 
 
 . f i l e - s u b - t e x t   { 
         f o n t - s i z e :   0 . 9 5 r e m ; 
         c o l o r :   # 6 c 7 5 7 d ; 
 } 
 
 . f i l e - h i n t   { 
         f o n t - s i z e :   0 . 8 5 r e m ; 
         c o l o r :   # a d b 5 b d ; 
         f o n t - s t y l e :   i t a l i c ; 
 } 
 
 / *   F i l e   P r e v i e w   * / 
 . f i l e - p r e v i e w   { 
         d i s p l a y :   n o n e ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # d 4 e d d a   0 % ,   # c 3 e 6 c b   1 0 0 % ) ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         p a d d i n g :   v a r ( - - s p a c i n g - m d ) ; 
         b o r d e r :   2 p x   s o l i d   # 2 8 a 7 4 5 ; 
 } 
 
 . f i l e - i n f o   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   v a r ( - - s p a c i n g - m d ) ; 
 } 
 
 . f i l e - i n f o   i   { 
         f o n t - s i z e :   1 . 5 r e m ; 
 } 
 
 . f i l e - n a m e   { 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - b o l d ) ; 
         c o l o r :   v a r ( - - d a r k - c o l o r ) ; 
         f o n t - s i z e :   0 . 9 5 r e m ; 
 } 
 
 . f i l e - s i z e   { 
         c o l o r :   # 6 c 7 5 7 d ; 
         f o n t - s i z e :   0 . 8 5 r e m ; 
 } 
 
 . f i l e - c h a n g e - b t n   { 
         b a c k g r o u n d :   v a r ( - - p r i m a r y - c o l o r ) ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         b o r d e r :   n o n e ; 
         b o r d e r - r a d i u s :   8 p x ; 
         p a d d i n g :   v a r ( - - s p a c i n g - s m ) ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . f i l e - c h a n g e - b t n : h o v e r   { 
         b a c k g r o u n d :   v a r ( - - s e c o n d a r y - c o l o r ) ; 
         t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ; 
 } 
 
 / *   A d d   C e r t i f i c a t i o n   B u t t o n   * / 
 . b t n - a d d - c e r t   { 
         w i d t h :   1 0 0 % ; 
         p a d d i n g :   v a r ( - - s p a c i n g - l g ) ; 
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - p r i m a r y ) ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         b o r d e r :   n o n e ; 
         b o r d e r - r a d i u s :   1 6 p x ; 
         f o n t - s i z e :   1 . 1 r e m ; 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - b o l d ) ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 4 s   e a s e ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         g a p :   v a r ( - - s p a c i n g - m d ) ; 
         b o x - s h a d o w :   0   8 p x   2 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ; 
         p o s i t i o n :   r e l a t i v e ; 
         o v e r f l o w :   h i d d e n ; 
 } 
 
 . b t n - a d d - c e r t : : b e f o r e   { 
         c o n t e n t :   ' ' ; 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ; 
         l e f t :   - 1 0 0 % ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 9 0 d e g ,   t r a n s p a r e n t ,   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 ) ,   t r a n s p a r e n t ) ; 
         t r a n s i t i o n :   l e f t   0 . 5 s ; 
 } 
 
 . b t n - a d d - c e r t : h o v e r : : b e f o r e   { 
         l e f t :   1 0 0 % ; 
 } 
 
 . b t n - a d d - c e r t : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 3 p x ) ; 
         b o x - s h a d o w :   0   1 2 p x   3 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 2 ) ; 
 } 
 
 . b t n - a d d - c e r t   i   { 
         f o n t - s i z e :   1 . 2 r e m ; 
 } 
 
 / *   R e s p o n s i v e   D e s i g n   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . c e r t - c o n t e n t   { 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
                 g a p :   v a r ( - - s p a c i n g - l g ) ; 
         } 
         
         . c e r t - h e a d e r   { 
                 p a d d i n g :   v a r ( - - s p a c i n g - m d ) ; 
         } 
         
         . c e r t - c o n t e n t   { 
                 p a d d i n g :   v a r ( - - s p a c i n g - l g ) ; 
         } 
         
         . f i l e - d r o p - z o n e   { 
                 m i n - h e i g h t :   1 5 0 p x ; 
                 p a d d i n g :   v a r ( - - s p a c i n g - l g ) ; 
         } 
 } 
 
 
 
 / *   C l e a n   C e r t i f i c a t i o n   S t y l e s   * / 
 . c e r t i f i c a t i o n s - s e c t i o n   { 
         m a r g i n - b o t t o m :   v a r ( - - s p a c i n g - l g ) ; 
 } 
 
 . c e r t i f i c a t i o n s - l i s t   { 
         m a r g i n - b o t t o m :   v a r ( - - s p a c i n g - l g ) ; 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   v a r ( - - s p a c i n g - l g ) ; 
 } 
 
 / *   C e r t i f i c a t i o n   C a r d   * / 
 . c e r t - c a r d   { 
         b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
         b o r d e r :   1 p x   s o l i d   # e 1 e 5 e 9 ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         o v e r f l o w :   h i d d e n ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         b o x - s h a d o w :   0   2 p x   8 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 6 ) ; 
 } 
 
 . c e r t - c a r d : h o v e r   { 
         b o x - s h a d o w :   0   4 p x   1 6 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 2 ) ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
 } 
 
 / *   H e a d e r   * / 
 . c e r t - h e a d e r   { 
         b a c k g r o u n d :   # f 8 f 9 f a ; 
         p a d d i n g :   v a r ( - - s p a c i n g - l g ) ; 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         b o r d e r - b o t t o m :   1 p x   s o l i d   # e 1 e 5 e 9 ; 
 } 
 
 . c e r t - t i t l e   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   v a r ( - - s p a c i n g - m d ) ; 
 } 
 
 . c e r t - n u m b e r   { 
         b a c k g r o u n d :   v a r ( - - p r i m a r y - c o l o r ) ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         w i d t h :   3 2 p x ; 
         h e i g h t :   3 2 p x ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - b o l d ) ; 
         f o n t - s i z e :   0 . 9 r e m ; 
 } 
 
 . c e r t - h e a d e r   h 3   { 
         f o n t - s i z e :   1 . 1 r e m ; 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - b o l d ) ; 
         c o l o r :   v a r ( - - d a r k - c o l o r ) ; 
         m a r g i n :   0 ; 
 } 
 
 . r e m o v e - b t n   { 
         b a c k g r o u n d :   # d c 3 5 4 5 ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         b o r d e r :   n o n e ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         w i d t h :   2 8 p x ; 
         h e i g h t :   2 8 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         f o n t - s i z e :   0 . 8 r e m ; 
 } 
 
 . r e m o v e - b t n : h o v e r   { 
         b a c k g r o u n d :   # c 8 2 3 3 3 ; 
         t r a n s f o r m :   s c a l e ( 1 . 1 ) ; 
 } 
 
 / *   B o d y   * / 
 . c e r t - b o d y   { 
         p a d d i n g :   v a r ( - - s p a c i n g - l g ) ; 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ; 
         g a p :   v a r ( - - s p a c i n g - l g ) ; 
 } 
 
 . i n p u t - g r o u p , 
 . u p l o a d - g r o u p   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   v a r ( - - s p a c i n g - s m ) ; 
 } 
 
 . i n p u t - g r o u p   l a b e l , 
 . u p l o a d - g r o u p   l a b e l   { 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - m e d i u m ) ; 
         c o l o r :   v a r ( - - d a r k - c o l o r ) ; 
         f o n t - s i z e :   0 . 9 r e m ; 
 } 
 
 . i n p u t - g r o u p   i n p u t   { 
         p a d d i n g :   v a r ( - - s p a c i n g - m d ) ; 
         b o r d e r :   1 p x   s o l i d   # e 1 e 5 e 9 ; 
         b o r d e r - r a d i u s :   8 p x ; 
         f o n t - s i z e :   1 r e m ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . i n p u t - g r o u p   i n p u t : f o c u s   { 
         o u t l i n e :   n o n e ; 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
         b o x - s h a d o w :   0   0   0   3 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 1 ) ; 
 } 
 
 / *   U p l o a d   A r e a   * / 
 . u p l o a d - a r e a   { 
         p o s i t i o n :   r e l a t i v e ; 
         b o r d e r :   2 p x   d a s h e d   # d e e 2 e 6 ; 
         b o r d e r - r a d i u s :   8 p x ; 
         p a d d i n g :   v a r ( - - s p a c i n g - x l ) ; 
         b a c k g r o u n d :   # f a f b f c ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         c u r s o r :   p o i n t e r ; 
         m i n - h e i g h t :   1 2 0 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 } 
 
 . u p l o a d - a r e a : h o v e r   { 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
         b a c k g r o u n d :   # f 0 f 8 f f ; 
 } 
 
 . u p l o a d - a r e a . d r a g o v e r   { 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
         b a c k g r o u n d :   # e 3 f 2 f d ; 
 } 
 
 . u p l o a d - a r e a   i n p u t [ t y p e = \ 
 
 f i l e \ ]   { 
         p o s i t i o n :   a b s o l u t e ; 
         o p a c i t y :   0 ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         c u r s o r :   p o i n t e r ; 
 } 
 
 . u p l o a d - c o n t e n t   { 
         t e x t - a l i g n :   c e n t e r ; 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   v a r ( - - s p a c i n g - s m ) ; 
 } 
 
 . u p l o a d - c o n t e n t   i   { 
         f o n t - s i z e :   2 r e m ; 
         c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
 } 
 
 . u p l o a d - c o n t e n t   s p a n   { 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - m e d i u m ) ; 
         c o l o r :   v a r ( - - d a r k - c o l o r ) ; 
 } 
 
 . u p l o a d - c o n t e n t   s m a l l   { 
         c o l o r :   # 6 c 7 5 7 d ; 
         f o n t - s i z e :   0 . 8 5 r e m ; 
 } 
 
 . f i l e - i n f o   { 
         d i s p l a y :   n o n e ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         b a c k g r o u n d :   # d 4 e d d a ; 
         b o r d e r - r a d i u s :   6 p x ; 
         p a d d i n g :   v a r ( - - s p a c i n g - m d ) ; 
         b o r d e r :   1 p x   s o l i d   # c 3 e 6 c b ; 
 } 
 
 . f i l e - i n f o   i   { 
         c o l o r :   # 2 8 a 7 4 5 ; 
         m a r g i n - r i g h t :   v a r ( - - s p a c i n g - s m ) ; 
 } 
 
 . f i l e - n a m e   { 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - m e d i u m ) ; 
         c o l o r :   v a r ( - - d a r k - c o l o r ) ; 
         f l e x :   1 ; 
 } 
 
 . c h a n g e - f i l e   { 
         b a c k g r o u n d :   v a r ( - - p r i m a r y - c o l o r ) ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         b o r d e r :   n o n e ; 
         b o r d e r - r a d i u s :   4 p x ; 
         p a d d i n g :   v a r ( - - s p a c i n g - x s )   v a r ( - - s p a c i n g - s m ) ; 
         c u r s o r :   p o i n t e r ; 
         f o n t - s i z e :   0 . 8 r e m ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . c h a n g e - f i l e : h o v e r   { 
         b a c k g r o u n d :   v a r ( - - s e c o n d a r y - c o l o r ) ; 
 } 
 
 / *   A d d   B u t t o n   * / 
 . b t n - a d d - c e r t   { 
         w i d t h :   1 0 0 % ; 
         p a d d i n g :   v a r ( - - s p a c i n g - l g ) ; 
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - p r i m a r y ) ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         b o r d e r :   n o n e ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         f o n t - s i z e :   1 r e m ; 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - b o l d ) ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         g a p :   v a r ( - - s p a c i n g - m d ) ; 
 } 
 
 . b t n - a d d - c e r t : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
         b o x - s h a d o w :   0   8 p x   2 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ; 
 } 
 
 / *   R e s p o n s i v e   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . c e r t - b o d y   { 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
                 g a p :   v a r ( - - s p a c i n g - m d ) ; 
         } 
         
         . c e r t - h e a d e r   { 
                 p a d d i n g :   v a r ( - - s p a c i n g - m d ) ; 
         } 
         
         . c e r t - b o d y   { 
                 p a d d i n g :   v a r ( - - s p a c i n g - m d ) ; 
         } 
         
         . u p l o a d - a r e a   { 
                 m i n - h e i g h t :   1 0 0 p x ; 
                 p a d d i n g :   v a r ( - - s p a c i n g - l g ) ; 
         } 
 } 
 
 
 
 / *   M o d e r n   C e r t i f i c a t i o n   D e s i g n   * / 
 . c e r t i f i c a t i o n s - s e c t i o n   { 
         m a r g i n - b o t t o m :   v a r ( - - s p a c i n g - x l ) ; 
 } 
 
 . c e r t i f i c a t i o n s - l i s t   { 
         m a r g i n - b o t t o m :   v a r ( - - s p a c i n g - x l ) ; 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   v a r ( - - s p a c i n g - l g ) ; 
 } 
 
 / *   C e r t i f i c a t i o n   I t e m   * / 
 . c e r t i f i c a t i o n - i t e m   { 
         b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
         b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
         b o r d e r - r a d i u s :   1 6 p x ; 
         o v e r f l o w :   h i d d e n ; 
         t r a n s i t i o n :   a l l   0 . 3 s   c u b i c - b e z i e r ( 0 . 4 ,   0 ,   0 . 2 ,   1 ) ; 
         b o x - s h a d o w :   0   1 p x   3 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ; 
 } 
 
 . c e r t i f i c a t i o n - i t e m : h o v e r   { 
         b o x - s h a d o w :   0   8 p x   2 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
 } 
 
 / *   H e a d e r   * / 
 . c e r t - i t e m - h e a d e r   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f 8 f a f c   0 % ,   # f 1 f 5 f 9   1 0 0 % ) ; 
         p a d d i n g :   v a r ( - - s p a c i n g - l g ) ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   v a r ( - - s p a c i n g - m d ) ; 
         b o r d e r - b o t t o m :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
 } 
 
 . c e r t - n u m b e r - b a d g e   { 
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - p r i m a r y ) ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         w i d t h :   3 6 p x ; 
         h e i g h t :   3 6 p x ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - b o l d ) ; 
         f o n t - s i z e :   1 r e m ; 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 3 ) ; 
 } 
 
 . c e r t - i t e m - h e a d e r   h 4   { 
         f l e x :   1 ; 
         f o n t - s i z e :   1 . 1 r e m ; 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - b o l d ) ; 
         c o l o r :   v a r ( - - d a r k - c o l o r ) ; 
         m a r g i n :   0 ; 
 } 
 
 . d e l e t e - c e r t   { 
         b a c k g r o u n d :   # e f 4 4 4 4 ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         b o r d e r :   n o n e ; 
         b o r d e r - r a d i u s :   8 p x ; 
         w i d t h :   3 2 p x ; 
         h e i g h t :   3 2 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         f o n t - s i z e :   0 . 9 r e m ; 
 } 
 
 . d e l e t e - c e r t : h o v e r   { 
         b a c k g r o u n d :   # d c 2 6 2 6 ; 
         t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ; 
 } 
 
 / *   C o n t e n t   * / 
 . c e r t - i t e m - c o n t e n t   { 
         p a d d i n g :   v a r ( - - s p a c i n g - x l ) ; 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ; 
         g a p :   v a r ( - - s p a c i n g - x l ) ; 
 } 
 
 . c e r t - n a m e - f i e l d , 
 . c e r t - f i l e - f i e l d   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   v a r ( - - s p a c i n g - s m ) ; 
 } 
 
 . c e r t - n a m e - f i e l d   l a b e l , 
 . c e r t - f i l e - f i e l d   l a b e l   { 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - s e m i b o l d ) ; 
         c o l o r :   v a r ( - - d a r k - c o l o r ) ; 
         f o n t - s i z e :   0 . 9 r e m ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
 } 
 
 . c e r t - n a m e - f i e l d   i n p u t   { 
         p a d d i n g :   v a r ( - - s p a c i n g - m d ) ; 
         b o r d e r :   2 p x   s o l i d   # e 2 e 8 f 0 ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         f o n t - s i z e :   1 r e m ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
 } 
 
 . c e r t - n a m e - f i e l d   i n p u t : f o c u s   { 
         o u t l i n e :   n o n e ; 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
         b o x - s h a d o w :   0   0   0   3 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 1 ) ; 
 } 
 
 / *   F i l e   U p l o a d   Z o n e   * / 
 . f i l e - u p l o a d - z o n e   { 
         p o s i t i o n :   r e l a t i v e ; 
         b o r d e r :   2 p x   d a s h e d   # c b d 5 e 1 ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         p a d d i n g :   v a r ( - - s p a c i n g - x l ) ; 
         b a c k g r o u n d :   # f 8 f a f c ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         c u r s o r :   p o i n t e r ; 
         m i n - h e i g h t :   1 4 0 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 } 
 
 . f i l e - u p l o a d - z o n e : h o v e r   { 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
         b a c k g r o u n d :   # f 0 f 8 f f ; 
 } 
 
 . f i l e - u p l o a d - z o n e . d r a g o v e r   { 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
         b a c k g r o u n d :   # e 0 f 2 f e ; 
         t r a n s f o r m :   s c a l e ( 1 . 0 2 ) ; 
 } 
 
 . f i l e - u p l o a d - z o n e   i n p u t [ t y p e = \ 
 
 f i l e \ ]   { 
         p o s i t i o n :   a b s o l u t e ; 
         o p a c i t y :   0 ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         c u r s o r :   p o i n t e r ; 
 } 
 
 . u p l o a d - p l a c e h o l d e r   { 
         t e x t - a l i g n :   c e n t e r ; 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   v a r ( - - s p a c i n g - m d ) ; 
 } 
 
 . u p l o a d - i c o n   { 
         w i d t h :   4 8 p x ; 
         h e i g h t :   4 8 p x ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - p r i m a r y ) ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         f o n t - s i z e :   1 . 5 r e m ; 
 } 
 
 . u p l o a d - t e x t   p   { 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - s e m i b o l d ) ; 
         c o l o r :   v a r ( - - d a r k - c o l o r ) ; 
         m a r g i n :   0 ; 
         f o n t - s i z e :   1 r e m ; 
 } 
 
 . u p l o a d - t e x t   s p a n   { 
         c o l o r :   # 6 4 7 4 8 b ; 
         f o n t - s i z e :   0 . 8 5 r e m ; 
 } 
 
 / *   F i l e   S e l e c t e d   * / 
 . f i l e - s e l e c t e d   { 
         d i s p l a y :   n o n e ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   v a r ( - - s p a c i n g - m d ) ; 
         b a c k g r o u n d :   # f 0 f d f 4 ; 
         b o r d e r :   2 p x   s o l i d   # 2 2 c 5 5 e ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         p a d d i n g :   v a r ( - - s p a c i n g - m d ) ; 
         w i d t h :   1 0 0 % ; 
 } 
 
 . f i l e - i c o n   { 
         w i d t h :   4 0 p x ; 
         h e i g h t :   4 0 p x ; 
         b o r d e r - r a d i u s :   8 p x ; 
         b a c k g r o u n d :   # d c f c e 7 ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         f o n t - s i z e :   1 . 2 r e m ; 
 } 
 
 . f i l e - d e t a i l s   { 
         f l e x :   1 ; 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   2 p x ; 
 } 
 
 . f i l e - n a m e   { 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - s e m i b o l d ) ; 
         c o l o r :   v a r ( - - d a r k - c o l o r ) ; 
         f o n t - s i z e :   0 . 9 r e m ; 
 } 
 
 . f i l e - s i z e   { 
         c o l o r :   # 6 4 7 4 8 b ; 
         f o n t - s i z e :   0 . 8 r e m ; 
 } 
 
 . r e p l a c e - f i l e   { 
         b a c k g r o u n d :   v a r ( - - p r i m a r y - c o l o r ) ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         b o r d e r :   n o n e ; 
         b o r d e r - r a d i u s :   8 p x ; 
         w i d t h :   3 2 p x ; 
         h e i g h t :   3 2 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         f o n t - s i z e :   0 . 9 r e m ; 
 } 
 
 . r e p l a c e - f i l e : h o v e r   { 
         b a c k g r o u n d :   v a r ( - - s e c o n d a r y - c o l o r ) ; 
         t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ; 
 } 
 
 / *   A d d   C e r t i f i c a t i o n   B u t t o n   * / 
 . b t n - a d d - c e r t   { 
         w i d t h :   1 0 0 % ; 
         p a d d i n g :   v a r ( - - s p a c i n g - l g ) ; 
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - p r i m a r y ) ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         b o r d e r :   n o n e ; 
         b o r d e r - r a d i u s :   1 6 p x ; 
         f o n t - s i z e :   1 . 1 r e m ; 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - b o l d ) ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         g a p :   v a r ( - - s p a c i n g - m d ) ; 
         b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 3 ) ; 
 } 
 
 . b t n - a d d - c e r t : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
         b o x - s h a d o w :   0   8 p x   2 5 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 4 ) ; 
 } 
 
 . b t n - a d d - c e r t   i   { 
         f o n t - s i z e :   1 . 2 r e m ; 
 } 
 
 / *   R e s p o n s i v e   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . c e r t - i t e m - c o n t e n t   { 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
                 g a p :   v a r ( - - s p a c i n g - l g ) ; 
         } 
         
         . c e r t - i t e m - h e a d e r   { 
                 p a d d i n g :   v a r ( - - s p a c i n g - m d ) ; 
         } 
         
         . c e r t - i t e m - c o n t e n t   { 
                 p a d d i n g :   v a r ( - - s p a c i n g - l g ) ; 
         } 
         
         . f i l e - u p l o a d - z o n e   { 
                 m i n - h e i g h t :   1 2 0 p x ; 
                 p a d d i n g :   v a r ( - - s p a c i n g - l g ) ; 
         } 
 } 
 
 
 
 / *   U p d a t e d   C e r t i f i c a t i o n   D e s i g n   * / 
 . c e r t i f i c a t i o n s - s e c t i o n   { 
         m a r g i n - b o t t o m :   v a r ( - - s p a c i n g - x l ) ; 
 } 
 
 . c e r t i f i c a t i o n s - l i s t   { 
         m a r g i n - b o t t o m :   v a r ( - - s p a c i n g - x l ) ; 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   v a r ( - - s p a c i n g - l g ) ; 
 } 
 
 / *   C e r t i f i c a t i o n   I t e m   * / 
 . c e r t i f i c a t i o n - i t e m   { 
         b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
         b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
         b o r d e r - r a d i u s :   1 6 p x ; 
         o v e r f l o w :   h i d d e n ; 
         t r a n s i t i o n :   a l l   0 . 3 s   c u b i c - b e z i e r ( 0 . 4 ,   0 ,   0 . 2 ,   1 ) ; 
         b o x - s h a d o w :   0   1 p x   3 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ; 
         p o s i t i o n :   r e l a t i v e ; 
 } 
 
 . c e r t i f i c a t i o n - i t e m : h o v e r   { 
         b o x - s h a d o w :   0   8 p x   2 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
 } 
 
 / *   D e l e t e   B u t t o n   -   T o p   R i g h t   C o r n e r   * / 
 . d e l e t e - c e r t - b t n   { 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   1 2 p x ; 
         r i g h t :   1 2 p x ; 
         b a c k g r o u n d :   # e f 4 4 4 4 ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         b o r d e r :   n o n e ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         w i d t h :   2 8 p x ; 
         h e i g h t :   2 8 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         f o n t - s i z e :   0 . 8 r e m ; 
         z - i n d e x :   1 0 ; 
         b o x - s h a d o w :   0   2 p x   8 p x   r g b a ( 2 3 9 ,   6 8 ,   6 8 ,   0 . 3 ) ; 
 } 
 
 . d e l e t e - c e r t - b t n : h o v e r   { 
         b a c k g r o u n d :   # d c 2 6 2 6 ; 
         t r a n s f o r m :   s c a l e ( 1 . 1 ) ; 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 2 3 9 ,   6 8 ,   6 8 ,   0 . 4 ) ; 
 } 
 
 / *   C o n t e n t   * / 
 . c e r t - i t e m - c o n t e n t   { 
         p a d d i n g :   v a r ( - - s p a c i n g - x l ) ; 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ; 
         g a p :   v a r ( - - s p a c i n g - x l ) ; 
 } 
 
 . c e r t - n a m e - f i e l d , 
 . c e r t - f i l e - f i e l d   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   v a r ( - - s p a c i n g - s m ) ; 
 } 
 
 . c e r t - n a m e - f i e l d   l a b e l , 
 . c e r t - f i l e - f i e l d   l a b e l   { 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - s e m i b o l d ) ; 
         c o l o r :   v a r ( - - d a r k - c o l o r ) ; 
         f o n t - s i z e :   0 . 9 r e m ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
 } 
 
 . c e r t - n a m e - f i e l d   i n p u t   { 
         p a d d i n g :   v a r ( - - s p a c i n g - m d ) ; 
         b o r d e r :   2 p x   s o l i d   # e 2 e 8 f 0 ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         f o n t - s i z e :   1 r e m ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
 } 
 
 . c e r t - n a m e - f i e l d   i n p u t : f o c u s   { 
         o u t l i n e :   n o n e ; 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
         b o x - s h a d o w :   0   0   0   3 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 1 ) ; 
 } 
 
 / *   F i l e   U p l o a d   Z o n e   * / 
 . f i l e - u p l o a d - z o n e   { 
         p o s i t i o n :   r e l a t i v e ; 
         b o r d e r :   2 p x   d a s h e d   # c b d 5 e 1 ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         p a d d i n g :   v a r ( - - s p a c i n g - x l ) ; 
         b a c k g r o u n d :   # f 8 f a f c ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         c u r s o r :   p o i n t e r ; 
         m i n - h e i g h t :   1 4 0 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 } 
 
 . f i l e - u p l o a d - z o n e : h o v e r   { 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
         b a c k g r o u n d :   # f 0 f 8 f f ; 
 } 
 
 . f i l e - u p l o a d - z o n e . d r a g o v e r   { 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
         b a c k g r o u n d :   # e 0 f 2 f e ; 
         t r a n s f o r m :   s c a l e ( 1 . 0 2 ) ; 
 } 
 
 . f i l e - u p l o a d - z o n e   i n p u t [ t y p e = \ 
 
 f i l e \ ]   { 
         p o s i t i o n :   a b s o l u t e ; 
         o p a c i t y :   0 ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         c u r s o r :   p o i n t e r ; 
 } 
 
 . u p l o a d - p l a c e h o l d e r   { 
         t e x t - a l i g n :   c e n t e r ; 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   v a r ( - - s p a c i n g - m d ) ; 
 } 
 
 . u p l o a d - i c o n   { 
         w i d t h :   4 8 p x ; 
         h e i g h t :   4 8 p x ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - p r i m a r y ) ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         f o n t - s i z e :   1 . 5 r e m ; 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 3 ) ; 
 } 
 
 . u p l o a d - t e x t   p   { 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - b o l d ) ; 
         c o l o r :   v a r ( - - d a r k - c o l o r ) ; 
         m a r g i n :   0 ; 
         f o n t - s i z e :   1 r e m ; 
 } 
 
 . u p l o a d - t e x t   s p a n   { 
         c o l o r :   # 6 4 7 4 8 b ; 
         f o n t - s i z e :   0 . 8 5 r e m ; 
 } 
 
 / *   F i l e   S e l e c t e d   * / 
 . f i l e - s e l e c t e d   { 
         d i s p l a y :   n o n e ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   v a r ( - - s p a c i n g - m d ) ; 
         b a c k g r o u n d :   # f 0 f d f 4 ; 
         b o r d e r :   2 p x   s o l i d   # 2 2 c 5 5 e ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         p a d d i n g :   v a r ( - - s p a c i n g - m d ) ; 
         w i d t h :   1 0 0 % ; 
 } 
 
 . f i l e - i c o n   { 
         w i d t h :   4 0 p x ; 
         h e i g h t :   4 0 p x ; 
         b o r d e r - r a d i u s :   8 p x ; 
         b a c k g r o u n d :   # d c f c e 7 ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         f o n t - s i z e :   1 . 2 r e m ; 
 } 
 
 . f i l e - d e t a i l s   { 
         f l e x :   1 ; 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   2 p x ; 
 } 
 
 . f i l e - n a m e   { 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - s e m i b o l d ) ; 
         c o l o r :   v a r ( - - d a r k - c o l o r ) ; 
         f o n t - s i z e :   0 . 9 r e m ; 
 } 
 
 . f i l e - s i z e   { 
         c o l o r :   # 6 4 7 4 8 b ; 
         f o n t - s i z e :   0 . 8 r e m ; 
 } 
 
 . r e p l a c e - f i l e   { 
         b a c k g r o u n d :   v a r ( - - p r i m a r y - c o l o r ) ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         b o r d e r :   n o n e ; 
         b o r d e r - r a d i u s :   8 p x ; 
         w i d t h :   3 2 p x ; 
         h e i g h t :   3 2 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         f o n t - s i z e :   0 . 9 r e m ; 
 } 
 
 . r e p l a c e - f i l e : h o v e r   { 
         b a c k g r o u n d :   v a r ( - - s e c o n d a r y - c o l o r ) ; 
         t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ; 
 } 
 
 / *   A d d   C e r t i f i c a t i o n   B u t t o n   * / 
 . b t n - a d d - c e r t   { 
         w i d t h :   1 0 0 % ; 
         p a d d i n g :   v a r ( - - s p a c i n g - l g ) ; 
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - p r i m a r y ) ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         b o r d e r :   n o n e ; 
         b o r d e r - r a d i u s :   1 6 p x ; 
         f o n t - s i z e :   1 . 1 r e m ; 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - b o l d ) ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         g a p :   v a r ( - - s p a c i n g - m d ) ; 
         b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 3 ) ; 
 } 
 
 . b t n - a d d - c e r t : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
         b o x - s h a d o w :   0   8 p x   2 5 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 4 ) ; 
 } 
 
 . b t n - a d d - c e r t   i   { 
         f o n t - s i z e :   1 . 2 r e m ; 
 } 
 
 / *   R e s p o n s i v e   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . c e r t - i t e m - c o n t e n t   { 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
                 g a p :   v a r ( - - s p a c i n g - l g ) ; 
         } 
         
         . c e r t - i t e m - c o n t e n t   { 
                 p a d d i n g :   v a r ( - - s p a c i n g - l g ) ; 
         } 
         
         . f i l e - u p l o a d - z o n e   { 
                 m i n - h e i g h t :   1 2 0 p x ; 
                 p a d d i n g :   v a r ( - - s p a c i n g - l g ) ; 
         } 
 } 
 
 
 
 / *   C l e a n   C e r t i f i c a t i o n   S t y l e s   -   O v e r r i d e   A l l   * / 
 . c e r t i f i c a t i o n s - s e c t i o n   { 
         m a r g i n - b o t t o m :   v a r ( - - s p a c i n g - x l ) ; 
 } 
 
 . c e r t i f i c a t i o n s - l i s t   { 
         m a r g i n - b o t t o m :   v a r ( - - s p a c i n g - x l ) ; 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   v a r ( - - s p a c i n g - l g ) ; 
 } 
 
 / *   C e r t i f i c a t i o n   I t e m   * / 
 . c e r t i f i c a t i o n - i t e m   { 
         b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
         b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
         b o r d e r - r a d i u s :   1 6 p x ; 
         o v e r f l o w :   h i d d e n ; 
         t r a n s i t i o n :   a l l   0 . 3 s   c u b i c - b e z i e r ( 0 . 4 ,   0 ,   0 . 2 ,   1 ) ; 
         b o x - s h a d o w :   0   1 p x   3 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ; 
         p o s i t i o n :   r e l a t i v e ; 
         p a d d i n g :   v a r ( - - s p a c i n g - x l ) ; 
 } 
 
 . c e r t i f i c a t i o n - i t e m : h o v e r   { 
         b o x - s h a d o w :   0   8 p x   2 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
 } 
 
 / *   D e l e t e   B u t t o n   -   T o p   R i g h t   C o r n e r   * / 
 . d e l e t e - c e r t - b t n   { 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   1 6 p x ; 
         r i g h t :   1 6 p x ; 
         b a c k g r o u n d :   # e f 4 4 4 4 ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         b o r d e r :   n o n e ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         w i d t h :   3 2 p x ; 
         h e i g h t :   3 2 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         f o n t - s i z e :   0 . 9 r e m ; 
         z - i n d e x :   1 0 ; 
         b o x - s h a d o w :   0   2 p x   8 p x   r g b a ( 2 3 9 ,   6 8 ,   6 8 ,   0 . 3 ) ; 
 } 
 
 . d e l e t e - c e r t - b t n : h o v e r   { 
         b a c k g r o u n d :   # d c 2 6 2 6 ; 
         t r a n s f o r m :   s c a l e ( 1 . 1 ) ; 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 2 3 9 ,   6 8 ,   6 8 ,   0 . 4 ) ; 
 } 
 
 / *   C o n t e n t   * / 
 . c e r t - i t e m - c o n t e n t   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ; 
         g a p :   v a r ( - - s p a c i n g - x l ) ; 
 } 
 
 . c e r t - n a m e - f i e l d , 
 . c e r t - f i l e - f i e l d   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   v a r ( - - s p a c i n g - s m ) ; 
 } 
 
 . c e r t - n a m e - f i e l d   l a b e l , 
 . c e r t - f i l e - f i e l d   l a b e l   { 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - s e m i b o l d ) ; 
         c o l o r :   v a r ( - - d a r k - c o l o r ) ; 
         f o n t - s i z e :   0 . 9 r e m ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
         m a r g i n - b o t t o m :   v a r ( - - s p a c i n g - x s ) ; 
 } 
 
 . c e r t - n a m e - f i e l d   i n p u t   { 
         p a d d i n g :   v a r ( - - s p a c i n g - m d ) ; 
         b o r d e r :   2 p x   s o l i d   # e 2 e 8 f 0 ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         f o n t - s i z e :   1 r e m ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
         w i d t h :   1 0 0 % ; 
         b o x - s i z i n g :   b o r d e r - b o x ; 
 } 
 
 . c e r t - n a m e - f i e l d   i n p u t : f o c u s   { 
         o u t l i n e :   n o n e ; 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
         b o x - s h a d o w :   0   0   0   3 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 1 ) ; 
 } 
 
 / *   F i l e   U p l o a d   Z o n e   * / 
 . f i l e - u p l o a d - z o n e   { 
         p o s i t i o n :   r e l a t i v e ; 
         b o r d e r :   2 p x   d a s h e d   # c b d 5 e 1 ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         p a d d i n g :   v a r ( - - s p a c i n g - x l ) ; 
         b a c k g r o u n d :   # f 8 f a f c ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         c u r s o r :   p o i n t e r ; 
         m i n - h e i g h t :   1 4 0 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 } 
 
 . f i l e - u p l o a d - z o n e : h o v e r   { 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
         b a c k g r o u n d :   # f 0 f 8 f f ; 
 } 
 
 . f i l e - u p l o a d - z o n e . d r a g o v e r   { 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
         b a c k g r o u n d :   # e 0 f 2 f e ; 
         t r a n s f o r m :   s c a l e ( 1 . 0 2 ) ; 
 } 
 
 . f i l e - u p l o a d - z o n e   i n p u t [ t y p e = \ 
 
 f i l e \ ]   { 
         p o s i t i o n :   a b s o l u t e ; 
         o p a c i t y :   0 ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         c u r s o r :   p o i n t e r ; 
         t o p :   0 ; 
         l e f t :   0 ; 
 } 
 
 . u p l o a d - p l a c e h o l d e r   { 
         t e x t - a l i g n :   c e n t e r ; 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   v a r ( - - s p a c i n g - m d ) ; 
 } 
 
 . u p l o a d - i c o n   { 
         w i d t h :   4 8 p x ; 
         h e i g h t :   4 8 p x ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - p r i m a r y ) ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         f o n t - s i z e :   1 . 5 r e m ; 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 3 ) ; 
 } 
 
 . u p l o a d - t e x t   p   { 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - b o l d ) ; 
         c o l o r :   v a r ( - - d a r k - c o l o r ) ; 
         m a r g i n :   0 ; 
         f o n t - s i z e :   1 r e m ; 
 } 
 
 . u p l o a d - t e x t   s p a n   { 
         c o l o r :   # 6 4 7 4 8 b ; 
         f o n t - s i z e :   0 . 8 5 r e m ; 
 } 
 
 / *   F i l e   S e l e c t e d   * / 
 . f i l e - s e l e c t e d   { 
         d i s p l a y :   n o n e ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   v a r ( - - s p a c i n g - m d ) ; 
         b a c k g r o u n d :   # f 0 f d f 4 ; 
         b o r d e r :   2 p x   s o l i d   # 2 2 c 5 5 e ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         p a d d i n g :   v a r ( - - s p a c i n g - m d ) ; 
         w i d t h :   1 0 0 % ; 
 } 
 
 . f i l e - i c o n   { 
         w i d t h :   4 0 p x ; 
         h e i g h t :   4 0 p x ; 
         b o r d e r - r a d i u s :   8 p x ; 
         b a c k g r o u n d :   # d c f c e 7 ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         f o n t - s i z e :   1 . 2 r e m ; 
 } 
 
 . f i l e - d e t a i l s   { 
         f l e x :   1 ; 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   2 p x ; 
 } 
 
 . f i l e - n a m e   { 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - s e m i b o l d ) ; 
         c o l o r :   v a r ( - - d a r k - c o l o r ) ; 
         f o n t - s i z e :   0 . 9 r e m ; 
 } 
 
 . f i l e - s i z e   { 
         c o l o r :   # 6 4 7 4 8 b ; 
         f o n t - s i z e :   0 . 8 r e m ; 
 } 
 
 . r e p l a c e - f i l e   { 
         b a c k g r o u n d :   v a r ( - - p r i m a r y - c o l o r ) ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         b o r d e r :   n o n e ; 
         b o r d e r - r a d i u s :   8 p x ; 
         w i d t h :   3 2 p x ; 
         h e i g h t :   3 2 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         f o n t - s i z e :   0 . 9 r e m ; 
 } 
 
 . r e p l a c e - f i l e : h o v e r   { 
         b a c k g r o u n d :   v a r ( - - s e c o n d a r y - c o l o r ) ; 
         t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ; 
 } 
 
 / *   A d d   C e r t i f i c a t i o n   B u t t o n   * / 
 . b t n - a d d - c e r t   { 
         w i d t h :   1 0 0 % ; 
         p a d d i n g :   v a r ( - - s p a c i n g - l g ) ; 
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - p r i m a r y ) ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
         b o r d e r :   n o n e ; 
         b o r d e r - r a d i u s :   1 6 p x ; 
         f o n t - s i z e :   1 . 1 r e m ; 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - b o l d ) ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         g a p :   v a r ( - - s p a c i n g - m d ) ; 
         b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 3 ) ; 
 } 
 
 . b t n - a d d - c e r t : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
         b o x - s h a d o w :   0   8 p x   2 5 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 4 ) ; 
 } 
 
 . b t n - a d d - c e r t   i   { 
         f o n t - s i z e :   1 . 2 r e m ; 
 } 
 
 / *   R e s p o n s i v e   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . c e r t - i t e m - c o n t e n t   { 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
                 g a p :   v a r ( - - s p a c i n g - l g ) ; 
         } 
         
         . c e r t i f i c a t i o n - i t e m   { 
                 p a d d i n g :   v a r ( - - s p a c i n g - l g ) ; 
         } 
         
         . f i l e - u p l o a d - z o n e   { 
                 m i n - h e i g h t :   1 2 0 p x ; 
                 p a d d i n g :   v a r ( - - s p a c i n g - l g ) ; 
         } 
 } 
 
 
 
 / *   F o r c e   S t y l e s   -   O v e r r i d e   B r o w s e r   D e f a u l t s   * / 
 . c e r t i f i c a t i o n - i t e m   i n p u t [ t y p e = \ 
 
 t e x t \ ]   { 
         p a d d i n g :   v a r ( - - s p a c i n g - m d )   ! i m p o r t a n t ; 
         b o r d e r :   2 p x   s o l i d   # e 2 e 8 f 0   ! i m p o r t a n t ; 
         b o r d e r - r a d i u s :   1 2 p x   ! i m p o r t a n t ; 
         f o n t - s i z e :   1 r e m   ! i m p o r t a n t ; 
         b a c k g r o u n d :   v a r ( - - w h i t e )   ! i m p o r t a n t ; 
         w i d t h :   1 0 0 %   ! i m p o r t a n t ; 
         b o x - s i z i n g :   b o r d e r - b o x   ! i m p o r t a n t ; 
         f o n t - f a m i l y :   i n h e r i t   ! i m p o r t a n t ; 
 } 
 
 . c e r t i f i c a t i o n - i t e m   i n p u t [ t y p e = \ t e x t \ ] : f o c u s   { 
         o u t l i n e :   n o n e   ! i m p o r t a n t ; 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r )   ! i m p o r t a n t ; 
         b o x - s h a d o w :   0   0   0   3 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 1 )   ! i m p o r t a n t ; 
 } 
 
 . d e l e t e - c e r t - b t n   { 
         p o s i t i o n :   a b s o l u t e   ! i m p o r t a n t ; 
         t o p :   1 6 p x   ! i m p o r t a n t ; 
         r i g h t :   1 6 p x   ! i m p o r t a n t ; 
         b a c k g r o u n d :   # e f 4 4 4 4   ! i m p o r t a n t ; 
         c o l o r :   v a r ( - - w h i t e )   ! i m p o r t a n t ; 
         b o r d e r :   n o n e   ! i m p o r t a n t ; 
         b o r d e r - r a d i u s :   5 0 %   ! i m p o r t a n t ; 
         w i d t h :   3 2 p x   ! i m p o r t a n t ; 
         h e i g h t :   3 2 p x   ! i m p o r t a n t ; 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
         a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
         j u s t i f y - c o n t e n t :   c e n t e r   ! i m p o r t a n t ; 
         c u r s o r :   p o i n t e r   ! i m p o r t a n t ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e   ! i m p o r t a n t ; 
         f o n t - s i z e :   0 . 9 r e m   ! i m p o r t a n t ; 
         z - i n d e x :   1 0   ! i m p o r t a n t ; 
         b o x - s h a d o w :   0   2 p x   8 p x   r g b a ( 2 3 9 ,   6 8 ,   6 8 ,   0 . 3 )   ! i m p o r t a n t ; 
 } 
 
 . d e l e t e - c e r t - b t n : h o v e r   { 
         b a c k g r o u n d :   # d c 2 6 2 6   ! i m p o r t a n t ; 
         t r a n s f o r m :   s c a l e ( 1 . 1 )   ! i m p o r t a n t ; 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 2 3 9 ,   6 8 ,   6 8 ,   0 . 4 )   ! i m p o r t a n t ; 
 } 
 
 . f i l e - u p l o a d - z o n e   { 
         p o s i t i o n :   r e l a t i v e   ! i m p o r t a n t ; 
         b o r d e r :   2 p x   d a s h e d   # c b d 5 e 1   ! i m p o r t a n t ; 
         b o r d e r - r a d i u s :   1 2 p x   ! i m p o r t a n t ; 
         p a d d i n g :   v a r ( - - s p a c i n g - x l )   ! i m p o r t a n t ; 
         b a c k g r o u n d :   # f 8 f a f c   ! i m p o r t a n t ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e   ! i m p o r t a n t ; 
         c u r s o r :   p o i n t e r   ! i m p o r t a n t ; 
         m i n - h e i g h t :   1 4 0 p x   ! i m p o r t a n t ; 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
         a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
         j u s t i f y - c o n t e n t :   c e n t e r   ! i m p o r t a n t ; 
 } 
 
 . f i l e - u p l o a d - z o n e : h o v e r   { 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r )   ! i m p o r t a n t ; 
         b a c k g r o u n d :   # f 0 f 8 f f   ! i m p o r t a n t ; 
 } 
 
 . f i l e - u p l o a d - z o n e   i n p u t [ t y p e = \ f i l e \ ]   { 
         p o s i t i o n :   a b s o l u t e   ! i m p o r t a n t ; 
         o p a c i t y :   0   ! i m p o r t a n t ; 
         w i d t h :   1 0 0 %   ! i m p o r t a n t ; 
         h e i g h t :   1 0 0 %   ! i m p o r t a n t ; 
         c u r s o r :   p o i n t e r   ! i m p o r t a n t ; 
         t o p :   0   ! i m p o r t a n t ; 
         l e f t :   0   ! i m p o r t a n t ; 
 } 
 
 . u p l o a d - p l a c e h o l d e r   { 
         t e x t - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
         f l e x - d i r e c t i o n :   c o l u m n   ! i m p o r t a n t ; 
         a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
         g a p :   v a r ( - - s p a c i n g - m d )   ! i m p o r t a n t ; 
 } 
 
 . u p l o a d - i c o n   { 
         w i d t h :   4 8 p x   ! i m p o r t a n t ; 
         h e i g h t :   4 8 p x   ! i m p o r t a n t ; 
         b o r d e r - r a d i u s :   5 0 %   ! i m p o r t a n t ; 
         b a c k g r o u n d :   v a r ( - - g r a d i e n t - p r i m a r y )   ! i m p o r t a n t ; 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
         a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
         j u s t i f y - c o n t e n t :   c e n t e r   ! i m p o r t a n t ; 
         c o l o r :   v a r ( - - w h i t e )   ! i m p o r t a n t ; 
         f o n t - s i z e :   1 . 5 r e m   ! i m p o r t a n t ; 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 3 )   ! i m p o r t a n t ; 
 } 
 
 . u p l o a d - t e x t   p   { 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - b o l d )   ! i m p o r t a n t ; 
         c o l o r :   v a r ( - - d a r k - c o l o r )   ! i m p o r t a n t ; 
         m a r g i n :   0   ! i m p o r t a n t ; 
         f o n t - s i z e :   1 r e m   ! i m p o r t a n t ; 
 } 
 
 . u p l o a d - t e x t   s p a n   { 
         c o l o r :   # 6 4 7 4 8 b   ! i m p o r t a n t ; 
         f o n t - s i z e :   0 . 8 5 r e m   ! i m p o r t a n t ; 
 } 
 
 


/* ===== CERTIFICATIONS SECTION - COMPLETELY NEW DESIGN ===== */
.certifications-section {
    margin-bottom: 2rem;
}

.certifications-list {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Certification Card */
.certification-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.certification-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

/* Delete Button */
.delete-cert-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.delete-cert-btn:hover {
    background: #dc2626;
    transform: scale(1.1);
}

/* Content Layout */
.cert-item-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Form Fields */
.cert-name-field,
.cert-file-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cert-name-field label,
.cert-file-field label {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cert-name-field input {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: all 0.2s ease;
}

.cert-name-field input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* File Upload Zone */
.file-upload-zone {
    position: relative;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 2rem;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-upload-zone:hover {
    border-color: #3b82f6;
    background: #eff6ff;
}

.file-upload-zone.dragover {
    border-color: #3b82f6;
    background: #dbeafe;
}

.file-upload-zone input[type=\
file\] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    top: 0;
    left: 0;
}

.upload-placeholder {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.upload-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.upload-text p {
    font-weight: 600;
    color: #374151;
    margin: 0;
    font-size: 1rem;
}

.upload-text span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* File Selected State */
.file-selected {
    display: none;
    align-items: center;
    gap: 0.75rem;
    background: #f0fdf4;
    border: 2px solid #22c55e;
    border-radius: 8px;
    padding: 0.75rem;
    width: 100%;
}

.file-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.file-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.file-name {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
}

.file-size {
    color: #6b7280;
    font-size: 0.75rem;
}

.replace-file {
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.replace-file:hover {
    background: #2563eb;
}

/* Add Certification Button */
.btn-add-cert {
    width: 100%;
    padding: 1rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-add-cert:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-add-cert i {
    font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 768px) {
    .cert-item-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .certification-item {
        padding: 1rem;
    }
    
    .file-upload-zone {
        min-height: 100px;
        padding: 1.5rem;
    }
}


/* Fix for File Upload Issues */
.file-upload-zone {
    position: relative;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 1.5rem;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 100px;
    max-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.file-upload-zone:hover {
    border-color: #3b82f6;
    background: #eff6ff;
}

.file-upload-zone.dragover {
    border-color: #3b82f6;
    background: #dbeafe;
}

.file-upload-zone input[type=\
file\] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    top: 0;
    left: 0;
    z-index: 1;
}

.upload-placeholder {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 0;
}

.upload-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.upload-text p {
    font-weight: 600;
    color: #374151;
    margin: 0;
    font-size: 0.875rem;
}

.upload-text span {
    color: #6b7280;
    font-size: 0.75rem;
}

/* File Selected State */
.file-selected {
    display: none;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #22c55e;
    border-radius: 12px;
    padding: 1rem;
    width: 100%;
    min-height: 70px;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.15);
    position: relative;
    overflow: hidden;
}

.file-selected::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.file-selected::after {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(34, 197, 94, 0.3);
}

.file-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.file-icon i {
    color: #16a34a;
}

.file-icon i.fa-file-pdf {
    color: #dc2626;
}

.file-icon i.fa-file-image {
    color: #2563eb;
}

.file-icon i.fa-file {
    color: #6b7280;
}

.file-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.file-name {
    font-weight: 600;
    color: #14532d;
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.file-size {
    color: #166534;
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.8;
}

.replace-file {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.replace-file::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.replace-file:hover::before {
    left: 100%;
}

.replace-file:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.4);
}

/* Ensure certification item doesn't overflow */
.certification-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    overflow: hidden;
}

.cert-item-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

.cert-file-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

/* Hide any default file input styling */
input[type=\file\] {
    display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cert-item-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .file-upload-zone {
        min-height: 80px;
        padding: 1rem;
    }
    
    .file-selected {
        min-height: 50px;
        padding: 0.5rem;
    }
}

/* New Replace Button Design */
.replace-file {
    background: #ffffff !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 10px !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    flex-shrink: 0 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    position: relative !important;
}

.replace-file:hover {
    background: #f8fafc !important;
    border-color: #3b82f6 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.15) !important;
}

.replace-file:active {
    transform: translateY(0) !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
}

.replace-file i {
    color: #6b7280 !important;
    font-size: 0.875rem !important;
    transition: color 0.2s ease !important;
}

.replace-file:hover i {
    color: #3b82f6 !important;
}

/* No Certifications Option */
.no-certifications-option {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.no-certifications-option:hover {
    border-color: #cbd5e1;
    background: #f1f5f9;
}

.no-cert-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: #475569;
}

.no-cert-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    background: white;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.no-cert-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #3b82f6;
    border-color: #3b82f6;
}

.no-cert-checkbox input[type="checkbox"]:checked + .checkmark::after {
    opacity: 1;
}

.no-cert-checkbox input[type="checkbox"]:checked ~ .no-cert-text {
    color: #1e40af;
    font-weight: 600;
}

.no-cert-text {
    transition: all 0.2s ease;
}

/* Modal Overlay - Grid-centered and reliable */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
}

.modal-overlay.show { display: grid; place-items: center; }

.modal-container {
    width: 100%;
    max-width: min(92vw, 560px);
    margin: 0 auto;
}

.modal-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.2rem;
}

.close-btn {
    color: #999;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close-btn:hover {
    color: #333;
}

.modal-body {
    padding: 20px;
}

.modal-body p {
    margin-bottom: 15px;
    line-height: 1.5;
    color: #555;
}

.modal-body h4 {
    margin: 20px 0 10px 0;
    color: #333;
    font-size: 1rem;
}

.modal-body ul {
    margin: 10px 0;
    padding-left: 20px;
}

.modal-body li {
    margin-bottom: 8px;
    line-height: 1.4;
    color: #555;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    background: #f8f9fa;
}

.modal-footer .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.modal-footer .btn-outline {
    background: white;
    color: #666;
    border: 1px solid #ddd;
}

.modal-footer .btn-outline:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.modal-footer .btn-primary {
    background: #007bff;
    color: white;
}

.modal-footer .btn-primary:hover {
    background: #0056b3;
}

/* Prevent background scroll when modal open */
body.no-scroll {
    overflow: hidden;
}

/* Additional File Input Hiding */
input[type="file"]::-webkit-file-upload-button { display: none !important; }
input[type="file"]::-ms-browse { display: none !important; }

/* ============================================
   DASHBOARD HARMONIZATION ENHANCEMENTS
   Unified design system for all dashboards
   ============================================ */

/* Enhanced Card Hover Effects */
.card, .job, .mission-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover, .job:hover, .mission-card:hover {
    box-shadow: 0 8px 24px rgba(230, 126, 34, 0.12);
    transform: translateY(-2px);
}

/* Enhanced Sidebar Active State */
.nav-item.active {
    background: var(--gradient-primary);
    position: relative;
}

.nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: #fff;
    border-radius: 0 4px 4px 0;
}

/* Enhanced Input Focus States */
input:focus, select:focus, textarea:focus {
    outline: none !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1) !important;
}

/* Enhanced Button Transitions */
.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

/* Enhanced Status Badges */
.status-badge, [class*="status-"] {
    border-radius: 9999px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Enhanced Loading States */
.loading-overlay {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
}

/* Enhanced Notification Badge */
.notif-badge {
    background: var(--gradient-primary);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Enhanced Modal Backdrop */
.modal-backdrop {
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Enhanced Scrollbar for Dashboards */
.main::-webkit-scrollbar,
.notif-panel::-webkit-scrollbar {
    width: 8px;
}

.main::-webkit-scrollbar-track,
.notif-panel::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 4px;
}

.main::-webkit-scrollbar-thumb,
.notif-panel::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}

.main::-webkit-scrollbar-thumb:hover,
.notif-panel::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Enhanced Sidebar Gradient */
.sidebar {
    background: linear-gradient(180deg, #1a202c 0%, #2d3748 100%);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

/* Enhanced Topbar Shadow */
.topbar {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Enhanced User Link Hover */
.user-link:hover {
    background: rgba(230, 126, 34, 0.05);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Enhanced Icon Button Hover */
.icon-btn:hover {
    background: rgba(230, 126, 34, 0.05);
    border-color: var(--primary-color);
}

/* Enhanced Job Type Labels */
.type-label {
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Empty States */
.empty-state {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Form Group Labels */
.form-group label {
    color: #374151;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

/* Enhanced Invoice Cards */
.invoice-card {
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.invoice-card:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(230, 126, 34, 0.15);
}

/* Enhanced Mission Success Message */
.success-message {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #22c55e;
    animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Enhanced Logout Button */
.logout-btn:hover {
    background: rgba(252, 165, 165, 0.12);
    transform: translateX(-2px);
}

/* Enhanced Brand Logo in Sidebar */
.sidebar .brand .logo {
    background: var(--gradient-primary);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

/* Responsive Dashboard Enhancements */
@media (max-width: 640px) {
    .sidebar {
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-item.active::before {
        display: none;
    }
    
    .nav-item.active::after {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 3px;
        background: #fff;
        border-radius: 0 0 4px 4px;
    }
}
