:root {
    --primary: #10b531;
    --primary-dark: #0d9428;
    --white: #FFFFFF;
    --bg-light: #f8f9fc;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
}

.landing-container {
    min-height: 100vh;
    background-image: 
        linear-gradient(135deg, rgba(16, 181, 49, 0.15) 0%, rgba(13, 148, 40, 0.25) 100%),
        url('../images/landing_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.landing-container::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--primary);
    border-radius: 50%;
    top: -250px;
    right: -250px;
    opacity: 0.08;
}

.landing-container::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    opacity: 0.08;
}

.landing-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 1;
}

.logo-container {
    margin-bottom: 30px;
}

.brand-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.hero-text {
    color: var(--white);
}

.hero-text h1 {
    font-size: 3.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-text .brand-highlight {
    color: var(--primary);
    display: block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: var(--white);
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    font-weight: 500;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: var(--white);
    display: flex;
    align-items: center;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.features-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    font-size: 1.4rem;
    margin-right: 15px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.cta-buttons {
    display: flex;
    gap: 16px;
}

.btn {
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: #0d9428;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 181, 49, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--navy-blue);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
}

.card-3d {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(16, 181, 49, 0.2);
    border-radius: 12px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green);
    display: block;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--white);
    margin-top: 5px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

.info-box {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--green);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.info-box h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

.info-box p {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.5;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

@media (max-width: 968px) {
    .landing-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}
