:root{
  --bg:#ffffff;
  --bg2:#fbfbfd;
  --text:#111827;
  --muted:#4b5563;
  --muted2:#6b7280;

  --border: rgba(17,24,39,.10);
  --border2: rgba(17,24,39,.14);

  --accent:#b88900;
  --accent2:#d6a71a;

  --shadow: 0 10px 30px rgba(17,24,39,.08);
  --shadowSoft: 0 6px 18px rgba(17,24,39,.06);

  --r:18px;
  --r2:28px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","SF Pro Text",system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  background:
    radial-gradient(900px 520px at 18% -10%, rgba(184,137,0,.07), transparent 60%),
    radial-gradient(900px 520px at 86% 10%, rgba(59,130,246,.06), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}
a{color:inherit; text-decoration:none}
.wrap{max-width:var(--max); margin:0 auto; padding:0 22px}

/* Header */
header{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17,24,39,.08);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:14px;
}
.brand{display:flex; align-items:center; gap:12px; min-width:240px}
.logo{
  width:46px; height:46px; border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--border);
  box-shadow: var(--shadowSoft);
  overflow:hidden;
}
.logoImg{width:100%; height:100%; object-fit:contain; padding:6px; display:block}
.logo.sm{width:36px; height:36px; border-radius:14px}
.logo.sm .logoImg{padding:5px}
.brand h1{margin:0; font-size:14px; line-height:1.2}
.brand p{margin:3px 0 0; font-size:12px; color:var(--muted2)}

nav ul{
  list-style:none; display:flex; gap:14px; padding:0; margin:0; align-items:center;
  flex-wrap:wrap; justify-content:center;
}
nav a{
  font-weight:800; font-size:13px;
  color:var(--muted);
  padding:10px 12px;
  border-radius:12px;
  transition: background .12s ease, color .12s ease;
  white-space:nowrap;
}
nav a:hover{background: rgba(17,24,39,.04); color:var(--text)}
.actions{display:flex; gap:10px; align-items:center}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:11px 14px;
  border-radius:14px;
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.90);
  color: var(--text);
  font-weight: 900;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  box-shadow: var(--shadowSoft);
  user-select:none;
  white-space:nowrap;
}
.btn:hover{transform: translateY(-1px); background:#fff; border-color: rgba(17,24,39,.14); box-shadow: var(--shadow)}
.btn:active{transform: translateY(0)}
.btn.primary{
  border-color: rgba(184,137,0,.26);
  background: linear-gradient(180deg, rgba(214,167,26,.38), rgba(184,137,0,.18));
}
.btn.primary:hover{
  background: linear-gradient(180deg, rgba(214,167,26,.46), rgba(184,137,0,.22));
}
.btn.ghost{background: transparent; box-shadow:none; border-color: rgba(17,24,39,.10)}
.btn.ghost:hover{background: rgba(17,24,39,.04); box-shadow: var(--shadowSoft)}

/* Chips / pills */
.chip{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius: 999px;
  border:1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.90);
  color: var(--muted);
  font-weight:800; font-size:13px;
  box-shadow: var(--shadowSoft);
}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  font-weight: 900; font-size: 12px;
  color:#3a2a00;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(184,137,0,.20);
  background: rgba(214,167,26,.16);
}

/* Layout */
section{padding: 42px 0}
.head{display:flex; align-items:flex-end; justify-content:space-between; gap:14px; margin-bottom:16px}
.head h3{margin:0; font-size:28px; letter-spacing:-.6px}
.head p{margin:0; color:var(--muted); font-size:14px; max-width:72ch}

/* Cards */
.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.grid2{display:grid; grid-template-columns: repeat(2, 1fr); gap:14px}
.card{
  border:1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.98);
  border-radius: var(--r);
  padding: 16px;
  box-shadow: var(--shadowSoft);
}
.card h4{margin:10px 0 6px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:13px}

/* Page hero */
.pageHero{padding: 30px 0 18px}
.pageShell{
  border-radius: var(--r2);
  overflow:hidden;
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
}
.pageInner{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 360px;
}
.pageCopy{
  padding: 28px 26px;
  background: rgba(255,255,255,.94);
  display:flex; flex-direction:column; justify-content:center;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  color:var(--muted);
  font-weight:800; font-size:13px;
  padding:8px 12px;
  border:1px solid rgba(17,24,39,.10);
  border-radius:999px;
  background: rgba(255,255,255,.85);
  width:fit-content;
  box-shadow: var(--shadowSoft);
}
.dot{width:8px;height:8px;border-radius:50%; background: var(--accent2); box-shadow: 0 0 0 4px rgba(184,137,0,.12)}
h2{margin:14px 0 10px; font-size:44px; line-height:1.06; letter-spacing:-1.1px}
h2 span{color: var(--accent)}
.pageCopy p{margin:0 0 14px; color:var(--muted); font-size:16px; max-width:60ch}
.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin-top:8px}

.pageMedia{
  position:relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.86)),
    var(--heroImg, url("https://images.unsplash.com/photo-1521587760476-6c12a4b040da?fm=jpg&ixlib=rb-4.1.0&q=80&w=1800")) center/cover no-repeat;
  filter: saturate(1.05);
}
.badge{
  position:absolute; left:16px; right:16px; bottom:16px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(17,24,39,.12);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  display:flex; gap:12px; align-items:flex-start;
}
.badge .icon{
  width:38px;height:38px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background: rgba(184,137,0,.12);
  border:1px solid rgba(184,137,0,.18);
  color:#3a2a00;
  flex:0 0 auto;
}
.badge p{margin:2px 0 0; color:var(--muted); font-size:13px}

/* Checklist */
.check{
  display:grid; gap:10px;
}
.checkItem{
  display:flex; gap:10px; align-items:flex-start;
  border:1px solid rgba(17,24,39,.10);
  background:#fff;
  border-radius: 16px;
  padding:12px;
  box-shadow: var(--shadowSoft);
}
.checkItem .ok{
  width:28px;height:28px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background: rgba(22,163,74,.10);
  border:1px solid rgba(22,163,74,.18);
}
.checkItem b{display:block}
.checkItem small{display:block; color:var(--muted2); margin-top:2px}

/* Steps */
.steps{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.step{
  border:1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.98);
  border-radius: var(--r2);
  padding:16px;
  box-shadow: var(--shadowSoft);
  position:relative;
  overflow:hidden;
}
.step::before{
  content:"";
  position:absolute; inset:-40px -40px auto auto;
  width:140px;height:140px;
  background: radial-gradient(circle at 30% 30%, rgba(184,137,0,.14), transparent 60%);
  transform: rotate(12deg);
}
.num{
  width:40px;height:40px;border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(184,137,0,.20);
  background: rgba(214,167,26,.14);
  color:#3a2a00; font-weight:900;
}
.step h4{margin:10px 0 6px}
.step p{margin:0; color:var(--muted); font-size:13px}

/* FAQ */
.faq{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
details{
  border:1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.98);
  border-radius: var(--r);
  padding:14px;
  box-shadow: var(--shadowSoft);
}
summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}
summary::-webkit-details-marker{display:none}
details p{margin:10px 0 0; color:var(--muted); font-size:13px}

/* Contact + Map */
.contactWrap{display:grid; grid-template-columns: 1.22fr .78fr; gap:14px; align-items:stretch}
.contact{
  border-radius: var(--r2);
  border:1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  overflow:hidden;
  height:100%;
}
.contactLeft{padding:18px; background: rgba(255,255,255,.96)}
.miniGrid{display:grid; gap:10px; margin-top:12px}
.mini{
  border:1px solid rgba(17,24,39,.10);
  background:#fff;
  border-radius: 16px;
  padding:12px;
  display:flex; gap:10px;
  box-shadow: var(--shadowSoft);
}
.mini .ico{
  width:38px;height:38px;border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(184,137,0,.12);
  border:1px solid rgba(184,137,0,.18);
  color:#3a2a00;
  flex:0 0 auto;
}
.mini small{display:block; color:var(--muted2)}

.mapCard{
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.98);
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--shadow);
  height:100%;
  min-height: 420px;
  display:flex;
  flex-direction:column;
}
.mapHeader{padding: 12px 14px; border-bottom: 1px solid rgba(17,24,39,.08); background: rgba(255,255,255,.92)}
.mapHeaderRow{display:flex; align-items:center; justify-content:space-between; gap:10px; font-weight: 900}
.mapLink{
  display:inline-flex; align-items:center; justify-content:center;
  padding:8px 10px;
  border-radius: 12px;
  border:1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.90);
  color: var(--muted);
  font-size:12px;
  font-weight: 900;
  box-shadow: var(--shadowSoft);
}
.mapSub{padding: 0 14px 12px; color: var(--muted2); font-size: 12px; background: rgba(255,255,255,.92)}
.mapCard iframe{width:100%; height:100%; min-height:320px; border:0; display:block; flex:1 1 auto}

/* Footer */
footer{
  padding:28px 0 36px;
  border-top:1px solid rgba(17,24,39,.08);
  color: var(--muted2);
  font-size:12px;
  background: rgba(255,255,255,.70);
}
.foot{display:flex; align-items:flex-start; justify-content:space-between; gap:14px; flex-wrap:wrap}

/* Floating WhatsApp */
.fab{
  position:fixed; right:18px; bottom:18px; z-index:80;
  border-radius: 18px;
  padding:12px 14px;
  background: rgba(22,163,74,.10);
  border:1px solid rgba(22,163,74,.26);
  box-shadow: var(--shadow);
  display:flex; align-items:center; gap:10px;
  cursor:pointer;
  backdrop-filter: blur(16px);
  transition: transform .12s ease, background .12s ease;
  user-select:none;
}
.fab:hover{transform: translateY(-2px); background: rgba(22,163,74,.14)}
.bubble{
  width:38px;height:38px;border-radius:16px;
  background: rgba(22,163,74,.14);
  border:1px solid rgba(22,163,74,.26);
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
}

/* Responsive */
@media (max-width: 980px){
  .pageInner{grid-template-columns:1fr}
  .pageMedia{min-height:260px}
  .grid3{grid-template-columns:1fr 1fr}
  .grid2{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .faq{grid-template-columns:1fr}
  .contactWrap{grid-template-columns:1fr}
  .brand{min-width:auto}
  nav ul{gap:8px}
  nav a{padding:8px 10px; font-size:12px}
  h2{font-size:38px}
  .actions .btn.ghost{display:none;}
}
@media (max-width: 560px){
  h2{font-size:32px}
  .grid3{grid-template-columns:1fr}
  .mapHeaderRow{flex-wrap:wrap; justify-content:flex-start}
}
