:root {
    --deep-navy: #0F0B1F;
    --midnight-blue: #1A1530;
    --dark-purple: #2A1F4A;
    --polar-white: #F8FAFF;
    --frost-grey: #B8B4C6;
    --neon-purple: #8B5CF6;
    --bright-purple: #A855F7;
    --neon-cyan: #06B6D4;
    --neon-pink: #EC4899;
    --neon-blue: #3B82F6;
    --alert-red: #EF4444;
    --glass-bg: rgba(139, 92, 246, 0.08);
    --glass-border: rgba(139, 92, 246, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--deep-navy);
    color: var(--polar-white);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(180deg, #0F0B1F 0%, #1A1530 50%, #0F0B1F 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 19, 36, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    gap: 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--neon-purple);
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.nav-logo i {
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    color: var(--polar-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-purple);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--neon-purple);
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-download-nav {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--neon-purple), var(--bright-purple));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-download-nav:hover {
    background: linear-gradient(135deg, var(--bright-purple), var(--neon-purple));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.6);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--polar-white);
    border-radius: 3px;
    transition: all 0.3s;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.holographic-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, rgba(168, 85, 247, 0.15) 30%, rgba(6, 182, 212, 0.1) 50%, transparent 70%);
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.digital-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(139, 92, 246, 0.4), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(6, 182, 212, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(168, 85, 247, 0.3), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(236, 72, 153, 0.2), transparent);
    background-size: 200% 200%;
    animation: particlesFloat 15s ease-in-out infinite;
}

@keyframes particlesFloat {
    0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%, 80% 10%; }
    50% { background-position: 100% 100%, 0% 0%, 30% 70%, 20% 90%; }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 20px;
}

.hero-left {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--polar-white);
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease-out backwards;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }

.hero-subtitle {
    font-size: 18px;
    color: var(--frost-grey);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-features {
    list-style: none;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--polar-white);
}

.hero-features i {
    color: var(--neon-cyan);
    font-size: 18px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--neon-purple), var(--bright-purple));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--bright-purple), var(--neon-purple));
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
}

.btn-secondary {
    padding: 16px 32px;
    background: transparent;
    color: var(--neon-purple);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--neon-purple);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.app-badge {
    margin-bottom: 32px;
}

.app-badge img {
    height: 60px;
    width: auto;
    transition: transform 0.3s;
}

.app-badge img:hover {
    transform: scale(1.05);
}

.protection-pulse {
    margin-top: 20px;
}

.pulse-line {
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--neon-cyan) 20%, 
        var(--neon-purple) 40%, 
        var(--neon-pink) 60%, 
        transparent 100%);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.pulse-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.6) 50%, 
        transparent 100%);
    animation: pulseMove 3s linear infinite;
}

@keyframes pulseMove {
    0% { left: -100%; }
    100% { left: 200%; }
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.5s ease-out 0.5s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.phone-mockup {
    text-align: center;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1a2332, #0d1520);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 0 2px rgba(0, 216, 255, 0.3);
    position: relative;
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--midnight-blue) 0%, var(--deep-navy) 100%);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-ui {
    text-align: center;
    padding: 40px 20px;
}

.shield-circle {
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, rgba(6, 182, 212, 0.2) 50%, transparent 70%);
    border: 3px solid var(--neon-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.6), 0 0 40px rgba(6, 182, 212, 0.3); 
    }
    50% { 
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.8), 0 0 60px rgba(6, 182, 212, 0.5), 0 0 80px rgba(236, 72, 153, 0.3); 
    }
}

.shield-circle i {
    font-size: 80px;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.status-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.status-indicators {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.indicator {
    font-family: 'Roboto Mono', monospace;
    font-size: 13px;
    color: var(--frost-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.indicator .dot {
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    display: inline-block;
    animation: dotBlink 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--neon-cyan);
}

@keyframes dotBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.phone-caption {
    margin-top: 20px;
    font-size: 14px;
    color: var(--frost-grey);
    font-weight: 500;
}

.about-app {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--deep-navy) 0%, var(--midnight-blue) 50%, var(--deep-navy) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--polar-white);
}

.lead {
    font-size: 20px;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.6;
    font-weight: 600;
}

.about-text p {
    color: var(--frost-grey);
    margin-bottom: 20px;
    font-size: 16px;
}

.feature-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(139, 92, 246, 0.12);
    border-color: var(--neon-purple);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.feature-item i {
    font-size: 32px;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--polar-white);
}

.feature-item p {
    margin: 0;
    font-size: 15px;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-showcase {
    position: relative;
}

.phone-showcase img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.key-features {
    padding: 120px 0;
    background: var(--deep-navy);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--polar-white), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 18px;
    color: var(--frost-grey);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 40px 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s;
    text-align: center;
}

.feature-card:hover {
    background: rgba(139, 92, 246, 0.12);
    border-color: var(--neon-purple);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--neon-purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.feature-icon i {
    font-size: 36px;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--polar-white);
}

.feature-card p {
    color: var(--frost-grey);
    font-size: 15px;
    line-height: 1.6;
}

.realtime-protection {
    padding: 120px 0;
    background: var(--midnight-blue);
    position: relative;
    overflow: hidden;
}

.protection-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.protection-left h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.protection-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.protection-item {
    display: flex;
    gap: 20px;
}

.protection-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 216, 255, 0.2), rgba(103, 255, 213, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.protection-icon i {
    font-size: 28px;
    color: var(--cyber-aqua);
}

.protection-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--polar-white);
}

.protection-item p {
    color: var(--frost-grey);
    font-size: 14px;
    line-height: 1.6;
}

.protection-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.radar-system {
    position: relative;
    width: 300px;
    height: 300px;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--neon-purple);
    border-radius: 50%;
    opacity: 0.4;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.radar-1 {
    width: 100px;
    height: 100px;
    animation: radarPulse 3s ease-out infinite;
}

.radar-2 {
    width: 180px;
    height: 180px;
    animation: radarPulse 3s ease-out 0.5s infinite;
}

.radar-3 {
    width: 260px;
    height: 260px;
    animation: radarPulse 3s ease-out 1s infinite;
}

@keyframes radarPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

.radar-phone {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 2;
}

.radar-shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    color: var(--neon-purple);
    opacity: 0.15;
    animation: shieldRotate 20s linear infinite;
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.5));
}

@keyframes shieldRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.protection-right {
    display: flex;
    justify-content: center;
}

.stats-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--frost-grey);
}

.dashboard-preview {
    padding: 120px 0;
    background: var(--deep-navy);
}

.screenshots-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.screenshot-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.screenshot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 216, 255, 0.2);
}

.screenshot-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 16px;
}

.screenshot-label {
    text-align: center;
    font-size: 14px;
    color: var(--frost-grey);
    font-weight: 500;
}

.why-choose {
    padding: 120px 0;
    background: var(--midnight-blue);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.reason-card {
    background: var(--polar-white);
    color: var(--deep-navy);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 216, 255, 0.3);
}

.reason-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.reason-icon i {
    font-size: 36px;
    color: white;
}

.reason-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.reason-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.reviews {
    padding: 120px 0;
    background: var(--deep-navy);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--polar-white);
    color: var(--deep-navy);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 216, 255, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.review-stars {
    display: flex;
    gap: 4px;
}

.review-stars i {
    color: #FFB800;
    font-size: 16px;
}

.review-author {
    font-weight: 600;
    color: var(--deep-navy);
}

.review-text {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.review-date {
    font-size: 13px;
    color: #888;
}

.cta-download {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--midnight-blue), var(--deep-navy));
    text-align: center;
}

.cta-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    color: var(--frost-grey);
    margin-bottom: 40px;
}

.btn-large {
    font-size: 18px;
    padding: 20px 40px;
}

.cta-badge {
    margin-top: 30px;
}

.cta-badge img {
    height: 67px;
    width: auto;
}

.faq {
    padding: 120px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    color: var(--polar-white);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--neon-purple);
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--neon-purple);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--frost-grey);
    line-height: 1.7;
}

.footer {
    background: var(--deep-navy);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--neon-purple);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.footer-logo i {
    font-size: 28px;
}

.footer-about p {
    color: var(--frost-grey);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-company {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.footer-company h4 {
    color: var(--neon-purple);
    font-size: 16px;
    margin-bottom: 12px;
}

.footer-company p {
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-company a {
    color: var(--neon-cyan);
    text-decoration: none;
}

.footer-company a:hover {
    text-decoration: underline;
    color: var(--neon-purple);
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--polar-white);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--frost-grey);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--neon-purple);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyber-aqua);
    font-size: 18px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--cyber-aqua);
    color: var(--deep-navy);
    transform: translateY(-3px);
}

.footer-disclaimer {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.footer-disclaimer h4 {
    color: var(--neon-pink);
    font-size: 16px;
    margin-bottom: 12px;
}

.footer-disclaimer p {
    color: var(--frost-grey);
    font-size: 13px;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--frost-grey);
    font-size: 14px;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-right {
        order: -1;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .protection-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .screenshots-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 19, 36, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        transition: left 0.3s;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .btn-download-nav {
        display: none;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .phone-frame {
        width: 250px;
        height: 500px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshots-gallery {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
}

.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--midnight-blue), var(--deep-navy));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 216, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 216, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.page-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 20px;
    color: var(--frost-grey);
    position: relative;
    z-index: 1;
}

.about-content {
    padding: 80px 0;
    background: var(--midnight-blue);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.content-main {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.content-main h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--cyber-aqua);
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main p {
    color: var(--frost-grey);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.values-list {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(0, 216, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s;
}

.value-item:hover {
    background: rgba(0, 216, 255, 0.1);
    border-color: var(--cyber-aqua);
    transform: translateX(10px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 216, 255, 0.2), rgba(103, 255, 213, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 28px;
    color: var(--cyber-aqua);
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--polar-white);
}

.value-item p {
    margin: 0;
    font-size: 15px;
}

.cta-box {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 216, 255, 0.1), rgba(103, 255, 213, 0.1));
    border: 2px solid var(--cyber-aqua);
    border-radius: 16px;
    text-align: center;
}

.cta-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--polar-white);
}

.cta-box p {
    font-size: 16px;
    margin-bottom: 24px;
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.sidebar-card h3 {
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--cyber-aqua);
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 24px;
    color: var(--cyber-aqua);
    flex-shrink: 0;
    margin-top: 4px;
}

.info-item strong {
    display: block;
    color: var(--polar-white);
    margin-bottom: 4px;
    font-size: 14px;
}

.info-item p {
    color: var(--frost-grey);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 16px;
}

.quick-links li:last-child {
    margin-bottom: 0;
}

.quick-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--frost-grey);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    padding: 8px;
    border-radius: 8px;
}

.quick-links a:hover {
    color: var(--cyber-aqua);
    background: rgba(0, 216, 255, 0.1);
    transform: translateX(5px);
}

.quick-links i {
    font-size: 16px;
    color: var(--cyber-aqua);
}

.contact-page {
    padding: 80px 0;
    background: var(--midnight-blue);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 60px;
}

.contact-intro h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    margin-bottom: 16px;
}

.contact-intro p {
    font-size: 18px;
    color: var(--frost-grey);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-method {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.contact-method:hover {
    background: rgba(0, 216, 255, 0.08);
    border-color: var(--cyber-aqua);
    transform: translateY(-5px);
}

.contact-method-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0, 216, 255, 0.2), rgba(103, 255, 213, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method-icon i {
    font-size: 32px;
    color: var(--cyber-aqua);
}

.contact-method h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--polar-white);
}

.contact-method p {
    color: var(--frost-grey);
    font-size: 14px;
    line-height: 1.6;
}

.contact-form-section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.contact-form-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--polar-white);
    font-weight: 500;
    font-size: 15px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--polar-white);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--cyber-aqua);
    background: rgba(0, 216, 255, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    text-align: center;
    margin-top: 32px;
}

.form-submit .btn-primary {
    padding: 16px 48px;
}

.company-info {
    margin-top: 60px;
    padding: 40px;
    background: rgba(0, 216, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.company-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--cyber-aqua);
}

.company-info p {
    color: var(--frost-grey);
    line-height: 1.8;
    margin-bottom: 12px;
}

.company-info a {
    color: var(--cyber-aqua);
    text-decoration: none;
}

.company-info a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 80px 0;
    background: var(--midnight-blue);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.legal-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--cyber-aqua);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 16px;
    color: var(--polar-white);
}

.legal-content p {
    color: var(--frost-grey);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 15px;
}

.legal-content ul,
.legal-content ol {
    color: var(--frost-grey);
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-content strong {
    color: var(--polar-white);
}

.legal-content a {
    color: var(--cyber-aqua);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.last-updated {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--frost-grey);
    font-size: 14px;
}

@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 32px;
    }
    
    .content-main {
        padding: 30px 20px;
    }
    
    .contact-form-section {
        padding: 30px 20px;
    }
    
    .legal-content {
        padding: 30px 20px;
    }
}

.feature-details {
    padding: 120px 0;
    background: var(--deep-navy);
}

.detail-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    padding: 60px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.detail-section:last-child {
    margin-bottom: 0;
}

.detail-section.reverse {
    grid-template-columns: 0.8fr 1.2fr;
}

.detail-section.reverse .detail-content {
    order: 2;
}

.detail-section.reverse .detail-visual {
    order: 1;
}

.detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 216, 255, 0.2), rgba(103, 255, 213, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.detail-icon i {
    font-size: 40px;
    color: var(--cyber-aqua);
}

.detail-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--polar-white);
    line-height: 1.3;
}

.detail-content h3 {
    font-size: 22px;
    margin: 30px 0 20px;
    color: var(--cyber-aqua);
}

.detail-content p {
    color: var(--frost-grey);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.feature-benefits {
    list-style: none;
    margin: 20px 0;
}

.feature-benefits li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--frost-grey);
    line-height: 1.7;
    font-size: 15px;
}

.feature-benefits i {
    color: var(--cyber-mint);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-benefits strong {
    color: var(--polar-white);
}

.feature-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.showcase-card {
    background: linear-gradient(135deg, rgba(0, 216, 255, 0.1), rgba(103, 255, 213, 0.1));
    border: 2px solid var(--cyber-aqua);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 216, 255, 0.3);
}

.showcase-stat .stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--cyber-aqua);
    margin-bottom: 10px;
}

.showcase-stat .stat-text {
    font-size: 16px;
    color: var(--frost-grey);
}

.password-example {
    background: var(--midnight-blue);
    border: 2px solid var(--cyber-aqua);
    border-radius: 20px;
    padding: 40px;
}

.password-display {
    text-align: center;
}

.password-label {
    font-size: 14px;
    color: var(--frost-grey);
    margin-bottom: 20px;
}

.password-text {
    font-family: 'Roboto Mono', monospace;
    font-size: 24px;
    color: var(--cyber-aqua);
    background: rgba(0, 216, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    word-break: break-all;
}

.password-strength {
    margin-top: 20px;
}

.strength-bar {
    height: 8px;
    background: linear-gradient(90deg, var(--cyber-mint), var(--cyber-aqua));
    border-radius: 4px;
    margin-bottom: 10px;
    animation: strengthPulse 2s ease-in-out infinite;
}

@keyframes strengthPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.strength-label {
    font-size: 14px;
    color: var(--cyber-mint);
    font-weight: 600;
}

.strength-examples {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.strength-example {
    background: var(--midnight-blue);
    border: 2px solid;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

.strength-example:hover {
    transform: translateX(10px);
}

.strength-example.weak {
    border-color: #ff4444;
}

.strength-example.medium {
    border-color: var(--alert-orange);
}

.strength-example.strong {
    border-color: var(--cyber-mint);
}

.example-password {
    font-family: 'Roboto Mono', monospace;
    font-size: 18px;
    color: var(--polar-white);
    margin-bottom: 12px;
}

.example-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.rating-badge.weak {
    background: #ff4444;
    color: white;
}

.rating-badge.medium {
    background: var(--alert-orange);
    color: white;
}

.rating-badge.strong {
    background: var(--cyber-mint);
    color: var(--deep-navy);
}

.rating-time {
    font-size: 13px;
    color: var(--frost-grey);
}

.blog-topics {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.blog-topic {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(0, 216, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s;
}

.blog-topic:hover {
    background: rgba(0, 216, 255, 0.1);
    border-color: var(--cyber-aqua);
    transform: translateX(10px);
}

.blog-topic i {
    font-size: 24px;
    color: var(--cyber-aqua);
}

.blog-topic span {
    color: var(--polar-white);
    font-size: 15px;
}

.blog-preview {
    display: flex;
    justify-content: center;
}

.blog-card {
    background: var(--midnight-blue);
    border: 2px solid var(--cyber-aqua);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    width: 100%;
}

.blog-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(0, 216, 255, 0.2), rgba(103, 255, 213, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image i {
    font-size: 50px;
    color: var(--cyber-aqua);
}

.blog-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--polar-white);
}

.blog-card p {
    color: var(--frost-grey);
    font-size: 14px;
}

.guides-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.guide-item {
    background: var(--midnight-blue);
    border: 2px solid var(--cyber-aqua);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.guide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 216, 255, 0.3);
}

.guide-item i {
    font-size: 40px;
    color: var(--cyber-aqua);
    margin-bottom: 16px;
    display: block;
}

.guide-item span {
    color: var(--polar-white);
    font-size: 15px;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .detail-section,
    .detail-section.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .detail-section.reverse .detail-content,
    .detail-section.reverse .detail-visual {
        order: initial;
    }
    
    .guides-showcase {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .detail-section {
        padding: 30px 20px;
        margin-bottom: 60px;
    }
    
    .detail-content h2 {
        font-size: 24px;
    }
    
    .password-text {
        font-size: 18px;
    }
    
    .showcase-stat .stat-number {
        font-size: 36px;
    }
}
