/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-blue: #1E40AF;
    --color-red: #DC2626;
    --color-gray: #6B7280;
    --color-green: #059669;
    --color-purple: #7C3AED;
    --color-dark: #111827;
    --color-light: #F9FAFB;
    --color-white: #FFFFFF;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Roboto Mono', monospace;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background: var(--color-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-full {
    width: 100%;
    padding: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-dark) 0%, #1F2937 100%);
    color: var(--color-white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-decline {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--color-green);
    color: white;
}

.btn-accept:hover {
    background: #047857;
    transform: translateY(-2px);
}

.btn-decline {
    background: transparent;
    color: white;
    border: 2px solid var(--color-gray);
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-purple) 100%);
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-white);
    font-weight: 700;
    font-size: 20px;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: var(--font-mono);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    width: 28px;
    height: 3px;
    background: var(--color-white);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 15px;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-purple) 100%);
    color: var(--color-white);
    padding: 100px 20px 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 60px;
    opacity: 0.95;
    font-weight: 400;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon svg {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
    color: var(--color-white);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    font-family: var(--font-mono);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Section Styles */
.section {
    padding: 80px 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--color-gray);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Threat Categories */
.threats-section {
    background: var(--color-white);
}

.threat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.threat-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 30px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
    position: relative;
}

.threat-card:hover {
    border-color: var(--color-blue);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.15);
    transform: translateY(-5px);
}

.threat-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.threat-icon svg {
    width: 100%;
    height: 100%;
    color: var(--color-blue);
}

.threat-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.threat-level {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.threat-level-critical {
    background: rgba(220, 38, 38, 0.1);
    color: var(--color-red);
}

.threat-level-high {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
}

.threat-level-medium {
    background: rgba(250, 204, 21, 0.1);
    color: #FACC15;
}

.threat-description {
    color: var(--color-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.threat-features {
    list-style: none;
    padding: 0;
}

.threat-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--color-gray);
    font-size: 14px;
}

.threat-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: 700;
}

/* Solutions Section */
.solutions-section {
    background: linear-gradient(135deg, #F9FAFB 0%, #E5E7EB 100%);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.solution-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.solution-header {
    padding: 30px;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-purple) 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 16px;
}

.solution-icon svg {
    width: 48px;
    height: 48px;
    color: var(--color-white);
}

.solution-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.solution-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.solution-description {
    padding: 24px 30px;
    color: var(--color-gray);
    line-height: 1.7;
}

.solution-features {
    padding: 0 30px 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
}

.feature-icon {
    color: var(--color-green);
    font-weight: 700;
    font-size: 18px;
}

/* Monitoring Section */
.monitoring-section {
    background: var(--color-dark);
    color: var(--color-white);
}

.monitoring-section .section-title,
.monitoring-section .section-subtitle {
    color: var(--color-white);
}

.monitoring-section .section-subtitle {
    opacity: 0.8;
}

.monitoring-dashboard {
    display: grid;
    gap: 40px;
}

.dashboard-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.dashboard-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.dashboard-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.monitor-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.monitor-card h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    opacity: 0.9;
    font-weight: 600;
}

.monitor-value {
    font-size: 36px;
    font-weight: 800;
    font-family: var(--font-mono);
    margin-bottom: 8px;
    color: var(--color-green);
}

.monitor-trend {
    font-size: 13px;
    opacity: 0.8;
}

.trend-down {
    color: var(--color-green);
}

.trend-up {
    color: var(--color-green);
}

.trend-stable {
    color: var(--color-white);
}

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

.monitor-feature {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.monitor-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--color-purple);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
}

.feature-icon-wrapper svg {
    width: 100%;
    height: 100%;
    color: var(--color-purple);
}

.monitor-feature h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.monitor-feature p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Simulator Section */
.simulator-section {
    background: var(--color-white);
}

.simulator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.simulator-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.simulator-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.simulator-controls h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.simulator-controls > p {
    color: var(--color-gray);
    margin-bottom: 30px;
}

.simulation-types {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sim-type {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #F9FAFB;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
}

.sim-type:hover {
    border-color: var(--color-blue);
    background: white;
}

.sim-icon {
    flex-shrink: 0;
}

.sim-icon svg {
    width: 48px;
    height: 48px;
    color: var(--color-blue);
}

.sim-info {
    flex: 1;
}

.sim-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.sim-info p {
    color: var(--color-gray);
    font-size: 14px;
    margin-bottom: 12px;
}

.btn-sim {
    padding: 10px 20px;
    background: var(--color-blue);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.btn-sim:hover {
    background: var(--color-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.simulator-results {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1F2937 100%);
    border-radius: 12px;
    padding: 30px;
    color: var(--color-white);
}

.simulator-results h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.results-placeholder {
    text-align: center;
    padding: 60px 20px;
}

.results-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: rgba(255, 255, 255, 0.3);
}

.results-placeholder p {
    color: rgba(255, 255, 255, 0.6);
}

/* Breach Monitoring Section */
.breach-section {
    background: linear-gradient(135deg, #F9FAFB 0%, #E5E7EB 100%);
}

.breach-content {
    max-width: 1200px;
    margin: 0 auto;
}

.breach-info {
    display: grid;
    gap: 40px;
}

.breach-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.breach-feature {
    background: var(--color-white);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
}

.breach-feature:hover {
    border-color: var(--color-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
}

.breach-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
}

.breach-icon svg {
    width: 100%;
    height: 100%;
    color: var(--color-purple);
}

.breach-feature h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.breach-feature p {
    color: var(--color-gray);
    line-height: 1.7;
}

/* Recommendations Section */
.recommendations-section {
    background: var(--color-white);
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.rec-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.rec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.rec-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--color-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    font-family: var(--font-mono);
    z-index: 1;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.rec-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.rec-card h3 {
    font-size: 22px;
    font-weight: 700;
    padding: 24px 24px 12px;
    color: var(--color-dark);
}

.rec-card p {
    padding: 0 24px 24px;
    color: var(--color-gray);
    line-height: 1.7;
}

/* Emergency Protocols Section */
.protocols-section {
    background: linear-gradient(135deg, var(--color-red) 0%, #B91C1C 100%);
    color: var(--color-white);
}

.protocols-section .section-title,
.protocols-section .section-subtitle {
    color: var(--color-white);
}

.protocols-section .section-subtitle {
    opacity: 0.9;
}

.protocols-wrapper {
    display: grid;
    gap: 40px;
}

.protocol-primary {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.protocol-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.emergency-hotline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 100%);
    padding: 40px;
    text-align: center;
}

.hotline-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.hotline-icon svg {
    width: 100%;
    height: 100%;
    color: var(--color-white);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.emergency-hotline h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hotline-number {
    font-size: 48px;
    font-weight: 800;
    font-family: var(--font-mono);
    margin-bottom: 12px;
    color: var(--color-white);
}

.emergency-hotline p {
    opacity: 0.9;
}

.protocol-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.protocol-step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.step-header {
    margin-bottom: 20px;
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.step-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
}

.step-detect {
    background: var(--color-blue);
}

.step-contain {
    background: #F97316;
}

.step-eradicate {
    background: var(--color-red);
}

.step-recover {
    background: var(--color-green);
}

.step-header h4 {
    font-size: 20px;
    font-weight: 700;
}

.protocol-step ul {
    list-style: none;
    padding: 0;
}

.protocol-step li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    opacity: 0.9;
}

.protocol-step li:before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* Technology Section */
.tech-section {
    background: var(--color-white);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.tech-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #E5E7EB;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.2);
    border-color: var(--color-purple);
}

.tech-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.tech-content {
    padding: 30px;
}

.tech-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.tech-content p {
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.tech-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-spec {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--color-purple);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #F9FAFB 0%, #E5E7EB 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--color-white);
    padding: 24px;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--color-blue);
    transform: translateX(5px);
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-purple) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-dark);
}

.contact-item p {
    color: var(--color-gray);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--color-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-dark);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--color-blue);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-purple) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: var(--color-white);
}

.map-section .section-title {
    margin-bottom: 40px;
}

.map-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1F2937 100%);
    color: var(--color-white);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.footer-logo img {
    width: 32px;
    height: 32px;
}

.footer-logo span {
    font-family: var(--font-mono);
    font-weight: 700;
}

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

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-white);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.7;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-purple) 100%);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 500px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .mobile-menu-toggle.active .hamburger:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .hamburger:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .threat-grid,
    .solutions-grid,
    .recommendations-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .simulator-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .dashboard-overlay {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero {
        padding: 60px 20px 50px;
    }

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

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

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 50px 20px;
    }

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

    .hotline-number {
        font-size: 32px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner,
    .mobile-menu-toggle {
        display: none;
    }
}

