.hero {
  padding: 72px 0 56px;
}

.hero__grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
  align-items: center;
}

.hero__title {
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.05;
  margin: 0;
  font-weight: 900;
}

.hero__title em {
  color: var(--brand-leaf);
  font-style: italic;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--stone-600);
  line-height: 1.7;
  max-width: 540px;
}

.hero__media {
  position: relative;
}

.hero__frame {
  background: var(--white);
  border: 2px solid var(--stone-800);
  padding: 14px;
  box-shadow: var(--shadow-sketch);
  transform: rotate(1deg);
}

.hero__gif {
  border: 2px solid var(--stone-800);
  border-radius: 10px;
  overflow: hidden;
  background: var(--stone-100);
  aspect-ratio: 16 / 9;
}

.hero__gif img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__badge {
  display: none;
  position: absolute;
  right: -10px;
  bottom: -24px;
  background: var(--white);
  border: 2px solid var(--stone-800);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 14px 16px;
  transform: rotate(3deg);
}

.hero__badgeDot {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--brand-leaf);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.product-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.product-card {
  background: var(--white);
  border: 2px solid var(--stone-800);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sketch-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card__media {
  background: var(--stone-100);
  border-bottom: 2px solid var(--stone-800);
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.06);
}

.product-card__price {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--white);
  border: 2px solid var(--stone-800);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  box-shadow: 2px 2px 0 rgba(41, 37, 36, 0.15);
}

.product-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-card__title {
  font-weight: 900;
  font-size: 18px;
  margin: 0;
}

.product-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  color: var(--stone-500);
  font-weight: 800;
  font-size: 13px;
}

.product-card__producer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  color: var(--stone-600);
}

.product-card__producer img {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(41, 37, 36, 0.2);
  object-fit: cover;
}

.ods {
  background: rgba(182, 199, 168, 0.18);
  border: 2px solid rgba(41, 37, 36, 0.08);
  border-radius: 60px;
  padding: 72px 0;
  margin: 40px 16px;
  box-shadow: inset 0 12px 48px rgba(0, 0, 0, 0.08);
}

.ods-circle {
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: var(--white);
  border: 2px solid rgba(41, 37, 36, 0.14);
  box-shadow: var(--shadow-sketch-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-weight: 900;
  color: var(--stone-800);
}

.steps {
  position: relative;
}

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

.step-badge {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  background: var(--brand-sage);
  border: 2px solid var(--stone-800);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-weight: 900;
  font-size: 26px;
  box-shadow: var(--shadow-sketch-soft);
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.stat {
  text-align: center;
  border-style: dashed;
  box-shadow: none;
  background: var(--brand-cream);
}

.stat__value {
  margin: 0;
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: 40px;
  font-weight: 900;
}

.stat__label {
  margin: 4px 0 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--stone-500);
}

.testimonials {
  border-top-left-radius: 70px;
  border-top-right-radius: 70px;
  background: rgba(182, 199, 168, 0.12);
  padding: 72px 0;
}

.quote {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote__mark {
  font-size: 46px;
  font-family: Fraunces, ui-serif, Georgia, serif;
  color: var(--brand-leaf);
  opacity: 0.22;
  line-height: 1;
}

.quote__text {
  color: var(--stone-700);
  font-style: italic;
  line-height: 1.7;
  font-weight: 700;
}

.quote__who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 2px dashed var(--stone-200);
}

.quote__who img {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 2px solid var(--stone-800);
  object-fit: cover;
}

.cta {
  background: var(--stone-900);
  color: var(--white);
  border-top-left-radius: 70px;
  border-top-right-radius: 70px;
  padding: 72px 0 96px;
  margin-top: -26px;
  border-top: 4px solid var(--stone-800);
}

.cta__label {
  background: rgba(76, 124, 62, 0.18);
  color: #bfe7b3;
  border-radius: 999px;
  display: inline-flex;
  padding: 7px 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  border: 1px solid rgba(191, 231, 179, 0.2);
}

.cta__grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  align-items: center;
}

.cta__title {
  margin: 12px 0 0;
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 900;
}

.cta__subtitle {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 16px;
}

.cta__photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.photo-card {
  border-radius: var(--radius-xl);
  border: 2px solid var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sketch-soft);
  padding: 10px;
}

.photo-card img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .hero__badge {
    display: block;
  }
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .cta__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
