/* ========================================
   LeCoqPari - Guide Pédagogique Jeux
   Design unique rouge & or
   ======================================== */

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

:root {
    /* Color Palette - Rouge & Or (French theme) */
    --primary-red: #dc2626;
    --primary-red-dark: #b91c1c;
    --primary-red-light: #ef4444;
    --accent-gold: #f59e0b;
    --accent-gold-dark: #d97706;
    --accent-gold-light: #fbbf24;
    
    /* Blues for accents */
    --accent-blue: #2563eb;
    --accent-blue-light: #3b82f6;
    
    /* Neutrals */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-900: #0f172a;
    
    /* Status Colors */
    --success-bg: #dcfce7;
    --success-text: #166534;
    --success-border: #22c55e;
    --danger-bg: #fef2f2;
    --danger-text: #dc2626;
    --danger-border: #ef4444;
    --warning-bg: #fffbeb;
    --warning-text: #d97706;
    --warning-border: #f59e0b;
    --info-bg: #eff6ff;
    --info-text: #1d4ed8;
    --info-border: #3b82f6;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    
    /* Typography */
    --font-system: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 16px;
    --line-height-relaxed: 1.7;
    
    /* Border Radius */
    --rounded-sm: 4px;
    --rounded-md: 8px;
    --rounded-lg: 12px;
    --rounded-xl: 20px;
    --rounded-2xl: 28px;
    --rounded-full: 9999px;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 8px 24px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 16px 40px rgba(15, 23, 42, 0.16);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-system);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--slate-700);
    background-color: var(--slate-50);
    -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    color: var(--slate-900);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: var(--space-4);
    letter-spacing: -0.025em;
}

h1 { font-size: 2.75rem; font-weight: 800; }
h2 { font-size: 2.125rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--space-4);
    color: var(--slate-600);
}

a {
    color: var(--primary-red);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--primary-red-dark);
}

strong {
    font-weight: 600;
    color: var(--slate-900);
}

/* === LAYOUT === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.section-gap {
    padding: var(--space-16) 0;
}

.section-head {
    margin-bottom: var(--space-12);
}

.section-head.center {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-name {
    color: var(--primary-red-dark);
    margin-bottom: var(--space-5);
}

.section-desc {
    font-size: 1.125rem;
    color: var(--slate-600);
    line-height: 1.75;
}

.bg-white {
    background-color: white;
}

.bg-hero {
    background: linear-gradient(145deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    color: white;
}

/* === HEADER === */
.header {
    background: white;
    border-bottom: 1px solid var(--slate-200);
    padding: var(--space-4) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.25s ease;
}

.header.sticky {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-red-dark);
}

.logo-icon {
    width: 44px;
    height: 44px;
}

.logo-name {
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--accent-gold);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--slate-600);
    position: relative;
}

.nav a:hover {
    color: var(--primary-red);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.25s ease;
    border-radius: 1px;
}

.nav a:hover::after {
    width: 100%;
}

.nav-btn {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
    color: white !important;
    padding: 0.625rem 1.375rem;
    border-radius: var(--rounded-lg);
    font-weight: 600;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-btn::after {
    display: none;
}

/* === HERO === */
.hero {
    background: linear-gradient(145deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    color: white;
    padding: var(--space-16) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0L30 60M0 30L60 30" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(251,191,36,0.15) 0%, transparent 70%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    padding: 0.5rem 1.125rem;
    border-radius: var(--rounded-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-6);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
    font-size: 3.25rem;
    color: white;
    margin-bottom: var(--space-6);
    line-height: 1.1;
}

.hero-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: var(--space-8);
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* === BUTTONS === */
.btn,
.btn-outline,
.btn-white {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: var(--rounded-lg);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn:hover {
    background: var(--slate-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.6);
}

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

.btn-white {
    background: white;
    color: var(--primary-red);
    box-shadow: var(--shadow-md);
}

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

/* === ALERT BOXES === */
.alert-box {
    background: white;
    border-radius: var(--rounded-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
}

.alert-box.danger {
    border: 3px solid var(--danger-border);
}

.alert-head {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.alert-icon {
    width: 36px;
    height: 36px;
    color: var(--danger-text);
}

.alert-head h2 {
    color: var(--danger-text);
    margin: 0;
}

.alert-lead {
    font-size: 1.125rem;
    color: var(--slate-900);
    margin-bottom: var(--space-6);
}

.dual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin: var(--space-6) 0;
}

.dual-col h3 {
    font-size: 1rem;
    margin-bottom: var(--space-4);
}

.dual-col.yes h3 { color: var(--success-text); }
.dual-col.no h3 { color: var(--danger-text); }

.dual-col ul {
    list-style: none;
    padding: 0;
}

.dual-col ul li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--slate-600);
    font-size: 0.9375rem;
}

.dual-col.yes ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-text);
    font-weight: 700;
}

.dual-col.no ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--danger-text);
    font-weight: 700;
}

.law-notice {
    background: linear-gradient(135deg, var(--info-bg) 0%, #dbeafe 100%);
    border-radius: var(--rounded-lg);
    padding: var(--space-6);
    margin: var(--space-6) 0;
    border-left: 4px solid var(--info-border);
}

.law-notice h3 {
    color: var(--info-text);
    margin-bottom: var(--space-3);
    font-size: 1.125rem;
}

.law-notice p {
    color: var(--slate-700);
    margin-bottom: var(--space-2);
    font-size: 0.9375rem;
}

.law-notice .note {
    font-size: 0.8125rem;
    color: var(--slate-600);
    font-style: italic;
}

.age-notice {
    background: var(--slate-100);
    border-radius: var(--rounded-md);
    padding: var(--space-4);
    text-align: center;
    margin-top: var(--space-6);
}

.age-notice p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--slate-700);
}

/* === FEATURE CARDS === */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
}

.card {
    background: white;
    border-radius: var(--rounded-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--slate-100);
}

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

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--rounded-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
}

.card-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.card-icon.red {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
}

.card-icon.gold {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
}

.card-icon.blue {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
}

.card h3 {
    margin-bottom: var(--space-3);
    font-size: 1.25rem;
}

.card p {
    color: var(--slate-600);
    margin: 0;
    line-height: 1.7;
}

/* === LAW GRID === */
.law-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-8);
}

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

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

.law-card-head {
    padding: var(--space-6);
    color: white;
}

.law-card-head.allowed {
    background: linear-gradient(135deg, var(--success-text) 0%, #22c55e 100%);
}

.law-card-head h3 {
    color: white;
    margin-bottom: var(--space-2);
}

.law-card-head p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 0.9375rem;
}

.law-card-body {
    padding: var(--space-6);
}

.law-card-body h4 {
    font-size: 0.875rem;
    color: var(--slate-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
}

.law-card-body ul {
    list-style: none;
    padding: 0;
}

.law-card-body ul li {
    padding: 0.375rem 0;
    color: var(--slate-700);
    font-size: 0.9375rem;
}

/* === OPERATORS GRID === */
.operators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.operator-card {
    background: white;
    border-radius: var(--rounded-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--success-border);
    transition: all 0.3s ease;
    position: relative;
}

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

.operator-badge {
    position: absolute;
    top: -12px;
    left: var(--space-6);
    background: linear-gradient(135deg, var(--success-text) 0%, #22c55e 100%);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: var(--rounded-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.operator-card h3 {
    color: var(--slate-900);
    margin-bottom: var(--space-3);
    margin-top: var(--space-2);
}

.operator-card > p {
    color: var(--slate-600);
    font-size: 0.9375rem;
    margin-bottom: var(--space-5);
}

.operator-details {
    background: var(--slate-50);
    border-radius: var(--rounded-lg);
    padding: var(--space-4);
    margin-bottom: var(--space-4);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--slate-200);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.8125rem;
    color: var(--slate-600);
    font-weight: 500;
}

.detail-value {
    font-size: 0.875rem;
    color: var(--slate-900);
    font-weight: 600;
    text-align: right;
}

.detail-value a {
    color: var(--primary-red);
}

.operator-warning {
    background: var(--warning-bg);
    border-radius: var(--rounded-md);
    padding: var(--space-3);
    text-align: center;
}

.operator-warning p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--warning-text);
    font-weight: 500;
}

.operator-warning a {
    color: var(--warning-text);
    text-decoration: underline;
}

/* === INFO BOX === */
.info-box {
    display: flex;
    gap: var(--space-5);
    background: var(--info-bg);
    border-radius: var(--rounded-xl);
    padding: var(--space-6);
    border-left: 4px solid var(--info-border);
}

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

.info-box-content h4 {
    color: var(--info-text);
    margin-bottom: var(--space-2);
}

.info-box-content p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--slate-700);
}

/* === WARNING NOTICE === */
.warning-notice {
    background: white;
    border-radius: var(--rounded-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--warning-border);
    overflow: hidden;
}

.warning-notice-head {
    background: var(--warning-bg);
    padding: var(--space-4) var(--space-6);
}

.warning-notice-head h3 {
    color: var(--warning-text);
    margin: 0;
    font-size: 1.125rem;
}

.warning-notice-body {
    padding: var(--space-5) var(--space-6);
    background: var(--warning-bg);
}

.warning-notice-body p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--slate-700);
}

.warning-notice-footer {
    padding: var(--space-4) var(--space-6);
    font-size: 0.85rem;
    color: var(--slate-600);
    background: white;
}

/* === VERIFICATION === */
.verify-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    max-width: 680px;
    margin: 0 auto var(--space-12);
}

.step {
    display: flex;
    gap: var(--space-5);
    align-items: flex-start;
}

.step-num {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.step-body h3 {
    margin-bottom: var(--space-2);
    font-size: 1.125rem;
}

.step-body p {
    color: var(--slate-600);
    margin: 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.tool-card {
    background: white;
    border-radius: var(--rounded-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
}

.tool-card h3 {
    margin-bottom: var(--space-5);
}

.tool-list {
    list-style: none;
    padding: 0;
}

.tool-list li {
    margin-bottom: var(--space-2);
}

.tool-list a {
    display: block;
    padding: 0.625rem;
    border-radius: var(--rounded-md);
    transition: background 0.2s ease;
}

.tool-list a:hover {
    background: var(--slate-50);
}

.warn-card {
    background: white;
    border-radius: var(--rounded-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--warning-border);
}

.warn-card h4 {
    color: var(--warning-text);
    margin-bottom: var(--space-4);
}

.warn-card ul {
    list-style: none;
    padding: 0;
}

.warn-card ul li {
    padding: 0.375rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--slate-600);
}

.warn-card ul li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-text);
}

/* === HELP SECTION === */
.help-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.help-head {
    text-align: center;
    margin-bottom: var(--space-12);
}

.help-head h2 {
    color: white;
    margin-bottom: var(--space-4);
}

.help-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
    margin: var(--space-12) 0;
}

.help-card {
    background: white;
    border-radius: var(--rounded-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.help-card h3,
.help-card p {
    color: var(--slate-900);
}

.help-emoji {
    width: 88px;
    height: 88px;
    margin: 0 auto var(--space-5);
    background: var(--slate-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.75rem;
}

.help-emoji.phone {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
}

.help-emoji.web {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
}

.help-emoji.medical {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
}

.help-number {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--primary-red);
    margin: var(--space-4) 0;
}

.help-meta {
    font-size: 0.875rem;
    color: var(--slate-600);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.help-info {
    font-size: 0.9375rem;
    line-height: 1.7;
}

.test-banner {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: var(--rounded-xl);
    padding: var(--space-8);
    text-align: center;
    margin: var(--space-12) 0;
    border: 1px solid rgba(255,255,255,0.2);
}

.test-banner h3 {
    color: white;
    margin-bottom: var(--space-4);
}

.test-banner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-6);
}

.help-note {
    text-align: center;
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--rounded-xl);
}

.help-note p {
    color: white;
    margin: 0;
}

/* === FOOTER === */
.footer {
    background: var(--slate-900);
    color: var(--slate-300);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-col h3,
.footer-col h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: var(--space-5);
}

.footer-col p {
    color: var(--slate-300);
    font-size: 0.9375rem;
    margin-bottom: var(--space-2);
}

.footer-legal {
    margin-top: var(--space-5);
    padding-top: var(--space-5);
    border-top: 1px solid var(--slate-700);
}

.footer-legal p {
    font-size: 0.875rem;
}

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

.footer-nav li {
    margin-bottom: var(--space-3);
}

.footer-nav a {
    color: var(--slate-300);
    font-size: 0.9375rem;
}

.footer-nav a:hover {
    color: var(--primary-red-light);
}

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

.footer-contact li {
    margin-bottom: var(--space-5);
}

.footer-contact strong {
    color: white;
    display: block;
    margin-bottom: 0.25rem;
}

.footer-contact a {
    color: var(--slate-300);
}

.footer-contact a:hover {
    color: var(--primary-red-light);
}

.footer-statement {
    background: var(--slate-800);
    border-radius: var(--rounded-lg);
    padding: var(--space-6);
    margin-bottom: var(--space-8);
}

.footer-statement h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: var(--space-3);
}

.footer-statement p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
    padding: var(--space-6) 0;
    border-top: 1px solid var(--slate-800);
    border-bottom: 1px solid var(--slate-800);
}

.badge {
    background: linear-gradient(135deg, var(--primary-red-dark) 0%, var(--primary-red) 100%);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: var(--rounded-lg);
    font-size: 0.875rem;
    font-weight: 600;
}

.footer-end {
    text-align: center;
}

.footer-end p {
    margin-bottom: var(--space-2);
    font-size: 0.875rem;
}

.footer-small {
    font-size: 0.8125rem;
    color: var(--slate-600);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cards-grid,
    .law-grid,
    .operators-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    .nav {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .btn,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
    
    .dual-grid,
    .tools-grid,
    .help-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
}
