/* ===================================
   FREELANCING TRANSITION GUIDE
   WorkFree.me Design System 2025
   =================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===================================
   RESET AND BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   TYPOGRAPHY SYSTEM
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h1 { 
    font-size: 2.75rem; 
    font-weight: 800; 
    line-height: 1.2;
    margin-bottom: 2rem;
}

h2 { 
    font-size: 2.25rem; 
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

h3 { 
    font-size: 1.75rem; 
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

h4 { 
    font-size: 1.375rem; 
    font-weight: 600;
    margin-bottom: 1rem;
}

h5 { 
    font-size: 1.125rem; 
    font-weight: 500;
    margin-bottom: 0.75rem;
}

h6 { 
    font-size: 1rem; 
    font-weight: 500;
    margin-bottom: 0.75rem;
}

p {
    font-family: 'Poppins', sans-serif;
    color: #2d3748;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1rem;
}

/* Large text for emphasis */
.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.6;
}

/* ===================================
   LAYOUT CONTAINERS
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

/* ===================================
   PROGRESS BAR
   =================================== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    z-index: 9999;
    transition: width 0.3s ease;
    width: 0%;
}

/* ===================================
   NAVIGATION SYSTEM
   =================================== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo .logo-link {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #1d4ed8;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
}

.nav-logo .logo-link:hover {
    color: #2563eb;
    transform: translateY(-1px);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
    color: #1d4ed8;
    background-color: rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.dropdown-toggle {
    cursor: pointer;
    user-select: none;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    color: #64748b;
    font-size: 0.75rem;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15), 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 1rem;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-link {
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    color: #2d3748;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.dropdown-link:hover {
    background-color: rgba(59, 130, 246, 0.08);
    color: #1d4ed8;
    transform: translateX(4px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1002;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(59, 130, 246, 0.1);
}

.hamburger .bar {
    width: 28px;
    height: 3px;
    background-color: #2d3748;
    transition: 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 7px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -7px);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 8rem 0 5rem;
    margin-top: 80px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.4;
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-breadcrumb {
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    font-size: 0.9rem;
}

.hero-breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.hero-breadcrumb a:hover {
    color: #3b82f6;
}

.breadcrumb-separator {
    color: #94a3b8;
    font-weight: 600;
}

.current-page {
    color: #3b82f6;
    font-weight: 600;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #1a1a1a;
    letter-spacing: -0.03em;
}

.title-highlight {
    display: block;
    color: #3b82f6;
    font-size: 0.7em;
    font-weight: 600;
    margin-top: 0.5rem;
    letter-spacing: 0;
}

.hero-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.375rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #2d3748;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.cta-button {
    font-family: 'Poppins', sans-serif;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    min-width: 220px;
    justify-content: center;
    letter-spacing: -0.01em;
}

.cta-button.primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    box-shadow: 0 4px 15px 0 rgba(59, 130, 246, 0.3);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px 0 rgba(59, 130, 246, 0.4);
}

.cta-button.secondary {
    background: #ffffff;
    color: #2d3748;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.05);
}

.cta-button.secondary:hover {
    background: #f8fafc;
    border-color: #3b82f6;
    color: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.1);
}

/* ===================================
   MAIN CONTENT LAYOUT
   =================================== */
.main-content {
    margin-top: 3rem;
    margin-bottom: 6rem;
}

/* ===================================
   CONTENT SECTIONS
   =================================== */
.intro-section,
.content-section {
    margin-bottom: 5rem;
    scroll-margin-top: 120px;
}

.section-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fef7ff 0%, #f3f4f6 100%);
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    font-weight: 500;
}

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 35px 0 rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.stat-source {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 400;
}

/* Alert Boxes */
.alert-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 16px;
    margin: 3rem 0;
    border-left: 5px solid;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
}

.alert-box.warning {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: #f59e0b;
}

.alert-box.success {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #22c55e;
}

.alert-box.info {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #3b82f6;
}

.alert-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.alert-content h3 {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.alert-content p {
    font-family: 'Poppins', sans-serif;
    color: #2d3748;
    margin-bottom: 0;
    line-height: 1.7;
    font-weight: 500;
}

/* Lists */
.detailed-list,
.benefit-list {
    list-style: none;
    margin: 2rem 0;
}

.detailed-list li,
.benefit-list li {
    font-family: 'Poppins', sans-serif;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    color: #2d3748;
    line-height: 1.7;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.detailed-list li:hover,
.benefit-list li:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.08);
}

.detailed-list li strong,
.benefit-list li strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* ===================================
   CHECKLIST SECTIONS
   =================================== */
.checklist-section {
    margin: 5rem 0;
    scroll-margin-top: 120px;
}

.checklist-section h2 {
    color: #1a1a1a;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.checklist-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 2px;
}

.checklist-progress {
    margin-bottom: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 20px;
    border: 1px solid #bbf7d0;
    box-shadow: 0 4px 20px 0 rgba(34, 197, 94, 0.1);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.progress-header h4 {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.progress-text {
    font-family: 'Poppins', sans-serif;
    color: #059669;
    font-weight: 700;
    font-size: 1.1rem;
}

.progress-bar-container {
    width: 100%;
    height: 16px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: inset 0 2px 6px 0 rgba(0, 0, 0, 0.1);
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
}

.checklist-category {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.checklist-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.12);
}

.category-title {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #1a1a1a;
    padding: 2rem 2.5rem;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.category-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.checklist-items {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    border: 2px solid #f3f4f6;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    position: relative;
}

.checklist-item:hover {
    background: #fafbfc;
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
}

.checklist-checkbox {
    width: 24px;
    height: 24px;
    border: 3px solid #d1d5db;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-top: 3px;
    appearance: none;
    background: #ffffff;
    position: relative;
}

.checklist-checkbox:hover {
    border-color: #3b82f6;
    transform: scale(1.05);
}

.checklist-checkbox:checked {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: #10b981;
    transform: scale(1.05);
}

.checklist-checkbox:checked::after {
    content: '✓';
    color: #ffffff;
    font-weight: 800;
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: checkmark 0.3s ease-in-out;
}

@keyframes checkmark {
    0% { transform: translate(-50%, -50%) scale(0); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.checklist-label {
    font-family: 'Poppins', sans-serif;
    color: #2d3748;
    font-weight: 500;
    line-height: 1.7;
    cursor: pointer;
    flex: 1;
}

.checklist-label strong {
    color: #1a1a1a;
    display: block;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
}

.item-description {
    font-family: 'Poppins', sans-serif;
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 0.75rem;
    font-weight: 400;
}

.checklist-item.completed {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #bbf7d0;
}

.checklist-item.completed .checklist-label {
    opacity: 0.8;
}

.checklist-item.completed .checklist-label strong {
    text-decoration: line-through;
    color: #059669;
}

/* ===================================
   DOWNLOADABLE RESOURCES
   =================================== */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.15);
}

.resource-header {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.resource-header h3 {
    color: #1a1a1a;
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.resource-content {
    padding: 2rem;
}

.resource-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.download-btn {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    box-shadow: 0 4px 15px 0 rgba(59, 130, 246, 0.3);
}

.download-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px 0 rgba(59, 130, 246, 0.4);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #ffffff;
    margin-top: 8rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    padding: 5rem 0 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-family: 'Poppins', sans-serif;
    color: #d1d5db;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 350px;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 1.25rem;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px 0 rgba(59, 130, 246, 0.2);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    font-family: 'Poppins', sans-serif;
    color: #d1d5db;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.footer-link:hover {
    color: #93c5fd;
    transform: translateX(6px);
}

.footer-bottom {
    border-top: 1px solid rgba(75, 85, 99, 0.3);
    padding: 2.5rem 0;
}

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

.copyright {
    font-family: 'Poppins', sans-serif;
    color: #9ca3af;
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
}

.footer-bottom-links {
    display: flex;
    gap: 2.5rem;
}

.footer-bottom-link {
    font-family: 'Poppins', sans-serif;
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-bottom-link:hover {
    color: #d1d5db;
}

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

/* Large Desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
}

/* Tablet Landscape */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
}

/* Tablet Portrait */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .resources-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: left;
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        padding: 2.5rem;
        gap: 0;
        z-index: 1000;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1.5rem 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 1.25rem 0;
        font-size: 1.2rem;
        color: #1a1a1a;
        border-radius: 0;
        justify-content: space-between;
        width: 100%;
        font-weight: 600;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: transparent;
        color: #3b82f6;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #f8fafc;
        border-radius: 12px;
        margin-top: 1rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 1.25rem;
    }
    
    .dropdown-link {
        padding: 1rem;
        color: #4a5568;
        font-size: 1.05rem;
        font-weight: 500;
    }
    
    .dropdown-link:hover {
        background: #e2e8f0;
        transform: none;
    }
    
    .hero-section {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 320px;
    }
    
    .checklist-items {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .checklist-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .category-title {
        padding: 1.5rem;
        font-size: 1.25rem;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.4rem; }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .nav-container {
        padding: 1rem 1.25rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        padding: 2rem 1.25rem;
    }
    
    .footer-container {
        padding: 0 1.25rem;
    }
    
    .checklist-item {
        padding: 1.25rem;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .navbar,
    .hero-section,
    .footer,
    .download-btn,
    .cta-button {
        display: none;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.6;
        color: #000;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        color: #000;
    }
    
    .checklist-category,
    .resource-card {
        page-break-inside: avoid;
    }
    
    .checklist-item {
        border: 1px solid #ccc;
        margin-bottom: 0.5rem;
    }
}

/* ===================================
   ACCESSIBILITY IMPROVEMENTS
   =================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus States for Accessibility */
.cta-button:focus,
.download-btn:focus,
.nav-link:focus,
.checklist-checkbox:focus {
    outline: 3px solid #3b82f6;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .checklist-item {
        border-color: #000;
    }
    
    .nav-link {
        color: #000;
    }
    
    .hero-title,
    h1, h2, h3, h4, h5, h6 {
        color: #000;
    }
}