:root{
  --bg:#070708;
  --panel:#0f1012;
  --panel2:#121316;
  --text:#f4f4f5;
  --muted:#b6b7bb;
  --line:rgba(255,255,255,.08);
  --gold:#d6ad4c;
  --shadow:0 18px 60px rgba(0,0,0,.55);
  --radius:18px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; background:radial-gradient(900px 500px at 15% 10%, rgba(214,173,76,.14), transparent 60%), var(--bg); color:var(--text); font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial; }
a{ color:inherit; text-decoration:none; }
.wrap{ width:min(1180px, calc(100% - 32px)); margin:0 auto; }

.topstrip{
  border-bottom:1px solid var(--line);
  background:rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
}
.topstrip-inner{ display:flex; justify-content:space-between; align-items:center; gap:14px; padding:10px 0; flex-wrap:wrap; }
.mini-pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 12px; border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:999px; font-size:13px; color:var(--muted);
  margin-right:8px;
}
.topstrip-right{ display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.toplink{ font-size:13px; color:var(--muted); }
.toplink.gold{ color:var(--gold); }
.dot{ color:rgba(255,255,255,.22); }

.header{
  position:sticky; top:0; z-index:20;
  background:rgba(7,7,8,.75);
  border-bottom:1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:18px; padding:14px 0; flex-wrap:wrap; }
.brand{ display:flex; gap:12px; align-items:center; }
.brand-logo{
  width:44px; height:44px; border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  display:grid; place-items:center;
  overflow:hidden;
}
.brand-logo img{ width:100%; height:100%; object-fit:cover; display:block; }
.brand-name{ font-weight:800; letter-spacing:.2px; }
.brand-sub{ font-size:13px; color:var(--muted); margin-top:2px; }

.nav{ display:flex; gap:18px; align-items:center; }
.nav a{ color:var(--muted); font-weight:600; font-size:14px; padding:8px 10px; border-radius:12px; }
.nav a:hover{ background:rgba(255,255,255,.05); color:var(--text); }

.header-cta{ display:flex; gap:10px; align-items:center; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-weight:800;
  cursor:pointer;
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn:hover{ background:rgba(255,255,255,.07); transform: translateY(-1px); border-color:rgba(255,255,255,.14); }
.btn.gold{ background:linear-gradient(180deg, rgba(214,173,76,.95), rgba(214,173,76,.75)); border-color:rgba(214,173,76,.45); color:#151106; }
.btn.gold:hover{ background:linear-gradient(180deg, rgba(214,173,76,1), rgba(214,173,76,.85)); }
.btn.ghost{ background:rgba(255,255,255,.04); }

.hero{ display:grid; grid-template-columns: 1.05fr .95fr; gap:30px; padding:34px 0 10px; align-items:center; }
.pill{
  display:inline-flex; align-items:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(214,173,76,.32);
  background:rgba(214,173,76,.08);
  color:var(--gold);
  font-weight:800;
  font-size:14px;
}
h1{ font-size:56px; line-height:1.03; margin:18px 0 14px; letter-spacing:-.5px; }
.lead{ color:var(--muted); font-size:18px; line-height:1.6; max-width:560px; margin:0 0 18px; }
.hero-buttons{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:14px; }

.chips{ display:flex; flex-wrap:wrap; gap:10px; margin-top:10px; }
.chip{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-weight:700;
  font-size:14px;
}

.slideshow{
  position:relative;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:24px;
  padding:14px;
  box-shadow: var(--shadow);
}
.slideshow img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  display:block;
}
.dots{ display:flex; gap:8px; padding:10px 8px 2px; }
.dotbtn{
  width:12px; height:12px; border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.08);
  cursor:pointer;
}
.dotbtn.active{ background:rgba(214,173,76,.9); border-color:rgba(214,173,76,.55); }
.slide-note{
  position:absolute; right:18px; bottom:16px;
  background:rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.86);
  padding:10px 12px;
  border-radius:999px;
  font-size:13px;
  backdrop-filter: blur(8px);
}
.goldtext{ color:var(--gold); }

.section{ padding:46px 0; }
.section h2{ font-size:32px; margin:0 0 10px; letter-spacing:-.2px; }
.muted{ color:var(--muted); }
.cards{ display:grid; grid-template-columns: repeat(4, 1fr); gap:14px; margin-top:18px; }
.card{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
}
.card h3{ margin:0 0 8px; }
.card p{ margin:0; color:var(--muted); line-height:1.55; }

.section-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.filters{ display:flex; gap:10px; flex-wrap:wrap; }
.filter{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-weight:800;
  cursor:pointer;
}
.filter.active{ color:#151106; background:rgba(214,173,76,.92); border-color:rgba(214,173,76,.5); }

.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
  margin-top:18px;
}
.tile{
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.02);
  cursor:pointer;
  position:relative;
}
.tile img{ width:100%; height:210px; object-fit:cover; display:block; }
.tag{
  position:absolute; left:10px; bottom:10px;
  background:rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.9);
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  backdrop-filter: blur(8px);
}

.steps{ display:grid; gap:12px; margin-top:18px; }
.step{
  display:flex; gap:14px; align-items:flex-start;
  padding:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:var(--radius);
}
.num{
  width:36px; height:36px; border-radius:12px;
  display:grid; place-items:center;
  background:rgba(214,173,76,.12);
  border:1px solid rgba(214,173,76,.28);
  color:var(--gold);
  font-weight:900;
}

.contact{ display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; margin-top:18px; }
.contact-card{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  padding:16px;
}
.contact-card h3{ margin:0 0 10px; }
.big{ font-size:20px; font-weight:900; margin:6px 0 12px; }
.big a{ text-decoration:underline; text-decoration-color:rgba(255,255,255,.15); }
.row{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:10px; }

.map-card{
  margin-top:14px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  overflow:hidden;
}
.map-head{ padding:16px; border-bottom:1px solid var(--line); }
.map-placeholder{
  height:260px;
  display:grid; place-items:center;
  color:var(--muted);
}

.footer{ border-top:1px solid var(--line); padding:18px 0; background:rgba(0,0,0,.25); }
.footer-inner{ display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap; color:rgba(255,255,255,.75); }

.wa-float{
  position:fixed; right:18px; bottom:18px; z-index:40;
  padding:14px 16px;
  border-radius:999px;
  background:rgba(37,211,102,.95);
  color:#0b1a10;
  font-weight:900;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
}
.wa-float:hover{ filter:brightness(1.02); transform: translateY(-1px); }

@media (max-width: 980px){
  .hero{ grid-template-columns:1fr; }
  h1{ font-size:44px; }
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .contact{ grid-template-columns:1fr; }
  .slideshow img{ height:340px; }
}
@media (max-width: 520px){
  h1{ font-size:38px; }
  .cards{ grid-template-columns:1fr; }
  .grid{ grid-template-columns:1fr; }
  .slideshow img{ height:280px; }
}
