:root{
  --bg:#0b1220;
  --card:#121a2b;
  --text:#e8eefc;
  --muted:#a7b3d6;
  --brand:#22c55e;
  --brand2:#0ea5e9;
  --ring: rgba(34,197,94,.35);
  --shadow: 0 18px 60px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: radial-gradient(1000px 600px at 20% -10%, rgba(14,165,233,.25), transparent 55%),
              radial-gradient(900px 500px at 90% 10%, rgba(34,197,94,.18), transparent 50%),
              var(--bg);
}
a{color:inherit; text-decoration:none}
.container{width:min(1100px, 92%); margin-inline:auto}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.7);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:800; letter-spacing:.2px;
}
.logo{
  width:38px; height:38px; border-radius:12px;
  background: linear-gradient(135deg, var(--brand2), var(--brand));
  box-shadow: 0 10px 24px rgba(14,165,233,.25);
}
.navlinks{display:flex; gap:18px; align-items:center}
.navlinks a{color:var(--muted); font-weight:600; font-size:14px}
.navlinks a:hover{color:var(--text)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px; padding:10px 14px; border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:var(--text);
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
}
.btn:hover{border-color: rgba(255,255,255,.22)}
.btn.primary{
  background: linear-gradient(135deg, rgba(14,165,233,.95), rgba(34,197,94,.95));
  border-color: transparent;
}
.btn.primary:hover{filter:brightness(1.05)}

/* Hero */
.hero{padding:60px 0 26px}
.hero-grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:26px; align-items:stretch}
@media (max-width: 900px){.hero-grid{grid-template-columns:1fr;}}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.1);
  border-radius:18px;
  box-shadow: var(--shadow);
}
.hero-card{padding:26px}
.kicker{color:var(--muted); font-weight:700; letter-spacing:.18em; text-transform:uppercase; font-size:12px}
.h1{font-size:42px; line-height:1.1; margin:10px 0 12px; font-weight:900}
@media (max-width: 520px){.h1{font-size:34px}}
.sub{color:var(--muted); font-size:16px; line-height:1.65; margin:0 0 18px}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:10px}

.stats{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin-top:18px}
@media (max-width: 520px){.stats{grid-template-columns:1fr;}}
.stat{padding:14px; border-radius:16px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08)}
.stat b{font-size:18px}
.stat div{color:var(--muted); font-size:13px; margin-top:4px}

.hero-side{padding:18px; display:flex; flex-direction:column; gap:12px}
.badge{display:flex; justify-content:space-between; gap:12px; align-items:center; padding:14px 14px; border-radius:16px; background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08)}
.badge span{color:var(--muted); font-weight:600; font-size:13px}
.badge b{font-size:14px}
.map{overflow:hidden; border-radius:16px; border:1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.03)}
.map iframe{width:100%; height:230px; border:0; filter:saturate(1.1) contrast(1.05)}

/* Sections */
.section{padding:40px 0}
.section h2{margin:0 0 14px; font-size:28px}
.section p{margin:0; color:var(--muted); line-height:1.7}
.grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
@media (max-width: 900px){.grid-3{grid-template-columns:1fr;}}
.feature{padding:16px; border-radius:18px; background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08)}
.feature h3{margin:4px 0 6px}
.feature p{margin:0; font-size:14px}

/* Gallery */
.gallery{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin-top:14px}
@media (max-width: 900px){.gallery{grid-template-columns:1fr;}}
.thumb{position:relative; overflow:hidden; border-radius:18px; border:1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.03)}
.thumb img{width:100%; height:220px; object-fit:cover; display:block; transform:scale(1.01)}
.thumb .cap{position:absolute; inset:auto 0 0 0; padding:10px 12px; background: linear-gradient(180deg, transparent, rgba(0,0,0,.55)); font-weight:700}

/* Contact */
.form{display:grid; grid-template-columns: 1fr 1fr; gap:12px; margin-top:14px}
@media (max-width: 900px){.form{grid-template-columns:1fr;}}
.input, textarea{
  width:100%; padding:12px 12px; border-radius:14px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  color:var(--text);
  outline:none;
}
.input:focus, textarea:focus{box-shadow: 0 0 0 6px var(--ring); border-color: rgba(34,197,94,.65)}
textarea{min-height:120px; resize:vertical}
.helper{color:var(--muted); font-size:13px; margin-top:10px}
.footer{padding:26px 0 36px; color:var(--muted); border-top:1px solid rgba(255,255,255,.08)}

/* Language toggle */
.lang{
  display:inline-flex; align-items:center; gap:6px;
  padding:8px 10px; border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  font-weight:700; font-size:13px;
}
.small{font-size:12px; color:var(--muted)}