* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #000;
    min-height: 100vh;
}

.hero {
    background: linear-gradient(135deg, 
        rgba(13, 27, 42, 0.95) 0%, 
        rgba(27, 38, 59, 0.92) 30%, 
        rgba(45, 90, 79, 0.9) 60%, 
        rgba(74, 124, 89, 0.88) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="botanicalPattern" patternUnits="userSpaceOnUse" width="40" height="40"><path d="M20,5 Q30,15 20,25 Q10,15 20,5" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.8"/><circle cx="20" cy="35" r="1.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23botanicalPattern)"/></svg>');
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 25% 75%, rgba(74, 124, 89, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(45, 90, 79, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(27, 38, 59, 0.1) 0%, transparent 70%);
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: rotate(0deg) translateY(0px); opacity: 1; }
    50% { transform: rotate(180deg) translateY(-20px); opacity: 0.8; }
    100% { transform: rotate(360deg) translateY(0px); opacity: 1; }
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 4.2rem);
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    animation: slideInFromTop 1.2s ease-out;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    margin-bottom: 2rem;
    opacity: 0.92;
    font-weight: 300;
    animation: slideInFromBottom 1.2s ease-out 0.3s both;
}

.hero-description {
    font-size: clamp(1rem, 2.8vw, 1.15rem);
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.88;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1.2s ease-out 0.6s both;
}

@keyframes slideInFromTop {
    0% { transform: translateY(-60px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes slideInFromBottom {
    0% { transform: translateY(60px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.cta-buttons {
    display: flex;
    gap: 1.8rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInFromBottom 1.2s ease-out 0.9s both;
}

.btn {
    display: inline-block;
    padding: 1.1rem 2.2rem;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-primary {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border: 2px solid #4CAF50;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
    border-color: #3d8b40;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.75);
    opacity: 0.8;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s infinite 2s;
}

.scroll-indicator:hover {
    opacity: 1;
    color: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateX(-50%) translateY(0); 
    }
    40% { 
        transform: translateX(-50%) translateY(-12px); 
    }
    60% { 
        transform: translateX(-50%) translateY(-6px); 
    }
}

.stats-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
    padding: 1rem 2rem;
    position: relative;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: #2d5a27;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 300;
    position: relative;
}

.stats-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #2d5a27);
    border-radius: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.8rem 2rem;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(74, 124, 89, 0.08);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50 0%, #45a049 50%, #2d5a27 100%);
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.stat-card:hover::after {
    width: 200%;
    height: 200%;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: rgba(74, 124, 89, 0.15);
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #4a7c59;
    display: block;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1.15rem;
    color: #666;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.featured-section {
    background: linear-gradient(135deg, #f8faf9 0%, #ffffff 50%, #f0f7f0 100%);
    padding: 2rem 2rem;
    position: relative;
}

.featured-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.featured-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: #2d5a27;
    margin-bottom: 1.2rem;
    font-weight: 300;
    position: relative;
}

.featured-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #2d5a27);
    border-radius: 2px;
}

.featured-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.featured-plants {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.plant-preview {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(74, 124, 89, 0.08);
}

.plant-preview:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border-color: rgba(74, 124, 89, 0.15);
}

.plant-preview-image {
    height: 220px;
    background: linear-gradient(135deg, #4a7c59 0%, #6fa569 50%, #4CAF50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.plant-preview-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.plant-preview-content {
    padding: 2.2rem 1.8rem;
}

.plant-preview h3 {
    color: #2d5a27;
    margin-bottom: 0.6rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.plant-preview-scientific {
    color: #888;
    font-style: italic;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.plant-preview-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-section {
    background: linear-gradient(135deg, #1a2f1a 0%, #2d5a27 50%, #1a4a3a 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(74, 124, 89, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 90, 39, 0.2) 0%, transparent 50%);
    opacity: 0.6;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
    border-radius: 2px;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.9;
    opacity: 0.92;
}

footer {
    background: linear-gradient(135deg, #0d1012 0%, #1a2f1a 100%);
    color: rgba(255,255,255,0.8);
    text-align: center;
    padding: 2.5rem 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 1rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .stats-section, .featured-section, .about-section {
        padding: 4rem 1.5rem;
    }
    
    .stats-grid, .featured-plants {
        gap: 2rem;
    }
    
    .stat-card, .plant-preview {
        margin: 0 auto;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-plants {
        grid-template-columns: 1fr;
    }
}