
:root{
  --orange:#ff7a00;
  --black:#111;
  --white:#fff;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:#222;
  background:#fff;
}
header{
  background: linear-gradient(135deg, #fff 60%, #ffefe3);
  border-bottom:1px solid #eee;
}
.container{max-width:1200px;margin:0 auto;padding:24px}
.topbar{
  display:flex;justify-content:space-between;align-items:center;gap:16px;
}
.brand{
  display:flex;align-items:center;gap:16px;
}
.logo{
  width:64px;height:64px;border-radius:12px;background:var(--orange);
  display:flex;align-items:center;justify-content:center;color:#fff;font-weight:bold;
}
.brand h1{margin:0;font-size:32px;color:#000}
.brand small{display:block;color:#777}
.lang-switch button{
  margin-left:8px;padding:8px 12px;border-radius:8px;border:1px solid #ddd;background:#fff;cursor:pointer
}
.lang-switch button.active{background:var(--orange);color:#fff;border-color:var(--orange)}
.hero{
  display:grid;grid-template-columns:1.2fr 0.8fr;gap:24px;align-items:center;
}
.hero h2{font-size:42px;margin:8px 0}
.hero p{font-size:18px;line-height:1.6}
.cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:16px}
.btn{
  background:var(--orange);color:#fff;border:none;border-radius:10px;padding:14px 18px;
  cursor:pointer;font-size:16px;text-decoration:none;display:inline-flex;align-items:center;gap:8px
}
.btn.secondary{background:#000}
.section{padding:56px 0}
.section h3{font-size:30px;margin-bottom:16px}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.card{border:1px solid #eee;border-radius:14px;overflow:hidden}
.card img{width:100%;display:block}
.card .pad{padding:16px}
.footer{
  background:#0f0f0f;color:#ddd;padding:32px 0
}
.footer a{color:#ddd;text-decoration:none}
.footer .grid{grid-template-columns:2fr 1fr 1fr}
.badge{display:inline-block;background:#fff;color:#000;border-radius:999px;padding:6px 10px;margin-right:8px}
@media(max-width:900px){
  .hero{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
}
