/* Global Styles */
:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --neon-blue: #00d4ff;
    --neon-purple: #a855f7;
    --neon-pink: #f472b6;
    --dark-bg: #0f0f23;
    --darker-bg: #0a0a1a;
    --card-bg: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --border-color: #2d2d3a;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--neon-blue) !important;
    text-shadow: 0 0 10px var(--neon-blue);
}

.nav-link {
    color: var(--text-secondary) !important;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--neon-blue) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding-top: 10px;
    padding-bottom: 10px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
    overflow: hidden;
    min-height: auto;
    margin-top: 80px;
    padding-top: 7%;
    padding-bottom: 7%;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(10, 10, 26, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&h=1080&fit=crop&crop=center');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.8;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    position: relative;
    text-align: left;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    border-radius: 2px;
    opacity: 0.8;
}





.neon-text {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 25%, #a855f7 50%, #7c3aed 75%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding: 0 0.2rem;
    text-shadow: none;
    filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.6));
    animation: neon-pulse 3s ease-in-out infinite;
}

@keyframes neon-pulse {
    0% { 
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.8)) 
                drop-shadow(0 0 40px rgba(168, 85, 247, 0.4));
        transform: scale(1.02);
    }
    100% { 
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
        transform: scale(1);
    }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    max-width: 500px;
}

.hero-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.hero-video {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.video-placeholder {
    background: linear-gradient(135deg, var(--card-bg), var(--border-color));
    border: 3px solid transparent;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 300px;
    min-width: 400px;
    background-clip: padding-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.video-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--neon-pink), var(--neon-blue));
    background-size: 400% 400%;
    animation: borderGlow 3s ease-in-out infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 20px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.video-placeholder:hover {
    transform: scale(1.25) translateY(-25px);
    box-shadow: 0 50px 100px rgba(0, 212, 255, 0.5);
    border-color: var(--neon-blue);
    z-index: 10;
}

.video-placeholder:hover::before {
    opacity: 1;
}

.video-placeholder:hover i {
    transform: scale(1.5) rotate(5deg);
    color: var(--neon-purple);
    text-shadow: 0 0 40px var(--neon-purple);
}

.video-placeholder:hover p {
    transform: scale(1.1);
    color: var(--neon-blue);
}

.video-placeholder i {
    font-size: 5rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    display: block;
}

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

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.video-placeholder p {
    margin: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

/* Video Background Styles */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: all 0.5s ease;
    filter: brightness(0.8) contrast(1.1);
}

.video-placeholder:hover .background-video {
    opacity: 0.8;
    filter: brightness(1.0) contrast(1.2);
    transform: scale(1.05);
}



/* Video overlay positioning */
.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    pointer-events: none;
}



/* Video Modal Styles */
.modal-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
}

.modal-header {
    background: var(--darker-bg);
    border-bottom: 1px solid var(--border-color);
    border-radius: 20px 20px 0 0;
}

.modal-title {
    color: var(--neon-blue);
    font-weight: 600;
}

.btn-close {
    filter: invert(1);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: var(--darker-bg);
    border-radius: 15px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.section-hint {
    font-size: 0.95rem;
    color: var(--neon-blue);
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.9;
}

/* Screenshots Section */
.screenshots-section {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--darker-bg) 100%);
    position: relative;
    overflow: hidden;
}

.screenshots-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(244, 114, 182, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.screenshots-section .container {
    position: relative;
    z-index: 2;
}

.screenshot-card {
    background: var(--darker-bg);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.screenshot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--neon-blue);
}

.screenshot-card {
    position: relative;
    overflow: hidden;
}

.screenshot-card img {
    border-radius: 15px;
    transition: all 0.3s ease;
    object-fit: cover;
    width: 100%;
    height: 300px;
    min-height: 300px;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.98));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 2;
}

.screenshot-card:hover .image-overlay {
    transform: translateY(0);
}

.screenshot-card:hover img {
    filter: brightness(0.7);
}

.image-overlay h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 4px 8px rgba(0, 0, 0, 0.7);
}

/* Terminal + Cydia Power Section */
.terminal-section {
    background: var(--card-bg);
    position: relative;
    overflow: hidden;
}

.terminal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.terminal-content {
    padding: 2rem 0;
}

.terminal-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    gap: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.terminal-gallery {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gallery-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.gallery-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-item.active {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
}

.gallery-overlay h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.gallery-overlay p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.gallery-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn.active {
    background: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.nav-btn:hover {
    background: var(--neon-blue);
    transform: scale(1.2);
}

/* Feature Comparison Section */
.comparison-section {
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.comparison-table {
    width: 100%;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
}

.comparison-table th {
    padding: 1.5rem 1rem;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    border: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.comparison-table th:first-child {
    text-align: left;
    padding-left: 2rem;
}

.comparison-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(0, 212, 255, 0.05);
    transform: translateX(5px);
}

.comparison-table td {
    padding: 1.5rem 1rem;
    text-align: center;
    vertical-align: middle;
    border: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.comparison-table .feature-name {
    text-align: left;
    padding-left: 2rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table .ios-feature {
    color: #ef4444;
    font-weight: 500;
}

.comparison-table .jailbreak-feature {
    color: #f59e0b;
    font-weight: 500;
}

.comparison-table .aios-feature {
    color: #10b981;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

/* Responsive table */
@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
    }
    
    .comparison-table th:first-child,
    .comparison-table .feature-name {
        padding-left: 1rem;
    }
}

/* Why AIOS Section */
.why-aios-section {
    background: var(--darker-bg);
}

.feature-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--neon-purple);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* Sliding Section */
.sliding-section {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--darker-bg) 100%);
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.sliding-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.image-slider {
    position: relative;
    height: 250px;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
}

.slider-track {
    display: flex;
    animation: slide 25s linear infinite;
    width: max-content;
    gap: 2rem;
}

.slide {
    margin: 0;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.slide img {
    border-radius: 15px;
    transition: all 0.3s ease;
    object-fit: cover;
    width: 280px;
    height: 200px;
    display: block;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem 0.5rem 0.5rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.slide:hover .slide-overlay {
    transform: translateY(0);
}

.slide-overlay h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.slide:hover img {
    transform: scale(1.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

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

/* Grid Section */
.grid-section {
    background: var(--darker-bg);
}

.square-image {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.square-image:hover {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--neon-pink);
}

.square-image img {
    border-radius: 15px;
    transition: all 0.3s ease;
    object-fit: cover;
    width: 100%;
    height: 250px;
}

/* Mobile Section */
.mobile-section {
    background: var(--card-bg);
}

.mobile-screenshot {
    background: var(--darker-bg);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mobile-screenshot:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--neon-blue);
}

.mobile-screenshot img {
    border-radius: 15px;
    transition: all 0.3s ease;
    object-fit: cover;
    width: 100%;
    height: 400px;
    min-height: 400px;
}

.mobile-screenshot .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.98));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 2;
}

.mobile-screenshot:hover .image-overlay {
    transform: translateY(0);
}

.mobile-screenshot:hover img {
    filter: brightness(0.7);
}

.mobile-screenshot .image-overlay h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 4px 8px rgba(0, 0, 0, 0.7);
}

/* Interactive Elements Section */
.interactive-elements-section {
    background: var(--card-bg);
}

.interactive-card {
    background: var(--darker-bg);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.interactive-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--neon-purple);
}

.interactive-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.interactive-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

.interactive-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.interactive-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Animated Section */
.animated-section {
    background: var(--darker-bg);
}

.animated-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.animated-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--neon-purple);
}

.card-animation {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-color), var(--neon-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    animation: float 3s ease-in-out infinite;
}

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

.animated-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Access Section */
.access-section {
    background: linear-gradient(135deg, var(--card-bg), var(--darker-bg));
    text-align: center;
}

.access-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.access-button-container {
    position: relative;
    display: inline-block;
}

.btn-access {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
    border: none;
    padding: 1.5rem 3rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1.2rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-access::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-access:hover::before {
    left: 100%;
}

.btn-access:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 212, 255, 0.4);
}

.btn-text {
    display: block;
    margin-bottom: 0.5rem;
}

.btn-pro {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.9rem;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
}

.footer-title {
    color: var(--neon-blue);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.footer-subtitle {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-link:hover {
    background: var(--neon-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.footer-divider {
    border-color: var(--border-color);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-access {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-access {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-blue);
}

/* Enhanced Sliding Section Styling */
.sliding-section .section-title {
    position: relative;
    z-index: 2;
}

.sliding-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    border-radius: 2px;
}

/* User Reviews Section */
.user-reviews-section {
    background: var(--card-bg);
    position: relative;
}

.user-reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.review-card {
    background: var(--darker-bg);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--neon-blue);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.user-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.review-card:hover .user-avatar {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(0, 212, 255, 0.5);
}

.user-info h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.rating {
    display: flex;
    gap: 0.2rem;
    margin-top: 0.3rem;
}

.rating i {
    color: #ffd700;
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    font-style: italic;
    margin: 0;
}

/* FAQ Section Styling */
.faq-section {
    background: var(--darker-bg);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.accordion-item:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

.accordion-button {
    background: linear-gradient(135deg, var(--card-bg), var(--darker-bg));
    border: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: white;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.accordion-button:hover {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: white;
    transform: translateX(5px);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 212, 255, 0.25);
    border-color: var(--neon-blue);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
    filter: brightness(0) invert(1);
}

.accordion-body {
    background: var(--card-bg);
    color: var(--text-secondary);
    padding: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.accordion-collapse {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-collapse.show {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
