/* Middle sections — aligned to Arnoosh luxury tokens */
.mid {
  --ink: #120c0e;
  --ink-soft: #3d0a14;
  --navy: #3d0a14;
  --red: #c40f29;
  --red-deep: #8e0a1d;
  --gold: #c4a35a;
  --gold-soft: #e2c98a;
  --fog: #f7f2ec;
  --fog-2: #efe7de;
  --line: rgba(255, 255, 255, 0.1);
  --muted: #6b5f63;
  --text: #120c0e;
  --white: #fff;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1240px;
  color: var(--text);
  background: transparent;
}
.mid .wrap { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }

.mid .fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.mid .fade-up.in { opacity: 1; transform: none; }
.mid .d1 { transition-delay: 0.12s; }
.mid .d2 { transition-delay: 0.24s; }
.mid .d3 { transition-delay: 0.36s; }

.mid .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0 1.45rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.94rem;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s, box-shadow 0.3s, color 0.3s, border-color 0.3s;
}
.mid .btn:hover { transform: translateY(-2px); }
.mid .btn-fill {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 32px rgba(196, 15, 41, 0.28);
  border-radius: 999px;
}
.mid .btn-fill:hover { background: #e21835; }
.mid .btn-line {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}
.mid .btn-line:hover { background: rgba(255, 255, 255, 0.12); }
.mid .btn-soft {
  background: rgba(196, 15, 41, 0.08);
  color: var(--red);
  border-radius: 999px;
  min-height: 44px;
  padding: 0 1.1rem;
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.mid .btn-soft:hover { background: var(--red); color: #fff; }

.mid .trust { background: #1a0509; color: rgba(255, 255, 255, 0.72); border-top: 1px solid var(--line); }
.mid .trust-row { display: grid; grid-template-columns: repeat(4, 1fr); min-height: 84px; }
.mid .trust-item {
  display: flex; align-items: center; justify-content: center; gap: 0.85rem;
  padding: 1.15rem 1rem; border-left: 1px solid var(--line); font-size: 0.9rem; font-weight: 600;
  transition: background 0.3s;
}
.mid .trust-item:last-child { border-left: none; }
.mid .trust-item:hover { background: rgba(255, 255, 255, 0.03); }
.mid .trust-item b { color: var(--gold-soft); font-size: 1.1rem; font-weight: 800; }

.mid .section { padding: clamp(3.4rem, 6.5vw, 5.4rem) 0; background: var(--fog); }
.mid .section#features { background: var(--fog); }
.mid .section#services { background: var(--white); }
.mid .eyebrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--red); margin-bottom: 0.85rem;
}
.mid .eyebrow .ibox {
  width: 26px; height: 26px; border-radius: 8px; background: var(--red); color: #fff;
  display: inline-grid; place-items: center; font-size: 0.7rem; letter-spacing: 0;
}
.mid .section-title {
  font-size: clamp(1.65rem, 3.4vw, 2.5rem);
  font-weight: 800; line-height: 1.25; letter-spacing: -0.02em; color: var(--ink);
}
.mid .section-lead { color: var(--muted); font-size: 1.02rem; max-width: 44ch; margin-top: 1rem; }
.mid .section-head { text-align: center; max-width: 620px; margin: 0 auto 2.8rem; }
.mid .section-head .section-title { max-width: none; }
.mid .section-head .section-lead { margin-inline: auto; }

.mid .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}
.mid .feature-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 12, 14, 0.06);
  border-radius: 20px;
  padding: 1.6rem 1.2rem;
  text-align: center;
  transition: 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.mid .feature-card::before {
  content: "";
  position: absolute; top: 0; right: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  transform: scaleX(0); transform-origin: right; transition: 0.35s;
}
.mid .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(18, 12, 14, 0.1);
  border-color: transparent;
}
.mid .feature-card:hover::before { transform: scaleX(1); }
.mid .feature-icon {
  width: 62px; height: 62px; margin: 0 auto 1rem; border-radius: 16px;
  background: linear-gradient(145deg, #fff1f3, #f7f2ec);
  color: var(--red); display: grid; place-items: center; font-size: 1.35rem; transition: 0.3s;
}
.mid .feature-card:hover .feature-icon { background: var(--red); color: #fff; transform: rotate(-6deg) scale(1.05); }
.mid .feature-card h3 { font-size: 1.02rem; margin-bottom: 0.4rem; font-weight: 800; }
.mid .feature-card p { color: var(--muted); font-size: 0.9rem; }

.mid .story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.mid .story-visual {
  position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 4/5; background: var(--ink);
}
.mid .story-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.mid .story-visual:hover img { transform: scale(1.06); }
.mid .story-chip {
  position: absolute; bottom: 1.4rem; right: 1.4rem;
  background: rgba(10, 18, 28, 0.85); backdrop-filter: blur(12px); color: #fff;
  padding: 1rem 1.2rem; border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 150px;
}
.mid .story-chip strong { display: block; font-size: 1.7rem; color: var(--gold); font-weight: 900; line-height: 1.1; }
.mid .story-chip span { font-size: 0.85rem; opacity: 0.8; }
.mid .story-copy .section-title { max-width: 12ch; }
.mid .story-points { margin-top: 2rem; display: grid; gap: 1rem; }
.mid .story-points li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid #e8ecf1;
}
.mid .story-points li:last-child { border-bottom: 1px solid #e8ecf1; }
.mid .story-points .ico {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(145deg, #fff5f5, #f0f4f9);
  color: var(--red); display: grid; place-items: center; font-size: 1rem;
}
.mid .story-points h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
.mid .story-points p { color: var(--muted); font-size: 0.9rem; }

.mid .statement {
  position: relative; padding: clamp(3.6rem, 8vw, 5.8rem) 0; color: #fff;
  overflow: hidden; background: #1a0509; text-align: center;
}
.mid .statement-bg {
  position: absolute; inset: 0;
  background: url("../assets/images/factory-equipment.jpg") center/cover;
  opacity: 0.28; filter: saturate(0.85);
}
.mid .statement-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26, 5, 9, 0.78), rgba(196, 15, 41, 0.45), rgba(26, 5, 9, 0.92));
}
.mid .statement-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.mid .statement .eyebrow { color: var(--gold-soft); justify-content: center; }
.mid .statement h2 {
  font-size: clamp(1.9rem, 5.5vw, 3.6rem); font-weight: 900; line-height: 1.2; letter-spacing: -0.03em;
}
.mid .statement h2 mark {
  display: inline-block; background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: #1a0509;
  padding: 0.1em 0.35em; border-radius: 12px; margin-top: 0.2em;
  animation: midGlowPulse 3.2s ease-in-out infinite;
}
@keyframes midGlowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 163, 90, 0.35); }
  50% { box-shadow: 0 0 0 14px rgba(196, 163, 90, 0); }
}
.mid .statement p { margin: 1.2rem auto 0; max-width: 40ch; color: rgba(255, 255, 255, 0.78); }

.mid .service-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.mid .service-card {
  position: relative; min-height: 230px; border-radius: 18px; overflow: hidden;
  display: flex; align-items: flex-end; color: #fff; isolation: isolate;
}
.mid .service-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease); z-index: -2;
}
.mid .service-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(155, 12, 36, 0.22), rgba(10, 18, 28, 0.88));
  transition: 0.35s;
}
.mid .service-card:hover img { transform: scale(1.1); }
.mid .service-card:hover::after {
  background: linear-gradient(180deg, rgba(196, 30, 42, 0.35), rgba(10, 18, 28, 0.92));
}
.mid .service-card > div { padding: 1.3rem; width: 100%; }
.mid .service-card i {
  width: 40px; height: 40px; border-radius: 10px; background: var(--red);
  display: grid; place-items: center; margin-bottom: 0.65rem;
}
.mid .service-card h3 { font-size: 1.05rem; font-weight: 800; }

.mid .products { background: var(--fog-2); }
.mid .products-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 1.5rem; margin-bottom: 2.5rem; flex-wrap: wrap;
}
.mid .product-rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.35rem; }
.mid a.product {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.mid .product {
  background: linear-gradient(180deg, #fff 0%, #fbf8f4 100%);
  border-radius: 24px;
  padding: 1rem 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(18, 12, 14, 0.06);
  box-shadow: 0 10px 28px rgba(18, 12, 14, 0.04);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.mid .product::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  opacity: 0;
  transition: opacity 0.35s ease;
}
.mid .product:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(61, 10, 20, 0.14);
  border-color: rgba(196, 15, 41, 0.12);
}
.mid .product:hover::before { opacity: 1; }
.mid .product-media {
  aspect-ratio: 1;
  border-radius: 18px;
  background: #f3ebe3;
  display: block;
  margin-bottom: 1.1rem;
  overflow: hidden;
  position: relative;
}
.mid .product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s var(--ease);
}
.mid .product:hover .product-media img { transform: scale(1.06); }
.mid .tag {
  position: absolute; top: 0.85rem; left: 0.85rem;
  background: rgba(18, 12, 14, 0.88);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(6px);
  z-index: 1;
}
.mid .tag.sale { background: var(--red); box-shadow: 0 8px 18px rgba(196, 15, 41, 0.35); }
.mid .product h3 {
  font-size: 0.98rem;
  font-weight: 800;
  min-height: 2.8em;
  margin: 0 0 1rem;
  line-height: 1.45;
  color: var(--ink);
}
.mid .product-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(18, 12, 14, 0.06);
}
.mid .price { font-weight: 900; color: var(--ink); font-size: 0.95rem; letter-spacing: -0.02em; }
.mid .price small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.74rem;
  text-decoration: line-through;
  margin-bottom: 0.15rem;
}
.mid .buy {
  height: 42px;
  padding: 0 1.05rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #c40f29, #8e0a1d);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s;
  border: 0;
  box-shadow: 0 10px 22px rgba(196, 15, 41, 0.28);
  white-space: nowrap;
}
.mid .buy:hover {
  background: linear-gradient(135deg, #e21835, #c40f29);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(196, 15, 41, 0.38);
}

.mid .pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 2.6rem; }
.mid .pillar {
  padding: 1.9rem 1.5rem; border-radius: 22px; background: #fff; border: 1px solid #e8ecf1;
  transition: 0.35s var(--ease);
}
.mid .pillar:hover { border-color: transparent; transform: translateY(-6px); box-shadow: 0 24px 50px rgba(10, 18, 28, 0.08); }
.mid .pillar-num {
  font-size: 2.8rem; font-weight: 900; line-height: 1; color: transparent;
  -webkit-text-stroke: 1.5px #d5dbe3; margin-bottom: 1rem;
}
.mid .pillar:hover .pillar-num { color: rgba(196, 30, 42, 0.08); -webkit-text-stroke-color: var(--red); }
.mid .pillar h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.45rem; }
.mid .pillar p { color: var(--muted); font-size: 0.92rem; }

.mid .articles { background: #fff; }
.mid .articles-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 1rem; margin-bottom: 2.4rem; flex-wrap: wrap;
}
.mid .articles-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 1.2rem; }
.mid .article {
  border-radius: 22px; overflow: hidden; background: var(--fog);
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.mid .article:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(10, 18, 28, 0.1); }
.mid .article-media { aspect-ratio: 16/10; overflow: hidden; position: relative; display: block; }
.mid .article.featured .article-media { aspect-ratio: 16/11; }
.mid .article-media img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease);
}
.mid .article:hover .article-media img { transform: scale(1.07); }
.mid .article-body { padding: 1.35rem 1.3rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.mid .article-cat {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--red); font-size: 0.78rem; font-weight: 700; margin-bottom: 0.55rem;
}
.mid .article h3 {
  font-size: 1.05rem; font-weight: 800; line-height: 1.55; margin-bottom: 0.55rem;
  color: var(--ink);
}
.mid .article.featured h3 { font-size: 1.35rem; }
.mid .article p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.1rem; }
.mid .article-meta {
  margin-top: auto; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: var(--muted); border-top: 1px solid #e4e9f0; padding-top: 0.9rem;
}
.mid .article-meta .more {
  color: var(--ink); font-weight: 700; display: inline-flex; align-items: center; gap: 0.35rem;
}
.mid .article:hover .article-meta .more { color: var(--red); }

.mid .gallery {
  background: var(--fog);
  color: var(--ink);
}
.mid .gallery .section-title { color: var(--ink); }
.mid .gallery .section-lead { color: var(--muted); }
.mid .gallery-head { margin-bottom: 2.3rem; }
.mid .gallery .mosaic a {
  box-shadow: 0 14px 36px rgba(18, 12, 14, 0.08);
  border: 1px solid rgba(18, 12, 14, 0.06);
}
.mid .mosaic {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 250px 250px; gap: 1rem;
}
.mid .mosaic a { position: relative; border-radius: 20px; overflow: hidden; display: block; }
.mid .mosaic a:first-child { grid-row: 1 / -1; }
.mid .mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.mid .mosaic a:hover img { transform: scale(1.08); }
.mid .mosaic a::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 18, 28, 0.55));
  opacity: 0.7; transition: 0.35s;
}
.mid .mosaic a:hover::after { opacity: 0.3; }

.mid .stats-band { margin-top: -3.2rem; position: relative; z-index: 2; }
.mid .stats {
  background: linear-gradient(120deg, #1a0509, #3d0a14 45%, #c40f29);
  border-radius: 28px; padding: 2.3rem 1.4rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  box-shadow: 0 30px 80px rgba(26, 5, 9, 0.35); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.mid .stat { text-align: center; padding: 0.5rem; }
.mid .stat-value { font-size: clamp(2rem, 3.6vw, 2.9rem); font-weight: 900; line-height: 1; color: var(--gold-soft); }
.mid .stat-label { margin-top: 0.6rem; font-size: 0.9rem; font-weight: 600; color: rgba(255, 255, 255, 0.82); }
.mid .stat-sub { margin-top: 0.15rem; font-size: 0.76rem; color: rgba(255, 255, 255, 0.45); }

.mid .sport-banner {
  border-radius: 24px; padding: 2.2rem 2rem;
  background: linear-gradient(110deg, var(--ink), var(--navy));
  color: #fff; display: flex; justify-content: space-between; align-items: center;
  gap: 1.5rem; flex-wrap: wrap;
}
.mid .sport-banner h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 800; }
.mid .sport-banner p { color: rgba(255, 255, 255, 0.75); margin-top: 0.45rem; max-width: 48ch; }
.mid .sport-banner i { color: var(--gold); margin-left: 0.4rem; }

.mid .contact-shell {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 0;
  border-radius: 32px; overflow: hidden; background: var(--ink); color: #fff;
  box-shadow: 0 40px 100px rgba(10, 18, 28, 0.18);
}
.mid .contact-side {
  padding: clamp(2rem, 4vw, 3.1rem);
  background: linear-gradient(160deg, rgba(196, 30, 42, 0.55), rgba(10, 18, 28, 0.4)), url("../assets/images/gallery-1.jpg") center/cover;
  display: flex; flex-direction: column; justify-content: space-between; min-height: 500px;
}
.mid .contact-side h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; line-height: 1.3; max-width: 11ch; }
.mid .contact-meta { display: grid; gap: 1rem; margin-top: 1.8rem; }
.mid .contact-meta div {
  display: flex; gap: 0.85rem; align-items: flex-start; font-size: 0.9rem; color: rgba(255, 255, 255, 0.88);
}
.mid .contact-meta i {
  width: 38px; height: 38px; border-radius: 11px; background: rgba(255, 255, 255, 0.12);
  display: grid; place-items: center; flex-shrink: 0;
}
.mid .contact-form { padding: clamp(2rem, 4vw, 3.1rem); background: #101a27; }
.mid .contact-form h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.3rem; }
.mid .contact-form > p { color: rgba(255, 255, 255, 0.55); margin-bottom: 1.6rem; font-size: 0.9rem; }
.mid .fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.mid .field { display: grid; gap: 0.35rem; }
.mid .field.full { grid-column: 1 / -1; }
.mid .field label { font-size: 0.76rem; color: rgba(255, 255, 255, 0.5); font-weight: 600; }
.mid .field input, .mid .field textarea {
  width: 100%; color: #fff; background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 14px; padding: 0.85rem 1rem; transition: 0.25s;
  font: inherit;
}
.mid .field input:focus, .mid .field textarea:focus {
  border-color: rgba(232, 197, 106, 0.55); background: rgba(255, 255, 255, 0.07); outline: none;
}
.mid .field textarea { min-height: 110px; resize: vertical; }
.mid .contact-form .btn-fill { width: 100%; margin-top: 0.4rem; }

.to-top {
  position: fixed; left: 1.2rem; bottom: 1.2rem; z-index: 80;
  width: 46px; height: 46px; border-radius: 14px;   background: #c40f29; color: #fff;
  cursor: pointer; display: grid; place-items: center; opacity: 0; pointer-events: none;
  transform: translateY(12px); transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 12px 30px rgba(196, 15, 41, 0.4); border: 0;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }

@media (max-width: 1024px) {
  .mid .features-grid, .mid .service-mosaic, .mid .product-rail { grid-template-columns: 1fr 1fr; }
  .mid .story-grid, .mid .contact-shell { grid-template-columns: 1fr; }
  .mid .story-visual { aspect-ratio: 16/10; max-height: 400px; }
  .mid .articles-grid { grid-template-columns: 1fr; }
  .mid .pillars-grid { grid-template-columns: 1fr; }
  .mid .stats { grid-template-columns: 1fr 1fr; }
  .mid .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 210px 210px 210px; }
  .mid .mosaic a:first-child { grid-column: 1 / -1; grid-row: auto; }
  .mid .contact-side { min-height: 340px; }
  .mid .product-rail { gap: 1rem; }
  .mid .product { padding: 0.85rem 0.85rem 1rem; border-radius: 20px; }
  .mid .product-media { border-radius: 14px; margin-bottom: 0.85rem; }
  .mid .product h3 { font-size: 0.9rem; min-height: 0; margin-bottom: 0.75rem; }
  .mid .product-foot {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }
  .mid .buy { width: 100%; justify-content: center; }
}
@media (max-width: 760px) {
  .mid .section { padding: clamp(2.8rem, 7vw, 4.2rem) 0; }
  .mid .trust-row { grid-template-columns: 1fr 1fr; }
  .mid .trust-item {
    padding: 0.95rem 0.7rem;
    font-size: 0.82rem;
    flex-direction: column;
    gap: 0.35rem;
    text-align: center;
  }
  .mid .trust-item:nth-child(2) { border-left: none; }
  .mid .trust-item:nth-child(3), .mid .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .mid .features-grid, .mid .product-rail, .mid .service-mosaic, .mid .stats, .mid .fields { grid-template-columns: 1fr; }
  .mid .product-rail {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .mid .product { padding: 0.7rem 0.7rem 0.85rem; border-radius: 16px; }
  .mid .product:hover { transform: translateY(-4px); }
  .mid .product-media { aspect-ratio: 1; margin-bottom: 0.7rem; border-radius: 12px; }
  .mid .product h3 {
    font-size: 0.8rem;
    min-height: 2.6em;
    margin-bottom: 0.55rem;
    line-height: 1.4;
  }
  .mid .price { font-size: 0.82rem; }
  .mid .price small { font-size: 0.68rem; }
  .mid .buy {
    height: 36px;
    font-size: 0.72rem;
    padding: 0 0.7rem;
  }
  .mid .tag { font-size: 0.62rem; padding: 0.22rem 0.5rem; top: 0.55rem; left: 0.55rem; }
  .mid .mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(5, minmax(180px, 42vw)); }
  .mid .mosaic a:first-child { grid-column: auto; }
  .mid .stats-band { margin-top: 2rem; }
  .mid .products-head { align-items: start; }
  .mid .section-title { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  .mid .statement h2 { font-size: clamp(1.55rem, 7vw, 2.4rem); }
  .mid .service-card { min-height: 200px; }
}
@media (max-width: 420px) {
  .mid .product-rail { grid-template-columns: 1fr; }
  .mid .product h3 { min-height: 0; font-size: 0.92rem; }
}
@media (max-width: 420px) {
  .mid .trust-row { grid-template-columns: 1fr; }
  .mid .trust-item { border-left: none !important; border-top: 1px solid var(--line); }
  .mid .trust-item:first-child { border-top: none; }
}
