/* SnapRead Landing Page Styles */

.snapread-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 100px 0 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.snapread-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.snapread-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.snapread-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.snapread-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Feature Sections */
.snap-feature-section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.snap-feature-section:nth-child(even) {
    background-color: #f8f9fa;
}

.snap-feature-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.snap-feature-section:nth-child(even) .snap-feature-container {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 700;
}

.feature-text p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.feature-visual {
    flex: 1.2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-visual img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.feature-visual:hover img {
    transform: scale(1.02);
}

/* CTA Section */
.snap-cta-section {
    padding: 80px 0;
    text-align: center;
    background: #1a1a2e;
    color: white;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-snap-primary {
    background: #007bff;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.btn-snap-primary:hover {
    background: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-snap-outline {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.btn-snap-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

/* Features Grid */
.snap-features-grid-section {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #fff;
    border-color: #007bff;
}

.feature-card i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card li {
    margin-bottom: 10px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.feature-card li i {
    font-size: 1rem;
    margin-bottom: 0;
    color: #2ecc71;
}

.snap-spec-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 992px) {
    .snap-feature-container {
        flex-direction: column !important;
        text-align: center;
        gap: 40px;
    }

    .snapread-hero h1 {
        font-size: 2.5rem;
    }
}