:root {
  --gold:#d7a52e;
  --gold2:#f2c45d;
  --bg:#030303;
  --panel:#080808;
  --text:#f4f1e8;
}
* { box-sizing:border-box; }
html,body { margin:0; background:#020202; color:var(--text); font-family:Arial,Helvetica,sans-serif; }
body { min-height:100vh; }
.page-shell {
  width:min(100vw,1024px);
  margin:0 auto;
  background:#000;
  box-shadow:0 0 80px rgba(0,0,0,.85);
}
.card-wrap { position:relative; }
.card-image {
  display:block;
  width:100%;
  height:auto;
  user-select:none;
  -webkit-user-drag:none;
}
.hotspot {
  position:absolute;
  border:1px solid transparent;
  border-radius:6px;
  background:transparent;
  cursor:pointer;
  transition:.2s ease;
}
.hotspot:hover,.hotspot:focus-visible {
  border-color:var(--gold2);
  background:rgba(215,165,46,.04);
  box-shadow:0 0 0 3px rgba(215,165,46,.12),0 0 28px rgba(215,165,46,.24);
  outline:none;
}
.hotspot::after {
  content:attr(data-tip);
  position:absolute;
  left:50%;
  bottom:8px;
  transform:translate(-50%,8px);
  padding:6px 9px;
  border:1px solid rgba(215,165,46,.75);
  border-radius:4px;
  background:rgba(0,0,0,.92);
  color:var(--gold2);
  font-size:12px;
  white-space:nowrap;
  opacity:0;
  transition:.16s ease;
  pointer-events:none;
}
.hotspot:hover::after { opacity:1; transform:translate(-50%,0); }

.demolition { left:1.75%; top:10.4%; width:96.5%; height:22.1%; }
.lifting { left:1.75%; top:33.6%; width:96.5%; height:16.7%; }
.waste { left:1.75%; top:51.2%; width:96.5%; height:12.4%; }
.protection { left:1.75%; top:64.3%; width:96.5%; height:13.4%; }
.cleaning { left:1.75%; top:78.7%; width:96.5%; height:11.9%; }
.extra { left:1.75%; top:91.0%; width:96.5%; height:8.2%; }

.etalon-footer {
  border-top:1px solid rgba(215,165,46,.65);
  background:
    radial-gradient(circle at 70% 10%, rgba(215,165,46,.08), transparent 32%),
    #050505;
}
.cta {
  display:grid;
  grid-template-columns:1.15fr .9fr 1fr;
  align-items:center;
  gap:18px;
  padding:16px 18px 14px;
  border-bottom:1px solid rgba(215,165,46,.42);
}
.cta-copy {
  display:flex;
  align-items:center;
  gap:14px;
}
.phone {
  width:62px;height:62px;border:2px solid var(--gold);
  border-radius:50%;
  display:grid;place-items:center;
  color:var(--gold2);font-size:29px;flex:0 0 auto;
}
.cta h2 {
  margin:0 0 4px;
  color:var(--gold2);
  font-family:Georgia,"Times New Roman",serif;
  font-size:22px;
  font-weight:700;
}
.cta p { margin:0;color:#d7d1c5;font-size:14px;line-height:1.35; }
.offer {
  display:flex;align-items:center;justify-content:center;gap:10px;
  min-height:64px;
  border:1px solid #f0c05a;
  border-radius:6px;
  background:linear-gradient(180deg,#f2c45d,#b8790d);
  color:#111;
  text-decoration:none;
  font-size:20px;
  font-weight:800;
  text-align:center;
  padding:10px 16px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.35);
}
.brand {
  display:flex;align-items:center;justify-content:center;gap:14px;
  color:var(--gold2);
  font-family:Georgia,"Times New Roman",serif;
}
.diamond {
  width:58px;height:58px;border:2px solid var(--gold);
  transform:rotate(45deg);
  display:grid;place-items:center;flex:0 0 auto;
}
.diamond span { transform:rotate(-45deg);font-size:28px; }
.brand-text strong { display:block;font-size:27px;letter-spacing:.18em; }
.brand-text small { display:block;font-size:12px;letter-spacing:.35em;margin-top:3px; }

.benefits {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  border-top:1px solid rgba(215,165,46,.16);
}
.benefit {
  min-height:58px;
  display:flex;align-items:center;justify-content:center;gap:9px;
  padding:8px 10px;
  border-right:1px solid rgba(215,165,46,.38);
  color:#ddd7ca;
  text-align:left;
  font-size:12px;
}
.benefit:last-child { border-right:0; }
.benefit b { color:var(--gold2);font-size:20px;font-weight:400; }

.modal {
  position:fixed;inset:0;z-index:9999;display:none;
  align-items:center;justify-content:center;padding:18px;
  background:rgba(0,0,0,.92);
}
.modal.open { display:flex; }
.modal-card {
  width:min(1120px,96vw);max-height:94vh;overflow:auto;
  background:#070707;border:1px solid var(--gold);
  box-shadow:0 0 70px rgba(215,165,46,.24);
}
.modal-top {
  position:sticky;top:0;z-index:2;
  display:flex;align-items:center;justify-content:space-between;
  gap:12px;padding:11px 13px;
  background:rgba(5,5,5,.97);
  border-bottom:1px solid rgba(215,165,46,.45);
}
.modal-title { color:var(--gold2);font-weight:700; }
.close {
  border:1px solid var(--gold);background:#0a0a0a;color:var(--gold2);
  padding:7px 12px;border-radius:4px;cursor:pointer;font-weight:700;
}
.modal img { display:block;width:100%;height:auto; }

@media(max-width:760px) {
  .cta { grid-template-columns:1fr; }
  .brand { justify-content:flex-start; }
  .benefits { grid-template-columns:1fr 1fr; }
  .benefit:nth-child(2n) { border-right:0; }
  .hotspot::after { display:none; }
}

/* ---- extracted style block ---- */

.ramerk-card-switch{position:fixed;top:50%;transform:translateY(-50%);z-index:2147483000;width:74px;height:118px;display:flex;align-items:center;justify-content:center;text-decoration:none;color:#d8a84f;background:linear-gradient(180deg,rgba(8,7,5,.88),rgba(2,2,2,.94));border:1px solid rgba(216,168,79,.42);box-shadow:0 12px 42px rgba(0,0,0,.55),inset 0 0 22px rgba(216,168,79,.035);font:400 36px/1 Georgia,serif;transition:width .25s ease,background .25s ease,color .25s ease,border-color .25s ease;backdrop-filter:blur(5px)}
  .ramerk-card-switch.prev{left:18px}.ramerk-card-switch.next{right:18px}
  .ramerk-card-switch span{position:absolute;top:calc(100% + 8px);white-space:nowrap;font:600 9px/1.2 Arial,sans-serif;letter-spacing:.18em;text-transform:uppercase;color:rgba(244,211,127,.78);opacity:0;transition:opacity .2s ease}
  .ramerk-card-switch:hover,.ramerk-card-switch:focus-visible{width:88px;color:#f4d37f;background:linear-gradient(180deg,rgba(34,24,10,.96),rgba(5,4,3,.98));border-color:rgba(244,211,127,.9);outline:none}
  .ramerk-card-switch:hover span,.ramerk-card-switch:focus-visible span{opacity:1}
  .ramerk-card-home{position:fixed;right:18px;bottom:18px;z-index:2147483000;padding:12px 16px;color:#d8a84f;text-decoration:none;background:rgba(3,3,3,.9);border:1px solid rgba(216,168,79,.42);font:600 9px/1 Arial,sans-serif;letter-spacing:.16em;text-transform:uppercase}
  .ramerk-zoomable{cursor:zoom-in!important;transition:filter .25s ease,transform .25s ease!important}
  .ramerk-zoomable:hover{filter:brightness(1.08) contrast(1.03);}
  #ramerk-lightbox{position:fixed;inset:0;z-index:2147483646;display:none;align-items:center;justify-content:center;padding:42px;background:rgba(0,0,0,.94);cursor:zoom-out}
  #ramerk-lightbox.open{display:flex}
  #ramerk-lightbox img{max-width:96vw;max-height:92vh;width:auto!important;height:auto!important;object-fit:contain!important;position:static!important;transform:none!important;filter:none!important;border:1px solid rgba(216,168,79,.55);box-shadow:0 24px 90px rgba(0,0,0,.85)}
  #ramerk-lightbox button{position:fixed;right:22px;top:20px;width:46px;height:46px;border:1px solid rgba(216,168,79,.6);background:#090806;color:#f4d37f;font-size:25px;cursor:pointer}
  @media(max-width:900px){.ramerk-card-switch{width:48px;height:82px;font-size:27px}.ramerk-card-switch.prev{left:6px}.ramerk-card-switch.next{right:6px}.ramerk-card-switch span{display:none}.ramerk-card-home{right:8px;bottom:8px;padding:10px;font-size:8px}#ramerk-lightbox{padding:18px}}

/* Keep every solution card below the fixed site header. */
body.ramerk-has-global { padding-top: 110px !important; }
