/* ============================================
   Resume Builder - Global Styles
   Professional & Minimalist Design
   ============================================ */

:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #0dcaf0;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f1f5f9;
    color: var(--dark-color);
    line-height: 1.6;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background: #fff;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar-brand i {
    margin-right: 0.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--secondary-color) !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

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

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

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

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

.btn-success {
    background-color: var(--success-color);
    border-color: var(--success-color);
}

.btn-success:hover {
    background-color: #059669;
    border-color: #059669;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

/* ============================================
   Template Cards
   ============================================ */
.template-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.template-preview {
    height: 400px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.template-info {
    padding: 1.5rem;
}

.template-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.template-desc {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* ============================================
   Editor Page
   ============================================ */
.editor-container {
    display: flex;
    height: calc(100vh - 140px);
    overflow: hidden;
}

.editor-sidebar {
    width: 45%;
    background: #fff;
    border-right: 1px solid var(--border-color);
    overflow-y: auto;
    padding: 2rem;
}

.editor-preview {
    width: 55%;
    background: #f1f5f9;
    padding: 2rem;
    overflow-y: auto;
}

.form-section {
    background: #f8fafc;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.form-section-title i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* ============================================
   Resume Preview
   ============================================ */
.resume-preview {
    background: #fff;
    max-width: 210mm;
    margin: 0 auto;
    min-height: 297mm;
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    transition: transform 0.3s ease;
}

/* ============================================
   Classic Template Styles (for main.js classic template)
   ============================================ */
.resume-header {
    text-align: center;
    padding-bottom: 1.5rem;
    /*去掉地址等下方的分割线*/
    /*border-bottom: 2px solid var(--dark-color);*/
    margin-bottom: 1.5rem;
}

.resume-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.resume-contact {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-style: italic;
}

.resume-section {
    margin-bottom: 1.5rem;
}

.resume-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--dark-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.resume-entry {
    margin-bottom: 1rem;
}

.resume-entry-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.25rem;
}

.resume-entry-title {
    font-weight: 600;
}

.resume-entry-subtitle {
    color: var(--secondary-color);
}

.resume-entry-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-style: italic;
}

.resume-entry-desc {
    color: var(--dark-color);
    font-size: 0.95rem;
}

.resume-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.resume-skill {
    background: #f1f5f9;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* ============================================
   Result Page
   ============================================ */
.result-container {
    padding: 3rem 0;
}

.result-actions {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

/* Legacy classic styles (for compatibility) */
.classic-resume {
    font-family: 'Georgia', serif;
    line-height: 1.6;
}

.classic-header {
    text-align: center;
    border-bottom: 2px solid #333;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.classic-name {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.classic-contact {
    font-size: 0.9rem;
    color: #666;
}

.classic-section {
    margin-bottom: 1.5rem;
}

.classic-section-title {
    font-size: 1.1rem;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.25rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.classic-item {
    margin-bottom: 1rem;
}

.classic-item-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.classic-item-subtitle {
    font-style: italic;
    color: #666;
}

/* ============================================
   Modern Template Styles (Blue Theme)
   ============================================ */
.modern-resume {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fff;
    min-height: 100%;
}

.modern-header-bar {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 2rem;
    margin: -2rem -2rem 0 -2rem;
    text-align: center;
}

.modern-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
}

.modern-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 1rem 0;
    color: #64748b;
    font-size: 0.9rem;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.modern-contact-line {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.modern-content {
    display: flex;
    gap: 2rem;
}

.modern-left {
    width: 32%;
    flex-shrink: 0;
}

.modern-right {
    width: 68%;
    flex-grow: 1;
}

.modern-section {
    margin-bottom: 1.5rem;
}

.modern-section-header {
    background: #2563eb;
    color: #fff;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.modern-skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.modern-skill-tag {
    background: #dbeafe;
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    display: inline-block;
}

.modern-edu-item {
    margin-bottom: 1rem;
}

.modern-edu-school {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

.modern-edu-degree {
    color: #475569;
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.modern-edu-date {
    color: #64748b;
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 0.2rem;
}

.modern-exp-item {
    margin-bottom: 1.2rem;
}

.modern-exp-title {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

.modern-exp-date {
    color: #64748b;
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 0.2rem;
}

.modern-exp-desc {
    color: #475569;
    font-size: 0.9rem;
    margin-top: 0.4rem;
    line-height: 1.5;
}

.modern-text {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   Creative Template Styles (Coral Theme)
   ============================================ */
.creative-resume {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fff;
    min-height: 100%;
}

.creative-header {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.creative-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ef4444;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.5px;
}

.creative-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ef4444 0%, #f87171 100%);
    border-radius: 2px;
    margin-bottom: 1rem;
}

.creative-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: #64748b;
    font-size: 0.9rem;
    font-style: italic;
}

.creative-contact-line {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.creative-section {
    margin-bottom: 1.8rem;
}

.creative-highlight {
    background: #fef2f2;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ef4444;
}

.creative-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.creative-item {
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px dashed #e2e8f0;
}

.creative-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.creative-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.4rem;
}

.creative-item-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 1rem;
}

.creative-item-subtitle {
    color: #475569;
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.creative-item-date {
    color: #64748b;
    font-size: 0.85rem;
    font-style: italic;
    white-space: nowrap;
}

.creative-item-desc {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.creative-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.creative-skill-tag {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #dc2626;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #fecaca;
}

/* ============================================
   Ad Slots
   ============================================ */
.ad-slot {
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

.ad-slot-banner {
    height: 90px;
}

.ad-slot-sidebar {
    height: 250px;
    margin-bottom: 1.5rem;
}

.ad-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: #64748b;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark-color);
    color: #fff;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-desc {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.footer-links h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: #64748b;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .editor-container {
        flex-direction: column;
        height: auto;
        overflow: visible;
    }

    .editor-sidebar,
    .editor-preview {
        width: 100%;
        height: auto;
        max-height: none;
        overflow-y: visible;
    }

    .editor-preview {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .template-preview {
        height: 300px;
    }

    .modern-content {
        flex-direction: column;
    }

    .modern-left,
    .modern-right {
        width: 100%;
    }

    .modern-contact {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }

    .modern-contact-line {
        flex-direction: column;
        gap: 0.5rem;
    }

    .creative-contact {
        flex-direction: column;
        gap: 0.3rem;
    }

    .creative-contact-line {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .creative-item-header {
        flex-direction: column;
    }
}

/* ============================================
   Toast Notifications (using Bootstrap Toast)
   ============================================ */
/* Bootstrap Toast 样式已内置，无需额外定义 */

/* ============================================
   Section Titles (Homepage)
   ============================================ */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #1f2937 0%, #4b5563 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Feature Cards (Homepage)
   ============================================ */
.feature-card {
    border: none;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.feature-desc {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Testimonial Cards
   ============================================ */
.testimonial-card {
    border: none;
    border-radius: 20px;
    padding: 2rem;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: #6b7280;
}

/* ============================================
   Step Cards (How It Works)
   ============================================ */
.step-card {
    border: none;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.35);
}

.step-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   Entry Item Styles (Experience & Education)
   ============================================ */
.entry-item {
    position: relative;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease;
}

.entry-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    background: #fee2e2;
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 1;
}

.btn-remove:hover {
    background: #fecaca;
    transform: scale(1.05);
}

.btn-remove i {
    font-size: 14px;
}

.btn-add-entry {
    width: 100%;
    padding: 12px 24px;
    border: 2px dashed #d1d5db;
    border-radius: 10px;
    background: #f9fafb;
    color: #6b7280;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

.btn-add-entry:hover {
    border-color: var(--primary-color);
    background: #eff6ff;
    color: var(--primary-color);
    transform: translateY(-1px);
}

.btn-add-entry i {
    font-size: 16px;
}

/* ============================================
   Payment Options Styles
   ============================================ */
.payment-option {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.payment-option.border-primary {
    border-color: var(--primary-color);
}

.payment-option .card-body {
    padding: 1.25rem;
}

.payment-option .h4 {
    font-weight: 700;
}

#paymentModal .modal-content {
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: var(--shadow-lg);
}

#paymentModal .modal-header {
    background: linear-gradient(135deg, #0070ba 0%, #005ea6 100%);
    color: #fff;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

#paymentModal .modal-header .btn-close {
    filter: invert(1);
}

#paymentModal .badge.bg-primary {
    background: linear-gradient(135deg, #0070ba 0%, #005ea6 100%) !important;
}

/* ============================================
   Statistics Section Styles
   ============================================ */
.statistics-section {
    position: relative;
    overflow: hidden;
}

.statistics-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='%23ffffff' fill-opacity='0.05'%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");
    opacity: 0.1;
}

.stat-item {
    padding: 1.5rem 1rem;
    position: relative;
    z-index: 1;
}

.stat-icon {
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}