html {
  overflow-x: clip;
}

.home-page {
  --home-navy: #071522;
  --home-navy-soft: #0c1d2c;
  --home-yellow: #ffb600;
  --home-yellow-deep: #e79e00;
  --home-ink: #101a28;
  --home-muted: #687482;
  --home-border: #dce2e8;
  overflow-x: clip;
  background: #fff;
  color: var(--home-ink);
}

.home-page .home-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 76px;
  padding: 0 max(34px, calc((100% - 1280px) / 2));
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(5,17,28,.18);
  color: #fff;
  backdrop-filter: blur(8px);
  transition:
    background-color .3s ease,
    border-color .3s ease,
    box-shadow .3s ease,
    backdrop-filter .3s ease;
}

.home-page .home-header.is-scrolled {
  border-bottom-color: rgba(255,255,255,.14);
  background: rgba(7,21,34,.96);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  backdrop-filter: blur(16px) saturate(135%);
}

.home-page .brand {
  color: #fff;
  font-size: 15px;
  letter-spacing: .02em;
}

.home-page .brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: #fff;
  color: var(--home-navy);
  box-shadow: 0 4px 15px rgba(0,0,0,.16);
}

.home-page .site-nav {
  gap: 28px;
  color: rgba(255,255,255,.86);
  font-size: 12px;
}

.home-page .site-nav a {
  position: relative;
  padding: 29px 0 25px;
  border: 0;
}

.home-page .site-nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 16px;
  left: 50%;
  height: 2px;
  background: var(--home-yellow);
  transition: right .25s ease, left .25s ease;
}

.home-page .site-nav a:hover,
.home-page .site-nav a.active {
  color: var(--home-yellow);
}

.home-page .site-nav a:hover::after,
.home-page .site-nav a.active::after {
  right: 0;
  left: 0;
}

.home-v2-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--home-navy);
}

.hero-carousel {
  position: relative;
  height: 760px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity .8s ease, visibility .8s;
}

.hero-slide.is-active {
  z-index: 2;
  visibility: visible;
  opacity: 1;
}

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
}

.hero-slide-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,16,27,.96) 0%, rgba(5,16,27,.82) 35%, rgba(5,16,27,.2) 70%, rgba(5,16,27,.1) 100%),
    linear-gradient(180deg, rgba(5,16,27,.45) 0%, transparent 34%, rgba(5,16,27,.42) 100%);
}

.hero-slide-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: auto;
  margin: 0;
  padding: 128px 34px 0 max(34px, calc((100% - 1280px) / 2));
  color: #fff;
}

.hero-tag {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 6px 11px;
  border: 1px solid rgba(255,182,0,.75);
  border-radius: 999px;
  color: var(--home-yellow);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.home-v2-hero h1 {
  margin: 0;
  color: #fff;
  font-size: 58px;
  line-height: 1.02;
}

.home-v2-hero h2 {
  margin: 12px 0 0;
  color: var(--home-yellow);
  font-size: 27px;
  line-height: 1.08;
}

.hero-description {
  max-width: 540px;
  margin: 15px 0 0;
  color: #d9e1e8;
  font-size: 15px;
  line-height: 1.7;
}

.home-v2-hero .hero-actions {
  margin-top: 22px;
}

.home-page .button {
  gap: 12px;
  min-height: 44px;
  border-radius: 5px;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.home-page .button:hover {
  transform: translateY(-2px);
}

.home-page .button.primary {
  background: var(--home-yellow);
  color: #121920;
  box-shadow: 0 9px 24px rgba(255,182,0,.2);
}

.home-page .button.primary:hover {
  background: #ffc328;
  box-shadow: 0 12px 28px rgba(255,182,0,.3);
}

.home-page .button.outline {
  border-color: rgba(255,255,255,.75);
  background: rgba(7,21,34,.52);
  color: #fff;
}

.home-page .button.outline:hover {
  border-color: var(--home-yellow);
  color: var(--home-yellow);
}

.carousel-arrow {
  position: absolute;
  z-index: 8;
  top: 47%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 4px;
  background: rgba(4,15,25,.46);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  opacity: .25;
  transition: opacity .2s ease, border-color .2s ease, color .2s ease;
}

.hero-carousel:hover .carousel-arrow,
.carousel-arrow:focus-visible {
  opacity: 1;
}

.carousel-arrow:hover {
  border-color: var(--home-yellow);
  color: var(--home-yellow);
}

.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

.carousel-dots {
  position: absolute;
  z-index: 8;
  bottom: 145px;
  left: 50%;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.46);
  cursor: pointer;
  transition: width .22s ease, border-radius .22s ease, background .22s ease;
}

.carousel-dots button.is-active {
  width: 30px;
  border-radius: 4px;
  background: var(--home-yellow);
}

.hero-assurances {
  position: absolute;
  z-index: 9;
  right: max(34px, calc((100% - 1280px) / 2));
  bottom: 22px;
  left: max(34px, calc((100% - 1280px) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 7px;
  background: rgba(7,21,34,.82);
  color: #fff;
  backdrop-filter: blur(10px);
}

.assurance {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 84px;
  padding: 16px 22px;
}

.assurance + .assurance {
  border-left: 1px solid rgba(255,255,255,.12);
}

.assurance-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 0;
  border-radius: 0;
}

.assurance-icon img {
  display: block;
  max-width: 32px;
  max-height: 32px;
  object-fit: contain;
}

.assurance p {
  margin: 0;
}

.assurance strong,
.assurance small {
  display: block;
}

.assurance strong {
  font-size: 13px;
}

.assurance small {
  margin-top: 2px;
  color: #aebdca;
  font-size: 10px;
  line-height: 1.45;
}

.offer-section,
.home-products-section,
.home-inquiry-band {
  padding-right: max(34px, calc((100% - 1280px) / 2));
  padding-left: max(34px, calc((100% - 1280px) / 2));
}

.offer-section {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 56px;
  padding-top: 62px;
  padding-bottom: 62px;
  background: #f6f8fa;
}

.home-page .eyebrow {
  margin-bottom: 11px;
  color: var(--home-yellow-deep);
  font-size: 11px;
}

.offer-intro {
  align-self: center;
}

.offer-intro h2,
.home-section-heading h2,
.partnership-copy h2,
.home-inquiry-band h2 {
  color: var(--home-ink);
  font-size: 32px;
  line-height: 1.18;
}

.title-rule {
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 22px;
  background: var(--home-yellow);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.offer-card {
  min-height: 218px;
  padding: 24px;
  border: 1px solid #e3e7eb;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(18,31,45,.06);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,182,0,.65);
  box-shadow: 0 18px 38px rgba(18,31,45,.11);
}

.offer-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 15px;
}

.offer-icon img {
  display: block;
  max-width: 35px;
  max-height: 35px;
  object-fit: contain;
}

.offer-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.offer-card p {
  min-height: 56px;
  margin: 0 0 15px;
  color: var(--home-muted);
  font-size: 13px;
}

.offer-card strong {
  font-size: 12px;
}

.offer-card strong span {
  display: inline-block;
  margin-left: 8px;
  color: #9ba5ae;
  transition: transform .2s ease;
}

.offer-card:hover strong span {
  transform: translateX(4px);
}

.home-products-section {
  padding-top: 70px;
  padding-bottom: 76px;
}

.home-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.catalogue-link {
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.catalogue-link span {
  display: inline-block;
  margin-left: 9px;
  transition: transform .2s ease;
}

.catalogue-link:hover span {
  transform: translateX(4px);
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.home-product-card {
  display: grid;
  grid-template-rows: 230px 1fr;
  overflow: hidden;
  border: 1px solid var(--home-border);
  border-radius: 7px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.home-product-card:hover {
  transform: translateY(-5px);
  border-color: #c8d0d8;
  box-shadow: 0 18px 40px rgba(16,26,40,.1);
}

.home-product-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid #edf0f3;
  background: #fbfcfd;
}

.home-product-media img {
  width: 100%;
  height: 218px;
  padding: 16px;
  object-fit: contain;
  transition: transform .42s ease;
}

.home-product-card:hover .home-product-media img {
  transform: scale(1.045);
}

.home-product-copy {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding: 18px;
}

.home-product-copy h3 {
  margin: 0 0 7px;
  font-size: 17px;
}

.home-product-copy > p {
  margin: 0 0 12px;
  color: var(--home-muted);
  font-size: 12px;
}

.home-product-copy ul {
  display: grid;
  gap: 6px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.home-product-copy li {
  position: relative;
  padding-left: 15px;
  color: #293543;
  font-size: 12px;
  font-weight: 800;
}

.home-product-copy li::before {
  content: "";
  position: absolute;
  top: .58em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--home-yellow);
}

.home-product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.home-product-actions .button {
  min-height: 40px;
  padding: 9px 12px;
  font-size: 12px;
}

.button.card-outline {
  border-color: #aeb8c2;
  background: #fff;
  color: var(--home-ink);
}

.button.card-outline:hover {
  border-color: var(--home-yellow-deep);
}

.partnership-section {
  position: relative;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  overflow: hidden;
  padding: 60px max(34px, calc((100% - 1280px) / 2));
  background: var(--home-navy);
  color: #fff;
}

.partnership-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,21,34,.92), rgba(7,21,34,.58)),
    url("../media/images/Partnerships.png") center/cover;
  opacity: .9;
}

.partnership-copy,
.partnership-grid {
  position: relative;
  z-index: 2;
}

.partnership-copy h2 {
  color: #fff;
}

.partnership-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 13px 0 22px;
  color: #c3d0db;
  font-size: 14px;
}

.partnership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: center;
}

.partnership-card {
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 7px;
  background: rgba(7,21,34,.68);
  backdrop-filter: blur(7px);
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.partnership-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,182,0,.65);
  background: rgba(12,29,44,.9);
}

.partnership-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
}

.partnership-icon img {
  display: block;
  max-width: 24px;
  max-height: 24px;
  object-fit: contain;
}

.partnership-card h3 {
  margin: 13px 0 7px;
  font-size: 16px;
}

.partnership-card p {
  margin: 0;
  color: #aebdca;
  font-size: 11px;
}

.home-inquiry-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 170px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.76)),
    url("../img/factory/factory-gallery-03.webp") center/cover;
}

.home-inquiry-band h2 {
  font-size: 25px;
}

.home-inquiry-band .button {
  min-width: 180px;
}

.home-page .home-footer {
  display: block;
  padding: 0;
  background: #071522;
  color: #c2cfda;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 44px;
  padding: 46px max(34px, calc((100% - 1280px) / 2)) 38px;
}

.home-footer .footer-brand p {
  max-width: 220px;
  margin-top: 15px;
  color: #899bab;
  font-size: 12px;
}

.home-footer strong {
  display: block;
  margin-bottom: 17px;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
}

.home-footer a,
.home-footer span {
  display: block;
  margin: 0 0 9px;
  color: #98a9b7;
  font-size: 11px;
  transition: color .2s ease;
}

.home-footer a:hover {
  color: var(--home-yellow);
}

.home-footer .brand {
  display: flex;
  color: #fff;
  font-size: 14px;
}

.footer-bottom {
  padding: 14px 34px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #718697;
  font-size: 10px;
  text-align: center;
}

html[dir="rtl"] .hero-slide-content {
  padding-right: max(34px, calc((100% - 1280px) / 2));
  padding-left: 34px;
  text-align: right;
}

html[dir="rtl"] .hero-description {
  margin-right: 0;
  margin-left: auto;
}

html[dir="rtl"] .catalogue-link span,
html[dir="rtl"] .offer-card strong span {
  margin-right: 8px;
  margin-left: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .home-page .reveal-item {
    --reveal-x: 0px;
    --reveal-y: 34px;
    opacity: 0;
    filter: blur(3px);
    transform: translate3d(var(--reveal-x), var(--reveal-y), 0);
    transition:
      opacity .75s ease var(--reveal-delay, 0ms),
      transform .85s cubic-bezier(.2,.72,.22,1) var(--reveal-delay, 0ms),
      filter .7s ease var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
  }

  .home-page .offer-intro.reveal-item,
  .home-page .partnership-copy.reveal-item {
    --reveal-x: -34px;
    --reveal-y: 0px;
  }

  .home-page .home-inquiry-band .button.reveal-item {
    --reveal-x: 28px;
    --reveal-y: 0px;
  }

  html[dir="rtl"] .home-page .offer-intro.reveal-item,
  html[dir="rtl"] .home-page .partnership-copy.reveal-item {
    --reveal-x: 34px;
  }

  html[dir="rtl"] .home-page .home-inquiry-band .button.reveal-item {
    --reveal-x: -28px;
  }

  .home-page .reveal-item.is-visible {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .home-page .offer-card .offer-icon img,
  .home-page .partnership-card .partnership-icon img {
    opacity: 0;
    transform: scale(.72) rotate(-7deg);
    transition:
      opacity .55s ease calc(var(--reveal-delay, 0ms) + 180ms),
      transform .65s cubic-bezier(.2,.8,.2,1.2) calc(var(--reveal-delay, 0ms) + 180ms);
  }

  .home-page .offer-card.is-visible .offer-icon img,
  .home-page .partnership-card.is-visible .partnership-icon img {
    opacity: 1;
    transform: none;
  }

  .home-page .home-product-card .home-product-media img {
    opacity: .45;
    transform: translateY(16px) scale(.94);
    transition:
      opacity .75s ease calc(var(--reveal-delay, 0ms) + 120ms),
      transform .9s cubic-bezier(.2,.72,.22,1) calc(var(--reveal-delay, 0ms) + 120ms);
  }

  .home-page .home-product-card.is-visible .home-product-media img {
    opacity: 1;
    transform: none;
  }

  .home-page .offer-intro .title-rule {
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .65s ease calc(var(--reveal-delay, 0ms) + 240ms);
  }

  .home-page .offer-intro.is-visible .title-rule {
    transform: scaleX(1);
  }

  html[dir="rtl"] .home-page .offer-intro .title-rule {
    transform-origin: right center;
  }

  .hero-slide.is-active > img {
    animation: heroScale 7s ease-out forwards;
  }

  .hero-slide.is-active .hero-tag,
  .hero-slide.is-active h1,
  .hero-slide.is-active h2,
  .hero-slide.is-active .hero-description,
  .hero-slide.is-active .hero-actions {
    opacity: 0;
    animation: heroText .7s cubic-bezier(.2,.72,.22,1) forwards;
  }

  .hero-slide.is-active h1 { animation-delay: .08s; }
  .hero-slide.is-active h2 { animation-delay: .16s; }
  .hero-slide.is-active .hero-description { animation-delay: .24s; }
  .hero-slide.is-active .hero-actions { animation-delay: .32s; }
}

@keyframes heroScale {
  from { transform: scale(1.015); }
  to { transform: scale(1.05); }
}

@keyframes heroText {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .home-page .home-header {
    padding-right: 24px;
    padding-left: 24px;
  }

  .home-page .site-nav {
    top: 76px;
    gap: 0;
    padding: 8px 24px 18px;
    border-bottom-color: rgba(255,255,255,.12);
    background: rgba(7,21,34,.98);
  }

  .home-page .site-nav.open {
    display: flex;
  }

  .home-page .site-nav a {
    width: 100%;
    padding: 13px 0;
  }

  .home-page .site-nav a::after {
    display: none;
  }

  .home-page .nav-toggle {
    display: block;
    border-color: rgba(255,255,255,.38);
    background: rgba(7,21,34,.6);
  }

  .home-page .nav-toggle span {
    background: #fff;
  }

  .hero-slide-content {
    padding-left: 7%;
  }

  .hero-assurances {
    right: 24px;
    left: 24px;
  }

  .offer-section {
    grid-template-columns: 250px 1fr;
    gap: 30px;
  }

  .offer-card {
    padding: 20px;
  }

  .partnership-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .partnership-copy > p:not(.eyebrow) {
    max-width: 650px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .home-page .nav-toggle {
    display: block;
    border-color: rgba(255,255,255,.38);
    background: rgba(7,21,34,.6);
  }

  .home-page .nav-toggle span {
    background: #fff;
  }

  .home-page .site-nav {
    top: 76px;
    padding: 8px 24px 18px;
    border-bottom-color: rgba(255,255,255,.12);
    background: rgba(7,21,34,.98);
  }

  .home-page .site-nav a {
    width: 100%;
    padding: 13px 0;
  }

  .home-page .site-nav a::after {
    display: none;
  }

  .home-v2-hero {
    min-height: 816px;
  }

  .hero-carousel {
    height: 660px;
  }

  .hero-slide > img {
    object-position: 48% center;
  }

  .hero-slide:nth-child(3) > img {
    object-position: 66% center;
  }

  .hero-slide-shade {
    background:
      linear-gradient(90deg, rgba(5,16,27,.94), rgba(5,16,27,.7) 68%, rgba(5,16,27,.28)),
      linear-gradient(180deg, rgba(5,16,27,.45), transparent 40%, rgba(5,16,27,.5));
  }

  .hero-slide-content {
    width: min(560px, calc(100% - 48px));
    padding: 122px 24px 0;
  }

  html[dir="rtl"] .hero-slide-content {
    right: 0;
    left: auto;
    padding: 122px 24px 0;
  }

  .home-v2-hero h1 {
    font-size: 48px;
  }

  .carousel-dots {
    bottom: 25px;
  }

  .hero-assurances {
    right: 0;
    bottom: 0;
    left: 0;
    grid-template-columns: repeat(2, 1fr);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
  }

  .assurance {
    min-height: 78px;
  }

  .assurance:nth-child(3) {
    border-left: 0;
  }

  .assurance:nth-child(n+3) {
    border-top: 1px solid rgba(255,255,255,.12);
  }

  .offer-section {
    grid-template-columns: 1fr;
  }

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

  .home-product-card {
    grid-template-columns: .82fr 1.18fr;
    grid-template-rows: 1fr;
  }

  .home-product-media {
    border-right: 1px solid #edf0f3;
    border-bottom: 0;
  }

  .partnership-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-inquiry-band {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 620px) {
  .home-page .home-header {
    height: 68px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .home-page .site-nav {
    top: 68px;
  }

  .home-v2-hero {
    min-height: 876px;
  }

  .hero-carousel {
    height: 650px;
  }

  .hero-slide > img {
    object-position: 38% center;
  }

  .hero-slide:nth-child(3) > img {
    object-position: 68% center;
  }

  .hero-slide-shade {
    background:
      linear-gradient(90deg, rgba(5,16,27,.96), rgba(5,16,27,.76) 74%, rgba(5,16,27,.42)),
      linear-gradient(180deg, rgba(5,16,27,.55), transparent 45%, rgba(5,16,27,.62));
  }

  .hero-slide-content {
    width: auto;
    margin: 0;
    padding: 104px 20px 0;
  }

  html[dir="rtl"] .hero-slide-content {
    padding: 104px 20px 0;
  }

  .hero-tag {
    max-width: 100%;
    font-size: 9px;
    white-space: normal;
  }

  .home-v2-hero h1 {
    font-size: 39px;
  }

  .home-v2-hero h2 {
    font-size: 23px;
  }

  .hero-description {
    max-width: 390px;
    font-size: 13px;
  }

  .home-v2-hero .hero-actions {
    display: flex;
  }

  .home-v2-hero .button {
    width: auto;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 12px;
  }

  .carousel-arrow {
    display: none;
  }

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

  .assurance {
    min-height: 56px;
    padding: 9px 18px;
  }

  .assurance + .assurance {
    border-top: 1px solid rgba(255,255,255,.1);
    border-left: 0;
  }

  .assurance-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .assurance-icon img {
    max-width: 28px;
    max-height: 28px;
  }

  .assurance small {
    display: none;
  }

  .offer-section,
  .home-products-section,
  .home-inquiry-band {
    padding-right: 18px;
    padding-left: 18px;
  }

  .offer-section {
    padding-top: 46px;
    padding-bottom: 48px;
  }

  .offer-intro h2,
  .home-section-heading h2,
  .partnership-copy h2,
  .home-inquiry-band h2 {
    font-size: 28px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    min-height: 0;
  }

  .offer-card p {
    min-height: 0;
  }

  .home-section-heading {
    display: block;
  }

  .catalogue-link {
    display: inline-block;
    margin-top: 16px;
  }

  .home-product-card {
    grid-template-columns: 1fr;
    grid-template-rows: 205px 1fr;
  }

  .home-product-media {
    border-right: 0;
    border-bottom: 1px solid #edf0f3;
  }

  .home-product-media img {
    height: 195px;
  }

  .partnership-section {
    gap: 28px;
    padding: 48px 18px;
  }

  .partnership-grid {
    grid-template-columns: 1fr;
  }

  .partnership-card {
    min-height: 0;
  }

  .home-inquiry-band {
    min-height: 210px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
    padding: 38px 18px 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}
