:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --border:#e2e8f0;
  --surface:#f8fafc;
  --primary:#d61f1f; /* red */
  --secondary:#1b4f8a; /* blue */
  --radius:16px;
  --shadow:0 10px 30px rgba(15,23,42,.08);
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}
img{max-width:100%; height:auto; display:block}
a{color:inherit; text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:18px; top:12px; width:auto; height:auto;
  background:var(--bg); border:1px solid var(--border);
  padding:10px 12px; border-radius:12px; z-index:9999;
}

/* Header */
.header{
  position:sticky; top:0; z-index:1000;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:12px 0;
}
.brand{display:flex; align-items:center; gap:10px}
.brand img{width:140px; height:auto}
.nav{
  display:flex; align-items:center; gap:18px;
}
.nav a{
  font-weight:600;
  padding:8px 10px;
  border-radius:12px;
}
.nav a.active{background:var(--surface); border:1px solid var(--border)}
.lang{
  position:relative;
}
.lang button{
  border:1px solid var(--border);
  background:var(--bg);
  padding:8px 10px;
  border-radius:12px;
  font-weight:700;
  cursor:pointer;
  display:flex; align-items:center; gap:8px;
}
.lang-menu{
  position:absolute; right:0; top:44px;
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow:var(--shadow);
  overflow:hidden;
  min-width:180px;
  display:none;
}
.lang-menu a{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 12px;
  color:var(--text);
}
.lang-menu a:hover{background:var(--surface); text-decoration:none}
.lang.open .lang-menu{display:block}

.burger{
  display:none;
  border:1px solid var(--border);
  background:var(--bg);
  padding:8px 10px;
  border-radius:12px;
  cursor:pointer;
  font-weight:700;
}

/* Mobile nav */
@media (max-width: 860px){
  .burger{display:block}
  .nav{
    position:fixed; left:0; right:0; top:62px;
    background:rgba(255,255,255,.98);
    border-bottom:1px solid var(--border);
    padding:14px 18px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
  .nav.open{display:flex}
}

/* Hero */
.hero{
  position:relative;
  padding:66px 0 44px;
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0;
  background:
    linear-gradient(120deg, rgba(27,79,138,.92), rgba(214,31,31,.86)),
    url("../img/hero.webp") center/cover no-repeat;
  filter:saturate(1.05);
}
.hero::after{
  content:""; position:absolute; inset:0;
  background:radial-gradient(1000px 500px at 20% 10%, rgba(255,255,255,.18), transparent 60%);
}
.hero-content{
  position:relative;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  color:#fff;
  align-items:start;
}
@media (max-width: 860px){
  .hero-content{grid-template-columns:1fr}
}
.hero h1{
  margin:0 0 10px;
  font-size:clamp(28px, 3.2vw, 44px);
  letter-spacing:-.02em;
  line-height:1.15;
}
.hero p{margin:0 0 18px; color:rgba(255,255,255,.92); max-width:52ch}
.hero-card{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  border-radius:var(--radius);
  padding:18px;
}
.hero-card .mini{
  font-weight:700;
  margin:0 0 8px;
}
.hero-bullets{margin:0; padding-left:18px; color:rgba(255,255,255,.95)}
.hero-bullets li{margin:6px 0}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  font-weight:800;
  border:1px solid rgba(255,255,255,.25);
  cursor:pointer;
  text-decoration:none !important;
}
.btn.primary{background:#fff; color:var(--secondary)}
.btn.ghost{background:rgba(255,255,255,.12); color:#fff}
.btn.primary:hover{filter:brightness(.98)}
.btn.ghost:hover{background:rgba(255,255,255,.18)}

.section{padding:44px 0}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:18px;
  margin-bottom:18px;
}
.section-head h2{margin:0; font-size:28px; letter-spacing:-.01em}
.section-head p{margin:0; color:var(--muted); max-width:60ch}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
}
.card{
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.card.pad{padding:18px}
.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0; color:var(--muted)}
.badges{display:flex; flex-wrap:wrap; gap:8px; margin-top:12px}
.badge{
  border:1px solid var(--border);
  background:var(--surface);
  border-radius:999px;
  padding:6px 10px;
  font-weight:700;
  font-size:12px;
  color:var(--text);
}

/* Products */
.product-card{grid-column: span 6}
@media (max-width: 640px){.product-card{grid-column: span 12}}
@media (min-width: 980px){.product-card{grid-column: span 3}}
.product-media{
  aspect-ratio: 4/3;
  background:var(--surface);
}
.product-media img{width:100%; height:100%; object-fit:cover}
.product-body{padding:14px 14px 16px}
.product-body h3{margin:0 0 6px}
.product-body p{margin:0 0 12px; font-size:14px}

/* Why */
.why-card{grid-column: span 12}
@media (min-width: 900px){.why-card{grid-column: span 4}}

/* About */
.about-hero{
  padding:34px 0 12px;
}
.lead{
  font-size:18px; color:var(--muted); max-width:70ch; margin:10px 0 0;
}
.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
}
@media (max-width: 900px){.split{grid-template-columns:1fr}}
.kv{
  display:grid;
  grid-template-columns: 1fr 1.4fr;
  gap:10px;
  margin:0;
}
.kv dt{
  font-weight:800;
  color:var(--text);
}
.kv dd{
  margin:0;
  color:var(--muted);
}

/* Contact */
.contact-grid{align-items:start}
.contact-left{grid-column: span 12}
.contact-right{grid-column: span 12}
@media (min-width: 980px){
  .contact-left{grid-column: span 5}
  .contact-right{grid-column: span 7}
}
.info{
  display:grid;
  gap:10px;
}
.info a{color:var(--secondary); font-weight:700}
.info small{color:var(--muted)}
.form{
  display:grid;
  gap:10px;
}
.field{
  display:grid;
  gap:6px;
}
label{font-weight:800}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:var(--bg);
  font:inherit;
}
textarea{min-height:140px; resize:vertical}
.form-actions{
  display:flex; flex-wrap:wrap; gap:10px; align-items:center;
}
.btn-dark{
  background:var(--secondary);
  color:#fff;
  border:1px solid rgba(27,79,138,.25);
}
.btn-dark:hover{filter:brightness(.98)}
.note{color:var(--muted); font-size:13px; margin:0}

.map-shell{
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--surface);
}
.map-placeholder{
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.map-embed{width:100%; height:380px; border:0; display:block; background:#fff}

/* Footer */
.footer{
  border-top:1px solid var(--border);
  padding:22px 0;
  background:var(--surface);
  margin-top:34px;
}
.footer-inner{
  display:flex; flex-wrap:wrap;
  align-items:center; justify-content:space-between;
  gap:10px;
}
.footer small{color:var(--muted)}


/* Language flags + honeypot */
.lang-flag{
  width:18px; height:12px;
  border-radius:3px;
  display:inline-block;
  box-shadow:0 0 0 1px rgba(0,0,0,.08);
  flex:0 0 auto;
}
.lang-left{display:flex; align-items:center; gap:10px}
.hp-field{
  position:absolute !important;
  left:-10000px !important;
  top:auto !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}


/* Product card links */
.product-link{color:inherit; text-decoration:none}
.product-link:hover{text-decoration:underline}
.product-link:focus-visible{outline:2px solid rgba(27,79,138,.5); outline-offset:3px}

/* About page typography tidy */
.about-card p{max-width: 85ch}
.about-h2{margin:18px 0 10px}
.about-list{
  margin:0 0 14px 18px;
  color:var(--muted);
}
.about-list li{margin:6px 0}
.formal-note{
  margin-top:18px;
}


/* About page spacing override */
.about-card{line-height:1.65}
.about-card p{margin:0 0 12px}
.about-card p:last-child{margin-bottom:0}
.about-card .formal-note{margin-top:18px}
