/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS — 3 Steps
   ═══════════════════════════════════════════════════════════ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
    position: relative;
}

/* Connecting line between steps */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2, #00d2ff));
    opacity: 0.3;
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    font-weight: 900;
    background: var(--bg-card);
    border: 2px solid var(--border);
    color: var(--fg-primary);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover .step-number {
    background: var(--accent-gradient, linear-gradient(135deg, #6c5ce7, #00d2ff));
    border-color: transparent;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.3);
}

.step-emoji {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--fg-primary);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--fg-secondary);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps-grid::before {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════
   MARQUEE — Scrolling capabilities
   ═══════════════════════════════════════════════════════════ */
.marquee-section {
    overflow: hidden;
    padding: 20px 0 60px;
    position: relative;
    z-index: 1;
}

.marquee-track {
    display: flex;
    gap: 40px;
    animation: scroll-marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 500;
    color: var(--fg-secondary);
    white-space: nowrap;
}

.marquee-item span {
    font-size: 18px;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS — 3 steps
   ═══════════════════════════════════════════════════════════ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.step-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow);
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: white;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: var(--fg-secondary);
    line-height: 1.7;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent-1);
    opacity: 0.4;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-arrow {
        transform: rotate(90deg);
    }
}

/* ═══════════════════════════════════════════════════════════
   COMPARISON TABLE — vs Competitors
   ═══════════════════════════════════════════════════════════ */
.comparison-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.comparison-table th,
.comparison-table td {
    padding: 14px 18px;
    text-align: center;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
}

.comparison-table thead th {
    background: rgba(108, 92, 231, 0.08);
    font-weight: 700;
    font-size: 14px;
    color: var(--fg-primary);
}

.comparison-table thead th:first-child {
    text-align: left;
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--fg-primary);
}

.comparison-table tbody td {
    color: var(--fg-secondary);
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table .highlight-col {
    background: rgba(108, 92, 231, 0.05);
}

.comparison-table thead .highlight-col {
    background: var(--accent-gradient);
    color: white;
    -webkit-text-fill-color: white;
}

.check {
    color: #55efc4;
    font-weight: 700;
    font-size: 16px;
}

.cross {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 16px;
}

.partial {
    color: #feca57;
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   CHAMELEON LIVE DEMO — Real CSS themes
   ═══════════════════════════════════════════════════════════ */
.chameleon-section {
    text-align: center;
}

.chameleon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.theme-preview {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.theme-preview:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.theme-header {
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.theme-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.theme-body {
    padding: 16px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.theme-body .mock-btn {
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    width: fit-content;
}

.theme-body .mock-bar {
    height: 6px;
    border-radius: 3px;
}

.theme-body .mock-text {
    font-size: 11px;
    text-align: left;
}

.theme-body .mock-card {
    padding: 10px;
    border-radius: 8px;
    text-align: left;
}

.theme-body .mock-card h4 {
    font-size: 12px;
    margin-bottom: 4px;
}

.theme-body .mock-card p {
    font-size: 10px;
    opacity: 0.7;
}

.theme-name {
    padding: 8px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Theme: Neon City */
.theme-neon .theme-header {
    background: #0a0a1a;
}

.theme-neon .theme-dot:nth-child(1) {
    background: #ff00ff;
}

.theme-neon .theme-dot:nth-child(2) {
    background: #00ffff;
}

.theme-neon .theme-dot:nth-child(3) {
    background: #ff6600;
}

.theme-neon .theme-body {
    background: linear-gradient(180deg, #0a0a1a, #1a0a2e);
    color: #e0e0ff;
}

.theme-neon .mock-btn {
    background: linear-gradient(135deg, #ff00ff, #00ffff);
    color: white;
}

.theme-neon .mock-bar {
    background: linear-gradient(90deg, #ff00ff, #00ffff);
    width: 70%;
}

.theme-neon .mock-card {
    background: rgba(255, 0, 255, 0.08);
    border: 1px solid rgba(255, 0, 255, 0.2);
}

.theme-neon .theme-name {
    background: #0a0a1a;
    color: #ff00ff;
}

/* Theme: Apple Clean */
.theme-apple .theme-header {
    background: #1c1c1e;
}

.theme-apple .theme-dot:nth-child(1) {
    background: #ff5f57;
}

.theme-apple .theme-dot:nth-child(2) {
    background: #febc2e;
}

.theme-apple .theme-dot:nth-child(3) {
    background: #28c840;
}

.theme-apple .theme-body {
    background: #1c1c1e;
    color: #f5f5f7;
}

.theme-apple .mock-btn {
    background: #0071e3;
    color: white;
    border-radius: 20px;
}

.theme-apple .mock-bar {
    background: #0071e3;
    width: 55%;
}

.theme-apple .mock-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-apple .theme-name {
    background: #1c1c1e;
    color: #0071e3;
}

/* Theme: Spotify */
.theme-spotify .theme-header {
    background: #121212;
}

.theme-spotify .theme-dot:nth-child(1) {
    background: #1db954;
}

.theme-spotify .theme-dot:nth-child(2) {
    background: #1db954;
}

.theme-spotify .theme-dot:nth-child(3) {
    background: #1db954;
}

.theme-spotify .theme-body {
    background: #121212;
    color: #b3b3b3;
}

.theme-spotify .mock-btn {
    background: #1db954;
    color: black;
    border-radius: 20px;
    font-weight: 700;
}

.theme-spotify .mock-bar {
    background: #1db954;
    width: 80%;
}

.theme-spotify .mock-card {
    background: #181818;
    border: none;
}

.theme-spotify .theme-name {
    background: #121212;
    color: #1db954;
}

/* Theme: Sunset */
.theme-sunset .theme-header {
    background: #1a0a0a;
}

.theme-sunset .theme-dot:nth-child(1) {
    background: #ff6b35;
}

.theme-sunset .theme-dot:nth-child(2) {
    background: #f7c948;
}

.theme-sunset .theme-dot:nth-child(3) {
    background: #e23e57;
}

.theme-sunset .theme-body {
    background: linear-gradient(180deg, #1a0a0a, #2a0a15);
    color: #ffeedd;
}

.theme-sunset .mock-btn {
    background: linear-gradient(135deg, #ff6b35, #e23e57);
    color: white;
}

.theme-sunset .mock-bar {
    background: linear-gradient(90deg, #ff6b35, #f7c948);
    width: 65%;
}

.theme-sunset .mock-card {
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.theme-sunset .theme-name {
    background: #1a0a0a;
    color: #ff6b35;
}

/* Theme: Ocean */
.theme-ocean .theme-header {
    background: #0a1628;
}

.theme-ocean .theme-dot:nth-child(1) {
    background: #00b4d8;
}

.theme-ocean .theme-dot:nth-child(2) {
    background: #0077b6;
}

.theme-ocean .theme-dot:nth-child(3) {
    background: #48cae4;
}

.theme-ocean .theme-body {
    background: linear-gradient(180deg, #0a1628, #0a1e3d);
    color: #caf0f8;
}

.theme-ocean .mock-btn {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
}

.theme-ocean .mock-bar {
    background: linear-gradient(90deg, #48cae4, #0077b6);
    width: 75%;
}

.theme-ocean .mock-card {
    background: rgba(0, 180, 216, 0.08);
    border: 1px solid rgba(0, 180, 216, 0.2);
}

.theme-ocean .theme-name {
    background: #0a1628;
    color: #00b4d8;
}

/* Theme: Cyberpunk */
.theme-cyber .theme-header {
    background: #0d0221;
}

.theme-cyber .theme-dot:nth-child(1) {
    background: #f5e642;
}

.theme-cyber .theme-dot:nth-child(2) {
    background: #ff2a6d;
}

.theme-cyber .theme-dot:nth-child(3) {
    background: #05d9e8;
}

.theme-cyber .theme-body {
    background: linear-gradient(180deg, #0d0221, #150535);
    color: #d1f7ff;
}

.theme-cyber .mock-btn {
    background: #f5e642;
    color: #0d0221;
    font-weight: 800;
}

.theme-cyber .mock-bar {
    background: linear-gradient(90deg, #ff2a6d, #f5e642);
    width: 60%;
}

.theme-cyber .mock-card {
    background: rgba(5, 217, 232, 0.06);
    border: 1px solid rgba(5, 217, 232, 0.2);
}

.theme-cyber .theme-name {
    background: #0d0221;
    color: #f5e642;
}

/* Theme: Synthwave Jukebox */
.theme-synthwave .theme-header {
    background: #0d0221;
}

.theme-synthwave .theme-dot:nth-child(1) {
    background: #ff2a6d;
}

.theme-synthwave .theme-dot:nth-child(2) {
    background: #05d9e8;
}

.theme-synthwave .theme-dot:nth-child(3) {
    background: #b388ff;
}

.theme-synthwave .theme-body {
    background: linear-gradient(180deg, #0d0221, #150535);
    color: #f5e6ff;
}

.theme-synthwave .mock-btn {
    background: linear-gradient(135deg, #ff2a6d, #b388ff);
    color: white;
}

.theme-synthwave .mock-bar {
    background: linear-gradient(90deg, #ff2a6d, #05d9e8, #b388ff);
    width: 85%;
    animation: synthwave-bar 3s ease-in-out infinite alternate;
}

@keyframes synthwave-bar {
    0% {
        width: 60%;
    }

    100% {
        width: 90%;
    }
}

.theme-synthwave .mock-card {
    background: rgba(255, 42, 109, 0.06);
    border: 1px solid rgba(255, 42, 109, 0.2);
}

.theme-synthwave .theme-name {
    background: #0d0221;
    color: #ff2a6d;
}

/* Theme: Aurora Flux */
.theme-aurora .theme-header {
    background: #020c1b;
}

.theme-aurora .theme-dot:nth-child(1) {
    background: #64ffda;
}

.theme-aurora .theme-dot:nth-child(2) {
    background: #a855f7;
}

.theme-aurora .theme-dot:nth-child(3) {
    background: #3b82f6;
}

.theme-aurora .theme-body {
    background: linear-gradient(180deg, #020c1b, #0a1929);
    color: #ccd6f6;
}

.theme-aurora .mock-btn {
    background: linear-gradient(135deg, #64ffda, #3b82f6);
    color: #020c1b;
    font-weight: 700;
}

.theme-aurora .mock-bar {
    background: linear-gradient(90deg, #64ffda, #a855f7, #3b82f6);
    background-size: 200% 100%;
    width: 75%;
    animation: aurora-bar-flow 4s ease infinite;
}

@keyframes aurora-bar-flow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.theme-aurora .mock-card {
    background: rgba(100, 255, 218, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.15);
}

.theme-aurora .theme-name {
    background: #020c1b;
    color: #64ffda;
}

/* Theme: Plasma Wave */
.theme-plasma .theme-header {
    background: #10002b;
}

.theme-plasma .theme-dot:nth-child(1) {
    background: #9d4edd;
}

.theme-plasma .theme-dot:nth-child(2) {
    background: #f72585;
}

.theme-plasma .theme-dot:nth-child(3) {
    background: #7b2ff7;
}

.theme-plasma .theme-body {
    background: linear-gradient(180deg, #10002b, #1a0040);
    color: #e0aaff;
}

.theme-plasma .mock-btn {
    background: linear-gradient(135deg, #9d4edd, #f72585);
    color: white;
}

.theme-plasma .mock-bar {
    background: linear-gradient(90deg, #9d4edd, #f72585, #7209b7);
    width: 70%;
}

.theme-plasma .mock-card {
    background: rgba(157, 78, 221, 0.08);
    border: 1px solid rgba(157, 78, 221, 0.2);
}

.theme-plasma .theme-name {
    background: #10002b;
    color: #9d4edd;
}

/* Theme: Hologram DJ */
.theme-hologram .theme-header {
    background: #000814;
}

.theme-hologram .theme-dot:nth-child(1) {
    background: #00b4d8;
}

.theme-hologram .theme-dot:nth-child(2) {
    background: #00f5d4;
}

.theme-hologram .theme-dot:nth-child(3) {
    background: #90e0ef;
}

.theme-hologram .theme-body {
    background: linear-gradient(180deg, #000814, #001d3d);
    color: #90e0ef;
}

.theme-hologram .mock-btn {
    background: linear-gradient(135deg, #00b4d8, #00f5d4);
    color: #000814;
    font-weight: 700;
}

.theme-hologram .mock-bar {
    background: linear-gradient(90deg, #00b4d8, #00f5d4);
    width: 80%;
    opacity: 0.8;
}

.theme-hologram .mock-card {
    background: rgba(0, 180, 216, 0.06);
    border: 1px solid rgba(0, 180, 216, 0.15);
    backdrop-filter: blur(4px);
}

.theme-hologram .theme-name {
    background: #000814;
    color: #00b4d8;
}

/* Theme: Retrowave Vinyl */
.theme-retrowave .theme-header {
    background: #1a0a2e;
}

.theme-retrowave .theme-dot:nth-child(1) {
    background: #ff6ec7;
}

.theme-retrowave .theme-dot:nth-child(2) {
    background: #39ff14;
}

.theme-retrowave .theme-dot:nth-child(3) {
    background: #ffdd00;
}

.theme-retrowave .theme-body {
    background: linear-gradient(180deg, #1a0a2e, #2a1040);
    color: #ffd8e4;
}

.theme-retrowave .mock-btn {
    background: #ff6ec7;
    color: #1a0a2e;
    font-weight: 800;
    font-family: 'Press Start 2P', monospace;
    font-size: 9px;
}

.theme-retrowave .mock-bar {
    background: linear-gradient(90deg, #ff6ec7, #ffdd00, #39ff14);
    width: 72%;
}

.theme-retrowave .mock-card {
    background: rgba(255, 110, 199, 0.06);
    border: 1px solid rgba(255, 110, 199, 0.15);
}

.theme-retrowave .theme-name {
    background: #1a0a2e;
    color: #ff6ec7;
}

@media (max-width: 1024px) {
    .chameleon-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .chameleon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .chameleon-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════ */
.faq-list {
    max-width: 700px;
    margin: 40px auto 0;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(108, 92, 231, 0.3);
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: var(--bg-card);
    border: none;
    color: var(--fg-primary);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-question .faq-icon {
    font-size: 20px;
    transition: transform 0.3s;
    color: var(--accent-1);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 24px 18px;
    font-size: 14px;
    color: var(--fg-secondary);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.testimonial-card {
    padding: 28px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-stars {
    color: #feca57;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--fg-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.testimonial-name {
    font-size: 13px;
    font-weight: 600;
}

.testimonial-role {
    font-size: 11px;
    color: var(--fg-muted);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════
   TECH STACK
   ═══════════════════════════════════════════════════════════ */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 40px;
}

.tech-pill {
    padding: 10px 20px;
    border-radius: 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 500;
    color: var(--fg-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.tech-pill:hover {
    border-color: var(--accent-1);
    color: var(--fg-primary);
    transform: translateY(-2px);
}

.tech-pill span {
    font-size: 16px;
}

/* ═══════════════════════════════════════════════════════════
   SYSTEM REQUIREMENTS
   ═══════════════════════════════════════════════════════════ */
.sysreq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 700px;
    margin: 30px auto 0;
}

.sysreq-card {
    padding: 24px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.sysreq-card h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sysreq-card ul {
    list-style: none;
}

.sysreq-card li {
    font-size: 13px;
    color: var(--fg-secondary);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sysreq-card li::before {
    content: '•';
    color: var(--accent-2);
}

@media (max-width: 768px) {
    .sysreq-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════
   DOWNLOAD CTA
   ═══════════════════════════════════════════════════════════ */
.download-cta {
    text-align: center;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.download-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(108, 92, 231, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    border-radius: 14px;
    background: var(--accent-gradient);
    color: white;
    font-size: 18px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 30px rgba(108, 92, 231, 0.3);
}

.download-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 50px rgba(108, 92, 231, 0.5);
}

.download-sub {
    margin-top: 14px;
    font-size: 13px;
    color: var(--fg-muted);
}

/* ═══════════════════════════════════════════════════════════
   FEATURE HIGHLIGHT (large card with visual)
   ═══════════════════════════════════════════════════════════ */
.feature-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 60px 0;
}

.feature-highlight.reverse {
    direction: rtl;
}

.feature-highlight.reverse>* {
    direction: ltr;
}

.fh-content h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.fh-content p {
    font-size: 15px;
    color: var(--fg-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.fh-content .fh-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.fh-content .fh-tag {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(0, 206, 201, 0.1);
    color: var(--accent-2);
}

.fh-visual {
    padding: 32px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 768px) {

    .feature-highlight,
    .feature-highlight.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
}

/* ═══════════════════════════════════════════════════════════
   EVOLUTION AI ANIMATION
   ═══════════════════════════════════════════════════════════ */
.evo-brain {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.evo-pulse {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    animation: evo-glow 3s ease-in-out infinite;
}

@keyframes evo-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(108, 92, 231, 0.3);
    }

    50% {
        box-shadow: 0 0 60px rgba(108, 92, 231, 0.6), 0 0 100px rgba(0, 206, 201, 0.2);
    }
}

.evo-connections {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.evo-node {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(108, 92, 231, 0.08);
    border: 1px solid rgba(108, 92, 231, 0.15);
    color: var(--accent-1);
    animation: evo-fade 4s ease-in-out infinite;
}

.evo-node:nth-child(2) {
    animation-delay: 0.5s;
}

.evo-node:nth-child(3) {
    animation-delay: 1s;
}

.evo-node:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes evo-fade {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* ═══════════════════════════════════════════════════════════
   TECH STACK — Animated pills
   ═══════════════════════════════════════════════════════════ */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 32px;
}

.tech-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 500;
    color: var(--fg-secondary);
    transition: all 0.3s ease;
    cursor: default;
}

.tech-pill:hover {
    background: rgba(108, 92, 231, 0.08);
    border-color: rgba(108, 92, 231, 0.3);
    color: var(--fg-primary);
    transform: translateY(-2px);
}

.tech-pill span {
    font-size: 18px;
}

/* ═══════════════════════════════════════════════════════════
   SYSTEM REQUIREMENTS
   ═══════════════════════════════════════════════════════════ */
.sysreq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sysreq-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    text-align: left;
}

.sysreq-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--fg-primary);
}

.sysreq-card ul {
    list-style: none;
    padding: 0;
}

.sysreq-card li {
    padding: 6px 0;
    font-size: 13px;
    color: var(--fg-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sysreq-card li:last-child {
    border-bottom: none;
}

.sysreq-card li::before {
    content: '✓ ';
    color: var(--accent-1);
    margin-right: 6px;
}

@media (max-width: 600px) {
    .sysreq-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════
   PRICING — 3 tiers
   ═══════════════════════════════════════════════════════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border-color: var(--accent-1);
    background: linear-gradient(180deg, rgba(108, 92, 231, 0.08), var(--bg-card));
    transform: scale(1.04);
}

.pricing-card.featured::before {
    content: '⭐ POPULAIRE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.pricing-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--fg-primary);
    margin-bottom: 4px;
}

.pricing-desc {
    font-size: 13px;
    color: var(--fg-secondary);
    margin-bottom: 20px;
}

.pricing-price {
    font-size: 36px;
    font-weight: 900;
    color: var(--fg-primary);
    margin-bottom: 4px;
}

.pricing-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--fg-secondary);
}

.pricing-annual {
    font-size: 11px;
    color: var(--fg-muted);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 6px 0;
    font-size: 13px;
    color: var(--fg-secondary);
}

.pricing-features li::before {
    content: '✓ ';
    color: #55efc4;
    font-weight: 700;
    margin-right: 6px;
}

.pricing-btn {
    width: 100%;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font);
    transition: all 0.2s ease;
}

.pricing-btn.primary {
    background: var(--accent-gradient);
    color: white;
}

.pricing-btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
}

.pricing-btn.secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--fg-primary);
    border: 1px solid var(--border);
}

.pricing-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: none;
    }
}

/* ═══════════════════════════════════════════════════════════
   DOWNLOAD CTA
   ═══════════════════════════════════════════════════════════ */
.download-cta {
    text-align: center;
    padding: 80px 0;
    position: relative;
}

.download-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-1), transparent);
}

.download-btn {
    padding: 18px 48px;
    border: none;
    border-radius: 14px;
    background: var(--accent-gradient);
    color: white;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    font-family: var(--font);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.3);
}

.download-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(108, 92, 231, 0.5);
}

.download-sub {
    margin-top: 14px;
    font-size: 13px;
    color: var(--fg-muted);
}