/* Landing Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --dark-gradient: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    --accent-color: #667eea;
    --text-primary: #ffffff;
    --text-secondary: #b8b8d4;
    --bg-dark: #0a0e27;
    --bg-card: rgba(255, 255, 255, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
    background-attachment: fixed;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.08) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 5%;
    left: 5%;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.2) 0%, rgba(71, 82, 196, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(88, 101, 242, 0.2);
}

.shape-2 {
    width: 350px;
    height: 350px;
    top: 50%;
    right: 8%;
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.shape-3 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: 15%;
    animation-delay: 4s;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.15) 0%, rgba(71, 82, 196, 0.08) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(88, 101, 242, 0.15);
}

.shape-4 {
    width: 380px;
    height: 380px;
    top: 25%;
    right: 25%;
    animation-delay: 6s;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.08) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(102, 126, 234, 0.15);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(40px, -40px) scale(1.1);
        opacity: 0.8;
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
        opacity: 0.7;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-icon-container {
    margin-bottom: 40px;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon-3d {
    width: 180px;
    height: 180px;
    display: inline-block;
    filter: drop-shadow(0 15px 40px rgba(88, 101, 242, 0.6)) drop-shadow(0 0 30px rgba(102, 126, 234, 0.5));
    transform-style: preserve-3d;
    object-fit: contain;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% {
        filter: drop-shadow(0 15px 40px rgba(88, 101, 242, 0.6)) drop-shadow(0 0 30px rgba(102, 126, 234, 0.5));
    }
    50% {
        filter: drop-shadow(0 15px 50px rgba(88, 101, 242, 0.8)) drop-shadow(0 0 40px rgba(102, 126, 234, 0.7));
    }
}

@keyframes rotate3d {
    0% {
        transform: rotateY(0deg) rotateX(0deg);
    }
    25% {
        transform: rotateY(90deg) rotateX(10deg);
    }
    50% {
        transform: rotateY(180deg) rotateX(0deg);
    }
    75% {
        transform: rotateY(270deg) rotateX(-10deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(0deg);
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.3em;
    text-align: center;
}

.title-word {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
    position: relative;
}

.title-word:nth-child(1) {
    animation-delay: 0.1s;
}

.title-word:nth-child(2) {
    animation-delay: 0.3s;
}

.title-word:nth-child(3) {
    animation-delay: 0.5s;
}

.title-word.highlight {
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 50%, #4752C4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(88, 101, 242, 0.5));
}

.rotating-word {
    display: inline-block;
    position: relative;
    width: auto;
    min-width: 500px;
    height: 1.2em;
    vertical-align: bottom;
    overflow: visible;
    text-align: center;
    line-height: 1.2em;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .rotating-word {
        min-width: 280px;
        display: block;
        width: 100%;
        text-align: center;
        padding: 0 10px;
    }
    
    .hero-title {
        flex-direction: column;
        gap: 0.2em;
    }
}

.word-item {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%) translateY(120%);
    transform-origin: center;
    width: auto;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #5865F2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 25px rgba(102, 126, 234, 0.7));
    text-align: center;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2em;
    font-size: inherit;
    font-weight: inherit;
}

.word-item.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    filter: drop-shadow(0 0 30px rgba(102, 126, 234, 0.8));
}

.word-item.prev {
    opacity: 0;
    transform: translateX(-50%) translateY(-120%);
}

@media (max-width: 768px) {
    .word-item {
        text-align: center;
        justify-content: center;
    }
}

@keyframes wordRotate {
    0% {
        transform: translateY(100%) rotateX(90deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
    90% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
    100% {
        transform: translateY(-100%) rotateX(-90deg);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #B9BBBE;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.6s both;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
    margin-top: 20px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero span {
    position: relative;
    z-index: 1;
}

.btn-hero svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-hero:hover svg {
    transform: translateX(5px);
}

.btn-primary {
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 50%, #4752C4 100%);
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4), 0 0 20px rgba(102, 126, 234, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.6), 0 0 30px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #7289DA 0%, #5865F2 50%, #5b6eae 100%);
}

.btn-secondary {
    background: rgba(44, 47, 51, 0.6);
    color: var(--text-primary);
    border: 2px solid rgba(88, 101, 242, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.2);
}

.btn-secondary:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.8);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(88, 101, 242, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: fadeInUp 1s ease-out 1s both;
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f1629 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    border-color: var(--accent-color);
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.step-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 10px 50px rgba(102, 126, 234, 0.8);
    }
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: var(--primary-gradient);
    position: relative;
}

.step-connector::after {
    content: '→';
    position: absolute;
    right: -15px;
    top: -10px;
    color: var(--accent-color);
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .step-connector {
        width: 2px;
        height: 60px;
        transform: rotate(90deg);
    }
    
    .step-connector::after {
        content: '↓';
        right: -10px;
        top: 20px;
    }
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 50px;
    margin-bottom: 15px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(102, 126, 234, 0.3));
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #b8b8d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--bg-dark);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--primary-gradient);
    color: var(--text-primary);
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.6);
}

.btn-cta svg {
    width: 24px;
    height: 24px;
}

/* Footer */
.landing-footer {
    padding: 40px 0;
    background: #050811;
    text-align: center;
    color: var(--text-secondary);
    border-top: 1px solid var(--glass-border);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Advanced Features Section */
.advanced-features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f1525 100%);
}

.advanced-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.advanced-feature-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advanced-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.advanced-feature-item:hover::before {
    left: 100%;
}

.advanced-feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.advanced-feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.advanced-feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.advanced-feature-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Features Hidden/Visible Classes */
.feature-card-hidden {
    display: none;
}

.feature-card-visible {
    display: block;
}

.advanced-feature-hidden {
    display: none;
}

.advanced-feature-visible {
    display: block;
}

/* Features Expand Button */
.features-expand-container {
    margin-top: 3rem;
    text-align: center;
}

.features-expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border: 2px solid rgba(102, 126, 234, 0.5);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.features-expand-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.4) 100%);
    transition: left 0.5s ease;
    z-index: -1;
}

.features-expand-btn:hover::before {
    left: 0;
}

.features-expand-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    border-color: var(--accent-color);
}

.features-expand-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.features-expand-btn .expand-text {
    position: relative;
    z-index: 1;
}

.features-expand-btn .expand-icon {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    transition: transform 0.4s ease;
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    animation: bounceArrow 2s infinite;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

.features-expand-btn.expanded .expand-icon {
    animation: none;
}

.features-expand-btn.expanded .expand-icon {
    transform: rotate(180deg);
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.benefits-container {
    margin-top: 60px;
}

.benefit-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.benefit-row.reverse {
    direction: rtl;
}

.benefit-row.reverse > * {
    direction: ltr;
}

.benefit-content {
    position: relative;
}

.benefit-number {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.3;
}

.benefit-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.benefit-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.benefit-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-icon-large {
    font-size: 12rem;
    opacity: 0.1;
    animation: pulse 3s ease-in-out infinite;
}

/* Commands Section */
.commands-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f1525 0%, var(--bg-dark) 100%);
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.command-category {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.command-category:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.command-category h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-primary);
    border-bottom: 2px solid var(--glass-border);
    padding-bottom: 15px;
}

.command-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.command-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.command-item:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

.command-item code {
    font-family: 'Courier New', monospace;
    background: rgba(102, 126, 234, 0.2);
    padding: 8px 12px;
    border-radius: 6px;
    color: #a6e3a1;
    font-size: 0.9rem;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.command-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-left: 5px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(102, 126, 234, 0.1);
}

.faq-question h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.2);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advanced-features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .benefit-row.reverse {
        direction: ltr;
    }
    
    .benefit-number {
        font-size: 5rem;
    }
    
    .benefit-content h3 {
        font-size: 2rem;
    }
    
    .benefit-icon-large {
        font-size: 8rem;
    }
    
    .commands-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
}

