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

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html, body {
    width: 100%;
    min-height: 100%;
    background:
        linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)),
        url('../images/663910607_977507174700059_2109660712684329952_n.webp') center / cover no-repeat;
    color: #1f2937;
    overflow-x: hidden;
    overflow-y: auto;
}

.reporter-v5 {
    background:
        radial-gradient(circle at 12% 18%, rgba(239, 68, 68, 0.08) 0, transparent 34%),
        radial-gradient(circle at 86% 82%, rgba(30, 64, 175, 0.08) 0, transparent 36%),
        linear-gradient(rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.62)),
        url('../images/663910607_977507174700059_2109660712684329952_n.webp') center / cover no-repeat;
}

.reporter-v5 .hero,
.reporter-v5 .features,
.reporter-v5 .how-it-works,
.reporter-v5 .stats,
.reporter-v5 .faq,
.reporter-v5 .cta-final {
    backdrop-filter: saturate(1.05);
}

.reporter-home-v5 .hero,
.reporter-overview-v5 .hero,
.reporter-announcements-v5 .hero,
.reporter-evacuation-v5 .hero,
.reporter-hazard-v5 .hero {
    border-bottom-color: #dbe2ea;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    padding: 12px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.nav-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand-text {
    font-size: 18px;
    font-weight: 800;
    color: #000;
    letter-spacing: -0.5px;
    line-height: 1;
}

.brand-sub {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: none;
}

@media (min-width: 768px) {
    .brand-sub {
        display: inline;
    }
}

.nav-links {
    display: flex;
    gap: 32px;
    flex: 1;
}

.nav-main {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    flex: 1;
}

.nav-main-auth {
    justify-content: flex-end;
}

.nav-links-dropdown {
    position: relative;
}

.nav-links-toggle {
    border: 1px solid #d1d5db;
    background: #fff;
    color: #374151;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.nav-links-dropdown.open .nav-links-toggle {
    border-color: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.15);
}

.nav-links-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.12);
    padding: 6px;
    display: none;
    z-index: 1002;
}

.nav-links-dropdown.open .nav-links-menu {
    display: grid;
    gap: 4px;
}

.nav-links-item {
    display: block;
    border: 0;
    border-radius: 8px;
    padding: 8px 10px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: #374151;
    text-decoration: none;
    background: #fff;
    cursor: pointer;
    width: 100%;
}

.nav-links-item:hover {
    background: #f9fafb;
}

.nav-links-item-cta {
    background: #ef4444;
    color: #fff;
}

.nav-links-item-cta:hover {
    background: #dc2626;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #374151;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.navbar.mobile-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar.mobile-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.navbar.mobile-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 8px 0;
}

.nav-link:hover {
    color: #ef4444;
}

.nav-link-alert {
    color: #dc2626;
    font-weight: 700;
}

.nav-logout-form {
    margin: 0;
}

.nav-welcome {
    margin: 0;
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid #fde68a;
    background: #fffbeb;
    color: #92400e;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.nav-welcome-mobile {
    display: none;
    margin: 0;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid #fde68a;
    background: #fffbeb;
    color: #92400e;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 56vw;
}

.nav-status {
    position: relative;
}

.nav-status-btn {
    border: 1px solid #d1d5db;
    background: #fff;
    color: #374151;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.nav-status.open .nav-status-btn {
    border-color: #f59e0b;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.15);
}

.nav-status-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.12);
    padding: 6px;
    display: none;
    z-index: 1002;
}

.nav-status.open .nav-status-menu {
    display: grid;
    gap: 4px;
}

.nav-status-item {
    border: 0;
    border-radius: 8px;
    padding: 8px 10px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: #374151;
    background: #fff;
    cursor: pointer;
}

.nav-status-item:hover {
    background: #f9fafb;
}

.nav-status-item:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    background: #f3f4f6;
}

.nav-cta {
    background: #ef4444;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-cta:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

@media (max-width: 768px) {
    .nav-brand-link {
        gap: 6px;
    }

    .nav-brand-link .brand-text {
        display: inline;
        font-size: 14px;
        letter-spacing: -0.2px;
    }

    .nav-brand-link .brand-logo {
        width: 40px;
        height: 40px;
    }

    .nav-wrapper {
        gap: 12px;
    }

    .nav-main {
        position: absolute;
        top: calc(100% + 8px);
        left: 12px;
        right: 12px;
        display: none;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 12px;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
        z-index: 1001;
        max-height: none;
        overflow: visible;
    }

    .navbar.mobile-open .nav-main {
        display: grid;
        gap: 12px;
        justify-content: stretch;
        align-content: start;
        align-items: stretch;
        justify-items: stretch;
    }

    .nav-main-auth {
        justify-content: stretch;
        align-items: stretch;
    }

    .nav-links {
        display: grid;
        gap: 2px;
    }

    .nav-link {
        padding: 9px 10px;
        border-radius: 8px;
    }

    .nav-link:hover {
        background: #f9fafb;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .navbar.navbar-auth .nav-welcome-mobile {
        display: block;
        margin-left: auto;
        max-width: 30vw;
    }

    .navbar.navbar-auth .nav-toggle {
        margin-left: 8px;
    }

    .nav-welcome-mobile {
        display: none;
    }

    .nav-main .nav-welcome {
        display: none;
    }

    .nav-cta {
        display: inline-block;
        width: 100%;
        text-align: center;
        padding: 11px 14px;
    }

    .nav-welcome {
        border-radius: 8px;
        text-align: center;
    }

    .nav-status {
        width: 100%;
        justify-self: stretch;
    }

    .nav-links-dropdown {
        width: 100%;
        justify-self: stretch;
    }

    .nav-links-toggle {
        display: block;
        width: 100%;
        min-height: 40px;
        border-radius: 10px;
        text-align: center;
        font-size: 13px;
        font-weight: 700;
    }

    .nav-links-menu {
        display: none;
        gap: 6px;
        position: static;
        margin-top: 8px;
        width: 100%;
        border: 1px solid #e5e7eb;
        padding: 6px;
        border-radius: 10px;
        background: #fff;
        box-shadow: none;
        max-height: min(52vh, 360px);
        overflow-y: auto;
    }

    .nav-links-dropdown.open .nav-links-menu {
        display: grid;
    }

    .nav-links-item {
        border-radius: 8px;
        padding: 10px 12px;
        font-size: 14px;
    }

    .nav-status-btn {
        width: 100%;
        min-height: 40px;
        border-radius: 10px;
        text-align: center;
    }

    .nav-status-menu {
        position: static;
        margin-top: 6px;
        width: 100%;
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        padding: 6px;
        box-shadow: none;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    margin-top: 60px;
    padding: 60px 16px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.82) 0%, rgba(255, 255, 255, 0.82) 100%);
    border-bottom: 1px solid #e5e7eb;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    font-weight: 500;
}

.trust-indicators {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.trust-item {
    padding: 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.trust-label {
    font-size: 13px;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-desc {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

.hero-cta-wrapper {
    margin-top: 16px;
    width: 100%;
}

.emergency-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 40px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
    width: 100%;
    min-height: 140px;
}

.emergency-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(239, 68, 68, 0.4);
}

.cta-bolt {
    font-size: 24px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cta-main {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.cta-sub {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

.secondary-cta {
    display: inline-block;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.secondary-cta:hover {
    border-bottom-color: #3b82f6;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.92);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #ef4444;
}

.stat-label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .stat-card {
        padding: 14px;
    }
    
    .stat-number {
        font-size: 24px;
    }
}

/* ============================================
   SECTIONS
   ============================================ */
.section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

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

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 16px;
    color: #6b7280;
    font-weight: 500;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.82);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #ef4444;
}

.feature-number {
    font-size: 36px;
    font-weight: 800;
    color: #ef4444;
    margin-bottom: 12px;
    opacity: 0.8;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.feature-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 80px 0;
    background: rgba(248, 250, 252, 0.82);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-number {
    width: 56px;
    height: 56px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 16px;
}

.step-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.step-text {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

.step-arrow {
    font-size: 28px;
    color: #ef4444;
    font-weight: 700;
    margin: 0 12px;
}

@media (max-width: 640px) {
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
}

/* ============================================
   EMERGENCY FOCUS
   ============================================ */
.emergency-focus {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.82);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.focus-item {
    padding: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #f3f4f6;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.focus-item:hover {
    border-color: #ef4444;
    background: #fef2f2;
}

.focus-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}

.focus-title {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.focus-text {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
.statistics {
    padding: 80px 0;
    background: rgba(248, 250, 252, 0.82);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.stat-box {
    padding: 20px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.stat-top {
    margin-bottom: 12px;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: #ef4444;
}

.stat-variety {
    display: flex;
    gap: 12px;
}

.variety-safe,
.variety-moderate,
.variety-critical {
    font-size: 18px;
    font-weight: 700;
}

.variety-safe {
    color: #10b981;
}

.variety-moderate {
    color: #f59e0b;
}

.variety-critical {
    color: #ef4444;
}

.stat-name {
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
}

.stat-bar {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
}

.stat-fill-75 {
    width: 75%;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.insight-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.insight-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.insight-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.insight-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.insight-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.insight-bar {
    height: 6px;
    background: #f3f4f6;
    border-radius: 2px;
    overflow: hidden;
}

.insight-fill {
    height: 100%;
    background: linear-gradient(90deg, #ef4444 0%, #fca5a5 100%);
}

.insight-fill-55 {
    width: 55%;
}

.insight-fill-41 {
    width: 41%;
}

.insight-fill-7 {
    width: 7%;
}

.insight-count {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 600;
}

.need-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}

.need-label {
    font-weight: 600;
    color: #374151;
}

.need-count {
    font-weight: 700;
    color: #ef4444;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    padding: 60px 16px;
    background: #000;
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.cta-text {
    font-size: 16px;
    color: #d1d5db;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.emergency-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

.emergency-cta-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(239, 68, 68, 0.5);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 60px 16px 20px;
    border-top: 1px solid #374151;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #374151;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-text {
    font-size: 13px;
    line-height: 1.5;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ef4444;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero {
        padding: 40px 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-desc {
        font-size: 14px;
    }
    
    .features,
    .how-it-works,
    .emergency-focus,
    .statistics {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        min-width: auto;
    }
    
    .brand-sub {
        display: none !important;
    }
    
    .nav-cta {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* ============================================
   REPORTER V5 PAGE OVERRIDES
   ============================================ */
.reporter-home-v5 .hero {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.94) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(254, 242, 242, 0.9) 100%);
    border-bottom: 1px solid #dbe2ea;
}

.reporter-home-v5 .hero-title,
.reporter-overview-v5 .section-title {
    color: #172b4d;
    letter-spacing: -1.1px;
}

.reporter-home-v5 .trust-item,
.reporter-home-v5 .stat-card,
.reporter-home-v5 .feature-card {
    border-radius: 14px;
    border-color: #dbe2ea;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.reporter-home-v5 .feature-card:hover {
    transform: translateY(-6px);
    border-color: #f87171;
    box-shadow: 0 20px 34px rgba(239, 68, 68, 0.16);
}

.reporter-home-v5 .emergency-cta {
    border-radius: 14px;
    background: linear-gradient(128deg, #ef4444 0%, #dc2626 48%, #b91c1c 100%);
}

.reporter-overview-v5 .statistics,
.reporter-overview-v5 .how-it-works,
.reporter-overview-v5 .emergency-focus,
.reporter-overview-v5 .final-cta {
    border-top: 1px solid #e5e7eb;
}

.reporter-overview-v5 .stat-box,
.reporter-overview-v5 .insight-card,
.reporter-overview-v5 .focus-item {
    border-radius: 14px;
    border-color: #dbe2ea;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.reporter-overview-v5 .step-number {
    background: linear-gradient(140deg, #ef4444, #b91c1c);
    box-shadow: 0 10px 18px rgba(239, 68, 68, 0.24);
}

.reporter-overview-v5 .final-cta {
    background: linear-gradient(145deg, #0f172a 0%, #111827 100%);
}
