:root{
  --brand:#2d6cdf;
  --light:#f8f9fa;
}

/* RESET / BASE */
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:Inter,sans-serif;background:var(--light);color:#222;line-height:1.6}
img{max-width:100%;display:block}

/* LANGUAGE TOGGLE */
.lang-switch{
  position:fixed;top:1rem;right:1rem;z-index:20;
  display:flex;gap:.25rem;padding:.3rem .4rem;
  background:rgba(255,255,255,.75);backdrop-filter:blur(6px);
  border-radius:8px
}
.lang-switch button{
  border:none;background:transparent;color:#444;
  font-weight:600;cursor:pointer;padding:.45rem .8rem;border-radius:4px;
  transition:background .2s,color .2s
}
.lang-switch button:hover,
.lang-switch button:focus-visible{background:var(--brand);color:#fff}

/* HERO */
.hero{position:relative;height:32vh;min-height:280px;overflow:hidden;text-align:center}
.hero img,picture{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.hero::after{content:"";position:absolute;inset:0;background:rgba(0,0,0,.45)}
.hero-text{position:relative;z-index:1;display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;padding:0 2rem 2rem;color:#fff}
.hero-text h1{font-size:3rem;font-weight:800;margin-bottom:1rem}
.hero-text p{font-size:1.35rem;font-weight:600}

/* LAYOUT */
section{max-width:960px;margin:auto;padding:2.7rem 1rem}
h2{color:var(--brand);margin-top:2.2rem;font-weight:700;border-bottom:2px solid var(--brand);padding-bottom:.4rem}

/* FEATURES */
.features{list-style:none;padding-left:0;display:flex;flex-wrap:wrap;gap:2rem;justify-content:space-between;margin:2rem 0}
.features li{flex:1 1 160px;display:flex;flex-direction:column;align-items:center}
.features img{width:120px;height:120px;object-fit:contain;filter:grayscale(.2) contrast(1.1);transition:transform .2s}
.features img:hover{transform:scale(1.05)}
@media(max-width:600px){
  .features li{flex:1 1 110px}
  .features img{width:90px;height:90px}
}

/* GALLERY */
.gallery{display:grid;gap:.8rem;margin-top:1.4rem;grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
.gallery a{border-radius:8px;overflow:hidden}
.gallery img{height:100%;object-fit:cover;transition:transform .25s}
.gallery a:hover img{transform:scale(1.05)}

/* CTA */
.cta{text-align:center;margin-top:3rem}
.cta a{display:inline-block;background:var(--brand);color:#fff;padding:1rem 2.2rem;font-size:1.1rem;border-radius:8px;text-decoration:none;transition:background .25s}
.cta a:hover{background:#1a50bf}
