/* Laser-Hall category SEO blocks
   Подключать один раз на странице/сайте.
   Разметка блоков использует: <section class="lhp lhp-resin"> ... </section>
*/

.lhp-resin{
  --bg:#F5F8FF;
  --card:#FFFFFF;
  --text:#0F172A;
  --muted:#64748B;
  --line:#E2E8F0;
  --accent:#2563EB;
  --accent2:#1D4ED8;
  --soft:rgba(37,99,235,.10);
  font-family: inherit;
  color: var(--text);
  width: 100%;
}

.lhp-resin,
.lhp-resin *{
  box-sizing:border-box;
  font-family:inherit !important;
}

.lhp-resin .wrap{ width:100%; }

.lhp-resin .sec{
  width:100%;
  padding:clamp(18px,2.8vw,34px) 0;
}

.lhp-resin .sec--bg{ background:var(--bg); }
.lhp-resin .sec--white{ background:#fff; }

.lhp-resin .inner{
  width:100%;
  margin:0;
  padding:0 clamp(16px,3vw,28px);
}

.lhp-resin h2{
  margin:0 0 10px;
  font-size:clamp(18px,1.7vw,26px);
  line-height:1.2;
  letter-spacing:-.02em;
}

.lhp-resin h3{
  margin:16px 0 8px;
  font-size:16px;
  line-height:1.25;
  letter-spacing:-.01em;
}

.lhp-resin p{
  margin:8px 0;
  font-size:14px;
  line-height:1.8;
  color:var(--text);
}

.lhp-resin .muted{ color:var(--muted); }

.lhp-resin .badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:0 0 12px;
  padding:0;
  list-style:none;
}

.lhp-resin .badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 10px;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(37,99,235,.18);
  border-radius:999px;
  color:var(--muted);
  font-size:12px;
  line-height:1;
  backdrop-filter:blur(8px);
}

.lhp-resin .badge svg{ color:var(--accent); }

.lhp-resin .cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  margin-top:14px;
}

.lhp-resin .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(37,99,235,.25);
  background:var(--accent);
  color:#fff;
  font-weight:650;
  text-decoration:none;
  transition:transform .14s ease,background .14s ease,box-shadow .14s ease;
  box-shadow:0 12px 26px rgba(37,99,235,.22);
  white-space:nowrap;
}

.lhp-resin .btn:hover{
  background:var(--accent2);
  transform:translateY(-1px);
  color:#fff;
}

.lhp-resin .btn--ghost{
  background:#fff;
  color:var(--accent);
  box-shadow:none;
}

.lhp-resin .btn--ghost:hover{
  background:rgba(37,99,235,.06);
  transform:translateY(-1px);
  color:var(--accent);
}

.lhp-resin .cards{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  width:100%;
}

@media (max-width:900px){
  .lhp-resin .cards{ grid-template-columns:1fr; }
}

.lhp-resin .card{
  width:100%;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px 18px;
  box-shadow:0 12px 30px rgba(15,23,42,.06);
}

.lhp-resin .pills{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:10px 0 0;
  padding:0;
  list-style:none;
}

.lhp-resin .pill{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(37,99,235,.18);
  background:#fff;
  color:var(--text);
  font-size:12px;
  line-height:1;
}

.lhp-resin ul.list{
  margin:10px 0 0;
  padding-left:18px;
  font-size:14px;
  line-height:1.75;
}

.lhp-resin ul.list li{ margin:6px 0; }

.lhp-resin .steps{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
  margin-top:10px;
  width:100%;
}

@media (max-width:920px){
  .lhp-resin .steps{ grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media (max-width:520px){
  .lhp-resin .steps{ grid-template-columns:1fr; }
}

.lhp-resin .step{
  width:100%;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px;
  box-shadow:0 10px 22px rgba(15,23,42,.05);
}

.lhp-resin .step b{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  margin-bottom:6px;
}

.lhp-resin .dot{
  width:28px;
  height:28px;
  flex:0 0 28px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:var(--soft);
  border:1px solid rgba(37,99,235,.18);
  color:var(--accent);
  font-weight:800;
  font-size:12px;
}

.lhp-resin .step p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}

.lhp-resin .faq{
  width:100%;
  background:var(--bg);
  border:1px solid rgba(37,99,235,.12);
  border-radius:22px;
  padding:14px;
  box-shadow:0 18px 45px rgba(15,23,42,.06);
}

.lhp-resin .faq h2{ margin:6px 8px 10px; }

.lhp-resin .faq-list{
  width:100%;
  display:grid;
  gap:10px;
  margin:0;
  padding:0;
}

.lhp-resin details{
  width:100%;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 22px rgba(15,23,42,.05);
  transition:transform .14s ease,box-shadow .14s ease,border-color .14s ease;
}

.lhp-resin details:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 34px rgba(15,23,42,.10);
  border-color:rgba(37,99,235,.30);
}

.lhp-resin summary{
  list-style:none;
  cursor:pointer;
  padding:14px 16px;
  display:flex;
  align-items:flex-start;
  gap:12px;
  user-select:none;
  outline:none;
}

.lhp-resin summary::-webkit-details-marker{ display:none; }

.lhp-resin .qnum{
  width:30px;
  height:30px;
  flex:0 0 30px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:700;
  color:var(--accent);
  background:var(--soft);
  border:1px solid rgba(37,99,235,.18);
  margin-top:1px;
}

.lhp-resin .qtext{
  margin:0;
  font-weight:650;
  font-size:14px;
  line-height:1.35;
}

.lhp-resin .chev{
  margin-left:auto;
  width:32px;
  height:32px;
  border-radius:12px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  color:var(--muted);
  background:#fff;
  transition:transform .16s ease,background .16s ease,border-color .16s ease,color .16s ease;
  flex:0 0 auto;
}

.lhp-resin details[open] .chev{
  transform:rotate(180deg);
  background:var(--soft);
  border-color:rgba(37,99,235,.25);
  color:var(--accent);
}

.lhp-resin .ans{
  width:100%;
  padding:0 16px 14px 58px;
  font-size:14px;
  line-height:1.7;
}

.lhp-resin .ans p{ margin:10px 0; }
.lhp-resin .ans ul{ margin:10px 0 0; padding-left:18px; }
.lhp-resin .ans li{ margin:6px 0; }

.lh-price-block{
  width:100%;
  margin:20px 0;
}

.lh-price-title{
  font-size:30px;
  line-height:1.25;
  margin:0 0 14px;
  text-transform:uppercase;
}

.lh-price-title strong{ color:#257DE3; }

.lh-table-wrap{ overflow-x:auto; }

.lh-price-table{
  width:100%;
  min-width:760px;
  border-collapse:collapse;
}

.lh-price-table th,
.lh-price-table td{
  border:1px solid #e5e7eb;
  padding:14px 12px;
  text-align:center;
  white-space:nowrap;
}

.lh-price-table th{
  background:#257DE3;
  color:#fff;
  font-weight:700;
}

.lh-price-table th:first-child,
.lh-price-table td:first-child{
  text-align:left;
  font-weight:600;
}

.lh-specs{
  margin-top:10px;
  color:#4b5563;
  font-size:14px;
}

@media (prefers-reduced-motion:reduce){
  .lhp-resin *{ transition:none !important; }
}
