/* ===== Pixel-style hero (namespaced pro Shoptet) ===== */
.px-hero{
  --px-max: 1100px;
  --px-text: #111;
  --px-muted: #555;
  --px-line: #e9e9e9;
  --px-radius: 16px;
  --px-gap: 48px;
  padding: 56px 16px 72px;
}

.px-hero__inner{
  max-width: var(--px-max);
  margin: 0 auto;
}

.px-hero__head{
  text-align: center;
  margin-bottom: 40px;
}

.px-hero__title{
  color: var(--px-text);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(34px, 4.2vw, 56px);
  margin: 0 0 14px;
}

.px-hero__lead{
  max-width: 760px;
  margin: 0 auto;
  color: var(--px-muted);
  line-height: 1.55;
  font-size: 14px;
}

.px-hero__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--px-gap);
  align-items: center;
  margin-top: 36px;
}

.px-hero__media{
  display: flex;
  justify-content: center;
}

.px-hero__phone{
  width: min(380px, 100%);
  height: auto;
  border-radius: var(--px-radius);
  display: block;
}

/* ===== Accordion ===== */
.px-acc{
  border-bottom: 1px solid var(--px-line);
  padding: 12px 0;
}

.px-acc:first-child{
  border-top: 1px solid var(--px-line);
}

.px-acc__summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.px-acc__summary::-webkit-details-marker{ display:none; }

.px-acc__title{
  font-size: 16px;
  font-weight: 600;
  color: var(--px-text);
  line-height: 1.25;
}

.px-acc__content{
  color: var(--px-muted);
  font-size: 14px;
  line-height: 1.55;
  padding: 0 0 16px;
  max-width: 520px;
}

.px-acc__chev{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  position: relative;
  flex: 0 0 28px;
}

.px-acc__chev::before{
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  transform: rotate(45deg);
  transition: transform .18s ease;
  top: 7px;
}

.px-acc[open] .px-acc__chev::before{
  transform: rotate(-135deg);
  top: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 900px){
  .px-hero{
    padding: 42px 14px 56px;
    --px-gap: 28px;
  }
  .px-hero__grid{
    grid-template-columns: 1fr;
  }
  .px-hero__accordion{
    max-width: 720px;
    margin: 0 auto;
  }
  .px-acc__content{
    max-width: none;
  }
}
