/* ========================================== */
/* 🎨 PREMIUM SECTIONS - SCI-FI FUTURISTIC */
/* ========================================== */

/* Global Section Styling */
.section-premium {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, #020812 0%, #021428 100%);
    overflow: hidden;
}

.section-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 200, 255, 0.05), transparent 70%);
    pointer-events: none;
}

/* Section Headers */
.section-header-premium {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-overline {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    background: rgba(0, 200, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.3);
    color: #00C8FF;
}

.section-overline.orange {
    background: rgba(255, 140, 0, 0.1);
    border-color: rgba(255, 140, 0, 0.3);
    color: #FF8C00;
}

.section-overline.purple {
    background: rgba(157, 78, 221, 0.1);
    border-color: rgba(157, 78, 221, 0.3);
    color: #9D4EDD;
}

.section-overline.green {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    color: #00FF88;
}

.section-title-premium {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00C8FF, #9D4EDD, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================== */
/* 📊 OVERVIEW CARDS */
/* ========================================== */

.overview-card {
    position: relative;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 200, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00C8FF, #9D4EDD, #FF8C00);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.overview-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 200, 255, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 200, 255, 0.2),
        0 0 60px rgba(0, 200, 255, 0.1);
}

.overview-card:hover::before {
    opacity: 1;
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 200, 255, 0.1);
    border: 2px solid rgba(0, 200, 255, 0.3);
    border-radius: 50%;
    position: relative;
}

.card-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00C8FF, #9D4EDD);
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.4s ease;
}

.overview-card:hover .card-icon-wrapper::before {
    opacity: 0.5;
}

.card-icon-wrapper i {
    font-size: 2rem;
    color: #00C8FF;
    position: relative;
    z-index: 1;
}

.card-icon-wrapper.orange {
    background: rgba(255, 140, 0, 0.1);
    border-color: rgba(255, 140, 0, 0.3);
}

.card-icon-wrapper.orange i {
    color: #FF8C00;
}

.card-icon-wrapper.purple {
    background: rgba(157, 78, 221, 0.1);
    border-color: rgba(157, 78, 221, 0.3);
}

.card-icon-wrapper.purple i {
    color: #9D4EDD;
}

.overview-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.overview-card-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.card-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.card-features-list i {
    color: #00FF88;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* ========================================== */
/* ⚙️ FEATURES GRID */
/* ========================================== */

.feature-card-premium {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 200, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    transform-style: preserve-3d;
}

.feature-card-premium:hover {
    border-color: rgba(0, 200, 255, 0.4);
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 12px 40px rgba(0, 200, 255, 0.2), 0 0 80px rgba(0, 200, 255, 0.1);
}

.feature-icon-premium {
    width: 60px;
    height: 60px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 200, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 200, 255, 0.3);
}

.feature-icon-premium i {
    font-size: 1.75rem;
    color: #00C8FF;
}

.feature-icon-premium.orange {
    background: rgba(255, 140, 0, 0.1);
    border-color: rgba(255, 140, 0, 0.3);
}

.feature-icon-premium.orange i {
    color: #FF8C00;
}

.feature-icon-premium.purple {
    background: rgba(157, 78, 221, 0.1);
    border-color: rgba(157, 78, 221, 0.3);
}

.feature-icon-premium.purple i {
    color: #9D4EDD;
}

.feature-icon-premium.green {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
}

.feature-icon-premium.green i {
    color: #00FF88;
}

.feature-icon-premium.gold {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.feature-icon-premium.gold i {
    color: #FFD700;
}

.feature-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.feature-card-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ========================================== */
/* 🛸 WHY SECTION - TIMELINE */
/* ========================================== */

.timeline-premium {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line-premium {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent,
        rgba(0, 200, 255, 0.5) 10%,
        rgba(0, 200, 255, 0.5) 90%,
        transparent
    );
    transform: translateX(-50%);
}

.timeline-item-premium {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

.timeline-item-premium:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-node-premium {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.node-circle {
    width: 40px;
    height: 40px;
    background: rgba(0, 200, 255, 0.2);
    border: 2px solid #00C8FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.node-circle::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(0, 200, 255, 0.3);
    border-radius: 50%;
    animation: nodePulse 2s ease-in-out infinite;
}

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

.node-circle i {
    font-size: 1.25rem;
    color: #00C8FF;
}

.node-circle.orange {
    background: rgba(255, 140, 0, 0.2);
    border-color: #FF8C00;
}

.node-circle.orange::before {
    border-color: rgba(255, 140, 0, 0.3);
}

.node-circle.orange i {
    color: #FF8C00;
}

.node-circle.green {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00FF88;
}

.node-circle.green::before {
    border-color: rgba(0, 255, 136, 0.3);
}

.node-circle.green i {
    color: #00FF88;
}

.node-circle.purple {
    background: rgba(157, 78, 221, 0.2);
    border-color: #9D4EDD;
}

.node-circle.purple::before {
    border-color: rgba(157, 78, 221, 0.3);
}

.node-circle.purple i {
    color: #9D4EDD;
}

.timeline-content-premium {
    width: 45%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 200, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timeline-item-premium:nth-child(even) .timeline-content-premium {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item-premium:nth-child(odd) .timeline-content-premium {
    margin-left: auto;
    margin-right: 0;
}

.timeline-content-premium:hover {
    border-color: rgba(0, 200, 255, 0.4);
    box-shadow: 0 8px 24px rgba(0, 200, 255, 0.15);
}

.timeline-content-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.timeline-content-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ========================================== */
/* 🖼️ PRODUCT GALLERY SECTION */
/* ========================================== */

.product-gallery-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Gallery Tabs */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 200, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gallery-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00C8FF, #9D4EDD, #FF8C00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.gallery-tab:hover {
    border-color: rgba(0, 200, 255, 0.5);
    background: rgba(0, 200, 255, 0.05);
    color: #ffffff;
}

.gallery-tab.active {
    border-color: #00C8FF;
    background: rgba(0, 200, 255, 0.1);
    color: #00C8FF;
}

.gallery-tab.active::before {
    transform: scaleX(1);
}

.gallery-tab i {
    font-size: 1.125rem;
}

/* Gallery Content - Carousel */
.gallery-carousel {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.gallery-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.gallery-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    opacity: 0.4;
    transform: scale(0.95);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Smooth fade animation for non-active slides */
.gallery-slide:not(.active) .screenshot-container {
    filter: grayscale(30%) brightness(0.7);
}

.gallery-slide.active .screenshot-container {
    filter: grayscale(0%) brightness(1);
    transition: filter 0.5s ease;
}

/* Old panel styles - keep for fallback */
.gallery-panel {
    display: none;
    opacity: 0;
    animation: fadeInPanel 0.5s ease forwards;
}

.gallery-panel.active {
    display: block;
}

@keyframes fadeInPanel {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Screenshot Container */
.screenshot-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto 2rem;
    border: 1px solid rgba(0, 200, 255, 0.2);
    background: rgba(255, 255, 255, 0.02);
    max-width: 1000px;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-img {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.screenshot-container:hover .screenshot-img {
    transform: scale(1.02);
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-container:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 200, 255, 0.9);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
}

.screenshot-badge i {
    font-size: 1rem;
}

/* Gallery Description */
.gallery-description {
    text-align: center;
    padding: 0 2rem;
}

.gallery-description h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.gallery-description p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================== */
/* 💎 PRICING SECTION */
/* ========================================== */

.pricing-card-premium {
    position: relative;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 200, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
}

.pricing-card-premium.featured {
    border-color: rgba(255, 140, 0, 0.5);
    background: rgba(255, 140, 0, 0.05);
    transform: scale(1.05);
    animation: featured-pulse 3s ease-in-out infinite;
}

@keyframes featured-pulse {
    0%, 100% { box-shadow: 0 0 40px rgba(255, 140, 0, 0.2); }
    50% { box-shadow: 0 0 60px rgba(255, 140, 0, 0.35); }
}

.pricing-card-premium:hover {
    transform: translateY(-10px) rotateX(3deg) scale(1.02);
    border-color: rgba(0, 200, 255, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 200, 255, 0.2),
        0 0 80px rgba(0, 200, 255, 0.15);
}

.pricing-card-premium.featured:hover {
    border-color: rgba(255, 140, 0, 0.7);
    transform: translateY(-10px) rotateX(3deg) scale(1.07);
    box-shadow: 
        0 20px 40px rgba(255, 140, 0, 0.3),
        0 0 80px rgba(255, 140, 0, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #FF8C00, #ff6b00);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-plan-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.pricing-plan-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.pricing-price-box {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 200, 255, 0.2);
    border-bottom: 1px solid rgba(0, 200, 255, 0.2);
}

.pricing-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #00C8FF;
    line-height: 1;
}

.pricing-amount.free {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #00FF88, #00C8FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex: 1;
}

.pricing-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.pricing-features-list i {
    color: #00FF88;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.pricing-features-list i.fa-times {
    color: rgba(255, 255, 255, 0.3);
}

.pricing-cta {
    margin-top: auto;
}

.btn-pricing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 2rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid #00C8FF;
    border-radius: 8px;
    background: transparent;
    color: #00C8FF;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00C8FF, #9D4EDD);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-pricing span {
    position: relative;
    z-index: 1;
}

.btn-pricing i {
    position: relative;
    z-index: 1;
}

.btn-pricing:hover {
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 200, 255, 0.4);
}

.btn-pricing:hover::before {
    opacity: 1;
}

.btn-pricing:hover {
    color: #ffffff;
}

.btn-pricing.primary {
    background: linear-gradient(135deg, #FF8C00, #ff6b00);
    border-color: transparent;
    color: #ffffff;
}

.btn-pricing.primary::before {
    background: linear-gradient(135deg, #ff6b00, #ff4500);
}

.btn-pricing.primary:hover {
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.4);
}

.pricing-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================== */
/* ❓ FAQ SECTION */
/* ========================================== */

.faq-item-premium {
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 200, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-premium:hover {
    border-color: rgba(0, 200, 255, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.faq-question-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 200, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle i {
    color: #00C8FF;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.faq-item-premium.active .faq-toggle {
    background: rgba(0, 200, 255, 0.2);
    transform: rotate(180deg);
}

.faq-item-premium.active .faq-toggle i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item-premium.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ========================================== */
/* 🚀 CTA SECTION */
/* ========================================== */

.cta-section-premium {
    position: relative;
    padding: 8rem 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 200, 255, 0.15), transparent 70%),
        linear-gradient(180deg, #020812, #032338);
    overflow: hidden;
}

.cta-section-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M0 0h100v100H0z' fill='none'/%3E%3Cpath d='M50 0v100M0 50h100' stroke='rgba(0,200,255,0.1)' stroke-width='0.5'/%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
}

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

.cta-mega-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-mega-title .gradient-text {
    background: linear-gradient(135deg, #00C8FF, #9D4EDD, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle-premium {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.cta-buttons-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-cta-large.primary {
    background: linear-gradient(135deg, #FF8C00, #ff6b00);
    border: none;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.3);
}

.btn-cta-large.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 140, 0, 0.5);
}

.btn-cta-large.secondary {
    background: transparent;
    border: 2px solid #00C8FF;
    color: #00C8FF;
}

.btn-cta-large.secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00C8FF, #9D4EDD);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-cta-large.secondary:hover {
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 200, 255, 0.4);
}

.btn-cta-large.secondary:hover::before {
    opacity: 1;
}

.btn-cta-large.secondary:hover {
    color: #ffffff;
}

.btn-cta-large span {
    position: relative;
    z-index: 1;
}

.btn-cta-large i {
    position: relative;
    z-index: 1;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-item i {
    color: #00FF88;
    font-size: 1.125rem;
}

/* ========================================== */
/* 📱 RESPONSIVE DESIGN */
/* ========================================== */

@media (max-width: 768px) {
    .section-premium {
        padding: 4rem 0;
    }
    
    .section-header-premium {
        margin-bottom: 3rem;
    }
    
    .timeline-line-premium {
        left: 30px;
    }
    
    .timeline-item-premium,
    .timeline-item-premium:nth-child(even) {
        flex-direction: row;
        padding-left: 80px;
    }
    
    .timeline-node-premium {
        left: 30px;
    }
    
    .timeline-content-premium,
    .timeline-item-premium:nth-child(even) .timeline-content-premium,
    .timeline-item-premium:nth-child(odd) .timeline-content-premium {
        width: 100%;
        margin: 0;
    }
    
    .pricing-card-premium.featured {
        transform: scale(1);
    }
    
    .cta-buttons-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-cta-large {
        width: 100%;
        justify-content: center;
    }
    
    /* Gallery Tabs Mobile */
    .gallery-tabs {
        gap: 0.5rem;
    }
    
    .gallery-tab {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .gallery-tab span {
        display: none;
    }
    
    .gallery-tab i {
        font-size: 1.25rem;
    }
    
    .gallery-description {
        padding: 0 1rem;
    }
    
    .gallery-description h4 {
        font-size: 1.5rem;
    }
    
    .gallery-description p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .overview-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-card-premium {
        padding: 1.5rem;
    }
    
    .pricing-card-premium {
        padding: 2rem 1.5rem;
    }
}

/* ========================================== */
/* 🎬 SCROLL REVEAL ANIMATIONS */
/* ========================================== */

[data-scroll-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-scroll-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grid items */
[data-scroll-reveal][data-delay="100"].revealed {
    transition-delay: 0.1s;
}

[data-scroll-reveal][data-delay="200"].revealed {
    transition-delay: 0.2s;
}

[data-scroll-reveal][data-delay="300"].revealed {
    transition-delay: 0.3s;
}

[data-scroll-reveal][data-delay="400"].revealed {
    transition-delay: 0.4s;
}

[data-scroll-reveal][data-delay="500"].revealed {
    transition-delay: 0.5s;
}

[data-scroll-reveal][data-delay="600"].revealed {
    transition-delay: 0.6s;
}
