body {
    margin: 0;
    font-family: "Orbitron", Arial, sans-serif;
    background: 
    radial-gradient(circle at 20% 30%, rgba(0, 170, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(51, 187, 255, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(0, 136, 255, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #0a0f1c, #001022);
    color: #d8eaff;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
    linear-gradient(90deg, rgba(51, 187, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(51, 187, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0, 162, 255, 0.08);
    border-bottom: 1px solid #00aaff;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 1s ease;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
header.visible { opacity: 1; transform: translateY(0); }

.logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px #33bbff);
    transition: all 0.3s ease;
    animation: logoPulse 3s ease-in-out infinite;
}

.logo:hover {
    filter: drop-shadow(0 0 20px #33bbff) drop-shadow(0 0 40px rgba(51, 187, 255, 0.5));
    transform: scale(1.05);
}

@keyframes logoPulse {
    0%, 100% { filter: drop-shadow(0 0 10px #33bbff); }
    50% { filter: drop-shadow(0 0 15px #33bbff) drop-shadow(0 0 25px rgba(51, 187, 255, 0.3)); }
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #d8eaff;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
}
nav a:hover { 
    color: #33bbff; 
    background: rgba(51, 187, 255, 0.1);
    box-shadow: 0 0 10px rgba(51, 187, 255, 0.3);
}
nav a.active {
    color: #33bbff;
    background: rgba(51, 187, 255, 0.15);
    box-shadow: 0 0 15px rgba(51, 187, 255, 0.4);
}

main {
    padding-top: 90px;
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #33bbff, transparent);
    margin: 60px auto;
    max-width: 80%;
    position: relative;
    opacity: 0.6;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 4px;
    background: #33bbff;
    border-radius: 2px;
    box-shadow: 0 0 10px #33bbff;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    opacity: 0;
    transform: scale(0.9);
    transition: all 1.5s ease;
}
.hero.visible { opacity: 1; transform: scale(1); }
.hero h2 { font-size: 2.8rem; color: #33bbff; text-transform: uppercase; text-shadow: 0 0 20px #33bbff; }
.hero p { font-size: 1.2rem; margin-top: 15px; color: #99d4ff; }

/* Stats */
.stats {
    display: flex; justify-content: center; margin: 50px auto;
    max-width: 1000px; gap: 50px;
}
.stat {
    text-align: center; flex: 1;
    background: rgba(0, 162, 255, 0.08);
    padding: 30px; border-radius: 12px; border: 1px solid #33bbff;
    opacity: 0; transform: translateY(40px);
    transition: all 1s ease, box-shadow 0.4s;
    backdrop-filter: blur(5px);
    position: relative;
}
.stat::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, #33bbff, #00aaff, #33bbff);
    border-radius: 12px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s;
}
.stat.visible {
    opacity: 1; transform: translateY(0);
    box-shadow: 0 0 25px #33bbff;
}
.stat.visible::before { opacity: 0.3; }
.stat h3 { font-size: 2rem; color: #00aaff; text-shadow: 0 0 10px #00aaff; }

.gallery { padding: 100px 20px; text-align: center; position: relative; }
.gallery h2 {
    font-size: 2.5rem; color: #33bbff; margin-bottom: 60px;
    opacity: 0; transform: translateY(40px); transition: all 1s ease;
    text-shadow: 0 0 20px #33bbff;
}

.gallery.visible h2 { 
    opacity: 1; 
    transform: 
    translateY(0); 
}

.flower-container { 
    position: relative; 
    width: 500px;
    height: 500px; 
    margin: 140px auto 0 auto;
}

.flower-container img {
    position: absolute; top: 50%; left: 50%; width: 160px; height: 160px;
    border-radius: 12px; transform: translate(-50%, -50%);
    opacity: 0; transition: transform 1s ease, opacity 1s ease, box-shadow 0.5s;
    box-shadow: 0 0 20px rgba(51, 187, 255, 0.6);
    filter: drop-shadow(0 0 15px rgba(51, 187, 255, 0.4));
}

.flower-container img::before {
    content: '';
    position: absolute;
    top: -15px; left: -15px; right: -15px; bottom: -15px;
    background: radial-gradient(circle, rgba(51, 187, 255, 0.3) 0%, rgba(51, 187, 255, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 1;
    animation: auraPulse 2s ease-in-out infinite alternate;
}

@keyframes auraPulse {
    0% { 
    transform: scale(1);
    opacity: 0.6;
    }
    100% { 
    transform: scale(1.1);
    opacity: 0.8;
    }
}

.flower-container.animate img { opacity: 1; }
.flower-container.animate img:nth-child(1) { transform: translate(-50%, -220%); }
.flower-container.animate img:nth-child(2) { transform: translate(-170%, -50%); }
.flower-container.animate img:nth-child(3) { transform: translate(70%, -50%); }
.flower-container.animate img:nth-child(4) { transform: translate(-110%, 70%); }
.flower-container.animate img:nth-child(5) { transform: translate(10%, 70%); }

.flower-container img:hover { 
    box-shadow: 0 0 40px #33bbff, 0 0 80px rgba(51, 187, 255, 0.5);
    filter: drop-shadow(0 0 25px #33bbff);
    transform: translate(-50%, -50%) scale(1.05);
}

.features { padding: 60px 30px; background: rgba(0, 153, 255, 0.04); text-align: center; }
.features h2 { 
    font-size: 2.5rem; color: #33bbff; margin-bottom: 50px; opacity: 0; 
    transform: translateY(40px); transition: all 1s ease;
    text-shadow: 0 0 20px #33bbff;
}
.features.visible h2 { opacity: 1; transform: translateY(0); }
.feature-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; }
.feature-card {
    width: 320px; background: rgba(0, 153, 255, 0.08); border: 1px solid #33bbff;
    border-radius: 12px; padding: 25px; text-align: left; color: #cce8ff;
    opacity: 0; transform: translateX(-50px);
    transition: all 0.8s ease, box-shadow 0.4s;
    backdrop-filter: blur(5px);
    position: relative;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(51, 187, 255, 0.1) 0%, transparent 70%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}
.feature-card.visible {
    opacity: 1; transform: translateX(0);
    box-shadow: 0 0 25px #33bbff;
}
.feature-card.visible::before { opacity: 1; }
.feature-card h3 { color: #33bbff; margin-bottom: 10px; text-shadow: 0 0 10px #33bbff; }
.feature-list { list-style: none; padding: 0; }
.feature-list li { margin: 6px 0; }
.feature-list li::before { content: "▸"; color: #33bbff; margin-right: 8px; text-shadow: 0 0 5px #33bbff; }

.products { padding: 60px 30px; text-align: center; }
.products h2 { 
    font-size: 2.5rem; color: #33bbff; margin-bottom: 40px; opacity: 0; 
    transform: translateY(40px); transition: all 1s ease;
    text-shadow: 0 0 20px #33bbff;
}
.products.visible h2 { opacity:1; transform: translateY(0); }
.product-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; }
.product {
    width: 260px; background: rgba(0, 153, 255, 0.07); border-radius: 10px;
    border: 1px solid #33bbff; padding: 20px;
    transition: all 0.8s ease, box-shadow 0.4s;
    opacity: 0; transform: scale(0.8);
    backdrop-filter: blur(5px);
    position: relative;
}
.product::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(51, 187, 255, 0.15) 0%, transparent 70%);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}
.product.visible { 
    opacity: 1; transform: scale(1); 
    box-shadow: 0 0 25px #33bbff;
}
.product.visible::before { opacity: 1; }
.product img { 
    width: 100%; border-radius: 8px; margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(51, 187, 255, 0.5));
}
.product h3 { text-shadow: 0 0 10px #33bbff; }

footer {
    text-align: center; padding: 20px; border-top: 1px solid #33bbff; color: #99d4ff; margin-top: 50px;
    opacity: 0; transform: translateY(40px); transition: all 1s ease;
    backdrop-filter: blur(10px);
}
footer.visible { opacity: 1; transform: translateY(0); }