/* ====================================================
   LANDING PAGE - STABLE VERSION (ALWAYS VISIBLE)
   NO HOVER DEPENDENCIES - ALL CONTENT VISIBLE BY DEFAULT
   ==================================================== */

/* ===== CORE RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== WRAPPER ===== */
.landing-wrapper {
    width: 100%;
    min-height: 100vh;
    background: #0c0a19;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SECTION COMMON ===== */
section {
    width: 100%;
}

.section-head {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ===== BUTTONS (ALWAYS VISIBLE) ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    /* ALWAYS VISIBLE */
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.btn-primary {
    background: #7c5cfc;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(124, 92, 252, 0.3);
}

.btn-primary:hover {
    background: #8b6dfc;
    box-shadow: 0 6px 18px rgba(124, 92, 252, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* ===== HERO SECTION (ALWAYS VISIBLE) ===== */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #0c0a19 0%, #14102B 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 92, 252, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    /* ALWAYS VISIBLE */
    opacity: 1;
    visibility: visible;
    transform: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(124, 92, 252, 0.1);
    border: 1px solid rgba(124, 92, 252, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    width: fit-content;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #7c5cfc;
    border-radius: 50%;
    /* Subtle pulse animation - does not affect visibility */
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 32px 0;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
    /* ALWAYS VISIBLE */
    opacity: 1;
    visibility: visible;
}

.stat-value {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* ===== HERO VISUAL (ALWAYS VISIBLE) ===== */
.hero-right {
    /* ALWAYS VISIBLE */
    opacity: 1;
    visibility: visible;
    transform: none;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.visual-card {
    background: rgba(20, 20, 30, 0.5);
    border: 1px solid rgba(124, 92, 252, 0.15);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    /* ALWAYS VISIBLE */
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.visual-card:hover {
    border-color: rgba(124, 92, 252, 0.3);
    transform: translateX(-6px);
}

.visual-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.visual-icon {
    width: 36px;
    height: 36px;
    background: rgba(124, 92, 252, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c5cfc;
}

.visual-header span {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.visual-bar {
    height: 8px;
    width: 65%;
    background: linear-gradient(90deg, #7c5cfc 0%, rgba(124, 92, 252, 0.3) 100%);
    border-radius: 4px;
}

.visual-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mini-bar {
    height: 7px;
    background: linear-gradient(90deg, #7c5cfc 0%, rgba(124, 92, 252, 0.3) 100%);
    border-radius: 4px;
}

/* ===== FEATURES SECTION (ALWAYS VISIBLE) ===== */
.features {
    padding: 70px 0;
    background: linear-gradient(180deg, #14102B 0%, #0c0a19 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(20, 20, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    /* ALWAYS VISIBLE */
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    /* EQUAL HEIGHT */
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    background: rgba(20, 20, 30, 0.6);
    border-color: rgba(124, 92, 252, 0.25);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(124, 92, 252, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c5cfc;
    margin-bottom: 18px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.feature-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    flex: 1;
}

/* ===== TRUST SECTION (ALWAYS VISIBLE) ===== */
.trust {
    padding: 70px 0;
    background: #0c0a19;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-card {
    background: rgba(20, 20, 30, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.3s ease;
    /* ALWAYS VISIBLE */
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    /* EQUAL HEIGHT */
    display: flex;
    flex-direction: column;
}

.trust-card:hover {
    background: rgba(20, 20, 30, 0.5);
    border-color: rgba(124, 92, 252, 0.2);
    transform: translateY(-4px);
}

.trust-icon {
    width: 52px;
    height: 52px;
    background: rgba(124, 92, 252, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c5cfc;
    margin: 0 auto 16px;
}

.trust-title {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.trust-text {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    flex: 1;
}

/* ===== CTA SECTION (ALWAYS VISIBLE) ===== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(124, 92, 252, 0.08) 0%, #0c0a19 100%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 14px 0;
    letter-spacing: -0.01em;
}

.cta-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 32px 0;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .cta-title {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .feature-card,
    .trust-card {
        padding: 24px 20px;
    }
}

.btn-hero-main {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 15px 32px;
    background: var(--color-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(124, 92, 252, 0.3);
}

.btn-hero-main:hover {
    background: #8b6dfc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 92, 252, 0.4);
}

.btn-hero-alt {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 15px 32px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-hero-alt:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* ===== HERO STATS ===== */
.hero-stats-row {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-md);
}

.stat-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1;
}

.stat-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* ===== HERO VISUAL (ABSTRACT ILLUSTRATION) ===== */
.hero-visual {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.visual-card {
    background: rgba(20, 20, 30, 0.4);
    border: 1px solid rgba(124, 92, 252, 0.15);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.visual-card:hover {
    border-color: rgba(124, 92, 252, 0.3);
    transform: translateX(-8px);
}

.card-1 {
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    animation: float 7s ease-in-out infinite;
    animation-delay: -2s;
}

.card-3 {
    animation: float 8s ease-in-out infinite;
    animation-delay: -4s;
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.card-icon {
    width: 36px;
    height: 36px;
    background: rgba(124, 92, 252, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.card-header span {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.card-bar {
    height: 8px;
    background: linear-gradient(90deg, var(--color-primary) 0%, rgba(124, 92, 252, 0.3) 100%);
    border-radius: 4px;
    width: 70%;
}

.card-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mini-bar {
    height: 6px;
    background: linear-gradient(90deg, var(--color-primary) 0%, rgba(124, 92, 252, 0.3) 100%);
    border-radius: 3px;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    width: 100%;
    padding: 60px var(--space-xl) 50px;
    background: linear-gradient(180deg, rgba(20, 15, 35, 1) 0%, rgba(12, 10, 25, 1) 100%);
}

.features-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
}

.section-subtext {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-box {
    background: rgba(20, 20, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: rgba(20, 20, 30, 0.6);
    border-color: rgba(124, 92, 252, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(124, 92, 252, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--color-primary);
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 var(--space-sm) 0;
}

.feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    width: 100%;
    padding: 50px var(--space-xl);
    background: rgba(12, 10, 25, 1);
}

.benefits-wrapper {
    max-width: 1080px;
    margin: 0 auto;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(20, 20, 30, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(20, 20, 30, 0.5);
    border-color: rgba(124, 92, 252, 0.2);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(124, 92, 252, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.benefit-content {
    flex: 1;
}

.benefit-heading {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 var(--space-xs) 0;
}

.benefit-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ===== STATS SHOWCASE SECTION ===== */
.stats-showcase-section {
    width: 100%;
    padding: 50px var(--space-xl);
    background: linear-gradient(180deg, rgba(12, 10, 25, 1) 0%, rgba(15, 12, 28, 1) 100%);
}

.stats-showcase-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.stats-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-showcase-box {
    background: rgba(20, 20, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-showcase-box:hover {
    background: rgba(20, 20, 30, 0.6);
    border-color: rgba(124, 92, 252, 0.3);
    transform: translateY(-4px);
}

.stat-showcase-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(124, 92, 252, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.stat-showcase-value {
    font-size: 32px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-showcase-label {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
}

.stat-showcase-description {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== USE CASES SECTION ===== */
.use-cases-section {
    width: 100%;
    padding: 50px var(--space-xl);
    background: linear-gradient(180deg, rgba(15, 12, 28, 1) 0%, rgba(12, 10, 25, 1) 100%);
}

.use-cases-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.use-case-card {
    background: rgba(20, 20, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    background: rgba(20, 20, 30, 0.6);
    border-color: rgba(124, 92, 252, 0.25);
    transform: translateY(-4px);
}

.use-case-icon {
    width: 64px;
    height: 64px;
    background: rgba(124, 92, 252, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.use-case-title {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 12px 0;
}

.use-case-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    width: 100%;
    padding: 60px var(--space-xl) 80px;
    background: linear-gradient(135deg, rgba(124, 92, 252, 0.08) 0%, rgba(20, 15, 35, 1) 100%);
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-heading {
    font-size: 36px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 17px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 32px 0;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-main {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 16px 40px;
    background: var(--color-primary);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(124, 92, 252, 0.3);
}

.btn-cta-main:hover {
    background: #8b6dfc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 92, 252, 0.4);
}

.btn-cta-alt {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-cta-alt:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .hero-heading {
        font-size: 42px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .stats-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 60px var(--space-lg) 40px;
    }
    
    .hero-heading {
        font-size: 32px;
    }
    
    .hero-text {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero-main,
    .btn-hero-alt {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats-row {
        flex-wrap: wrap;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-showcase-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .cta-heading {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 26px;
    }
    
    .section-heading {
        font-size: 24px;
    }
    
    .cta-heading {
        font-size: 24px;
    }
    
    .stat-box {
        min-width: 100px;
    }
    
    .feature-box {
        padding: 20px;
    }
    
    .use-case-card {
        padding: 24px 20px;
    }
}


/* ===== CHANGELOG SECTION ===== */
.changelog-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0c0a19 0%, #14102B 100%);
}

.changelog-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.changelog-section .section-title {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #7c5cfc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.changelog-section .section-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
}

.changelog-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

.changelog-loading {
    text-align: center;
    padding: 60px;
    color: rgba(255, 255, 255, 0.6);
}

.changelog-loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(124, 92, 252, 0.2);
    border-top-color: #7c5cfc;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.changelog-empty,
.changelog-error {
    text-align: center;
    padding: 60px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Individual Changelog Card */
.changelog-card {
    background: rgba(20, 16, 43, 0.8);
    border: 1px solid rgba(124, 92, 252, 0.15);
    border-radius: 20px;
    padding: 28px 32px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.changelog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7c5cfc 0%, #5865F2 50%, #7c5cfc 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.changelog-card:hover {
    background: rgba(30, 24, 60, 0.9);
    border-color: rgba(124, 92, 252, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(124, 92, 252, 0.15);
}

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

/* First card (latest) special styling */
.changelog-card:first-child {
    border-color: rgba(124, 92, 252, 0.3);
    background: linear-gradient(135deg, rgba(124, 92, 252, 0.08) 0%, rgba(20, 16, 43, 0.9) 100%);
}

.changelog-card:first-child::before {
    opacity: 1;
}

.changelog-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.changelog-version {
    background: linear-gradient(135deg, #7c5cfc 0%, #5865F2 100%);
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(124, 92, 252, 0.3);
}

.changelog-date {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    font-weight: 500;
}

.changelog-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.3;
}

.changelog-description {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 20px;
}

/* Changes List */
.changelog-changes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0;
}

.changelog-change {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.changelog-change:last-child {
    margin-bottom: 0;
}

.changelog-change:hover {
    background: rgba(124, 92, 252, 0.08);
    transform: translateX(4px);
}

.change-type {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.changelog-added .change-type { color: #22c55e; }
.changelog-fixed .change-type { color: #f59e0b; }
.changelog-improved .change-type { color: #3b82f6; }
.changelog-removed .change-type { color: #ef4444; }
.changelog-update .change-type { color: #7c5cfc; }

/* Responsive */
@media (max-width: 768px) {
    .changelog-section {
        padding: 60px 0;
    }
    
    .changelog-section .section-title {
        font-size: 32px;
    }
    
    .changelog-card {
        padding: 20px 24px;
        border-radius: 16px;
    }
    
    .changelog-title {
        font-size: 18px;
    }
    
    .changelog-change {
        padding: 10px 12px;
        font-size: 13px;
    }
}

