:root {
    --bg-dark: #0a0a0a;
    --bg-card: rgba(25, 25, 25, 0.6);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-red: #ff3b3b;
    --accent-red-glow: rgba(255, 59, 59, 0.4);
    --accent-blue: #00f0ff; /* Cyberpunk cyan */
    --border-color: rgba(255, 255, 255, 0.1);
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --glass-blur: 10px;
}

/* Reset & Basics */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.background-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    z-index: -1;
}

.scanline {
    width: 100%;
    height: 5px;
    background: rgba(255, 59, 59, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    animation: scanline 8s linear infinite;
    pointer-events: none;
    z-index: 9999;
}

@keyframes scanline {
    0% { top: -10vh; }
    100% { top: 110vh; }
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 1px;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1rem;
    position: relative;
    color: var(--text-primary);
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 var(--accent-red);
    clip-path: inset(44% 0 61% 0);
    animation: glitch-anim-1 2.5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 var(--accent-blue);
    clip-path: inset(12% 0 55% 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% { clip-path: inset(20% 0 80% 0); }
    20% { clip-path: inset(60% 0 10% 0); }
    40% { clip-path: inset(40% 0 50% 0); }
    60% { clip-path: inset(80% 0 5% 0); }
    80% { clip-path: inset(10% 0 70% 0); }
    100% { clip-path: inset(30% 0 20% 0); }
}

@keyframes glitch-anim-2 {
    0% { clip-path: inset(15% 0 60% 0); }
    20% { clip-path: inset(50% 0 30% 0); }
    40% { clip-path: inset(25% 0 35% 0); }
    60% { clip-path: inset(65% 0 15% 0); }
    80% { clip-path: inset(5% 0 85% 0); }
    100% { clip-path: inset(35% 0 45% 0); }
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(var(--glass-blur));
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.text-red { color: var(--accent-red); }

.nav-cta {
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid var(--accent-red);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--accent-red);
    box-shadow: 0 0 15px var(--accent-red-glow);
}

/* Layout */
.container {
    max-width: 1400px; /* Wider for modern look */
    margin: 0 auto;
    padding: 0 2rem;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge-alert {
    display: inline-block;
    background: rgba(255, 59, 59, 0.1);
    color: var(--accent-red);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border: 1px solid var(--accent-red);
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

.btn {
    display: inline-flex;
    flex-direction: column;
    background: var(--accent-red);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    transition: transform 0.2s;
}

.btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px var(--accent-red-glow);
}

.btn-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.btn-sub {
    font-size: 0.8rem;
    opacity: 0.8;
}

.trust-indicator {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Slider / Hero Visual */
.hero-visual {
    position: relative;
    width: 100%;
    height: 500px; /* Fixed height for slider */
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none; /* Allow click through if needed, though mainly visual */
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    border-left: 3px solid var(--accent-red);
    backdrop-filter: blur(5px);
    max-width: 80%;
}

.slide-caption h3 {
    color: var(--accent-red);
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.slide-caption p {
    font-size: 1rem;
    margin: 0;
    color: white;
}


/* Hero Image & Tilt */
.image-frame {
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    filter: grayscale(100%) contrast(1.2);
    transition: filter 0.5s;
}

.image-frame:hover .hero-img {
    filter: grayscale(0%) contrast(1);
}

.overlay-red {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, rgba(255,0,0,0.2), transparent);
    pointer-events: none;
    border-radius: 12px;
    mix-blend-mode: overlay;
}

/* Stat Section */
.stat-section {
    padding: 6rem 0;
}

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.stat-number {
    font-size: 6rem;
    color: var(--accent-red);
    line-height: 1;
}

.stat-desc {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.stat-divider {
    width: 1px;
    height: 100px;
    background: var(--border-color);
    display: none;
}
@media (min-width: 768px) { .stat-divider { display: block; } }

.stat-message {
    flex: 1;
}

.stat-message h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Story Section */
.story-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-dark), #111);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-visual {
    position: relative;
    order: 2; /* Image on right for desktop */
}
@media (max-width: 768px) { .story-visual { order: 1; } }

.story-img {
    width: 100%;
    border-radius: 8px;
    filter: sepia(50%) hue-rotate(-50deg) saturate(300%) contrast(1.2);
}

.line-marker {
    width: 50px;
    height: 4px;
    background: var(--accent-red);
    margin-bottom: 2rem;
}

.story-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.status-offline {
    color: var(--accent-red);
    border: 1px solid var(--accent-red);
    padding: 2px 6px;
    font-size: 0.8rem;
    border-radius: 2px;
    margin-left: 10px;
}

.highlight-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    border-left: 3px solid var(--accent-red);
    padding-left: 1rem;
    margin-top: 2rem;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.section-header h2 {
    font-size: 3rem;
    white-space: nowrap;
}

.header-line {
    width: 100%;
    height: 1px;
    background: var(--border-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.service-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0.9;
    mix-blend-mode: screen; /* Helps blend black backgrounds */
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 0 25px var(--accent-blue);
}

.price-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-red);
    margin: 1rem 0;
}

.btn-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    transition: color 0.3s;
}

.btn-link:hover {
    color: white;
}

.services-visual-banner {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
}

.services-visual-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.visual-text {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    text-shadow: 0 2px 10px black;
}

/* Prevention Pillar */
.prevention-pillar {
    padding: 4rem 0;
    margin-top: -50px; /* Overlap with hero slightly */
    position: relative;
    z-index: 10;
}

.pillar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.badge-blue {
    display: inline-block;
    color: var(--accent-blue);
    border: 1px solid var(--accent-blue);
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.pillar-features {
    margin: 2rem 0;
}

.p-feature {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.p-feature h4 {
    color: var(--accent-blue);
    margin-bottom: 0.2rem;
}

.btn-blue {
    background: var(--accent-blue);
    color: black;
    font-weight: 700;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s;
}

.btn-blue:hover {
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    transform: translateY(-2px);
}

.pillar-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.1);
}

/* B2B Section */
.b2b-section {
    padding: 6rem 0;
}

.b2b-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem;
}

.b2b-img {
    width: 100%;
    border-radius: 8px;
    filter: brightness(0.7) cyan;
}

.b2b-list {
    list-style: none;
    margin: 2rem 0;
}

.b2b-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.b2b-list li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}

@media (max-width: 992px) {
    .pillar-grid, .b2b-grid {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    .pillar-visual {
        order: -1;
    }
}

/* Gift Section */
.gift-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 100%);
}

.gift-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    border: 1px solid rgba(255, 59, 59, 0.2);
    background: linear-gradient(135deg, rgba(25,25,25,0.8) 0%, rgba(10,10,10,0.8) 100%);
}

.badge-gift {
    display: inline-block;
    color: var(--accent-blue);
    border: 1px solid var(--accent-blue);
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.gift-features {
    list-style: none;
    margin: 2rem 0;
}

.gift-features li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.gift-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

@media (max-width: 768px) {
    .gift-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .gift-features {
        text-align: left;
        display: inline-block;
    }
}

/* Partners & Footer */
.partners-section {
    padding: 6rem 0;
    background: #111;
    border-top: 1px solid var(--border-color);
}

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

.btn-secondary {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    border: 1px solid var(--border-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: black;
}

footer {
    padding: 4rem 0;
    background: black;
    border-top: 1px solid #222;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h4 {
    color: var(--accent-red);
    font-size: 1.5rem;
}

.footer-eu {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #111;
    padding: 1rem;
    border-radius: 8px;
}

.eu-logo {
    height: 40px;
    width: auto;
}

.eu-text {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    line-height: 1.2;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-grid, .story-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-sub {
        margin: 0 auto 2rem;
    }
    
    .stat-number {
        font-size: 4rem;
    }
    
    .glass-nav {
        padding: 1rem;
    }
    
    .footer-grid {
        flex-direction: column;
        text-align: center;
    }
}
