:root{
  --bg:#0c0c0f;
  --card:#12121a;
  --muted:#a6a6b3;
  --text:#f3f3f6;
  --line:rgba(255,255,255,.12);
  --accent:#f47a00;
  --accent2:#ffb13b;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1120px;
}
*{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";
  background: radial-gradient(1200px 800px at 20% -10%, rgba(244,122,0,.35), transparent 55%),
              radial-gradient(1000px 700px at 110% 0%, rgba(255,177,59,.18), transparent 45%),
              var(--bg);
  color:var(--text);
}
a{color:inherit}
.container{width:min(var(--max), 92vw); margin-inline:auto}
.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(12,12,15,.72);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; gap:12px; align-items:center; text-decoration:none;
}
.brand img{width:44px; height:44px; border-radius:12px; background:#fff; padding:6px}
.brand .name{line-height:1.05}
.brand .name b{display:block; letter-spacing:.4px}
.brand .name small{color:var(--muted)}
.menu{
  display:flex; gap:18px; align-items:center;
}
.menu a{
  text-decoration:none; color:var(--muted);
  padding:8px 10px; border-radius:12px;
}
.menu a:hover{color:var(--text); background:rgba(255,255,255,.06)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  text-decoration:none;
  color:var(--text);
  box-shadow: none;
  transition: transform .15s ease, background .15s ease;
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.1)}
.btn.primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: rgba(255,255,255,.12);
  color:#111;
  font-weight:800;
}
.btn.dark{
  background: rgba(0,0,0,.35);
}
.hero{
  padding:44px 0 18px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:24px;
  align-items:stretch;
}
.hero-copy{
  padding:22px 0;
}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  color:var(--muted);
  background:rgba(255,255,255,.05);
}
.kicker .dot{
  width:8px; height:8px; border-radius:99px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(244,122,0,.18);
}
h1{
  margin:14px 0 10px;
  font-size: clamp(34px, 4.8vw, 54px);
  line-height:1.02;
  letter-spacing:-.8px;
}
.lead{
  margin: 10px 0 18px;
  color: rgba(243,243,246,.88);
  font-size: clamp(16px, 2.2vw, 18px);
  line-height:1.55;
}
.hero-actions{
  display:flex; flex-wrap:wrap; gap:12px;
}
.hero-card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background: linear-gradient(180deg, rgba(18,18,26,.75), rgba(18,18,26,.45));
  box-shadow: var(--shadow);
  position:relative;
}
.hero-card img{
  width:100%; height:100%;
  object-fit:cover;
  transform: scale(1.02);
}
.hero-card .overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.65));
}
.hero-card .badge{
  position:absolute; left:16px; bottom:16px;
  background: rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding:10px 12px;
  display:flex; gap:10px; align-items:center;
}
.hero-card .badge b{font-size:14px}
.hero-card .badge small{display:block; color:var(--muted); margin-top:2px}
.section{
  padding:48px 0;
}
.section h2{
  margin:0 0 10px;
  font-size: clamp(24px, 3.2vw, 34px);
  letter-spacing:-.4px;
}
.section p{color:rgba(243,243,246,.84); line-height:1.65}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  margin-top:18px;
}
.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18,18,26,.6);
  padding:16px;
  box-shadow: 0 12px 24px rgba(0,0,0,.22);
}
.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0; color:var(--muted)}
.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
  margin-top:18px;
}
.thumb{
  border-radius: 16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  cursor:pointer;
  position:relative;
}
.thumb img{width:100%; height:170px; object-fit:cover; display:block}
.thumb:after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55));
  opacity:.9;
}
.thumb span{
  position:absolute; left:10px; bottom:10px; z-index:2;
  font-size:12px; color:rgba(255,255,255,.86);
}
.video-wrap{
  margin-top:18px;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.35);
  box-shadow: var(--shadow);
}
.video{
  width:100%;
  aspect-ratio: 16/9;
  border:0;
}
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  margin-top:18px;
}
.field{
  display:flex; flex-direction:column; gap:8px;
  margin-bottom:12px;
}
label{font-size:13px; color:rgba(255,255,255,.84)}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
input:focus, textarea:focus{border-color: rgba(244,122,0,.55); box-shadow: 0 0 0 4px rgba(244,122,0,.18)}
.map{
  width:100%;
  height: 360px;
  border:0;
  border-radius: var(--radius);
  overflow:hidden;
}
.footer{
  padding:28px 0;
  border-top:1px solid var(--line);
  color:var(--muted);
}
.footer .row{
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
  align-items:center;
}
.pills{display:flex; gap:10px; flex-wrap:wrap}
.pill{
  padding:8px 10px;
  border:1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: rgba(243,243,246,.9);
  text-decoration:none;
  font-size:13px;
}
.float-wa{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  width:56px; height:56px;
  border-radius: 999px;
  background: #25D366;
  color:#0a0a0a;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.25);
  text-decoration:none;
}
.float-wa svg{width:26px; height:26px}
.fade{opacity:0; transform: translateY(10px); transition: all .7s ease}
.fade.in{opacity:1; transform: translateY(0)}

.lightbox{
  position:fixed; inset:0; z-index:200;
  background: rgba(0,0,0,.82);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
}
.lightbox.open{display:flex}
.lb-card{
  width:min(1000px, 96vw);
  background: rgba(18,18,26,.92);
  border:1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
}
.lb-top{
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 12px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.lb-top .title{color:rgba(255,255,255,.92); font-size:13px}
.lb-actions{display:flex; gap:8px}
.iconbtn{
  width:40px; height:40px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor:pointer;
}
.iconbtn:hover{background: rgba(255,255,255,.12)}
.lb-img{
  width:100%;
  max-height: 72vh;
  object-fit: contain;
  background:#0b0b10;
  display:block;
}
@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr}
  .gallery{grid-template-columns: repeat(2, 1fr)}
  .thumb img{height:160px}
  .grid-3{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
}
