@font-face {
  font-family: "Klik";
  src: url("/public/fonts/Fenotype%20-%20Klik%20Extralight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Klik";
  src: url("/public/fonts/Fenotype%20-%20Klik%20Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Klik";
  src: url("/public/fonts/Fenotype%20-%20Klik%20Regular%20Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Klik";
  src: url("/public/fonts/Fenotype%20-%20Klik%20Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Klik";
  src: url("/public/fonts/Fenotype%20-%20Klik%20Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vast XL";
  src: url("/public/fonts/VastXL-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/public/fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: "Klik", "Segoe UI", Arial, sans-serif; background: #ffffff; color: #07263a; }
.page { min-height: 100vh; }
.container { width: min(1000px, 92vw); margin: 0 auto; }
.section { padding: 28px 0; }
.compact-top { padding-top: 8px; }
.section-title { text-align: center; font-size: 30px; margin: 0 0 28px; font-weight: 700; }
h2 { margin: 0; }

.hero { padding: 12px 0 18px; }
.hero-box { background: #052f47; color: #fff; border-radius: 24px; padding: 28px 30px 34px 24px; }
.hero-head {
  position: relative;
  display: block;
  min-height: 0;
  padding-right: 320px;
}
.hero-logo {
  position: absolute;
  right: 24px;
  top: 54px;
  transform: none;
  width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo img { display: block; width: 100%; height: auto; }
.footer-logo { width: 120px; }
.footer-logo img { display: block; width: 100%; height: auto; }
.hero-pretitle {
  margin: 0 0 16px;
  color: #ABA76F;
  font-size: 19px;
  font-family: "Klik", "Segoe UI", Arial, sans-serif;
}
.hero h1 { margin: 0 0 12px; font-size: 19px; line-height: 1.2; font-weight: 700; font-style: normal; }
.hero h1 { font-family: "Vast XL", "Segoe UI", Arial, sans-serif; }
.hero h1 { max-width: calc(100% - 320px); }
.hero-text {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.3;
  max-width: 600px;
  color: #d8e5ee;
  font-family: "Klik", "Segoe UI", Arial, sans-serif;
}

.primary-btn {
  border: none;
  border-radius: 999px;
  background: #f25a29;
  color: #fff;
  padding: 12px 56px 12px 20px;
  font-size: 14px;
  font-family: "Klik", "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  position: relative;
  cursor: pointer;
}
.hero .primary-btn {
  padding: 14px 64px 14px 24px;
  font-size: 22px;
}
.primary-btn::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url("/public/button-arrow.svg") center/contain no-repeat;
}
.primary-btn:disabled { opacity: .7; cursor: default; }

.features-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.icon-card { border: 1px solid #cdd3d9; border-radius: 12px; background: transparent; padding: 12px; text-align: center; }
.features-grid .icon-card { border: none; }
.icon-card h3 { margin: 0 0 4px; font-size: 15px; }
.icon-card p { margin: 0; color: #506777; font-size: 12px; }
.icon-card--svg {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 86px;
  gap: 10px;
}
.icon-card--svg img {
  width: 106px;
  height: 86px;
  display: block;
}
.icon-card--svg img[src="/public/icon-stable-quality.svg"] {
  width: 57px;
  height: 85px;
}
.icon-card-caption {
  margin: 2px 0 0;
  font-size: 18px;
  color: #07263a;
  line-height: 1.2;
}
.features-grid .icon-card--svg .icon-card-caption {
  font-size: 18px !important;
}

.brands-section { padding-top: 8px; }
.brands-pyramid {
  max-width: 430px;
  margin: 0 auto;
}
.brands-pyramid img {
  display: block;
  width: 100%;
  height: auto;
}

.products-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.product-card { background: #fff; border-radius: 12px; padding: 8px; box-shadow: none; border: none; display: flex; flex-direction: column; }
.product-image { border-radius: 10px; height: 235px; margin-bottom: 8px; background: linear-gradient(120deg, #8f5535, #cf9b73); overflow: hidden; }
.product-image img,
.product-image svg { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }
.product-card:first-child .product-image { background: transparent; }
.product-card:nth-child(2) .product-image {
  background-image: url("/assets/c__Users_vitt7_AppData_Roaming_Cursor_User_workspaceStorage_deed8d43b7fc39eb9b8321ed70782a02_images_image-44080ece-d8e5-4e55-9308-f0d7bcd27711.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.product-card:nth-child(3) .product-image {
  background-image: url("/assets/c__Users_vitt7_AppData_Roaming_Cursor_User_workspaceStorage_deed8d43b7fc39eb9b8321ed70782a02_images_image-3166638c-f5a7-4a5a-8e9f-b68f390a1bd9.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.product-card h3 { margin: 0 0 4px; font-size: 21px; text-align: center; }
.product-card p { margin: 0; font-size: 18px; color: #4b6272; text-align: center; }
.product-image-undertext {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  justify-content: center;
}
.product-image-undertext img {
  width: 85px;
  height: 121px;
  display: block;
}
.product-image-undertext--wide img {
  width: auto;
  max-width: 300px;
  height: 121px;
}

.formats-section { padding-top: 10px; }
.formats-section .section-title { display: none; }
.formats-row { display: flex; flex-direction: column; gap: 8px; align-items: center; border-radius: 10px; background: #E7EAEC; padding: 10px 12px; }
.formats-title { margin: 0; font-size: 21px !important; font-weight: 700; text-transform: none; color: #07263a; }
.formats-items { display: flex; gap: 12px; justify-content: center; align-items: center; flex-wrap: nowrap; white-space: nowrap; font-size: 18px; font-weight: 400; text-transform: lowercase; color: #07263a; }
.formats-items > :nth-child(4) { margin-left: 20px; }
.formats-row > span { display: inline-flex; }
.formats-separator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.formats-separator svg {
  width: 114px;
  height: 53px;
  display: block;
}
.formats-separator--alt svg {
  width: 116px;
  height: 55px;
}

.why-card { border-radius: 12px; background: #FFFFFF; padding: 12px; }
.why-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 12px; align-items: center; }
.why-list { margin: 8px 0 0; padding-left: 0; line-height: 1.5; font-size: 18px; list-style: none; }
.why-list-item-with-icon { display: grid; grid-template-columns: 27px 1fr; column-gap: 8px; align-items: center; }
.why-list-icon { display: inline-flex; width: 27px; height: 23px; line-height: 0; flex: 0 0 auto; justify-content: center; }
.why-list-icon svg { width: 25px; height: 23px; display: block; }
.why-list-icon img { width: 100%; height: 100%; display: block; }
.why-list-icon--small img { width: 19px; height: 19px; }
.why-list-icon--medium img { width: 27px; height: 15px; }
.why-list-icon--tall { height: 31px; }
.why-list-icon--tall img { width: 23px; height: 31px; }
.meat-illustration {
  min-height: 180px;
  border-radius: 14px;
  background: transparent;
  background-image: url("/assets/c__Users_vitt7_AppData_Roaming_Cursor_User_workspaceStorage_deed8d43b7fc39eb9b8321ed70782a02_images_image-f26f8b7f-1cbf-49c6-a0c4-88a0f84122ce.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.section.alt { background: transparent; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.card { border: 1px solid #cfd5db; border-radius: 12px; background: #f0f2f5; padding: 12px; }
.section.alt .card {
  border: none;
  background: transparent;
  padding: 0;
  display: grid;
  grid-template-columns: 112px 1fr;
  column-gap: 18px;
  align-items: center;
}
.card-icon { display: flex; justify-content: flex-start; margin-bottom: 8px; }
.section.alt .card-icon { margin-bottom: 0; align-items: center; min-height: 83px; }
.section.alt .card-content { grid-column: 2; }
.card-icon img { width: 57px; height: 83px; display: block; }
.card-icon--wide img { width: 111px; height: 64px; }
.card-icon--small img { width: 53px; height: 60px; }
.card-icon--promo img { width: 59px; height: 47px; }
.card strong { display: block; font-size: 18px; text-align: center; }
.card p { margin: 4px 0 0; font-size: 18px; color: #4e6473; text-align: center; }
.section.alt .card strong { text-align: left; margin: 0; }
.section.alt .card p { text-align: left; margin: 6px 0 0; }

.testimonial-section { padding-top: 14px; }
.testimonial-label { width: fit-content; padding: 5px 14px; border: 1px solid #9fb0bd; border-radius: 999px; background: #fff; font-size: 13px; font-style: normal; }
.quote-box { position: relative; margin: 0; background: #E7EAEC; border-radius: 18px; padding: 24px 28px 52px; font-size: 34px; line-height: 1.28; font-style: italic; color: #0e374c; }
.quote-layout { display: grid; grid-template-columns: 220px 1fr; column-gap: 18px; align-items: center; }
.quote-aside { display: flex; flex-direction: column; align-items: flex-start; margin-top: -8px; }
.quote-aside-shape img { width: 180px; height: auto; display: block; }
.quote-author-photo { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; display: block; margin-top: 10px; }
.quote-content { display: flex; flex-direction: column; justify-content: center; }
.quote-content p { margin: 0; font-size: 21px; }
.quote-box cite { display: block; margin-top: 12px; font-style: italic; font-size: 21px; }
.quote-box .testimonial-label { position: absolute; right: 18px; bottom: 14px; }

.logistics-grid { display: grid; grid-template-columns: 1fr; gap: 14px; align-items: stretch; }
.logistics-grid > div { width: 100%; }
.logistics-heading-wrap .section-title { text-align: center; width: 100%; margin: 0 0 10px; }
.logistics-grid {
  background-image: url("/assets/c__Users_vitt7_AppData_Roaming_Cursor_User_workspaceStorage_deed8d43b7fc39eb9b8321ed70782a02_images_image-25b3b31d-112c-49e7-ac43-3636d22567b7.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 20px 24px;
}
.warehouses-title { margin: 6px 0 8px; font-weight: 700; font-size: 21px; }
.warehouses-list { margin: 0 0 20px; font-size: 21px; }
.warehouses-list { line-height: 1.3; }
.warehouse-city { display: inline-flex; align-items: center; gap: 6px; margin-right: 16px; margin-bottom: 6px; }
.warehouse-city img { width: 14px; height: 14px; display: block; }
.logistics-section .why-list { margin-top: 10px; }
.logistics-list-with-icon { display: grid; grid-template-columns: 121px 1fr; column-gap: 22px; align-items: center; margin-top: 4px; }
.logistics-list-icon-large { display: inline-flex; width: 121px; height: 71px; line-height: 0; margin-top: 0; }
.logistics-list-icon-large img { width: 100%; height: 100%; display: block; }
.logistics-list-text { margin-top: 0 !important; }

.form-section { background: transparent; color: #08263a; padding-bottom: 8px; }
.form-container { max-width: 520px; text-align: center; }
.form-container h2 { font-size: 30px; line-height: 1.15; margin-bottom: 24px; }
.lead-form { display: grid; gap: 6px; }
.form-section .lead-form .primary-btn { font-size: 22px; font-family: "Klik", "Segoe UI", Arial, sans-serif; font-weight: 400; margin: 18px 0 22px; }
.lead-form label { display: grid; gap: 2px; font-size: 0; }
.lead-form input { width: 100%; border: 1px solid #b8c3cc; border-radius: 14px; background: transparent; padding: 10px 16px; font-size: 14px; }
.lead-form#leadFormBottom label:not(.consent-row) { justify-items: center; }
.lead-form#leadFormBottom label > input[type="text"],
.lead-form#leadFormBottom label > input[type="tel"],
.lead-form#leadFormBottom label > input[type="email"] {
  width: min(340px, 100%);
  padding: 12px 14px;
  font-size: 13px;
  border-radius: 10px;
}
.form-note { display: block; margin: 2px 0 0; font-size: 11px; line-height: 1.3; color: #677f90; text-align: left; }
.lead-form#leadFormBottom .form-note {
  width: min(340px, 100%);
  margin: 2px auto 0;
}
.consent-row { display: block; font-size: 12px !important; line-height: 1.35; text-align: left; margin-top: 2px; }
.consent-row input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; flex: 0 0 auto; border-radius: 3px; }
.consent-row span { font-size: 12px; color: #677f90; }
.consent-row span input[type="checkbox"] { margin-right: 8px; vertical-align: text-top; }
.consent-row a { color: inherit; text-decoration: underline; }
.error { color: #cc3a3a; min-height: 0; font-size: 11px; text-align: left; padding-left: 10px; margin-top: 4px; }
.consent-error { padding-left: 24px; margin-top: -2px; }
.success-message { color: #1c8f36; margin: 0; font-size: 13px; }
.error-message { color: #b93434; margin: 0; font-size: 13px; }

.bottom-cta { padding: 4px 0 18px; }
.bottom-cta-inner { display: flex; justify-content: center; }

.footer {
  background: #082940;
  color: #e6eff6;
  padding: 26px 0 10px;
  border-top: 3px solid #f25a29;
  font-family: "Klik", "Segoe UI", Arial, sans-serif;
}
.footer * { font-family: inherit; }
.footer-grid { display: grid; grid-template-columns: .8fr 1.15fr .95fr .9fr; gap: 12px; align-items: start; }
.footer-grid > div:first-child { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-separator-wrap { margin-top: 12px; display: flex; justify-content: center; }
.footer-separator-wrap img { width: 100%; height: auto; display: block; }
.footer-policy-link-wrap { margin-top: 18px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.footer-policy-link-wrap a { color: #e6eff6; text-decoration: none; font-size: 13px; }
.footer-copy { font-size: 13px; margin: 20px 0 0; padding-left: 8px; }
.footer-nav { font-size: 14px; margin: 14px 0 0; }
.footer-contact { justify-self: end; width: 290px; }
.footer-nav-mid { align-self: start; margin-top: 8px; }
.footer-email-line { display: inline-flex; align-items: center; gap: 8px; }
.footer-email-line img { width: 11px; height: 8px; display: block; }
.footer-location-line { display: inline-flex; align-items: center; gap: 8px; }
.footer-location-line img { width: 9px; height: 12px; display: block; }
.footer-grid p { margin: 0 0 8px; font-size: 14px; }
.footer-requisites { text-align: left; }
.footer-requisites-title { font-weight: 400; }
.footer a { color: #e6eff6; text-decoration: none; font-size: 13px; }
.footer-contact-btn { border-radius: 999px; border: 1px solid #ABA76F; background: transparent; color: #ABA76F; padding: 7px 14px; font-size: 11px; display: inline-block; margin-top: 14px; }
.footer a.footer-contact-btn { color: #ABA76F; border-color: #ABA76F; }
.footer-socials {
  margin-top: 0;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid #A39874;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s ease;
}
.footer-social-link:hover { opacity: 0.8; }
.footer-social-link img {
  width: 20px;
  height: 20px;
  display: block;
}

.floating-lead-button { position: fixed; right: 12px; bottom: 12px; z-index: 130; border: none; border-radius: 999px; background: transparent; box-shadow: none; padding: 0; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; color: #07263a; width: 75px; height: 75px; }
body.cookie-banner-active .floating-lead-button { bottom: 96px; }
.floating-lead-button::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 999px;
  background: rgba(242, 90, 41, 0.28);
  z-index: 0;
  animation: floatingLeadPulse 1.6s ease-out infinite;
  pointer-events: none;
}
.floating-lead-button img { width: 75px; height: 75px; display: block; position: relative; z-index: 1; }

@keyframes floatingLeadPulse {
  0% {
    transform: scale(0.96);
    opacity: 0.8;
    box-shadow: 0 0 0 0 rgba(242, 90, 41, 0.65);
  }
  70% {
    transform: scale(1.25);
    opacity: 0.1;
    box-shadow: 0 0 0 24px rgba(242, 90, 41, 0);
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
    box-shadow: 0 0 0 24px rgba(242, 90, 41, 0);
  }
}

.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 100; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, .5); }
.modal-content { position: relative; width: min(560px, calc(100vw - 24px)); margin: 9vh auto 0; background: #0f2f45; color: #fff; border-radius: 16px; padding: 20px; z-index: 2; }
.modal-content h2 { font-size: 30px; margin-bottom: 10px; }
.modal-content .lead-form input { background: #fff; }
.modal-close { position: absolute; right: 10px; top: 10px; border: none; background: transparent; color: #fff; font-size: 20px; cursor: pointer; }

.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 120;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(8, 41, 64, 0.96);
  border: 1px solid #36586e;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-text {
  margin: 0;
  color: #e6eff6;
  font-size: 13px;
  line-height: 1.4;
}
.cookie-banner-text a {
  color: #e6eff6;
  text-decoration: underline;
}
.cookie-banner-actions {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.cookie-btn {
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
}
.cookie-btn--accept {
  border: 1px solid #f25a29;
  background: #f25a29;
  color: #fff;
}
.cookie-btn--decline {
  border: 1px solid #6f8699;
  background: transparent;
  color: #e6eff6;
}

@media (max-width: 860px) {
  .features-grid, .products-grid, .grid-2, .why-layout, .logistics-grid, .footer-grid { grid-template-columns: 1fr; }
  .formats-items { flex-wrap: wrap; white-space: normal; row-gap: 6px; column-gap: 10px; }
  .section-title { font-size: 26px; }
  .form-container h2 { font-size: 28px; }
  .quote-box { font-size: 20px; }
  .quote-box cite { font-size: 24px; }
  .footer-nav-mid { text-align: center; justify-self: center; width: 100%; }
  .footer-nav { text-align: center; }
  .footer-requisites { text-align: left; }
  .footer-requisites p br { display: none; }
  .footer-contact { justify-self: start; width: auto; }
  .footer-policy-link-wrap { flex-wrap: wrap; justify-content: flex-start; }
  .footer-socials { justify-content: flex-start; }
  .footer-separator-wrap {
    display: block;
    width: 100%;
    margin-top: 14px;
  }
  .footer-separator-wrap img {
    width: 100%;
    height: 1px;
    min-height: 1px;
    display: block;
    object-fit: cover;
  }
  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 10px;
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
  .cookie-banner-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .floating-lead-button { bottom: 78px; }
  body.cookie-banner-active .floating-lead-button { bottom: 154px; }

  /* Formats: на 400px фиксируем раскладку через grid */
  .formats-items {
    display: grid;
    grid-template-columns: 1fr 64px 1fr; /* текст | иконка | текст */
    justify-items: center;
    align-items: center;
    row-gap: 6px;
    column-gap: 10px;
    white-space: normal;
    gap: 0;
    font-size: 16px;
    flex-wrap: unset;
  }

  /* Порядок child элементов в разметке:
     1) охлаждённое
     2) separator (термо/мороз)
     3) замороженное
     4) порционная
     5) separator--alt (вакуум)
     6) вакуум
  */
  .formats-items > :nth-child(1) { grid-column: 1; grid-row: 1; }
  .formats-items > :nth-child(2) { grid-column: 2; grid-row: 1; }
  .formats-items > :nth-child(3) { grid-column: 3; grid-row: 1; }
  .formats-items > :nth-child(4) { grid-column: 1; grid-row: 2; }
  .formats-items > :nth-child(5) { grid-column: 2; grid-row: 2; }
  .formats-items > :nth-child(6) { grid-column: 3; grid-row: 2; }
  .formats-items > :nth-child(4) { margin-left: 0; }

  .formats-separator,
  .formats-separator--alt {
    line-height: 0;
  }

  .formats-separator svg,
  .formats-separator--alt svg {
    width: 56px !important;
    height: auto !important;
    display: block;
  }

  .formats-separator,
  .formats-separator--alt {
    justify-self: center;
    align-self: center;
    overflow: hidden;
    max-width: 64px;
  }

  .formats-separator svg,
  .formats-separator--alt svg {
    overflow: hidden;
    max-width: 64px;
  }

  /* Features: иконка + текст по горизонтали */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .icon-card--svg {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    text-align: left;
    min-height: 0;
  }

  .icon-card--svg img {
    width: 52px;
    height: 42px;
    flex: 0 0 auto;
  }

  .features-grid .icon-card--svg .icon-card-caption {
    font-size: 16px !important;
    line-height: 1.25;
    text-align: left;
  }

  /* спец-иконка стабильного качества */
  .icon-card--svg img[src="/public/icon-stable-quality.svg"] {
    width: 38px;
    height: 56px;
  }

  /* Products: упаковка справа, текст/заголовок слева (mobile B) */
  .product-card {
    display: grid;
    grid-template-columns: 1fr 110px; /* правая колонка под упаковку */
    grid-template-areas:
      "image image"
      "title pack"
      "text  pack";
    align-items: start;
    row-gap: 6px;
    padding: 10px;
  }

  .product-image {
    grid-area: image;
    margin-bottom: 0;
  }

  .product-card h3 {
    grid-area: title;
    text-align: left;
    margin: 0;
    font-size: 20px;
    line-height: 1.15;
  }

  .product-card p {
    grid-area: text;
    text-align: left;
    margin: 0;
    font-size: 16px;
    color: #4b6272;
  }

  .product-image-undertext {
    grid-area: pack;
    margin-top: 0 !important;
    padding-top: 0 !important;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .product-image-undertext img {
    width: 96px;
    height: auto;
    max-height: 120px;
    display: block;
    object-fit: contain;
  }

  .product-image-undertext--wide img {
    width: 96px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* Hero: убрать правую "колонку" и абсолютный логотип */
  .hero { padding: 16px 0 22px; }
  .hero-box { padding: 26px 18px 26px; }
  .hero-head { padding-right: 0; }
  .hero-logo {
    position: static;
    right: auto;
    top: auto;
    width: 200px;
    margin: 0 auto 10px;
    transform: none;
  }
  .hero h1 {
    max-width: 100%;
    font-size: 19px;
    line-height: 1.2;
    margin: 10px 0 14px;
    font-family: "Vast XL", "Segoe UI", Arial, sans-serif;
    font-weight: 700;
  }
  .hero-text { margin: 0 0 18px; }

  /* Quote: 1 колонка и без абсолютного ярлыка */
  .quote-layout { grid-template-columns: 1fr; }
  .quote-aside { align-items: center; margin-top: 0; }
  .quote-box .testimonial-label {
    position: static;
    margin: 24px auto 4px;
    right: auto;
    bottom: auto;
  }

  /* Logistics: иконка над текстом */
  .logistics-list-with-icon {
    grid-template-columns: 1fr;
    row-gap: 10px;
    justify-items: center;
  }
  .logistics-list-icon-large { width: 88px; height: auto; }
  .logistics-list-icon-large img { width: 100%; height: auto; }

  /* Alt-карточки: 1 колонка вместо 2 */
  .grid-2 { grid-template-columns: 1fr; }
  .section.alt .card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    row-gap: 6px;
  }
  .section.alt .card-icon { justify-content: center; }
  .section.alt .card-content { grid-column: auto; }
  .section.alt .card strong,
  .section.alt .card p { text-align: center; }
  .section.alt .card p { margin-top: 4px; }

  /* Запас снизу, чтобы fixed cookie-banner не перекрывал контент */
  body.cookie-banner-active .page { padding-bottom: 140px; }

  /* footer: адрес/почта слева, кнопка "СВЯЗАТЬСЯ С НАМИ" по центру */
  .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* email/адрес слева */
    gap: 0;
    width: 100%;
  }
  .footer-contact .footer-email-line,
  .footer-contact .footer-location-line { margin-bottom: 0; }
  .footer-contact-btn {
    align-self: center; /* кнопка по центру */
    margin: 18px auto 0;
    text-align: center;
    white-space: normal;
    display: inline-block;
    max-width: 100%;
  }
  .footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .footer-social-link img {
    width: 20px;
    height: 20px;
    max-width: 20px;
    max-height: 20px;
    margin: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    flex: 0 0 auto;
  }
}
