/**
 * UDENL - Custom Styles
 * Additional component-specific styling
 * 
 * @package UDENL
 * @version 1.0.0
 */

/* ============================================
   PAGE ACCUEIL - STYLES SPECIFIQUES
============================================ */

/* Section Headers */
.section-header {
    max-width: 700px;
    margin: 0 auto var(--spacing-3xl);
}

.section-tag {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    margin-bottom: var(--spacing-md);
    background: rgba(230, 57, 70, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bl-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--bl-gray-500);
    margin-top: var(--spacing-md);
}

.section-dark .section-subtitle {
    color: var(--bl-gray-300);
}

/* Hero Section Enhancements */
.hero {
    position: relative;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-scroll {
    position: absolute;
    bottom: var(--spacing-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--bl-gray-300);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Badge dot animation */
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--bl-primary);
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Wall of Shame enhancements */
.shame-cta {
    margin-top: var(--spacing-3xl);
}

/* Combats Section */
.combats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

@media (max-width: 1024px) {
    .combats-grid {
        grid-template-columns: 1fr;
    }
}

.combat-card {
    position: relative;
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, var(--bl-secondary) 0%, var(--bl-dark) 100%);
    color: var(--bl-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.combat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.combat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bl-primary), var(--bl-accent));
}

.combat-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 57, 70, 0.2);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
    font-size: 1.5rem;
}

.combat-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.combat-card-content p {
    color: var(--bl-gray-300);
    margin-bottom: var(--spacing-lg);
}

/* Testimonials Section */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: var(--spacing-lg);
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 350px;
    padding: var(--spacing-xl);
    background: var(--bl-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--bl-primary);
}

/* Resources Preview */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

@media (max-width: 1024px) {
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

.resource-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--bl-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

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

.resource-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bl-gray-100);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.resource-info h4 {
    font-size: 1rem;
    font-family: var(--font-body);
    text-transform: none;
    margin-bottom: var(--spacing-xs);
}

.resource-info p {
    font-size: 0.875rem;
    color: var(--bl-gray-500);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(135deg, var(--bl-primary) 0%, var(--bl-primary-dark) 100%);
    color: var(--bl-white);
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(15deg);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: var(--spacing-lg);
}

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

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

/* Actualités Section */
.actualites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

@media (max-width: 1024px) {
    .actualites-grid {
        grid-template-columns: 1fr;
    }
}

.actu-card {
    background: var(--bl-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.actu-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.actu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.actu-card:hover .actu-image img {
    transform: scale(1.05);
}

.actu-content {
    padding: var(--spacing-lg);
}

.actu-date {
    font-size: 0.75rem;
    color: var(--bl-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
}

.actu-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.actu-title a {
    color: var(--bl-dark);
    transition: color 0.3s ease;
}

.actu-title a:hover {
    color: var(--bl-primary);
}

.actu-excerpt {
    color: var(--bl-gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   CALCULATOR COMPONENT
============================================ */
.sacem-calculator {
    max-width: 900px;
    margin: 0 auto;
}

/* Step 1 auto-hint */
.step1-auto-hint {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--bl-gray-500);
    font-style: italic;
}

/* Selected option card highlight */
.option-card.selected {
    border-color: var(--bl-primary) !important;
    background: rgba(230, 57, 70, 0.06) !important;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
    transform: translateY(-3px);
}

/* Comparison subtitle */
.comparison-subtitle {
    font-size: 0.95rem;
    color: var(--bl-gray-500);
    margin: -0.25rem 0 1.25rem;
}

/* ---- Europe Map ---- */
.europe-map-wrapper {
    position: relative;
    width: 100%;
    max-width: 780px;
    margin: 0 auto 1.5rem;
    background: #0d2137;
    border-radius: 12px;
    overflow: hidden;
    padding: 1rem;
}

#europe-map {
    display: block;
    width: 100%;
    height: 450px;
    min-height: 300px;
}

.map-country {
    transition: opacity 0.2s ease, filter 0.2s ease;
}

.map-country--data:hover {
    opacity: 0.82;
    filter: brightness(1.18);
}

/* Map tooltip */
.map-tooltip {
    position: absolute;
    pointer-events: none;
    background: rgba(10, 20, 35, 0.92);
    color: #fff;
    padding: 0.55rem 0.85rem;
    border-radius: 8px;
    font-size: 0.82rem;
    line-height: 1.55;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 100;
    border: 1px solid rgba(255,255,255,0.12);
}

.map-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

.tooltip-saving  { color: #4ade80; font-weight: 600; }
.tooltip-france  { color: #f87171; font-weight: 600; }

/* ---- Country cards grid under map ---- */
.country-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.65rem;
    margin-top: 0.5rem;
}

.country-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    border: 1.5px solid var(--bl-gray-200);
    border-radius: 10px;
    padding: 0.65rem 0.9rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.country-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.country-card--france {
    border-color: var(--bl-primary);
    background: rgba(230, 57, 70, 0.04);
    order: -1; /* push France to first */
}

.country-card-flag {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
}

.country-card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.country-card-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--bl-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.country-card-org {
    font-size: 0.72rem;
    color: var(--bl-gray-500);
}

.country-card-fee {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
}

.country-card-amount {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--bl-dark);
}

.country-card-amount small {
    font-weight: 400;
    font-size: 0.72rem;
    color: var(--bl-gray-500);
}

.country-card-saving {
    background: #dcfce7;
    color: #166534;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 20px;
}

.country-card-worst {
    background: rgba(230, 57, 70, 0.1);
    color: var(--bl-primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 20px;
}

.calculator-progress {
    display: block !important;
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 0;
}

.progress-bar-wrapper {
    width: 100%;
    margin-bottom: 0.75rem;
}

.progress-steps {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(12.5% + 10px);
    right: calc(12.5% + 10px);
    height: 2px;
    background: var(--bl-gray-300);
    z-index: 0;
}

.progress-step {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    z-index: 1;
    flex: 1;
    min-width: 0;
    background: transparent;
    padding: 0 0.5rem;
    text-align: center;
}

.progress-step .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bl-gray-300);
    color: var(--bl-gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--bl-primary);
    color: var(--bl-white);
    transform: scale(1.1);
}

.progress-step.completed .step-number {
    background: var(--bl-success);
    color: var(--bl-white);
}

.progress-step .step-label {
    font-size: var(--text-sm);
    color: var(--bl-gray-500);
}

.progress-step.active .step-label {
    color: var(--bl-dark);
    font-weight: 600;
}

.calculator-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

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

/* Establishment Grid (Step 1) */
.establishment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.establishment-option {
    cursor: pointer;
}

.establishment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.establishment-option .option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-lg);
    background: var(--bl-white);
    border: 2px solid var(--bl-gray-200);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    gap: var(--space-xs);
}

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

.establishment-option input[type="radio"]:checked + .option-card,
.establishment-option .option-card.selected {
    border-color: var(--bl-primary) !important;
    background: rgba(230, 57, 70, 0.05) !important;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
    transform: translateY(-3px);
}

.option-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.option-label {
    font-weight: 600;
    color: var(--bl-dark);
    font-size: 0.95rem;
}

.option-desc {
    font-size: 0.75rem;
    color: var(--bl-gray-500);
}

/* Type Selection Cards */
.type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.type-card {
    padding: var(--space-lg);
    background: var(--bl-white);
    border: 2px solid var(--bl-gray-200);
    border-radius: var(--radius-lg);
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

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

.type-card.selected {
    border-color: var(--bl-primary);
    background: rgba(230, 57, 70, 0.05);
}

.type-card .type-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.type-card .type-name {
    font-weight: 600;
    color: var(--bl-dark);
}

/* Input Fields */
.calc-input-group {
    margin-bottom: var(--space-lg);
}

.calc-input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--bl-dark);
}

.calc-input-group .input-help {
    font-size: var(--text-sm);
    color: var(--bl-gray-500);
    margin-top: var(--space-xs);
}

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

.calc-input-wrapper input {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    padding-right: 60px;
    font-size: var(--text-lg);
    border: 2px solid var(--bl-gray-300);
    border-radius: var(--radius-md);
    transition: border-color 0.3s ease;
}

.calc-input-wrapper input:focus {
    border-color: var(--bl-primary);
    outline: none;
}

.calc-input-wrapper .input-suffix {
    position: absolute;
    right: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    color: var(--bl-gray-500);
    font-weight: 500;
}

/* Results */
.result-card {
    background: var(--bl-dark);
    color: var(--bl-white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.result-main-amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--bl-primary);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.result-label {
    font-size: var(--text-lg);
    color: var(--bl-gray-400);
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
}

.comparison-card {
    background: var(--bl-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--bl-gray-200);
}

.comparison-card.france {
    border-color: var(--bl-primary);
    background: rgba(230, 57, 70, 0.05);
}

.comparison-flag {
    font-size: 2.5rem;
    margin-bottom: var(--space-xs);
}

.comparison-country {
    font-weight: 600;
    color: var(--bl-dark);
    margin-bottom: var(--space-xs);
}

.comparison-fee {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--bl-primary);
}

.comparison-savings {
    font-size: var(--text-sm);
    color: var(--bl-success);
    font-weight: 600;
    margin-top: var(--space-xs);
}

.comparison-artist {
    font-size: var(--text-sm);
    color: var(--bl-gray-500);
    margin-top: var(--space-sm);
}

/* ============================================
   TESTIMONIALS WALL
============================================ */
.testimonials-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--bl-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bl-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-meta h4 {
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-meta .location {
    font-size: var(--text-sm);
    color: var(--bl-gray-500);
}

.testimonial-content {
    font-size: var(--text-md);
    color: var(--bl-gray-700);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.testimonial-amount {
    display: inline-block;
    background: rgba(230, 57, 70, 0.1);
    color: var(--bl-primary);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.testimonial-reactions {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--bl-gray-200);
}

.reaction-btn {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: var(--bl-gray-100);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: background 0.3s ease;
}

.reaction-btn:hover {
    background: var(--bl-gray-200);
}

.reaction-btn.active {
    background: var(--bl-primary);
    color: var(--bl-white);
}

/* ============================================
   TIMELINE
============================================ */
.timeline {
    position: relative;
    padding: var(--space-xl) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--bl-gray-300);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: var(--space-xl);
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background: var(--bl-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-date {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bl-primary);
    color: var(--bl-white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: var(--text-sm);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 50px !important;
    }
    
    .timeline-date {
        left: 0;
        transform: none;
    }
}

/* ============================================
   FIGHT/COMBAT CARDS
============================================ */
.combat-card {
    background: var(--bl-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.combat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bl-primary);
}

.combat-card:hover {
    transform: translateY(-8px);
}

.combat-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: 4rem;
    font-weight: 800;
    color: var(--bl-gray-100);
    line-height: 1;
}

.combat-icon {
    width: 60px;
    height: 60px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.combat-icon svg,
.combat-icon img {
    width: 30px;
    height: 30px;
}

.combat-progress {
    margin-top: var(--space-lg);
}

.combat-progress .progress-bar {
    height: 12px;
    background: var(--bl-gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.combat-progress .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--bl-primary), var(--bl-accent));
    border-radius: var(--radius-full);
    transition: width 1.5s ease-out;
}

.combat-progress .progress-label {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-xs);
    font-size: var(--text-sm);
    color: var(--bl-gray-500);
}

/* ============================================
   RESOURCES / DOCUMENTS
============================================ */
.document-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.document-card {
    background: var(--bl-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

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

.document-icon {
    width: 50px;
    height: 50px;
    background: var(--bl-gray-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.document-icon.pdf { background: rgba(230, 57, 70, 0.1); color: var(--bl-primary); }
.document-icon.doc { background: rgba(29, 53, 87, 0.1); color: var(--bl-secondary); }
.document-icon.xls { background: rgba(46, 160, 67, 0.1); color: var(--bl-success); }

.document-info h4 {
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.document-info .document-meta {
    font-size: var(--text-sm);
    color: var(--bl-gray-500);
}

/* ============================================
   STATS SECTION
============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
}

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

.stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--bl-primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: var(--text-md);
    color: var(--bl-gray-600);
}

/* ============================================
   NOTIFICATION COMPONENT
============================================ */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: var(--space-md) var(--space-lg);
    background: var(--bl-dark);
    color: var(--bl-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transform: translateX(120%);
    transition: transform 0.3s ease;
    z-index: 9999;
}

.notification.show {
    transform: translateX(0);
}

.notification-success { background: var(--bl-success); }
.notification-error { background: var(--bl-primary); }
.notification-warning { background: var(--bl-accent); color: var(--bl-dark); }

/* ============================================
   PRINT STYLES
============================================ */
@media print {
    .site-header,
    .site-footer,
    .no-print {
        display: none !important;
    }
    
    .print-report {
        display: block !important;
        padding: 20mm;
    }
    
    .report-header {
        text-align: center;
        border-bottom: 2px solid #E63946;
        padding-bottom: 20px;
        margin-bottom: 30px;
    }
    
    .report-section {
        margin-bottom: 30px;
        page-break-inside: avoid;
    }
    
    .report-section.scandal {
        background: #FFF3F3;
        padding: 20px;
        border-radius: 8px;
    }
    
    .report-footer {
        margin-top: 40px;
        text-align: center;
        color: #666;
    }
}

/* ============================================
   UTILITY ADDITIONS
============================================ */
.animate-pop {
    animation: pop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.word {
    display: inline-block;
    overflow: hidden;
}

.word-inner {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.word-inner.revealed {
    transform: translateY(0);
}
