/* ARVX Neo-Brutalism Theme */

:root {
    --black: #000000;
    --white: #FFFFFF;
    --blue: #00A8E8;
    --yellow: #FFD700;
    --pink: #FF006E;
    --green: #06FFA5;
    --border: 4px solid #000000;
    --shadow: 8px 8px 0px #000000;
    --shadow-hover: 12px 12px 0px #000000;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    background: var(--black);
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--blue);
    border-radius: 50%;
    opacity: 0.1;
}

.hero-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Section Titles */
.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: -2px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 8px;
    background: var(--blue);
}

/* Features Section */
.features {
    padding: 100px 20px;
    background: var(--white);
    position: relative;
}

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

.feature-card {
    background: var(--white);
    border: var(--border);
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.feature-card:nth-child(1) { background: #FFE5E5; }
.feature-card:nth-child(2) { background: #E5F5FF; }
.feature-card:nth-child(3) { background: #FFF5E5; }
.feature-card:nth-child(4) { background: #E5FFE5; }
.feature-card:nth-child(5) { background: #F5E5FF; }
.feature-card:nth-child(6) { background: #FFE5F5; }

.feature-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Pricing Section */
.pricing {
    padding: 100px 20px;
    background: var(--blue);
    position: relative;
}

.pricing .section-title {
    color: var(--white);
}

.pricing .section-title::after {
    background: var(--yellow);
}

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

.pricing-card {
    background: var(--white);
    border: var(--border);
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.pricing-card.featured {
    background: var(--yellow);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translate(-4px, -4px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured:hover {
    transform: translate(-4px, -4px) scale(1.07);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--black);
    color: var(--white);
    padding: 8px 20px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: var(--border);
}

.pricing-badge.popular {
    background: var(--pink);
    color: var(--white);
}

.pricing-card h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1;
}

.price span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #666;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border: var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
    box-shadow: 6px 6px 0px var(--pink);
}

.btn-primary:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px var(--pink);
}

.btn-secondary {
    background: var(--white);
    color: var(--black);
    box-shadow: 6px 6px 0px var(--blue);
}

.btn-secondary:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px var(--blue);
}

/* CTA Section */
.cta {
    padding: 100px 20px;
    background: var(--green);
    position: relative;
    overflow: hidden;
}

.cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.download-badge img {
    height: 60px;
    width: auto;
}

.cta-graphic {
    flex: 0 0 300px;
    height: 300px;
    position: relative;
}

.graphic-shape {
    position: absolute;
    border: var(--border);
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--pink);
    top: 0;
    left: 0;
    transform: rotate(15deg);
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--yellow);
    border-radius: 50%;
    bottom: 0;
    right: 0;
    animation: float 8s ease-in-out infinite;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--blue);
    top: 50%;
    right: 50px;
    transform: rotate(-20deg);
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(15deg);
    }
    50% {
        transform: translateY(-20px) rotate(15deg);
    }
}

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

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

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--blue);
}

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

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--blue);
}

.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .cta .container {
        flex-direction: column;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-graphic {
        display: none;
    }
}
