:root{
  --primary:#0070D0;
  --secondary:#70D0D0;
  --accent:#2DE2D2;
  --dark:#0A1B2A;
  --text:#0f172a;
  --muted:#475569;
  --bg:#f8fafc;
  --card:#ffffff;
  --shadow: 0 14px 40px rgba(2,8,23,.12);
  --radius: 18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: radial-gradient(1200px 500px at 20% -10%, rgba(112,208,208,.22), transparent 60%),
              radial-gradient(900px 420px at 90% 0%, rgba(0,112,208,.18), transparent 55%),
              var(--bg);
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
.container{width:min(1150px, 92%); margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:12px;
}
.brand{
  display:flex; align-items:center; gap:10px;
}
.brand img{width:44px; height:44px; border-radius:12px; box-shadow: 0 10px 26px rgba(2,8,23,.14)}
.brand .title{display:flex; flex-direction:column; line-height:1.1}
.brand .title b{font-size:14px; letter-spacing:.2px}
.brand .title span{font-size:12px; color:var(--muted)}

.menu{
  display:flex; gap:16px; align-items:center; flex-wrap:wrap;
}
.menu a{font-size:13px; color:rgba(15,23,42,.78)}
.menu a:hover{color:var(--primary)}

.ctaRow{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:11px 14px;
  border-radius:999px;
  border:1px solid rgba(2,8,23,.12);
  background:rgba(255,255,255,.9);
  box-shadow: 0 10px 26px rgba(2,8,23,.08);
  font-weight:600;
  font-size:13px;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(0,112,208,.35); box-shadow: 0 14px 34px rgba(2,8,23,.12)}
.btn.primary{background: linear-gradient(135deg, var(--primary), #0aa1ff); color:white; border-color: transparent}
.btn.primary:hover{box-shadow: 0 18px 44px rgba(0,112,208,.25)}

.hero{
  padding:44px 0 18px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:stretch;
}
.heroCard{
  background: rgba(255,255,255,.86);
  border:1px solid rgba(2,8,23,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.heroMedia{
  position:relative;
  min-height: 280px;
}
.heroMedia img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  filter: saturate(1.05) contrast(1.02);
}
.heroMedia::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.28), rgba(0,0,0,.02));
}
.heroContent{
  position:absolute; inset:0;
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:22px;
  color:white;
}
.badge{
  align-self:flex-start;
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  font-size:12px;
  backdrop-filter: blur(8px);
}
.heroContent h1{
  margin:10px 0 6px;
  font-size: clamp(26px, 3.5vw, 40px);
  line-height:1.08;
}
.heroContent p{margin:0 0 12px; font-size:14px; opacity:.92; max-width:60ch}
.heroActions{display:flex; gap:10px; flex-wrap:wrap}

.infoCard{
  padding:18px;
  display:flex; flex-direction:column; gap:14px;
}
.kpiGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.kpi{
  background: linear-gradient(135deg, rgba(112,208,208,.22), rgba(0,112,208,.12));
  border:1px solid rgba(2,8,23,.08);
  border-radius: 16px;
  padding:12px;
}
.kpi b{display:block; font-size:13px}
.kpi span{display:block; font-size:12px; color:rgba(15,23,42,.75)}
.mini{
  display:flex; gap:10px; align-items:flex-start;
  background: rgba(15,23,42,.03);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 16px;
  padding:12px;
}
.mini svg{flex:0 0 auto}

.section{padding:34px 0}
.sectionHeader{display:flex; align-items:flex-end; justify-content:space-between; gap:14px; margin-bottom:16px}
.sectionHeader h2{margin:0; font-size:20px}
.sectionHeader p{margin:0; color:var(--muted); font-size:13px; max-width:70ch}

.cards{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}
.card{
  grid-column: span 4;
  background: rgba(255,255,255,.9);
  border:1px solid rgba(2,8,23,.08);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(2,8,23,.08);
  overflow:hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover{transform: translateY(-2px); box-shadow: 0 16px 40px rgba(2,8,23,.12)}
.card .media{aspect-ratio: 16/10; background:#e2e8f0; position:relative}
.card .media img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover}
.card .content{padding:14px}
.card .content b{display:block; font-size:14px; margin-bottom:6px}
.card .content span{display:block; font-size:13px; color:var(--muted)}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.gItem{grid-column: span 3; border-radius: 16px; overflow:hidden; border:1px solid rgba(2,8,23,.08); background:white; cursor:pointer; box-shadow: 0 10px 26px rgba(2,8,23,.08)}
.gItem .thumb{aspect-ratio: 1/1; position:relative}
.gItem img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition: transform .2s ease}
.gItem:hover img{transform: scale(1.04)}

.lightbox{
  position:fixed; inset:0; z-index:100;
  display:none;
  background: rgba(2,8,23,.72);
  backdrop-filter: blur(8px);
  padding:24px;
}
.lightbox.open{display:flex}
.lightboxInner{
  margin:auto;
  width:min(1050px, 96%);
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  overflow:hidden;
  position:relative;
}
.lightboxInner img{width:100%; height:auto; display:block}
.lbTop{
  position:absolute; top:10px; left:10px; right:10px;
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
}
.lbBtn{
  border:1px solid rgba(255,255,255,.2);
  background: rgba(0,0,0,.25);
  color:white;
  border-radius: 999px;
  padding:10px 12px;
  font-weight:700;
  cursor:pointer;
}
.lbBtn:hover{background: rgba(0,0,0,.35)}

.embedGrid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}
.embedCard{
  grid-column: span 4;
  background: rgba(255,255,255,.9);
  border:1px solid rgba(2,8,23,.08);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 26px rgba(2,8,23,.08);
}
.embedCard header{padding:12px 14px; display:flex; justify-content:space-between; align-items:center; gap:10px}
.embedCard header b{font-size:13px}
.embedCard header a{font-size:12px; color:var(--primary)}
.embedCard .frame{aspect-ratio: 16/12; background:#e2e8f0}
.embedCard iframe{width:100%; height:100%; border:0}

.twoCol{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:stretch;
}
.panel{
  background: rgba(255,255,255,.9);
  border:1px solid rgba(2,8,23,.08);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(2,8,23,.08);
  padding:16px;
}
.panel h3{margin:0 0 8px; font-size:16px}
.panel p{margin:0; color:var(--muted); font-size:13px}
.panel form{display:grid; gap:10px; margin-top:12px}
.field{display:grid; gap:6px}
label{font-size:12px; color:rgba(15,23,42,.78)}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(2,8,23,.14);
  background: rgba(255,255,255,.9);
  font: inherit;
}
textarea{min-height:120px; resize:vertical}
.helper{font-size:12px; color:rgba(15,23,42,.65)}

.mapFrame{width:100%; aspect-ratio: 16/10; border:0; border-radius: 18px; overflow:hidden}

.footer{
  padding:22px 0 28px;
  color: rgba(15,23,42,.72);
}
.footer .footInner{
  border-top:1px solid rgba(2,8,23,.08);
  padding-top:16px;
  display:flex;
  gap:12px;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}
.footer small{font-size:12px}

.fab{
  position:fixed; right:16px; bottom:16px; z-index:90;
  display:flex; flex-direction:column; gap:10px;
}
.fab a{
  width:56px; height:56px;
  border-radius: 18px;
  display:grid; place-items:center;
  box-shadow: 0 14px 34px rgba(2,8,23,.18);
  border:1px solid rgba(2,8,23,.08);
  background: rgba(255,255,255,.92);
  transition: transform .15s ease, box-shadow .15s ease;
}
.fab a:hover{transform: translateY(-2px); box-shadow: 0 18px 44px rgba(2,8,23,.22)}
.fab a.primary{background: linear-gradient(135deg, #25D366, #2bb0ff); border-color: transparent}

.reveal{opacity:0; transform: translateY(10px); transition: opacity .7s ease, transform .7s ease}
.reveal.in{opacity:1; transform:none}

@media (max-width: 900px){
  .heroGrid{grid-template-columns: 1fr}
  .cards .card{grid-column: span 6}
  .embedCard{grid-column: span 6}
  .gItem{grid-column: span 4}
  .twoCol{grid-template-columns: 1fr}
}
@media (max-width: 560px){
  .menu{display:none}
  .cards .card{grid-column: span 12}
  .embedCard{grid-column: span 12}
  .gItem{grid-column: span 6}
  .kpiGrid{grid-template-columns: 1fr}
}