:root {
    --primary-color: #003893;
    /* Nepal Deep Blue */
    --accent-color: #DC143C;
    /* Nepal Red */
    --white: #FFFFFF;
    --black: #1A1A1A;
    --light-gray: #F4F7FA;
    --dark-gray: #333333;
    --text-color: #333333;
    --bg-color: #FFFFFF;
    --transition: all 0.3s ease;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --max-width: 1200px;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] {
    --bg-color: #0f172a;
    --text-color: #f1f5f9;
    --light-gray: #1e293b;
    --dark-gray: #94a3b8;
    --black: #020617;
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 24px;
    z-index: 9999;
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 24px;
    outline: 2px solid var(--accent-color);
    outline-offset: 4px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s ease;
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: block;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-wrap .section-title {
    margin-bottom: 0;
}

.section-illustration {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: block;
}

.section-illustration svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 56, 147, 0.2));
}

.section-title-accent {
    position: relative;
    display: inline-block;
}

.section-title-accent::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 0;
    transition: padding 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: var(--bg-color);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.navbar .container,
.navbar .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    border-radius: 50%;
}

.logo:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 18px;
    border-radius: 999px;
    position: relative;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: var(--primary-color);
    background-color: rgba(0, 56, 147, 0.06);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

[data-theme="dark"] .nav-links a:hover {
    background-color: rgba(0, 56, 147, 0.15);
}

.nav-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-toggle {
    background: var(--light-gray);
    border: none;
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-toggle:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.btn-toggle:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.4rem;
    cursor: pointer;
    background: var(--light-gray);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.mobile-menu-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    text-align: center;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 56, 147, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.hero-cyber-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.4;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 4l-2 4h-4l3 3-1 4 4-2 4 2-1-4 3-3h-4l-2-4z' fill='%23003893' fill-opacity='0.15'/%3E%3C/svg%3E");
}

[data-theme="dark"] .hero-cyber-bg {
    opacity: 0.2;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 4l-2 4h-4l3 3-1 4 4-2 4 2-1-4 3-3h-4l-2-4z' fill='%2393c5fd' fill-opacity='0.2'/%3E%3C/svg%3E");
}

.hero-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-transform: uppercase;
}

[data-theme="dark"] .hero-tagline {
    color: #93c5fd;
}

.btn.btn-hero-report {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    /* This holds the red color */
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn.btn-hero-report:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.hero-illustration {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: block;
}

.hero-illustration svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(0, 56, 147, 0.25));
    animation: hero-shield-float 4s ease-in-out infinite;
}

@keyframes hero-shield-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 900;
    letter-spacing: -2px;
}

.hero .hero-subtext {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--dark-gray);
}

.hero-btns {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.btn {
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 14px rgba(0, 56, 147, 0.3);
}

.btn-primary:hover {
    background-color: #002c73;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 56, 147, 0.4);
}

.btn-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

.btn-block {
    display: block;
    width: 100%;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    padding: 28px 40px;
    border-radius: 20px;
    min-width: 160px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 56, 147, 0.25);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 0.95rem;
    margin: 0;
    font-weight: 600;
    color: var(--dark-gray);
}

.scroll-indicator {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
    transition: background 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-indicator:hover {
    background: #b91c1c;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(10px);
    }

    60% {
        transform: translateX(-50%) translateY(5px);
    }
}

/* Threat Cards Section */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

/* Threat Cards — smaller, unique compact style */
.threat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.threat-grid .card {
    background-color: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    padding: 24px 28px;
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-left: 4px solid transparent;
}

.threat-grid .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
}

.threat-grid .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border-left-color: var(--primary-color);
    border-color: rgba(0, 56, 147, 0.2);
}

.threat-grid .card:hover::before {
    opacity: 1;
}

.threat-grid .card-icon {
    font-size: 2.25rem;
    margin-bottom: 14px;
    display: inline-block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    background: rgba(0, 56, 147, 0.08);
    border-radius: 12px;
}

.threat-grid .card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.threat-grid .card p {
    color: var(--dark-gray);
    margin-bottom: 14px;
    font-size: 0.95rem;
    line-height: 1.55;
}

.threat-grid .expand-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.32, 0.72, 0.38, 1);
}

.threat-grid .expand-content.active {
    max-height: 220px;
}

.threat-grid .expand-content p {
    padding-top: 12px;
    border-top: 1px solid var(--glass-border);
    font-style: italic;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.threat-grid .btn-expand {
    font-size: 0.9rem;
}

/* Accordion — Digital Rights & Responsibilities */
.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 16px;
    border-radius: 20px;
    background: var(--bg-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.accordion-item:hover {
    border-color: rgba(0, 56, 147, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.accordion-item.is-open {
    border-color: rgba(0, 56, 147, 0.35);
    box-shadow: 0 12px 32px rgba(0, 56, 147, 0.12);
}

.accordion-header {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    user-select: none;
}

.accordion-header:hover {
    background-color: rgba(0, 56, 147, 0.03);
}

[data-theme="dark"] .accordion-header:hover {
    background-color: rgba(0, 56, 147, 0.08);
}

.accordion-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
    flex: 1;
}

.accordion-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 50%;
    color: var(--primary-color);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, color 0.3s ease;
}

.accordion-icon svg {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.is-open .accordion-icon {
    background: var(--primary-color);
    color: white;
}

.accordion-item.is-open .accordion-icon svg {
    transform: rotate(180deg);
}

/* Smooth height animation using grid — smooth dropdown */
.accordion-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s cubic-bezier(0.32, 0.72, 0.38, 1);
}

.accordion-item.is-open .accordion-body {
    grid-template-rows: 1fr;
}

.accordion-body-inner {
    overflow: hidden;
    min-height: 0;
}

.accordion-body-inner {
    padding: 0 28px;
}

.accordion-item.is-open .accordion-body-inner {
    padding: 0 28px 24px;
    border-top: 1px solid var(--glass-border);
    transition: padding 0.35s ease, border-color 0.35s ease;
}

.accordion-body p {
    color: var(--dark-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    padding-top: 4px;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.35s ease 0.08s, transform 0.35s cubic-bezier(0.32, 0.72, 0.38, 1) 0.08s;
}

.accordion-item.is-open .accordion-body p {
    opacity: 1;
    transform: translateY(0);
}

.accordion-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.35s ease 0.12s, transform 0.35s cubic-bezier(0.32, 0.72, 0.38, 1) 0.12s, color 0.3s ease;
}

.accordion-item.is-open .accordion-link {
    opacity: 1;
    transform: translateY(0);
}

.accordion-link:hover {
    color: var(--primary-color);
}

/* Report Section */
.report-section {
    position: relative;
    overflow: hidden;
}

.report-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 56, 147, 0.06) 0%, rgba(220, 20, 60, 0.04) 100%);
    z-index: 0;
}

[data-theme="dark"] .report-bg {
    background: linear-gradient(135deg, rgba(0, 56, 147, 0.15) 0%, rgba(220, 20, 60, 0.08) 100%);
}

.report-section .container {
    position: relative;
    z-index: 1;
}

.report-intro {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.report-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.report-card {
    background: var(--bg-color);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
}

.report-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: 0 16px 40px rgba(0, 56, 147, 0.15);
}

.report-card:hover::before {
    opacity: 1;
}

.report-card-phone:hover {
    border-color: #15803d;
}

.report-card-email:hover {
    border-color: var(--primary-color);
}

.report-card-address:hover {
    border-color: var(--accent-color);
}

.report-card-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.report-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
}

.report-card-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    word-break: break-word;
}

.report-card-desc {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

.report-steps {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px 40px;
    margin-bottom: 40px;
}

.report-steps-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.report-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.report-checklist li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    font-size: 1.05rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.report-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.report-cta {
    text-align: center;
    padding: 40px 24px;
    background: linear-gradient(135deg, var(--primary-color), #002c73);
    border-radius: 24px;
    color: white;
    box-shadow: 0 20px 50px rgba(0, 56, 147, 0.3);
}

.report-cta-text {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 24px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.btn-report {
    background: white;
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 16px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-report:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

/* Report Mailbox — cyber-themed message form */
.report-mailbox {
    max-width: 800px;
    margin: 64px auto 0;
    background: var(--bg-color);
    border: 2px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 56, 147, 0.12), 0 0 0 1px rgba(0, 56, 147, 0.06);
    position: relative;
}

.report-mailbox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.report-mailbox-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 32px 24px;
    background: linear-gradient(180deg, rgba(0, 56, 147, 0.06) 0%, transparent 100%);
    border-bottom: 1px solid var(--glass-border);
}

.report-mailbox-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 56, 147, 0.35);
}

.report-mailbox-icon svg {
    width: 26px;
    height: 26px;
}

.report-mailbox-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 6px;
}

.report-mailbox-subtitle {
    font-size: 0.9rem;
    color: var(--dark-gray);
    line-height: 1.5;
    margin: 0;
}

.report-mailbox-form {
    padding: 28px 32px 32px;
}

.report-mailbox-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .report-mailbox-row {
        grid-template-columns: 1fr;
    }
}

.report-mailbox-form .form-group {
    margin-bottom: 20px;
}

.report-mailbox-form select,
.report-mailbox-form input:not([type="file"]) {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    background: var(--bg-color);
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.report-mailbox-form select {
    cursor: pointer;
}

.report-mailbox-form select:focus,
.report-mailbox-form input:not([type="file"]):focus {
    outline: none;
    border-color: var(--primary-color);
}

.report-mailbox-form input[type="file"] {
    padding: 12px 14px;
    background: transparent;
    border: 2px dashed var(--dark-gray);
    cursor: pointer;
}

.report-mailbox-form input[type="file"]::file-selector-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    margin-right: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.report-mailbox-form input[type="file"]::file-selector-button:hover {
    background: #002c73;
}

.report-mailbox-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    background: var(--bg-color);
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.6;
    resize: vertical;
    min-height: 200px;
    transition: var(--transition);
}

.report-mailbox-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.report-mailbox-form .btn {
    margin-top: 8px;
}

.report-mailbox-message {
    margin: 0 32px 24px;
    padding: 16px;
    border-radius: 12px;
    font-weight: 500;
    text-align: center;
}

.report-mailbox-message.success {
    background: rgba(34, 197, 94, 0.15);
    color: #15803d;
}

[data-theme="dark"] .report-mailbox-message.success {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.report-mailbox-message.hidden {
    display: none !important;
}

/* Checklist */
.checklist {
    gap: 24px;
}

.checklist-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--glass-bg);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.checklist-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.check-box {
    background: var(--primary-color);
    color: white;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 1rem;
    box-shadow: 0 4px 8px rgba(0, 56, 147, 0.2);
}

.checklist-item h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}



/* Footer */
.footer {
    padding: 60px 0;
    background-color: var(--black);
    color: white;
    text-align: center;
}

.footer-links {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.bg-light {
    background-color: var(--light-gray);
}

.hidden {
    display: none !important;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-color);
        padding: 100px 40px;
        z-index: 999;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .stats {
        gap: 24px;
    }

    .stat-item {
        min-width: 140px;
        padding: 22px 28px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 60px 0;
    }
    .container {
        padding: 0 16px;
    }
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    .hero .hero-subtext {
        font-size: 1.05rem;
        margin-bottom: 32px;
    }
    .hero-illustration {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
    .section-illustration {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }
    .hero-btns {
        flex-direction: column;
        gap: 16px;
    }
    .hero-btns .btn {
        width: 100%;
    }
    .stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .stat-item {
        width: 100%;
        max-width: 100%;
        min-width: unset;
        padding: 20px;
    }
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    .threat-grid .card {
        padding: 20px;
    }
    .accordion-header {
        padding: 16px 20px;
        gap: 12px;
    }
    .accordion-question {
        font-size: 1rem;
    }
    .accordion-body-inner {
        padding: 0 20px;
    }
    .accordion-item.is-open .accordion-body-inner {
        padding: 0 20px 20px;
    }
    .checklist-item {
        padding: 20px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .checklist-item .check-box {
        margin: 0 auto;
    }
    .report-contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .report-card {
        padding: 20px;
    }
    .report-steps {
        padding: 24px 20px;
    }
    .report-cta {
        padding: 24px 20px;
    }
    .report-cta-text {
        font-size: 1.05rem;
    }
    .report-mailbox-header {
        padding: 24px 20px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .report-mailbox-form {
        padding: 24px 20px;
    }
    .report-mailbox-title {
        font-size: 1.25rem;
    }
    .footer {
        padding: 40px 0;
    }
    .footer-links {
        gap: 16px;
        flex-direction: column;
    }
}