/* Landing page — aftermarket.online */

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #e0e0e0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero */
.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 40px;
    min-height: 60vh;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    padding: 14px 40px;
    font-size: 1.1rem;
    border-radius: 8px;
    background: #4361ee;
    border-color: #4361ee;
    transition: transform 0.15s, box-shadow 0.15s;
}
.hero-cta:hover {
    background: #3a56d4;
    border-color: #3a56d4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67,97,238,0.4);
}

/* Features */
.features-section {
    padding: 40px 20px 80px;
}

.feature-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    transition: border-color 0.2s, background 0.2s;
}
.feature-card:hover {
    border-color: rgba(67,97,238,0.4);
    background: rgba(255,255,255,0.09);
}

.feature-icon {
    font-size: 2rem;
    color: #4361ee;
    margin-bottom: 16px;
}

.feature-card h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.5;
}

/* Footer */
.landing-footer {
    padding: 24px 20px;
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.05rem; }
    .hero-section { padding: 60px 16px 30px; min-height: 50vh; }
}
