@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Russo+One&display=swap");

:root {
  --bg: #f5f1e6;
  --bg-alt: #fff7ea;
  --card: #fffef9;
  --text: #1f261b;
  --muted: #5f6b55;
  --accent: #f6c84b;
  --accent-dark: #2f5b2a;
  --accent-strong: #f28a24;
  --accent-soft: #fde6a2;
  --line: #e4d4b7;
  --dark: #182116;
  --shadow: 0 26px 60px rgba(25, 33, 18, 0.18);
  --radius: 26px;
  --radius-sm: 18px;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-heading: "Russo One", "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(47, 91, 42, 0.12), transparent 55%),
    radial-gradient(circle at 88% 10%, rgba(242, 138, 36, 0.18), transparent 60%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08) 1px, transparent 1px, transparent 6px);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

section {
  padding: 96px 0;
  position: relative;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
}

.orb-1 {
  width: 380px;
  height: 380px;
  background: #f2c04f;
  top: -60px;
  right: -80px;
}

.orb-2 {
  width: 320px;
  height: 320px;
  background: #3c6f33;
  bottom: 12%;
  left: -120px;
}

.orb-3 {
  width: 260px;
  height: 260px;
  background: #f5a44c;
  top: 45%;
  left: 60%;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(47, 91, 42, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(18, 28, 14, 0.35);
  z-index: 10;
  color: #fdf7ea;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  position: relative;
}

.logo {
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
}

.logo:hover,
.logo:focus-visible {
  color: #fdf7ea;
}

.logo-title {
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.2em;
  font-family: var(--font-body);
}

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

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.nav a:hover {
  background: rgba(246, 200, 75, 0.85);
  color: #1f261b;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(25, 20, 18, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 8;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

.phone {
  font-weight: 600;
  color: #ffe18b;
}

.menu-toggle {
  display: none;
}

.hero {
  padding-top: 140px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #2f5b2a 0%, #21441f 60%, #1b3419 100%);
  color: #fdf7ea;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  opacity: 0.35;
  filter: blur(10px);
  z-index: 0;
}

.hero::before {
  background: #f6c84b;
  top: -120px;
  right: 10%;
}

.hero::after {
  background: #f28a24;
  bottom: -140px;
  left: 5%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-title {
  width: 100%;
  max-width: none;
  margin-bottom: 28px;
}

.hero-title h1 {
  margin-bottom: 0;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: #f6c84b;
  color: #1e271a;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 16px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.6rem, 4.6vw, 4rem);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.25;
}

h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.25;
}

p {
  margin-bottom: 12px;
}

.lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.hero h1,
.hero h2,
.hero h3,
.hero h4 {
  color: #ffe28c;
}

.hero h1 {
  text-shadow: 0 8px 18px rgba(7, 12, 6, 0.5);
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #1f261b;
  box-shadow: 0 16px 28px rgba(45, 63, 29, 0.28);
}

.btn.primary:hover {
  background: #ffd667;
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: rgba(47, 91, 42, 0.35);
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.75);
}

.btn.ghost:hover {
  background: rgba(246, 200, 75, 0.22);
  color: var(--accent-dark);
  transform: translateY(-2px);
}

.btn.outline {
  border-color: rgba(31, 38, 27, 0.4);
  color: var(--dark);
  background: #fff;
}

.btn.outline:hover {
  background: var(--dark);
  color: #fff;
}

.hero-facts {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.hero-facts--side {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
  width: min(520px, 100%);
  align-self: flex-end;
}

.hero-facts--side li {
  text-align: center;
  display: grid;
  gap: 10px;
  place-items: center;
  min-height: 108px;
}

.hero-facts li {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 20px rgba(12, 20, 12, 0.2);
  font-size: 0.9rem;
  color: #fff;
}

.hero-fact-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  color: #ffe28c;
}

.hero-fact-icon svg {
  width: 24px;
  height: 24px;
}

.hero-fact-text {
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.hero-callout {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: #fff2bf;
  border: 1px solid rgba(255, 229, 140, 0.9);
  box-shadow: 0 18px 36px rgba(13, 20, 10, 0.25);
  color: #1f261b;
}

.hero-callout p {
  color: inherit;
}

.hero-callout-title {
  font-weight: 700;
  margin-bottom: 4px;
}

.hero-callout-note {
  color: rgba(31, 38, 27, 0.75);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.hero-callout-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero .btn.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.hero .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero .btn.primary {
  background: linear-gradient(135deg, #f6c84b, #f5a33c);
  color: #1f261b;
  box-shadow: 0 16px 28px rgba(15, 24, 12, 0.35);
}

.hero-callout .btn.ghost {
  background: #fff;
  border-color: rgba(47, 91, 42, 0.35);
  color: #1f261b;
}

.hero-callout .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #1f261b;
}

.hero-callout .btn.outline {
  border-color: rgba(31, 38, 27, 0.5);
  color: #1f261b;
}

.hero-media {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}

.hero-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid rgba(246, 200, 75, 0.65);
  width: min(520px, 100%);
  margin-left: auto;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.hero-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: #f6c84b;
  color: #1f261b;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.about {
  background: #fff7ea;
}

.advantages {
  background: linear-gradient(180deg, #fbe8b0 0%, #f6d57a 100%);
  position: relative;
  overflow: hidden;
  margin: 0 14px;
  border-radius: 40px;
  box-shadow: 0 24px 48px rgba(15, 22, 12, 0.14);
  padding-bottom: 180px;
}

.advantages::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  top: -120px;
  right: 6%;
}

.advantages::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(980px, 96%);
  height: 240px;
  transform: translateX(-50%);
  background: url("assets/images/advantages-pallets.png") no-repeat center bottom / contain;
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
}

.advantages .container {
  position: relative;
  z-index: 1;
}

.features {
  background: linear-gradient(150deg, #2f5b2a 0%, #244823 70%, #1b3419 100%);
  color: #fdf7ea;
  position: relative;
  overflow: hidden;
  margin: 0 14px;
  border-radius: 40px;
  box-shadow: 0 26px 60px rgba(9, 14, 8, 0.35);
}

.features::before,
.features::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(246, 200, 75, 0.18);
}

.features::before {
  top: -140px;
  left: -80px;
}

.features::after {
  bottom: -160px;
  right: -60px;
  background: rgba(242, 138, 36, 0.22);
}

.features .container {
  position: relative;
  z-index: 1;
}

.features h2,
.features h3,
.features h4 {
  color: #fdf7ea;
}

.features p {
  color: rgba(255, 255, 255, 0.8);
}

.features .card {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.features .card:hover {
  box-shadow: 0 18px 36px rgba(9, 14, 8, 0.4);
}

.section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.cards-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--card);
  border: 2px solid rgba(47, 91, 42, 0.12);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 18px 36px rgba(15, 22, 12, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-number {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: rgba(246, 200, 75, 0.35);
  color: #1f261b;
  border-radius: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 52px rgba(15, 22, 12, 0.18);
}

.assortment {
  background: linear-gradient(180deg, #eef3f7 0%, #e2ebf2 100%);
  margin: 0 14px;
  border-radius: 40px;
  box-shadow: 0 22px 44px rgba(15, 22, 12, 0.1);
}

.category {
  margin-bottom: 48px;
}

.category-head {
  margin-bottom: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: #fff;
  border: 2px solid rgba(47, 91, 42, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 30px rgba(15, 22, 12, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(31, 23, 17, 0.16);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-body {
  padding: 16px;
}

.product-body p {
  margin-bottom: 6px;
  color: var(--text);
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 16px;
}

.catalog-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 20px 24px;
  border: 2px dashed rgba(47, 91, 42, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(15, 22, 12, 0.08);
}

.buy {
  background: linear-gradient(180deg, #fff3d1 0%, #f8e1b4 100%);
  margin: 0 14px;
  border-radius: 40px;
  box-shadow: 0 22px 44px rgba(15, 22, 12, 0.12);
}

.buy-form h3 {
  margin-bottom: 16px;
}

.buy .buy-form.card {
  border-color: rgba(47, 91, 42, 0.25);
  box-shadow: 0 18px 36px rgba(15, 22, 12, 0.16);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-status {
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 1.2em;
}

.form-status.is-success {
  color: #2f6b2f;
}

.form-status.is-error {
  color: #9a531d;
}

.captcha-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.captcha-input {
  flex: 1 1 160px;
}

.captcha-refresh {
  border: 1px solid rgba(47, 91, 42, 0.3);
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.captcha-refresh:hover {
  border-color: var(--accent);
}

.hp-field {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
}

.is-hidden {
  display: none;
}

.field.is-hidden {
  display: none;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-weight: 600;
  font-size: 0.9rem;
}

.field input,
.field select {
  padding: 12px 14px;
  border: 1px solid rgba(47, 91, 42, 0.18);
  border-radius: 14px;
  font-size: 0.95rem;
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(31, 23, 17, 0.06);
}

.field input:focus,
.field select:focus {
  outline: 2px solid rgba(246, 200, 75, 0.4);
  border-color: var(--accent-dark);
}

.field.checkbox {
  grid-template-columns: 1fr;
}

.field.checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
}

.field.checkbox input {
  margin-top: 4px;
}

.action-line {
  font-weight: 600;
  color: var(--accent-dark);
  font-size: 1.05rem;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
  margin-bottom: 26px;
}

.delivery {
  background: #f1f6f1;
}

.delivery-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.transport-list {
  display: grid;
  gap: 16px;
}

.transport-list h4 {
  margin-bottom: 6px;
}

.sell {
  background: linear-gradient(150deg, #2f5b2a 0%, #244823 70%, #1b3419 100%);
  color: #fdf7ea;
  position: relative;
  overflow: hidden;
  margin: 0 14px;
  border-radius: 40px;
  box-shadow: 0 26px 60px rgba(9, 14, 8, 0.35);
}

.sell::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(246, 200, 75, 0.2);
  top: -140px;
  right: -80px;
}

.sell .container {
  position: relative;
  z-index: 1;
}

.sell h2,
.sell h3,
.sell h4 {
  color: #fdf7ea;
}

.sell p {
  color: rgba(255, 255, 255, 0.8);
}

.sell .price-highlight {
  color: #ffe28c;
}

.sell .card {
  background: #fffef9;
  color: var(--text);
}

.sell .card h3,
.sell .card h4 {
  color: var(--dark);
}

.sell .sell-form.card {
  border-color: rgba(246, 200, 75, 0.8);
  box-shadow: 0 20px 40px rgba(15, 22, 12, 0.18);
}

.sell .card p {
  color: var(--muted);
}

.sell .product-card h4 {
  color: var(--dark);
}

.sell .product-card p {
  color: var(--text);
}

.sell .points .phone {
  color: var(--accent-dark);
}

.sell-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 28px;
}

.price-highlight {
  font-weight: 700;
  color: var(--accent-dark);
}

.points {
  margin-bottom: 24px;
}

.points .phone {
  font-weight: 700;
  color: var(--accent-dark);
}

.checklist {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 12px 0 20px;
}

.checklist li {
  padding-left: 26px;
  position: relative;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.services {
  margin-top: 24px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: center;
}

.service-media img {
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.contacts {
  background: #fff7ea;
}

.contact-info a {
  color: var(--accent-dark);
}

.contact-form h3 {
  margin-bottom: 12px;
}

.contacts .contact-form.card {
  border-color: rgba(246, 200, 75, 0.7);
  box-shadow: 0 18px 36px rgba(15, 22, 12, 0.16);
}

.privacy {
  background: #fff7ea;
}

.privacy h1,
.privacy h2,
.privacy h3 {
  margin-top: 18px;
}

.privacy h1 {
  text-transform: none;
  letter-spacing: 0;
  color: var(--dark);
}

.privacy p {
  color: #2b2723;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: #243a20;
  padding: 30px 0;
  color: #fdf7ea;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer .btn.ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.site-footer .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.footer-policy {
  margin-top: 8px;
  padding: 8px 16px;
  font-size: 0.9rem;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #2f5b2a;
    z-index: 9;
    flex-direction: column;
    gap: 6px;
    padding: 0 16px;
    border-bottom: 1px solid transparent;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 0.3s ease, opacity 0.2s ease, transform 0.2s ease, padding 0.2s ease;
  }

  .nav.open {
    max-height: 70vh;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    padding: 12px 16px;
    border-bottom-color: rgba(255, 255, 255, 0.2);
    overflow-y: auto;
  }

  .menu-toggle {
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 14px;
    border-radius: 999px;
    background: #f6c84b;
    color: #1f261b;
    font-weight: 700;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 80px;
    padding-bottom: 90px;
    min-height: auto;
  }

  .advantages,
  .features,
  .assortment,
  .buy,
  .sell {
    margin: 0 8px;
    border-radius: 28px;
  }

  .advantages {
    padding-bottom: 160px;
  }

  .advantages::after {
    height: 200px;
  }

  .hero-callout {
    align-items: flex-start;
  }

  .hero-callout-actions {
    width: 100%;
  }

  .hero-media {
    align-items: stretch;
  }

  .hero-image {
    width: 100%;
    margin-left: 0;
  }

  .hero-facts--side {
    width: 100%;
    align-self: stretch;
  }
}

@media (max-width: 600px) {
  section {
    padding: 64px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .catalog-callout {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
