/* Fine Checker Styles */
.checker-hero {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.checker-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.hero-stats .stat-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Warning Banner */
.warning-banner {
    background: #fef2f2;
    border-bottom: 2px solid #dc2626;
    padding: 1rem 0;
}

.warning-banner p {
    margin: 0;
    color: #991b1b;
    font-size: 1.125rem;
    text-align: center;
}

/* Checker Container */
.checker-container {
    padding: 3rem 0;
}

/* Opening Story */
.opening-story {
    max-width: 800px;
    margin: 0 auto 3rem;
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 12px;
}

.opening-story h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.story-content {
    font-size: 1.125rem;
    line-height: 1.8;
}

.story-content p {
    margin-bottom: 1rem;
}

/* Risk Checker Tool */
.risk-checker-tool {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.risk-checker-tool h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tool-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Checker Form */
.question-group {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.question-group h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.checkbox-grid label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.2s;
}

.checkbox-grid label:hover {
    background: white;
}

.checkbox-grid input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-check {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 2rem;
}

.btn-check:hover {
    background: var(--secondary-color);
}

/* Results Section */
.results-section {
    margin-top: 3rem;
    animation: fadeIn 0.6s ease-out;
}

.risk-meter {
    text-align: center;
    margin-bottom: 3rem;
}

.risk-meter h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.meter-container {
    width: 100%;
    height: 30px;
    background: #e5e7eb;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(to right, #10b981, #f59e0b, #ef4444);
    transition: width 1s ease-out;
    width: 0;
}

.risk-label {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 1rem;
}

.risk-low { color: #10b981; }
.risk-medium { color: #f59e0b; }
.risk-high { color: #ef4444; }
.risk-critical { color: #dc2626; }

/* Fine Estimate */
.fine-estimate {
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.fine-estimate h3 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.fine-breakdown {
    font-size: 1.125rem;
    line-height: 1.8;
}

.fine-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc2626;
    margin: 1rem 0;
}

/* Action Items */
.action-items {
    background: #f0f9ff;
    border: 2px solid #bfdbfe;
    border-radius: 12px;
    padding: 2rem;
}

.action-items h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.actions-list {
    list-style: none;
}

.action-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 6px;
}

.action-priority {
    background: #dc2626;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Real Cases Section */
.real-cases {
    margin-top: 4rem;
}

.real-cases h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.case-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.case-card.critical {
    border: 2px solid #dc2626;
    background: #fef2f2;
}

.case-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.case-location {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.case-details p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.case-outcome {
    font-style: italic;
    color: #dc2626;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Tracking Methods */
.tracking-methods {
    margin-top: 4rem;
    background: #1a1a1a;
    color: white;
    padding: 3rem;
    border-radius: 12px;
}

.tracking-methods h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.tracking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tracking-card {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.tracking-card h3 {
    margin-bottom: 1rem;
    color: white;
}

.tracking-card p {
    opacity: 0.9;
}

.vpn-warning {
    background: rgba(220, 38, 38, 0.2);
    border: 2px solid #dc2626;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.vpn-warning h3 {
    color: #fecaca;
    margin-bottom: 1rem;
}

/* Protection Options */
.protection-urgent {
    margin-top: 4rem;
}

.protection-urgent h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.option-card {
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.option-card.bad {
    background: #fef2f2;
    border: 2px solid #fecaca;
}

.option-card.medium {
    background: #fffbeb;
    border: 2px solid #fde68a;
}

.option-card.good {
    background: #f0fdf4;
    border: 2px solid #86efac;
}

.option-card h3 {
    margin-bottom: 1rem;
}

.option-card p {
    margin-bottom: 0.5rem;
}

.option-risk {
    font-weight: 700;
    color: #dc2626;
    margin-top: 1rem;
}

.option-safe {
    font-weight: 700;
    color: #10b981;
    margin-top: 1rem;
}

/* Urgent CTA */
.urgent-cta {
    background: #dc2626;
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.urgent-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.urgent-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-urgent {
    display: inline-block;
    padding: 1rem 3rem;
    background: white;
    color: #dc2626;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    transition: transform 0.3s;
}

.btn-urgent:hover {
    transform: scale(1.05);
}

/* Utility */
.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .checker-hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .case-grid,
    .tracking-grid,
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}