/* assets/css/landing.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f4f7fa;
}

.landing-header {
    background: linear-gradient(135deg, #007bff 0%, #00c4b4 100%);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1s ease-in;
}

.landing-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.landing-header p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.btn.primary {
    background-color: #ffffff;
    color: #007bff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn.secondary {
    background-color: #ffffff33;
    color: white;
    border: 1px solid white;
}

.btn.secondary:hover {
    background-color: #ffffff;
    color: #007bff;
    transform: translateY(-2px);
}

.landing-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.hero {
    text-align: center;
    margin-bottom: 4rem;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2a44;
}

.hero p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features {
    text-align: center;
}

.features h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a2a44;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a2a44;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
}

.landing-footer {
    background: #1a2a44;
    color: white;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
}

.landing-footer p {
    opacity: 0.8;
}

/* Animasi */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsif */
@media (max-width: 768px) {
    .landing-header h1 {
        font-size: 2rem;
    }

    .landing-header p {
        font-size: 1rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .features h3 {
        font-size: 1.6rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .landing-header {
        padding: 3rem 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}