/* ============================================================================
   BASIC MAINTENANCE PAGE - PREMIUM REDESIGN
   ============================================================================ */

:root {
    --primary-color: #00ffff;
    --secondary-color: #00c3ff;
    --accent-color: #7000ff;
    --bg-dark: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --gradient-main: linear-gradient(135deg, #00ffff 0%, #00c3ff 100%);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Hero Section */
.maintenance-hero {
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Animated Background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.bg-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg);
    animation: gridMove 20s linear infinite;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatOrb 10s ease-in-out infinite;
}

.bg-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 255, 255, 0.15);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.bg-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(112, 0, 255, 0.15);
    bottom: 10%;
    right: -50px;
    animation-delay: -2s;
}

.bg-orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(0, 195, 255, 0.1);
    top: 40%;
    left: 20%;
    animation-delay: -5s;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
}

.price-period {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

/* Buttons */
.btn-glow {
    background: var(--gradient-main);
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
}

/* Unified Content Wrapper */
.unified-content-wrapper {
    position: relative;
    background: var(--bg-dark);
    overflow: hidden;
}

.unified-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    z-index: 2;
}

#features-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Features Grid */
.features-section {
    padding: 6rem 0 3rem;
    position: relative;
    background: transparent; /* Make transparent */
    z-index: 1;
}

.included-section {
    padding: 3rem 0;
    position: relative;
    background: transparent; /* Make transparent */
    z-index: 1;
}

.faq-section {
    padding: 3rem 0 6rem;
    position: relative;
    background: transparent; /* Make transparent */
    z-index: 1;
}

.features-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* AOS Animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card {
    background: rgba(5, 5, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

/* Tech corner accents on hover */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, var(--primary-color) 1px, transparent 1px) top left / 15px 15px no-repeat,
        linear-gradient(180deg, var(--primary-color) 1px, transparent 1px) top left / 15px 15px no-repeat,
        linear-gradient(-90deg, var(--primary-color) 1px, transparent 1px) bottom right / 15px 15px no-repeat,
        linear-gradient(-180deg, var(--primary-color) 1px, transparent 1px) bottom right / 15px 15px no-repeat;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(15, 15, 25, 0.7);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 
        0 15px 40px -10px rgba(0, 255, 255, 0.1),
        inset 0 0 30px rgba(0, 255, 255, 0.05);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    transform: rotateY(180deg);
}

.feature-card:hover .feature-icon i {
    transform: rotateY(-180deg); /* Keep icon facing forward */
    transition: transform 0.3s ease;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Included List */
.included-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 255, 0.02), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(5, 5, 10, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.checklist-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 255, 255, 0.05), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.checklist-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 40px -10px rgba(0, 255, 255, 0.1);
}

.checklist-item:hover::before {
    opacity: 1;
}

.check-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.4));
    flex-shrink: 0;
}

.item-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 600;
}

.item-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Locked Item Styling */
.checklist-item.locked {
    opacity: 0.5;
    background: rgba(255, 255, 255, 0.01);
    border-color: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.checklist-item.locked:hover {
    opacity: 1;
    transform: scale(1.03) translateY(-5px);
    border-color: var(--primary-color);
    background: rgba(0, 20, 40, 0.95);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.2);
    z-index: 10;
}

.checklist-item.locked .check-icon {
    color: #444;
    filter: none;
    transition: all 0.3s ease;
}

.checklist-item.locked:hover .check-icon {
    color: var(--primary-color);
    filter: drop-shadow(0 0 12px var(--primary-color));
    transform: scale(1.2) rotate(-10deg);
}

.upgrade-badge {
    display: inline-block;
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.checklist-item.locked:hover .upgrade-badge {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .btn-glow, .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr;
    }
}
