/* === ОСНОВНЫЕ СТИЛИ === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Цвета */
    --primary: #FF5757;
    --primary-dark: #E64545;
    --secondary: #4F46E5;
    --accent-purple: #A78BFA;
    --accent-blue: #60A5FA;
    --accent-pink: #F472B6;
    
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    
    --bg-light: #FAFBFC;
    --bg-gradient-start: #F8F9FF;
    --bg-gradient-end: #FFF5F7;
    
    --text-primary: #1A202C;
    --text-secondary: #64748B;
    --text-light: #94A3B8;
    
    --card-bg: #FFFFFF;
    --border: #E2E8F0;
    
    /* Алиасы для совместимости */
    --primary-color: var(--primary);
    --success-color: var(--success);
    --warning-color: var(--warning);
    --danger-color: var(--danger);
    --border-color: var(--border);
    --bg-color: var(--bg-light);
    --card-bg-color: var(--card-bg);
    
    /* Тени */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Радиусы */
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

body {
    font-family: 'Golos Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    min-height: 100vh;
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* === ФОНОВЫЕ ДЕКОРАЦИИ === */
.bg-decoration {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.bg-decoration-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #C7D2FE, #DDD6FE);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.bg-decoration-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #FED7E2, #FED7AA);
    bottom: -150px;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

.bg-decoration-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #BFDBFE, #C4B5FD);
    top: 50%;
    left: 50%;
    animation: float 30s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

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

/* === HERO СЕКЦИЯ === */
.hero {
    padding: 80px 0 60px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    box-shadow: var(--shadow);
    margin-bottom: 32px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.title-line {
    display: block;
}

.highlight {
    position: relative;
    display: inline-block;
    color: var(--primary);
}

.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 100%;
    height: 16px;
    background: var(--primary);
    opacity: 0.2;
    border-radius: 4px;
    z-index: -1;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.7;
}

/* === ФОРМА ПРОВЕРКИ === */
.check-section {
    margin-bottom: 40px;
}

.input-group {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    box-shadow: var(--shadow-xl), 0 0 0 4px rgba(79, 70, 229, 0.1);
    transform: translateY(-2px);
}

.input-icon {
    padding: 0 20px;
    font-size: 24px;
}

#urlInput {
    flex: 1;
    padding: 20px 20px 20px 0;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: inherit;
    color: var(--text-primary);
    background: transparent;
}

#urlInput::placeholder {
    color: var(--text-light);
}

.btn-primary {
    padding: 20px 40px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

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

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.button-loader {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hint {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
}

/* === СТАТИСТИКА === */
.stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* === ИЛЛЮСТРАЦИЯ === */
.hero-illustration {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.illustration-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* === РЕЗУЛЬТАТЫ === */
.results-section {
    padding: 60px 0;
    background: transparent;
}

.result-hero {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    margin-bottom: 48px;
}

/* Большой круговой прогресс */
.score-circle-big {
    position: relative;
    width: 200px;
    height: 200px;
}

.score-progress {
    transform: rotate(-90deg);
}

.score-bg {
    fill: none;
    stroke: #F1F5F9;
    stroke-width: 12;
}

.score-fill {
    fill: none;
    stroke: var(--primary);
    stroke-width: 12;
    stroke-linecap: round;
    stroke-dasharray: 565.48;
    stroke-dashoffset: 565.48;
    transition: stroke-dashoffset 2s ease, stroke 1s ease;
}

.score-circle-big.good .score-fill {
    stroke: var(--success);
}

.score-circle-big.warning .score-fill {
    stroke: var(--warning);
}

.score-circle-big.critical .score-fill,
.score-circle-big.error .score-fill {
    stroke: var(--danger);
}

.score-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    height: 50%;
}

.score-number {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    color: var(--text-primary);
}

.score-percent {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-secondary);
}

.result-info {
    min-width: 0;
}

.result-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
    color: var(--text-primary);
}

.result-url {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    word-break: break-all;
}

.issues-summary {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.issue-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.issue-badge:hover {
    transform: scale(1.05);
}

.issue-badge.critical {
    background: linear-gradient(135deg, #FEE2E2, #FECACA);
    color: #991B1B;
}

.issue-badge.high {
    background: linear-gradient(135deg, #FED7AA, #FDBA74);
    color: #9A3412;
}

.issue-badge.medium {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    color: #92400E;
}

/* === ДЕТАЛЬНЫЕ ПРОВЕРКИ === */
.checks-grid {
    margin-bottom: 48px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

.checks-list {
    display: grid;
    gap: 20px;
}

.check-item {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.check-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.check-item.passed {
    border-color: var(--success);
}

.check-item.failed {
    border-color: var(--danger);
}

.check-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 16px;
}

.check-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    flex: 1;
}

.check-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.severity-badge {
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.severity-badge.critical {
    background: var(--danger);
    color: white;
}

.severity-badge.high {
    background: var(--warning);
    color: white;
}

.severity-badge.medium {
    background: var(--text-light);
    color: white;
}

.check-description {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.check-law {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 10px;
    padding: 6px 12px;
    background: #EEF2FF;
    border-radius: 6px;
}

.check-details {
    font-size: 13px;
    color: var(--text-light);
    padding: 12px;
    background: #F8FAFC;
    border-radius: 8px;
    border-left: 3px solid var(--border);
}

/* === РЕКОМЕНДАЦИИ === */
.recommendations-wrapper {
    margin-bottom: 48px;
}

.recommendations-list {
    display: grid;
    gap: 24px;
}

.recommendation-item {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    border-left: 6px solid var(--primary);
    transition: all 0.3s ease;
}

.recommendation-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-xl);
}

.recommendation-item.critical {
    border-left-color: var(--danger);
}

.recommendation-item.high {
    border-left-color: var(--warning);
}

.recommendation-item.medium {
    border-left-color: var(--text-light);
}

.recommendation-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 16px;
}

.recommendation-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.recommendation-law {
    display: inline-block;
    font-size: 13px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 16px;
    padding: 6px 12px;
    background: #EEF2FF;
    border-radius: 6px;
}

.recommendation-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.recommendation-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* === СООБЩЕНИЯ ОБ ОШИБКАХ === */
.error-message {
    background: white;
    border: 3px solid var(--danger);
    border-radius: var(--radius-lg);
    padding: 24px;
    color: var(--danger);
    font-size: 16px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

/* === ФУТЕР === */
.footer {
    margin-top: 80px;
    padding: 60px 0 40px;
    background: #FAFBFC;
    border-top: 1px solid var(--border);
}

.footer .container {
    max-width: 100%;
    padding: 0 48px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-section p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.footer-section li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 6px 0;
    line-height: 1.6;
}

.footer-section li::before {
    content: '→';
    color: var(--primary);
    font-weight: 700;
    margin-right: 8px;
}

/* Особая стилизация для секции конфиденциальности */
.footer-section:last-of-type {
    background: #F8FAFC;
    padding: 20px;
    border-radius: var(--radius-sm);
    border: 1px solid #E2E8F0;
}

.footer-section:last-of-type h4 {
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section:last-of-type strong {
    color: var(--text-primary);
    font-weight: 600;
}

.footer-section:last-of-type li::before {
    content: '✓';
    color: var(--text-light);
    font-size: 12px;
}

.privacy-note {
    margin-top: 12px;
    padding: 10px 12px;
    background: white;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary) !important;
    border-left: 3px solid var(--border);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-light);
}

.footer-bottom a{
    color: var(--primary);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* === АДАПТИВНОСТЬ === */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-illustration {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 48px;
    }

    .result-hero {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .score-circle-big {
        margin: 0 auto;
    }

    .issues-summary {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .input-group {
        flex-direction: column;
    }

    .btn-primary {
        width: 100%;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .score-circle-big {
        width: 160px;
        height: 160px;
    }

    .score-number {
        font-size: 44px;
    }
    
    .score-percent {
        font-size: 20px;
    }

    .result-title {
        font-size: 28px;
    }

    .section-header h3 {
        font-size: 24px;
    }

    .result-hero,
    .check-item,
    .recommendation-item {
        padding: 24px;
    }

    .footer-content {
        gap: 32px;
        grid-template-columns: 1fr;
    }
    
    .footer .container {
        padding: 0 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .stats {
        padding: 24px;
    }

    .stat-number {
        font-size: 24px;
    }

    .check-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer .container {
        padding: 0 16px;
    }
}

.input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

#urlInput {
    flex: 1;
    padding: 16px 20px;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    outline: none;
    transition: all 0.3s;
}

#urlInput:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

#checkButton {
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    min-width: 150px;
}

#checkButton:hover:not(:disabled) {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

#checkButton:disabled {
    background: var(--text-secondary);
    cursor: not-allowed;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hint {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.result-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

.score-section {
    display: flex;
    align-items: center;
    gap: 40px;
}

.score-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    flex-shrink: 0;
}

.score-circle.good {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

.score-circle.warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
}

.score-circle.critical {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.4);
}

.score-percent {
    font-size: 1.5rem;
}

.score-info {
    flex: 1;
}

.score-info h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.checked-url {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    word-break: break-all;
}

.issues-summary {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.issue-badge {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.issue-badge.critical {
    background: #fee2e2;
    color: #991b1b;
}

.issue-badge.high {
    background: #fed7aa;
    color: #9a3412;
}

.issue-badge.medium {
    background: #fef3c7;
    color: #92400e;
}

.checks-section,
.recommendations-section {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

.checks-section h3,
.recommendations-section h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.check-item {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.check-item:hover {
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.check-item.passed {
    border-color: var(--success-color);
    background: rgba(16, 185, 129, 0.05);
}

.check-item.failed {
    border-color: var(--danger-color);
    background: rgba(239, 68, 68, 0.05);
}

.check-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.check-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.check-icon {
    font-size: 1.5rem;
}

.severity-badge {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.severity-badge.critical {
    background: var(--danger-color);
    color: white;
}

.severity-badge.high {
    background: var(--warning-color);
    color: white;
}

.severity-badge.medium {
    background: #94a3b8;
    color: white;
}

.check-description {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.check-law {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 8px;
}

.check-details {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

.recommendation-item {
    background: #f1f5f9;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.recommendation-item.critical {
    border-left-color: var(--danger-color);
}

.recommendation-item.high {
    border-left-color: var(--warning-color);
}

.recommendation-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.recommendation-title {
    font-weight: 600;
    font-size: 1.05rem;
}

.recommendation-law {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.recommendation-text {
    color: var(--text-primary);
    line-height: 1.6;
}

.error-message {
    background: var(--card-bg);
    border: 2px solid var(--danger-color);
    border-radius: 12px;
    padding: 20px;
    color: var(--danger-color);
    margin-bottom: 20px;
}

footer {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.laws-info h4 {
    margin-bottom: 15px;
    color: var(--text-primary);
}

.laws-info ul {
    list-style: none;
}

.laws-info li {
    padding: 8px 0;
    color: var(--text-secondary);
}

.laws-info strong {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }

    .input-group {
        flex-direction: column;
    }

    .score-section {
        flex-direction: column;
        text-align: center;
    }

    .check-section,
    .result-card,
    .checks-section,
    .recommendations-section {
        padding: 20px;
    }
    .hero-illustration{
        display: none;
    }
}
