body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f6f6f6;
  color: #111;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

/* HEADER */
.header {
  padding: 30px 60px;
}

.logo {
  height: 80px;
  width: auto;
}

/* HERO */
.hero {
  position: relative;
  padding: 80px 0; /* вместо высоты */
  overflow: hidden;
}

/* Фоновый текст (самый нижний слой) */
.bg-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(72px, 16vw, 210px);
  font-weight: 700;
  color: rgba(150, 100, 200, 0.15);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Контент */
.hero-content {
  display: flex;
  align-items: center;

  max-width: 1200px;
  margin: 0 auto;

  padding: 0 40px;
  box-sizing: border-box;

  position: relative;
  z-index: 2;
}

/* ЛЕВАЯ ЧАСТЬ */
.left {
  max-width: 520px;
}

.subtitle {
  font-size: 14px;
  color: #777;
}

.subtitle span {
  color: red;
}

h1 {
  font-size: 58px;
  margin: 20px 0;
  line-height: 1.15;
  font-weight: 600;
}

/* КНОПКА */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2f3438;
  border: none;
  padding: 16px 32px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  margin: 25px 0;
  border-radius: 4px;
  transition: transform 0.2s ease;
  max-width: 100%;
  text-decoration: none !important;
}

.btn:hover {
  transform: translateY(-2px);
  background: #171a1d;
}

/* НИЖНИЙ ТЕКСТ */
.note {
  color: #777;
  font-size: 14px;
}

/* ПРАВАЯ ЧАСТЬ (runner) */
.right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  z-index: 3;
}

/* БЕГУН */
.runner {
  width: 100%;
  max-width: 700px;

  /* появление справа */
  transform: translateX(200px);
  opacity: 0;

  animation: runnerIn 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* АНИМАЦИЯ */
@keyframes runnerIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ========================= */
/* АДАПТИВ */
/* ========================= */

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-tile {
    height: 90px;
  }
}

@media (max-width: 768px) {

  .categories h2 {
    margin: 0 20px 20px;
  }

  .category-tile {
    height: 110px;
  }

  .tile-content {
    left: 20px;
  }

  .tile-title {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {


.hero-content {
  position: relative;
  display: flex;
  align-items: center;

  max-width: 1200px;     /* ограничение ширины */
  margin: 0 auto;        /* центрирование */

  padding: 0 20px;       /* отступы от краёв */
  box-sizing: border-box;

  z-index: 2;
}

  h1 {
    font-size: 44px;
  }

  .right {
    width: 500px;
  }
}

/* МОБИЛКА */
@media (max-width: 768px) {

  .header {
    padding: 20px;
    text-align: center;
  }

  .logo {
    height: 60px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .left {
    max-width: 100%;
  }

  h1 {
    font-size: 30px;
  }

  .bg-text {
    font-size: 120px;
    top: 30%;
  }

  /* УБИРАЕМ absolute на мобилке */
  .right {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    margin-top: 30px;
  }

  .runner {
    width: 80%;
    max-width: 350px;

    /* более мягкая анимация */
    transform: translateX(80px);
  }
}

/* BENEFITS (ПЕРЕРАБОТАНО) */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding: 80px;
  background: linear-gradient(180deg, #ffffff, #f8f8f8);
}

.benefit {
  background: white;
  padding: 30px 25px;
  border-radius: 16px;
  text-align: left;

  border: 1px solid #eee;

  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* Лёгкий градиент при наведении */
.benefit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4cd96422, #cddc3922);
  opacity: 0;
  transition: 0.3s;
}

.benefit:hover::before {
  opacity: 1;
}

.benefit:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ИКОНКИ */
.benefit-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 15px;
  stroke-width: 1.8;
  color: #4cd964;
}

/* ЗАГОЛОВОК */
.benefit .title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

/* ТЕКСТ */
.benefit .text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}


/* ========================= */
/* CATEGORIES — OZON STYLE */
/* ========================= */

.categories {
  padding: 60px 80px;
}

.categories h2 {
  margin-bottom: 25px;
}

/* ========================= */
/* CATEGORIES — DARK BANNERS */
/* ========================= */

.categories {
  padding: 50px 80px;
}

.categories h2 {
  margin-bottom: 22px;
  font-size: 22px;
  font-weight: 700;
}

/* ========================= */
/* CATEGORIES — CLEAN FULL   */
/* ========================= */

.categories {
  padding: 50px 0;
}

/* контейнер (ключевой элемент) */
.category-grid {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  gap: 16px;

  padding: 0 40px; /* вот это решает проблему краёв */
}

/* заголовок */
.categories h2 {
  max-width: 1200px;
  margin: 0 auto 25px;
  padding: 0 40px;

  font-size: 22px;
  font-weight: 700;
}

/* баннер */
.category-tile {
  position: relative;
  width: 100%;
  height: 150px;

  border-radius: 16px; /* возвращаем аккуратность */
  overflow: hidden;
  cursor: pointer;

  transition: 0.3s ease;
}

/* картинка */
.tile-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1.02);
  filter: brightness(0.75);
  transition: 0.5s ease;
}

/* градиент */
.tile-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.4) 45%,
    rgba(0,0,0,0.1) 100%
  );
}

/* текст */
.tile-content {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.tile-title {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

/* hover */
.category-tile:hover .tile-bg {
  transform: scale(1.05);
  filter: brightness(0.9);
}

/* SUBTEXT */
.cat-sub {
  font-size: 13px;
  color: #777;
}


/* ========================= */
/* HOW — УСИЛЕННЫЙ БЛОК */
/* ========================= */

.how {
  padding: 80px;
  background: #f9f9f9;
}

.how h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

/* СЕТКА */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ШАГ */
.step {
  background: white;
  padding: 30px;
  border-radius: 16px;

  border: 1px solid #eee;
  text-align: left;

  transition: 0.25s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ЦИФРА */
.num {
  width: 60px;
  height: 60px;

  background: linear-gradient(90deg, #4cd964, #cddc39);
  color: white;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  font-weight: 700;

  margin-bottom: 15px;
}

/* ЗАГОЛОВОК */
.step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ТЕКСТ */
.step-text {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}


/* CTA */
.cta {
  padding: 60px;
  text-align: center;
  background: white;
}

/* FOOTER */
.footer {
  padding: 30px;
  text-align: center;
  color: #777;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .benefits,
  .how {
    padding: 56px 28px;
  }

  .steps {
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 18px 16px;
    text-align: center;
  }

  .logo {
    height: 54px;
  }

  .hero {
    padding: 26px 0 36px;
  }

  .hero-content {
    padding: 0 16px;
  }

  h1 {
    font-size: clamp(28px, 8vw, 36px);
    margin: 14px 0;
    line-height: 1.18;
  }

  .bg-text {
    font-size: 78px;
    top: 72px;
  }

  .subtitle,
  .note {
    font-size: 13px;
    line-height: 1.45;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    margin: 18px auto;
    padding: 14px 18px;
  }

  .right {
    margin-top: 18px;
  }

  .runner {
    width: min(86vw, 330px);
  }

  .benefits {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 34px 16px;
  }

  .benefit {
    padding: 20px 18px;
    border-radius: 8px;
  }

  .categories {
    padding: 34px 0;
  }

  .categories h2,
  .category-grid {
    padding: 0 16px;
  }

  .categories h2 {
    margin-bottom: 16px;
    font-size: 20px;
  }

  .category-grid {
    gap: 12px;
  }

  .category-tile {
    height: 112px;
    border-radius: 8px;
  }

  .tile-content {
    left: 18px;
    right: 18px;
  }

  .tile-title {
    font-size: 18px;
    line-height: 1.25;
  }

  .how {
    padding: 36px 16px;
  }

  .how h2 {
    font-size: 24px;
    margin-bottom: 22px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .step {
    padding: 20px 18px;
    border-radius: 8px;
  }

  .num {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .cta {
    padding: 38px 16px;
  }

  .cta h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}

/* VISUAL SHOP POLISH */
body {
  background:
    linear-gradient(180deg, #ffffff 0, #f7f8f8 760px),
    #f7f8f8;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid #edf0f2;
  box-shadow: 0 8px 28px rgba(20, 20, 20, 0.04);
}

.main-nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  color: #555;
  text-decoration: none !important;
}

.main-nav a:hover {
  color: #111;
}

.subtitle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid #e9edef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(18, 29, 43, 0.05);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 520px;
  margin-top: 22px;
}

.hero-stats div {
  padding: 12px;
  border: 1px solid #e8ecef;
  border-radius: 8px;
  background: rgba(255,255,255,0.86);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  margin-bottom: 4px;
  font-size: 18px;
}

.hero-stats span {
  color: #666;
  font-size: 12px;
  line-height: 1.35;
}

.benefits,
.how {
  max-width: 1220px;
  margin: 0 auto;
}

.benefits {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(18, 29, 43, 0.05);
}

@media (max-width: 1100px) {
  .benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.benefit,
.step,
.category-tile {
  border-radius: 8px;
}

.categories {
  background: #fff;
}

.how {
  background: transparent;
}

@media (max-width: 768px) {
  .header {
    align-items: center;
    gap: 12px;
  }

  .main-nav {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 8px 12px;
    overflow: visible;
    white-space: normal;
    flex-wrap: wrap;
    font-size: 12px;
  }

  .main-nav a {
    color: #444;
    text-decoration: none !important;
  }

  .subtitle {
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    margin: 18px auto 0;
  }

  .hero-stats div {
    padding: 10px 6px;
  }

  .hero-stats strong {
    font-size: 16px;
  }

  .hero-stats span {
    font-size: 11px;
  }
}

@media (max-width: 420px) {
  .hero-stats {
    width: 100%;
    gap: 6px;
    margin-top: 14px;
  }

  .hero-stats div {
    min-width: 0;
    padding: 9px 4px;
  }

  .hero-stats strong {
    font-size: 15px;
  }

  .hero-stats span {
    font-size: 10px;
    line-height: 1.2;
  }

  .bg-text {
    top: 58%;
    font-size: clamp(58px, 24vw, 92px);
    opacity: 0.45;
  }

  .hero-deal-board {
    max-width: none;
    padding: 12px;
  }

  .hero-deal-board a {
    grid-template-columns: 46px 1fr auto;
  }

  .hero-deal-board img {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 420px) {
  .header {
    flex-direction: column;
  }
}

/* HOME MARKET CONTENT */
.hero {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(247,248,248,0.78)),
    #fff;
  padding: 48px 0 58px;
}

.header {
  padding: 14px 60px;
}

.logo {
  height: 64px;
}

.bg-text {
  top: 48%;
  font-size: clamp(72px, 16vw, 210px);
}

h1 {
  font-size: 54px;
}

.right {
  width: 650px;
}

.hero-deal-board {
  position: absolute;
  right: 42px;
  bottom: -8px;
  width: 260px;
  padding: 14px;
  border: 1px solid #e8ecef;
  border-radius: 8px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 22px 60px rgba(18, 29, 43, 0.12);
  z-index: 4;
}

.deal-title {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
}

.hero-deal-board a {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: #111;
  text-decoration: none;
}

.hero-deal-board a + a {
  border-top: 1px solid #eef1f2;
}

.hero-deal-board img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  background: #fafafa;
}

.hero-deal-board span {
  font-size: 13px;
  line-height: 1.25;
}

.hero-deal-board strong {
  font-size: 14px;
}

.service-strip {
  max-width: 1220px;
  margin: -26px auto 0;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}

.market-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid #e8ecef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 29, 43, 0.05);
}

.strip-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 18px;
  border-right: 1px solid #edf0f2;
  border-top: none;
  border-bottom: none;
  border-left: none;
  background: transparent;
  box-shadow: none;
  font-size: 14px;
  font-weight: 600;
  color: #424242;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.18s ease, color 0.18s ease;
}

.strip-item:last-child {
  border-right: none;
}

.strip-item::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 2px;
  background: #2f3438;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.strip-item:hover,
.strip-item.active {
  background: #f8fafb;
  color: #111;
}

.strip-item.active::after {
  opacity: 1;
}

.strip-item svg {
  width: 22px;
  height: 22px;
  color: #7b8490;
  flex: 0 0 auto;
}

.service-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 10px;
  padding: 18px 20px;
  border: 1px solid #e8ecef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 29, 43, 0.05);
}

.service-panel-text span,
.service-panel-text strong,
.service-panel-text p {
  display: block;
}

.service-panel-text span {
  margin-bottom: 5px;
  color: #7b8490;
  font-size: 12px;
  font-weight: 800;
}

.service-panel-text strong {
  margin-bottom: 6px;
  font-size: 18px;
}

.service-panel-text p {
  max-width: 720px;
  margin: 0;
  color: #5f6871;
  font-size: 14px;
  line-height: 1.5;
}

.service-panel a {
  flex: 0 0 auto;
  color: #2f3438;
  font-weight: 800;
  text-decoration: none;
}

.showcase {
  max-width: 1220px;
  margin: 42px auto 0;
  padding: 0 40px 54px;
  scroll-margin-top: 110px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.eyebrow {
  margin-bottom: 6px;
  color: #7b8490;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.section-head h2 {
  margin: 0;
  font-size: 30px;
}

.section-head a {
  color: #2f3438;
  font-weight: 700;
  text-decoration: none;
}

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 18px;
}

.promo-card,
.product-preview {
  border: 1px solid #e8ecef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 29, 43, 0.06);
  text-decoration: none;
}

.promo-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  overflow: hidden;
  color: #111;
}

.promo-copy {
  padding: 24px;
}

.promo-copy span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #eaffef;
  color: #15963a;
  font-size: 12px;
  font-weight: 800;
}

.promo-copy strong {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.12;
}

.promo-copy small {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.promo-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  padding: 18px;
  background: #f6f8f8;
}

.product-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-preview {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 14px;
  color: #111;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-preview:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(18, 29, 43, 0.1);
}

.stock-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(245, 247, 248, 0.96);
  color: #555;
  font-size: 12px;
  font-weight: 800;
}

.product-preview img {
  height: 190px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 12px;
  padding: 8px;
  border-radius: 8px;
  background: #fafafa;
}

.preview-category {
  color: #888;
  font-size: 12px;
  line-height: 1.35;
}

.product-preview strong {
  margin: 8px 0 14px;
  font-size: 15px;
  line-height: 1.3;
}

.preview-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.preview-bottom span {
  white-space: nowrap;
  font-size: 18px;
  font-weight: 800;
}

.preview-bottom em {
  white-space: nowrap;
  color: #555;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .market-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-item:nth-child(2) {
    border-right: none;
  }

  .strip-item:nth-child(-n+2) {
    border-bottom: 1px solid #edf0f2;
  }

  .showcase-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .logo {
    height: 54px;
  }

  .header {
    position: relative;
    top: auto;
  }

  .hero {
    padding: 22px 0 28px;
  }

  h1 {
    font-size: 32px;
    line-height: 1.12;
  }

  .hero-deal-board {
    position: relative;
    order: -1;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 330px;
    margin: 14px auto 0;
  }

  .right {
    display: flex;
    flex-direction: column;
  }

  .runner {
    display: none;
  }

  .service-strip,
  .showcase {
    padding-left: 16px;
    padding-right: 16px;
  }

  .market-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .strip-item,
  .strip-item:nth-child(2) {
    border-right: none;
  }

  .strip-item {
    border-bottom: 1px solid #edf0f2;
  }

  .strip-item:last-child {
    border-bottom: none;
  }

  .service-panel {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .service-panel-text strong {
    font-size: 16px;
  }

  .showcase {
    margin-top: 34px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head h2 {
    font-size: 24px;
  }

  .promo-card {
    min-height: auto;
  }

  .product-preview-grid {
    grid-template-columns: 1fr;
  }

  .product-preview {
    min-height: auto;
  }
}

/* FINAL STORE GRID ADJUSTMENTS */
.showcase .product-preview-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.showcase .product-preview {
  min-height: 360px;
}

.showcase .product-preview img {
  height: 165px;
}

.categories {
  max-width: 1220px;
  margin: 0 auto 48px;
  padding: 0 40px;
  background: transparent;
  scroll-margin-top: 110px;
}

.categories h2 {
  max-width: none;
  margin: 0 0 18px;
  padding: 0;
  font-size: 30px;
}

.category-grid {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
}

.category-tile {
  height: 210px;
  border: 1px solid #e8ecef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 29, 43, 0.06);
}

.tile-bg {
  height: 100%;
  filter: none;
  transform: none;
}

.tile-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.62) 100%);
}

.tile-content {
  left: 16px;
  right: 16px;
  top: auto;
  bottom: 16px;
  transform: none;
}

.tile-title {
  font-size: 20px;
  line-height: 1.2;
}

.category-tile:hover .tile-bg {
  transform: scale(1.04);
  filter: none;
}

/* CALMER ACCENTS AND PROCESS BLOCK */
.benefit-icon {
  color: #7b8490;
}

.how {
  max-width: 1220px;
  margin: 0 auto 56px;
  padding: 58px 40px;
  border: 1px solid #e8ecef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 29, 43, 0.04);
}

.how h2 {
  margin: 0 0 26px;
  font-size: 30px;
}

.steps {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.steps::before {
  content: "";
  position: absolute;
  left: 13%;
  right: 13%;
  top: 31px;
  height: 1px;
  background: #dfe5e8;
}

.step {
  position: relative;
  padding: 0 32px 0 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.step:hover {
  transform: none;
  box-shadow: none;
}

.num {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  border: 1px solid #dfe5e8;
  border-radius: 50%;
  background: #fff;
  color: #2f3438;
  box-shadow: 0 0 0 10px #fff;
}

.step-title {
  font-size: 18px;
}

.step-text {
  max-width: 260px;
  color: #5f6871;
}

@media (max-width: 768px) {
  .how {
    margin-bottom: 34px;
    padding: 28px 18px;
  }

  .steps {
    gap: 22px;
  }

  .steps::before {
    display: none;
  }

  .step {
    padding: 0 0 20px 54px;
    border-bottom: 1px solid #edf0f2;
  }

  .step:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .num {
    position: absolute;
    left: 0;
    top: 0;
    width: 38px;
    height: 38px;
    margin: 0;
    box-shadow: none;
    font-size: 16px;
  }
}

@media (max-width: 1100px) {
  .showcase .product-preview-grid,
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .showcase .product-preview-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase .product-preview {
    min-height: 320px;
  }

  .showcase .product-preview img {
    height: 145px;
  }

  .categories {
    padding: 0 16px;
    margin-bottom: 34px;
  }

  .categories h2 {
    font-size: 24px;
  }

  .category-tile {
    height: 150px;
  }

  .tile-title {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .showcase .product-preview-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .how .steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .how .step {
    min-height: auto;
    padding: 0 0 18px 56px;
  }

  .how .step-text {
    max-width: none;
  }

  .how .num {
    position: absolute;
    left: 0;
    top: 0;
  }
}

@media (max-width: 768px) {
  .bg-text {
    top: 55%;
    font-size: clamp(58px, 23vw, 96px);
  }

  .hero-deal-board,
  .service-strip,
  .benefits {
    display: none;
  }
}
