:root {
    --primary-green: #0f6b41;
    --primary-green-dark: #0b5b36;
    --primary-green-light: #1f8a57;
    --primary-green-accent: #2fb06a;
    --white: #ffffff;
    --white-soft: rgba(255, 255, 255, 0.92);
    --white-faint: rgba(255, 255, 255, 0.06);
    --white-muted: rgba(255, 255, 255, 0.85);
}

/* Reset and base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    height: 100%;
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.hero {
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 40%, var(--primary-green-accent) 100%);
    color: var(--white);
    position: relative;
    padding: 40px 20px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(47, 176, 106, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(15, 107, 65, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(31, 138, 87, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 20px 0;
}

/* Icon Section */
.icon-card {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.main-icon {
    width: 42px;
    height: 42px;
    color: var(--white);
    stroke-width: 1.5;
}

/* Title Section */
.title {
    font-size: 2.5rem;
    font-weight: 800;
    max-width: 800px;
    margin: 0 auto 15px;
    line-height: 1.2;
    color: var(--white-soft);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Subtitle Section */
.subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 35px;
    color: var(--white-muted);
    line-height: 1.5;
}

/* Features Section */
.features {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.feature {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    padding: 30px 25px;
    width: 340px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.feature-icon i {
    width: 30px;
    height: 30px;
    color: var(--white);
    stroke-width: 1.5;
}

.feature-text {
    text-align: left;
    flex: 1;
}

.feature-text h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--white-soft);
}

.feature-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--white-muted);
}

/* CTA Section */
.cta-wrap {
    display: flex;
    justify-content: center;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    background: var(--white);
    border-radius: 16px;
    color: var(--primary-green-dark);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(11, 91, 54, 0.2);
    transition: all 0.3s ease;
    font-size: 1.05rem;
    border: 2px solid transparent;
}

.cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(11, 91, 54, 0.3);
    background: var(--white-soft);
}

.cta-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Gradient overlay */
.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.08));
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding: 30px 20px;
    }
    
    .title {
        font-size: 2.2rem;
    }
    
    .feature {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        max-height: none;
        padding: 30px 16px;
    }
    
    .title {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .features {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .feature {
        width: 100%;
        max-width: 380px;
        padding: 25px 22px;
    }
    
    .icon-card {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .main-icon {
        width: 36px;
        height: 36px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.7rem;
    }
    
    .subtitle {
        font-size: 0.95rem;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
        gap: 18px;
        padding: 22px 20px;
    }
    
    .feature-text {
        text-align: center;
    }
    
    .feature-icon {
        align-self: center;
        width: 55px;
        height: 55px;
    }
    
    .feature-icon i {
        width: 26px;
        height: 26px;
    }
    
    .cta {
        padding: 14px 28px;
        font-size: 1rem;
    }
}