:root {
    --evil-purple: #790ECB;
    --dark-purple: #1a0a2e;
    --neon-green: #C6A0FF;
    --blood-red: #dc143c;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a2e;
    --prey-900: #0f0f0f;
    --prey-750: #1a1a1a;
    --prey-700: #2a2a2a;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--dark-bg);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.evil-glow {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(107, 45, 158, 0.1) 0%, transparent 70%);
    animation: evilPulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes evilPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

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

header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(107, 45, 158, 0.3);
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(107, 45, 158, 0.6));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-icon:hover {
    transform: rotate(-10deg) scale(1.1);
    filter: drop-shadow(0 0 20px rgba(220, 20, 60, 0.8));
}

.logo-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(121, 14, 203, 0.8));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.logo-text {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--evil-purple), var(--blood-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.3em;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(107, 45, 158, 0.5)); }
    50% { filter: drop-shadow(0 0 30px rgba(220, 20, 60, 0.8)); }
}

.fire-emoji, .ghost-emoji {
    font-size: 3rem;
    animation: bounce 2s ease-in-out infinite;
}

.fire-emoji {
    animation-delay: 0s;
}

.ghost-emoji {
    animation-delay: 1s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-5px) rotate(5deg); }
}

.subtitle {
    font-size: 1rem;
    color: var(--neon-green);
    letter-spacing: 0.1em;
    margin-top: 10px;
    animation: subtitlePulse 2s ease-in-out infinite;
}

@keyframes subtitlePulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; color: var(--blood-red); }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(121, 14, 203, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(220, 20, 60, 0.2) 0%, transparent 50%);
    animation: gradientShift 10s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(121, 14, 203, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(121, 14, 203, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

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

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

.hero-main {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(121, 14, 203, 0.2);
    border: 2px solid var(--evil-purple);
    border-radius: 50px;
    margin-bottom: 40px;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(121, 14, 203, 0.3); }
    50% { box-shadow: 0 0 40px rgba(121, 14, 203, 0.6); }
}

.badge-icon {
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.badge-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.title-line {
    font-size: 1.5rem;
    color: var(--neon-green);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.title-main {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--evil-purple), var(--blood-red), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(121, 14, 203, 0.5)); }
    50% { filter: drop-shadow(0 0 60px rgba(220, 20, 60, 0.8)); }
}

.title-subtitle {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 300;
    font-style: italic;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 50px;
}

.highlight {
    color: var(--neon-green);
    font-weight: 600;
}

.highlight-evil {
    color: var(--blood-red);
    font-weight: 700;
    font-style: italic;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-green), var(--evil-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
}

.stat-divider {
    font-size: 2rem;
    color: var(--evil-purple);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.cta-primary {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--evil-purple), var(--blood-red));
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(121, 14, 203, 0.4);
}

.cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(121, 14, 203, 0.6);
}

.cta-icon {
    font-size: 2rem;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0%, 90% { transform: rotate(0deg); }
    95% { transform: rotate(15deg); }
    100% { transform: rotate(0deg); }
}

.cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.cta-main {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.cta-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: transparent;
    border: 2px solid var(--evil-purple);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(121, 14, 203, 0.2);
    border-color: var(--neon-green);
    transform: translateY(-3px);
}

.cta-secondary .arrow {
    font-size: 1.5rem;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.glitch {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    color: #fff;
    letter-spacing: 0.1em;
}

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

.glitch::before {
    animation: glitch-1 2.5s infinite;
    color: var(--blood-red);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 3s infinite;
    color: var(--neon-green);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(-2px, 2px); }
}

.tagline {
    font-size: 1.5rem;
    color: var(--neon-green);
    margin-bottom: 40px;
}

.installation-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(121, 14, 203, 0.2), rgba(220, 20, 60, 0.2));
    border: 2px solid var(--evil-purple);
    border-radius: 20px;
    padding: 30px;
    margin: 80px auto 0;
    max-width: 900px;
    position: relative;
    overflow: hidden;
    animation: bannerPulse 3s ease-in-out infinite;
}

@keyframes bannerPulse {
    0%, 100% { 
        border-color: var(--evil-purple); 
        box-shadow: 0 0 30px rgba(121, 14, 203, 0.3); 
    }
    50% { 
        border-color: var(--blood-red); 
        box-shadow: 0 0 50px rgba(220, 20, 60, 0.5); 
    }
}

.installation-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(121, 14, 203, 0.1), transparent);
    animation: scan 4s linear infinite;
}

@keyframes scan {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.banner-icon {
    font-size: 3rem;
    color: var(--neon-green);
    flex-shrink: 0;
    animation: checkPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes checkPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(10deg); }
}

.banner-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.banner-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1.6;
}

.banner-attribution {
    color: var(--neon-green);
    font-size: 1rem;
    font-weight: 600;
}

.banner-flames {
    display: flex;
    gap: 10px;
    font-size: 2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.banner-flames span {
    animation: flameFlicker 1.5s ease-in-out infinite;
}

.banner-flames span:nth-child(1) { animation-delay: 0s; }
.banner-flames span:nth-child(2) { animation-delay: 0.5s; }
.banner-flames span:nth-child(3) { animation-delay: 1s; }

@keyframes flameFlicker {
    0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
    50% { transform: translateY(-5px) scale(1.1); opacity: 0.8; }
}

.problem-solution {
    display: flex;
    gap: 30px;
    margin: 60px 0;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: var(--card-bg);
    border: 2px solid var(--evil-purple);
    border-radius: 15px;
    padding: 30px;
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    box-shadow: 0 0 30px rgba(107, 45, 158, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 50px rgba(107, 45, 158, 0.5);
}

.card h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.problem {
    border-color: var(--blood-red);
}

.solution {
    border-color: var(--neon-green);
}

.solution ul {
    text-align: left;
    margin-top: 15px;
    list-style-position: inside;
}

.solution li {
    margin: 8px 0;
    color: #ccc;
}

.emphasis {
    color: var(--blood-red);
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 10px;
}

.arrow {
    font-size: 3rem;
    color: var(--evil-purple);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.outcome {
    margin: 80px 0;
}

.outcome h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

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

.outcome-item {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--evil-purple);
    transition: all 0.3s ease;
}

.outcome-item:hover {
    border-color: var(--neon-green);
    transform: scale(1.05);
}

.outcome-item .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.outcome-item h3 {
    color: var(--neon-green);
    margin-bottom: 10px;
}

.cta {
    margin: 80px 0;
}

.cta-button {
    background: linear-gradient(135deg, var(--evil-purple), var(--blood-red));
    color: white;
    border: none;
    padding: 25px 60px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(107, 45, 158, 0.4);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 60px rgba(107, 45, 158, 0.6);
}

.cta-button:active {
    transform: translateY(-1px);
}

.button-subtext {
    font-size: 0.8rem;
    font-weight: normal;
    opacity: 0.9;
}

.warning {
    margin-top: 20px;
    color: var(--blood-red);
    font-size: 1.1rem;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.features {
    background: rgba(26, 26, 46, 0.5);
    padding: 80px 0;
    margin: 60px 0;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.feature {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--evil-purple);
    transition: all 0.3s ease;
}

.feature:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
}

.feature h3 {
    color: var(--neon-green);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.testimonials {
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.testimonial {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--evil-purple);
    font-style: italic;
}

.testimonial cite {
    display: block;
    margin-top: 15px;
    color: var(--neon-green);
    font-style: normal;
    font-size: 0.9rem;
}

footer {
    background: var(--dark-purple);
    padding: 40px 0;
    text-align: center;
    margin-top: 80px;
    border-top: 1px solid var(--evil-purple);
}

footer p {
    margin: 10px 0;
    color: #999;
}

.disclaimer {
    font-size: 0.85rem;
    font-style: italic;
}

.enterprise-stats {
    background: linear-gradient(135deg, rgba(107, 45, 158, 0.2), rgba(220, 20, 60, 0.2));
    padding: 80px 0;
    margin: 60px 0;
}

.enterprise-stats h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.stat {
    text-align: center;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 2px solid var(--evil-purple);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-10px);
    border-color: var(--neon-green);
    box-shadow: 0 10px 40px rgba(57, 255, 20, 0.3);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-green), var(--blood-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.3rem;
    color: var(--neon-green);
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-subtext {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

@media (max-width: 768px) {
    .problem-solution {
        flex-direction: column;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .glitch {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
    
    .installation-banner p {
        font-size: 1.1rem;
    }
    
    .logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo-content {
        align-items: center;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
    }
}

/* Floating chaos elements */
.chaos-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-emoji {
    position: absolute;
    font-size: 3rem;
    opacity: 0.6;
    animation: float 15s ease-in-out infinite;
}

.floating-emoji.fire:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-emoji.ghost:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.floating-emoji.skull:nth-child(3) {
    top: 60%;
    left: 5%;
    animation-delay: 4s;
}

.floating-emoji.demon:nth-child(4) {
    top: 70%;
    right: 10%;
    animation-delay: 6s;
}

.floating-emoji.fire:nth-child(5) {
    top: 40%;
    right: 5%;
    animation-delay: 8s;
}

.floating-emoji.ghost:nth-child(6) {
    top: 80%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) rotate(10deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-60px) rotate(-10deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) rotate(5deg);
        opacity: 0.6;
    }
}

/* Anti-Kiro comparison section */
.anti-kiro-section {
    margin: 80px 0;
    padding: 60px 30px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(107, 45, 158, 0.1));
    border-radius: 20px;
    border: 3px solid var(--blood-red);
    position: relative;
    overflow: hidden;
}

.anti-kiro-section::before {
    content: '🔥👻💀😈🔥👻💀😈';
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 2rem;
    opacity: 0.2;
    animation: scrollEmojis 20s linear infinite;
}

@keyframes scrollEmojis {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--neon-green);
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.comparison-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 3px solid;
    transition: all 0.3s ease;
}

.kiro-card {
    border-color: #4CAF50;
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.3);
}

.kiro-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 50px rgba(76, 175, 80, 0.6);
}

.orik-card {
    border-color: var(--blood-red);
    box-shadow: 0 0 30px rgba(220, 20, 60, 0.3);
    animation: evilPulseCard 3s ease-in-out infinite;
}

@keyframes evilPulseCard {
    0%, 100% { box-shadow: 0 0 30px rgba(220, 20, 60, 0.3); }
    50% { box-shadow: 0 0 60px rgba(220, 20, 60, 0.8); }
}

.orik-card:hover {
    transform: translateY(-10px) scale(1.02) rotate(-1deg);
    box-shadow: 0 0 80px rgba(220, 20, 60, 1);
}

.comparison-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.kiro-card h3 {
    color: #4CAF50;
}

.orik-card h3 {
    color: var(--blood-red);
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card li {
    padding: 12px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-card li:last-child {
    border-bottom: none;
}

.vs-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.vs-text {
    font-size: 3rem;
    font-weight: 900;
    color: var(--neon-green);
    background: var(--card-bg);
    padding: 20px 30px;
    border-radius: 50%;
    border: 3px solid var(--neon-green);
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.6);
    animation: vsRotate 4s linear infinite;
}

@keyframes vsRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

.lightning {
    font-size: 4rem;
    animation: lightningStrike 2s ease-in-out infinite;
}

@keyframes lightningStrike {
    0%, 90%, 100% { opacity: 0; transform: scale(0.5); }
    95% { opacity: 1; transform: scale(1.5); }
}

@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vs-divider {
        flex-direction: row;
    }
    
    .logo-text {
        font-size: 3rem;
    }
}

/* Hero Responsive Styles */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-badge {
        padding: 10px 20px;
        gap: 8px;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .title-line {
        font-size: 1.2rem;
    }
    
    .title-main {
        font-size: 4rem !important;
    }
    
    .title-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
    
    .stat-label {
        font-size: 0.8rem !important;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .installation-banner {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .banner-text {
        font-size: 1rem;
    }
}
