:root{
	--bg: #ffffff;
	--fg: #111111;
	--accent: #0077ff;
	--muted: #666666;
	--radius: 10px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
	font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
	margin:0;
	color:var(--fg);
	background:linear-gradient(120deg,var(--bg),#f8f9fb);
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
}
.container{max-width:1100px;margin:0 auto;padding:2rem;}
.nav{display:flex;align-items:center;justify-content:space-between;padding:1rem 2rem;position:sticky;top:0;background:rgba(255,255,255,0.85);backdrop-filter:blur(6px);z-index:40;border-bottom:1px solid rgba(0,0,0,0.05)}
.logo{font-weight:800;letter-spacing:1px;color:var(--accent)}
.nav-links{list-style:none;display:flex;gap:1rem;margin:0;padding:0}
.nav-links a{color:var(--fg);text-decoration:none}
.cta{background:var(--accent);color:white;padding:0.5rem 1rem;border-radius:8px;text-decoration:none}
.hero{display:flex;align-items:center;gap:2rem;padding:3rem 1rem;background:linear-gradient(90deg, rgba(255,255,255,0.0), rgba(255,255,255,0.0));min-height:60vh}
.hero-content{max-width:600px}
.hero h1{font-size:2rem;margin:0 0 .5rem}
.lead{color:var(--muted);margin-bottom:1rem}
.hero-image{width:360px;height:auto;border-radius:var(--radius);box-shadow:0 8px 30px rgba(0,0,0,0.08)}
.btn{background:var(--accent);color:#fff;padding:.6rem 1rem;border-radius:8px;text-decoration:none;display:inline-block}
.btn.ghost{background:transparent;color:var(--accent);border:1px solid var(--accent)}
.section{padding:3rem 0}
.alt{background:rgba(250,250,255,0.6)}
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem}
.card{background:white;border-radius:12px;padding:1rem;box-shadow:0 6px 18px rgba(0,0,0,0.04);display:flex;flex-direction:column;gap:.6rem}
.card img{width:100%;height:160px;object-fit:cover;border-radius:8px}
.small{color:var(--accent);text-decoration:none}
.news-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.news img{width:100%;height:140px;object-fit:cover;border-radius:8px}
.footer{background:linear-gradient(180deg,rgba(240,240,250,0.5),rgba(250,250,255,0.9));padding:2rem 0;margin-top:3rem}
.footer-grid{display:flex;gap:2rem;justify-content:space-between}
.copyright{text-align:center;padding:1rem;color:var(--muted)}
.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:1rem;margin-top:1rem}
.product{background:white;padding:1rem;border-radius:12px;box-shadow:0 6px 14px rgba(0,0,0,0.04);display:flex;flex-direction:column;gap:.6rem}
.product img{width:100%;height:180px;object-fit:cover;border-radius:8px}
.filters{display:flex;gap:.5rem;margin:1rem 0}
.filter-btn{padding:.5rem .8rem;border-radius:8px;border:1px solid rgba(0,0,0,0.06);background:white;cursor:pointer}
.filter-btn.active{background:var(--accent);color:white;border-color:var(--accent)}
.team-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1rem}
.team-member{background:white;padding:1rem;border-radius:10px;text-align:center}
.team-member img{width:100%;height:140px;object-fit:cover;border-radius:8px}
.contact-form{display:flex;flex-direction:column;gap:.6rem;max-width:700px}
input,textarea{padding:.7rem;border-radius:8px;border:1px solid #e6e6e6}
.note{color:var(--muted);font-size:.9rem}
.small{font-weight:600}

/* responsive */
@media (max-width:800px){
	.hero{flex-direction:column;padding:2rem}
	.hero-image{width:100%}
	.nav-links{display:none}
}

/* subtle reveal animation */
.reveal{opacity:0;transform:translateY(16px);transition:all .6s cubic-bezier(.2,.8,.2,1)}
.reveal.visible{opacity:1;transform:translateY(0)}


