/* Index (Homepage) Specific Styles */

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin: 0 auto 20px;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(240, 240, 240, 0.8);
    line-height: 1.7;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    background-color: rgba(26, 31, 36, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-text-color);
}

.feature-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--highlight-color);
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.screenshot-gallery img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.screenshot-gallery img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.screenshots p {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 20px;
    color: rgba(240, 240, 240, 0.8);
}

/* Trust section */
.trust p {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(240, 240, 240, 0.8);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.trust-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background-color: rgba(0, 162, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(0, 162, 255, 0.3);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial:hover {
    background-color: rgba(0, 162, 255, 0.08);
    transform: translateY(-5px);
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    text-align: left;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--highlight-color);
    display: block;
    text-align: right;
}

/* Hero section specific styles */
.hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 0 80px;
    position: relative;
}

.hero .echelon-logo {
    max-width: 240px;
    margin-bottom: 50px;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

/* Styles for the download section on the homepage */
#download h2 { /* section h2 is already centered by global styles */
    margin-bottom: 35px; /* INCREASED from 20px for more space below line */
}

/* Adjust the blue line under H2 specifically for this section */
#download h2::after {
    bottom: -8px; /* Default is -15px, bringing it closer to the text */
}

#download .download-intro-text {
    text-align: center;
    font-size: 1.2rem; 
    color: rgba(240, 240, 240, 0.85);
    max-width: 800px; /* INCREASED from 700px */
    margin: 0 auto 30px auto; 
    line-height: 1.6;
}

#download .trial-highlight {
    color: var(--text-color); /* White text */
    font-weight: 700; /* Bolder */
    background-color: #383e45; /* Custom mid-dark grey background */
    padding: 4px 10px; /* Slightly adjusted padding */
    border-radius: 5px; 
    display: inline-block; 
    line-height: 1.4; 
}

#download .cta-buttons { /* .cta-buttons from base.css already has justify-content: center */
    /* No additional centering styles needed here if base.css is sufficient */
}

/* Reduce overall vertical padding for the #download section specifically */
section#download.glass-card {
    padding-top: 50px;
    padding-bottom: 50px;
    /* Horizontal padding will still be 60px from .glass-card in base.css */
}

/* --- Responsive Adjustments for Index --- */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .trust-badges {
        gap: 10px;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.4rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero .echelon-logo {
        max-width: 180px;
        margin-bottom: 30px;
    }
    .screenshot-gallery {
        grid-template-columns: 1fr; 
        gap: 20px; 
    }
} 