/* ========== HERO ========== */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 200px;
    padding-bottom: 72px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(circle, rgba(43, 92, 135, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}
.hero h1 { margin-bottom: 20px; }
.hero-subtitle {
    font-size: 1.2rem;
    color: #9ba3b9;
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
}

/* ========== INTRO SECTION ========== */
.wa-intro {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #9ba3b9;
    line-height: 1.9;
}
.wa-intro p { margin-bottom: 20px; }
.wa-intro strong { color: #c4c9d6; }

/* ========== STAT GRIDS (reused from index) ========== */
.wa-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 48px 0;
}
.wa-stat {
    background: rgba(43, 92, 135, 0.06);
    border: 1px solid rgba(43, 92, 135, 0.15);
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
}
.wa-stat-number {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #6bb8ff;
    line-height: 1;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}
.wa-stat-label {
    font-size: 0.88rem;
    color: #c4c9d6;
    line-height: 1.5;
    margin-bottom: 6px;
    font-weight: 500;
}
.wa-stat-source {
    font-size: 0.72rem;
    color: #8b92a8;
    font-style: italic;
}

/* ========== LEGAL SECTION ========== */
.wa-legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}
.wa-legal-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 32px;
}
.wa-legal-card h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: #fff;
}
.wa-legal-card p {
    font-size: 0.9rem;
    color: #9ba3b9;
    line-height: 1.75;
}
.wa-legal-card .wa-card-icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

/* ========== WCAG LEVELS ========== */
.wcag-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.wcag-level {
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
}
.wcag-level-a {
    background: rgba(107, 184, 255, 0.04);
    border: 1px solid rgba(107, 184, 255, 0.12);
}
.wcag-level-aa {
    background: rgba(78, 203, 113, 0.05);
    border: 1px solid rgba(78, 203, 113, 0.2);
}
.wcag-level-aaa {
    background: rgba(245, 158, 11, 0.04);
    border: 1px solid rgba(245, 158, 11, 0.1);
}
.wcag-level-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.wcag-level-a .wcag-level-badge {
    background: rgba(107, 184, 255, 0.12);
    color: #6bb8ff;
}
.wcag-level-aa .wcag-level-badge {
    background: rgba(78, 203, 113, 0.15);
    color: #4ecb71;
}
.wcag-level-aa .wcag-recommended {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(78, 203, 113, 0.15);
    color: #4ecb71;
    border: 1px solid rgba(78, 203, 113, 0.25);
}
.wcag-level-aaa .wcag-level-badge {
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
}
.wcag-level h3 { font-size: 1.1rem; margin-bottom: 8px; }
.wcag-level-tagline {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.wcag-level-a .wcag-level-tagline { color: #6bb8ff; }
.wcag-level-aa .wcag-level-tagline { color: #4ecb71; }
.wcag-level-aaa .wcag-level-tagline { color: #f59e0b; }
.wcag-level p {
    font-size: 0.88rem;
    color: #9ba3b9;
    line-height: 1.75;
    margin-bottom: 16px;
}
.wcag-criteria-count {
    font-size: 0.8rem;
    color: #8b92a8;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}
.wcag-examples {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.wcag-example {
    font-size: 0.8rem;
    color: #8b92a8;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    line-height: 1.5;
}
.wcag-example::before {
    content: '→';
    color: #8b92a8;
    flex-shrink: 0;
}

/* ========== OVERLAYS SECTION ========== */
.overlay-warning {
    background: rgba(239, 68, 68, 0.04);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 20px;
    padding: 48px;
    margin-top: 48px;
}
.overlay-warning-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.overlay-warning-icon {
    font-size: 2rem;
    flex-shrink: 0;
}
.overlay-warning h3 {
    font-size: 1.3rem;
    color: #ef4444;
    margin-bottom: 4px;
}
.overlay-warning-subtitle {
    font-size: 0.9rem;
    color: #8b92a8;
}
.overlay-warning p {
    font-size: 1rem;
    color: #9ba3b9;
    line-height: 1.85;
    margin-bottom: 20px;
}
.overlay-myths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}
.overlay-myth {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    padding: 20px;
}
.overlay-myth-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #ef4444;
    margin-bottom: 8px;
}
.overlay-truth-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #4ecb71;
    margin-bottom: 8px;
}
.overlay-myth-text {
    font-size: 0.88rem;
    color: #9ba3b9;
    line-height: 1.6;
}

/* ========== PATH FORWARD / CTA ========== */
.wa-path {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.wa-path h2 { margin-bottom: 20px; }
.wa-path p {
    font-size: 1.05rem;
    color: #9ba3b9;
    line-height: 1.85;
    margin-bottom: 32px;
}
.wa-path-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 48px 0;
    text-align: left;
}
.wa-path-step {
    background: rgba(43, 92, 135, 0.06);
    border: 1px solid rgba(43, 92, 135, 0.15);
    border-radius: 14px;
    padding: 28px 24px;
}
.wa-path-step-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2b5c87, #3a7bc8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 16px;
    flex-shrink: 0;
}
.wa-path-step h4 { font-size: 0.95rem; margin-bottom: 8px; }
.wa-path-step p { font-size: 0.85rem; color: #9ba3b9; line-height: 1.65; margin: 0; }

/* ========== SECTION ALTERNATES ========== */
.section-alt { background: #0d1222; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .wa-stats { grid-template-columns: repeat(2, 1fr); }
    .wcag-grid { grid-template-columns: 1fr; }
    .wa-legal-grid { grid-template-columns: 1fr; }
    .wa-path-steps { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .hero { padding-top: 120px; padding-bottom: 48px; }
    .wa-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .overlay-myths { grid-template-columns: 1fr; }
    .overlay-warning { padding: 28px 20px; }
}
