html { scroll-behavior: smooth; }

body {
    margin: 0; padding: 0;
    font-family: 'Inter', sans-serif;
    background: #121212;
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex; flex-direction: column;
}

.logo { position: absolute; top: 30px; left: 40px; display: flex; align-items: center; }
.logo img { height: 45px; margin-right: 12px; }
.logo-text { font-weight: 700; font-size: 1.5rem; }

.navbar {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.034);
    backdrop-filter: blur(10px);
    padding: 5px 1px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.212);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    margin: 0 5px;
    transition: background-color 0.3s ease;
}

.navbar a.active {
    background-color: white;
    color: #000;
}
.mobile-navbar, .hamburger { display: none; }

main { flex-grow: 1; width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 40px; }

.products-section { margin-top: 180px; margin-bottom: 120px; }

.intro-header { text-align: center; margin-bottom: 150px; }
.intro-header h1 { font-size: 3.5rem; margin-bottom: 10px; letter-spacing: -1px; }
.intro-header p { color: #888; font-size: 1.2rem; }

.product-list { display: flex; flex-direction: column; gap: 180px; }

.product-showcase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

.product-showcase:nth-child(even) { flex-direction: row-reverse; }

.hidden-state {
    opacity: 0;
    transform: translateY(60px) scale(0.98); 
    filter: blur(10px); 
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1); 
}

.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.text-side.hidden-state { transition-delay: 0.2s; }

.visual-side {
    flex: 1;
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-side img {
    max-width: 100%; max-height: 100%;
    object-fit: contain; z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));

    transition: transform 0.5s ease;
}

.product-showcase:hover .visual-side img {
    transform: scale(1.03);
}

.glow-bg {
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.12) 0%, rgba(0,0,0,0) 70%);
    filter: blur(60px); z-index: 1;
    border-radius: 50%;
    transition: all 0.5s ease;
}

.product-showcase:hover .glow-bg { 
    background: radial-gradient(circle, rgba(74, 222, 128, 0.20) 0%, rgba(0,0,0,0) 70%);
    width: 350px; height: 350px;
}

.text-side { flex: 0.8; }

.text-side h2 {
    font-size: 2.8rem; margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, #bbb);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.text-side p {
    font-size: 1.1rem; color: #a3a3a3; line-height: 1.7; margin-bottom: 35px;
}

.btn-modern {
    display: inline-block;
    color: #4ade80;
    font-size: 1.1rem; font-weight: 600;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

.btn-modern::after {
    content: '';
    position: absolute; width: 0; height: 2px;
    bottom: 0; left: 0;
    background-color: #4ade80;
    transition: width 0.3s ease;
}

.btn-modern:hover::after { width: 100%; }
.btn-modern:hover { color: #fff; }

footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    background: #0a0a0a;
    padding: 25px 40px; 
    margin-top: auto;
}

.footer-container {
    max-width: 1400px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
}

.footer-left { display: flex; align-items: center; gap: 10px; opacity: 0.7; }
.footer-left img { height: 25px; }

.footer-center { color: #555; font-size: 0.9rem; }

.footer-right { display: flex; gap: 30px; }
.footer-right a { color: #888; text-decoration: none; font-size: 0.9rem; transition: 0.2s; }
.footer-right a:hover { color: white; }