.hero__grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 30px;
  align-items: center;
}

.hero__content h1 {
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.97;
  letter-spacing: 0;
}

.hero__text {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.hero__stats li {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(31, 36, 48, 0.08);
}

.hero__stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.hero__stats span {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero__trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
}

.hero__trust strong {
  display: block;
  margin-bottom: 6px;
}

.hero__trust span {
  color: var(--text-muted);
  line-height: 1.65;
}

.hero__trust a {
  white-space: nowrap;
  color: var(--primary);
  font-weight: 800;
}

.hero__visual {
  padding: 18px;
}

.hero__visual img {
  width: 100%;
  border-radius: 26px;
}

.hero-product-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-height: 560px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #ffffff, #edf2ee 58%, #e7e0d7);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-product-stage img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.72);
  padding: 14px;
  filter: drop-shadow(0 18px 24px rgba(23,37,52,.12));
}

.hero-product-stage__main {
  grid-row: span 3;
}

.hero-product-stage__label {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  background: rgba(23, 37, 52, 0.9);
  color: #fff;
}

.hero-product-stage__label span {
  color: rgba(255,255,255,.78);
}

.selection-grid,
.service-grid,
.steps-grid,
.faq-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.selection-card,
.service-card,
.step-card,
.faq-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(31, 36, 48, 0.08);
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow);
}

.selection-card h3,
.service-card h3,
.step-card h3,
.faq-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.selection-card p,
.service-card p,
.step-card p,
.faq-card p {
  margin-bottom: 16px;
  color: var(--text-muted);
  line-height: 1.65;
}

.selection-card a {
  color: var(--primary);
  font-weight: 700;
}

.step-card {
  position: relative;
  padding-top: 72px;
}

.step-card span {
  position: absolute;
  top: 22px;
  left: 24px;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.brand-grid--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.brand-showcase-card {
  padding: 26px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(31, 36, 48, 0.08);
  background: rgba(255,255,255,0.85);
  box-shadow: var(--shadow);
}

.brand-showcase-card__top {
  margin-bottom: 14px;
}

.brand-showcase-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0;
  background: rgba(255,255,255,0.92);
}

.brand-showcase-card h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.3;
}

.brand-showcase-card p {
  margin-bottom: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.brand-showcase-card--eskaro {
  background: linear-gradient(180deg, rgba(255, 241, 163, 0.95), rgba(255,255,255,0.98));
}

.brand-showcase-card--finkraska {
  background: linear-gradient(180deg, rgba(194, 228, 224, 0.95), rgba(255,255,255,0.98));
}

.brand-showcase-card--gnature {
  background: linear-gradient(180deg, rgba(204, 231, 181, 0.95), rgba(255,255,255,0.98));
}

.brand-showcase-card--dusberg {
  background: linear-gradient(180deg, rgba(221, 228, 183, 0.95), rgba(255,255,255,0.98));
}

@media (max-width: 1080px) {
  .hero__grid,
  .selection-grid,
  .service-grid,
  .steps-grid,
  .faq-list,
  .hero__stats,
  .brand-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hero__grid,
  .selection-grid,
  .service-grid,
  .steps-grid,
  .faq-list,
  .hero__stats,
  .brand-grid,
  .brand-grid--four {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 22px;
  }

  .hero__content h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
    line-height: 1.02;
    letter-spacing: 0;
  }

  .hero__text {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__stats li,
  .selection-card,
  .service-card,
  .step-card,
  .faq-card,
  .brand-showcase-card {
    padding: 18px;
    border-radius: 24px;
  }

  .hero__trust {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 18px;
  }

  .hero__trust a {
    width: 100%;
  }

  .hero__visual {
    order: -1;
    padding: 10px;
  }

  .hero-product-stage {
    min-height: 430px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.2fr 1fr 1fr;
    gap: 10px;
  }

  .hero-product-stage__main {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

  .hero-product-stage img {
    padding: 10px;
  }

  .step-card {
    padding-top: 68px;
  }

  .step-card span {
    top: 18px;
    left: 18px;
  }
}
