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

h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
address,
caption,
cite,
code,
em,
th,
p,
a,
li,
td,
b,
div {
    font: 300 12px "Poppins", "Lucida Grande", "Lucida Sans Unicode", "Arial";
    color: #333;
    -webkit-tap-highlight-color: transparent;
}

html {
  background: #181c1d;
}

body {
  margin: 0;
  min-width: 320px;
  color: #fff;
  background: #181c1d;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

img,
svg {
  display: inline-block;
  max-width: 100%;
}

button {
  cursor: pointer;
}

.container {
  width: min(1400px, calc(100% - 48px));
  margin-inline: auto;
}

.catalog-zone {
  padding-top: 80px;
  background: url(https://keeprix-resource.com/en/netflix-leaving/img/netfile-leave-banbg.png) top center no-repeat;
  background-size: cover;
}

.intro {
  min-height: 257px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.breadcrumb {
  min-height: 53px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-block: 16px;
  color: #999;
  font-size: 14px;
  line-height: 21px;
}

.breadcrumb a {
  font-size: inherit;
  font-weight: 400;
  color: inherit;
}

.breadcrumb strong {
  font-weight: 500;
}

.intro-heading {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.intro-heading h1 {
  margin: 0;
  font-size: 44px;
  font-weight: 600;
  line-height: 56px;
  color: #fff;
}

.region-chip {
  flex: 0 0 auto;
  padding: 8px 16px;
  border: 1px solid #cacaca;
  border-radius: 8px;
  color: #cacaca;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}

.verified-pill {
  width: 261px;
  height: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-inline: 6px;
  border-radius: 42px;
  background: linear-gradient(90deg, rgba(142, 97, 255, .4), rgba(142, 97, 255, 0));
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
}

.verified-pill span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.verified-pill span em {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.check-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: #8e61ff;
}

.intro-copy {
  margin: 0;
  color: #cacaca;
  font-size: 16px;
  line-height: 26px;
}

.popular-section {
  min-height: 910px;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-heading-row {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.section-heading-row h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  color: #fff;
}

.tab-lists {
  display: flex;
}

.tab-lists p {
  color: rgba(255, 255, 255, .7);
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 0 20px 10px;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
}

.tab-lists p:hover {
  color: #fff;
}

.tab-lists p.active {
  color: #fff;
}
.tab-lists p.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background-color: #8E61FF;
  animation: progressBar 0.3s ease-in-out forwards;
}

.loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .7);
  z-index: 999;
  top: 0;
  left: 0;
}

.loading img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

a.text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  color: rgba(255, 255, 255, .6);
  background: transparent;
  border-bottom: 1px solid #a29fa9;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-decoration: none;
}

a.text-link:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}

.icon-arrow {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.popular-card-rows {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.card-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}

.movie-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(153, 153, 153, .08));
  box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
}

.movie-card:hover {
  border: 1px solid rgba(255, 255, 255, .18);
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(153, 153, 153, .12));
}

.movie-card--standard {
  min-height: 398px;
}

.movie-card--tall {
  min-height: 404px;
}

.movie-card--left {
  min-height: 329px;
}

.movie-card--compact {
  min-height: 281px;
}

.poster {
  position: relative;
  flex: 0 0 170px;
  height: 170px;
  overflow: hidden;
  border-radius: 12px;
  background: #2a2e30;
}

.poster > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leaving-badge {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  min-width: 114px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 10px;
  border-radius: 6px 6px 0 0;
  color: #fff;
  background: #d91e2a;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  white-space: nowrap;
}

.leaving-badge--left {
  min-width: 106px;
  padding-inline: 6px;
  color: #c4c4c4;
  background: rgba(122, 122, 122, .75);
}

.imdb-rating {
  position: absolute;
  top: 0;
  left: 0;
  width: 84px;
  min-height: 53px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2px 5px;
  border-radius: 12px 0 12px 0;
  color: #fff;
  background: #302e2b;
}

.imdb-label {
  align-self: flex-start;
  color: #BAB0A1;
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 1.085px;
  white-space: nowrap;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.rating-star {
  width: 24px;
  height: 23px;
  color: #e8c224;
}

.rating-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rating-copy strong {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
}

.rating-copy strong span {
  color: #a69e94;
  font-size: 10px;
  font-weight: 400;
}

.rating-copy small {
  color: #BAB0A1;
  font-size: 11px;
  line-height: 17px;
}

.movie-info {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding-top: 6px;
}

.movie-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.movie-copy h3 {
  margin: 0;
  overflow: hidden;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.movie-copy h3 span {
  color: #cacaca;
  font-weight: 400;
}

.movie-date {
  margin: 0;
  overflow: hidden;
  color: #cacaca;
  font-size: 13px;
  font-weight: 400;
  line-height: 19.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.movie-date strong {
  color: #fff;
  font-weight: 600;
}

.movie-date--left {
  font-size: 12px;
  line-height: 18px;
}

.days-pill {
  width: max-content;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 12px;
  padding: 4px 10px 4px 32px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #fff;
 background: 
    url("https://keeprix-resource.com/en/netflix-leaving/img/netfile-leave-clockicon.svg") 10px center / 16px 16px no-repeat,
    linear-gradient(180deg, rgba(231, 135, 39, 0.4), rgba(238, 95, 163, 0.4), rgba(131, 82, 232, 0.4));
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  background-clip: padding-box, padding-box;
  position: relative;
}

.days-pill::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 4px;
  padding: 1px;
  background: linear-gradient(160deg, #e88827, #ee5fa3 50%, #8352e8);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
}


.movie-actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.like-lists .icon-arrow {
  transition: transform .3s ease-in-out;
}

a.card-primary {
  width: 100%;
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  text-decoration: none;
}

a.card-primary:hover {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #FFF;
  color: #333;
  font-weight: 500;
}

a.card-primary.nohover:hover {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  font-weight: 500;
  cursor: not-allowed;
}

a.watch-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(217, 217, 217, .8);
  font-size: 14px;
  line-height: 21px;
  text-decoration: none;
}

a.watch-label:hover {
  color: #fff;
}

a.watch-label svg {
  color: inherit;
}

a.watch-label:hover svg {
  color: inherit
}

.screen-icon {
  width: 15px;
  height: 11px;
  flex: 0 0 15px;
}

a.compact-link {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0 0;
  color: rgba(255, 255, 255, .8);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  text-decoration: none;
}

a.compact-link:hover {
  color: #fff;
}

a.compact-link:hover .icon-arrow {
  transform: translateX(5px);
}

.final-cta {
  position: relative;
  min-height: 563px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0 100px;
  background:
    radial-gradient(
      ellipse 71% 81% at 48.2% 0%,
      rgba(123, 63, 228, .5) 0%,
      rgba(64, 34, 117, .5) 50%,
      rgba(6, 6, 6, 0) 100%
    ),
    #060606;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  width: 1920px;
  height: 600px;
  transform: translateX(-50%);
  pointer-events: none;
  background: url("https://keeprix-resource.com/en/netflix-leaving/img/netfile-leave-ctabg.png") top center / 1920px 600px no-repeat;
  /* opacity: .35; */
}



.final-cta__panel {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  min-height: 378px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 50px 60px;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, .21) 0%,
    rgba(0, 0, 0, .7) 100%
  );
  text-align: center;
}

.final-cta__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  box-sizing: border-box;
  padding: 2px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    117.859deg,
    #e78727 19.956%,
    #ee5fa3 45.634%,
    #8352e8 71.313%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.final-cta__content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.product-mark {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.product-mark__logo {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  object-fit: contain;
}

.product-mark strong {
  font-size: 22.5px;
  font-weight: 600;
  color: #fff;
}

.final-cta__copy {
  width: min(1080px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.final-cta__copy h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 24%, rgba(159, 99, 255, 1) 76%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.final-cta__copy p {
  width: min(980px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  line-height: 22.4px;
}

.gradient-button {
  min-height: 64px;
  color: #3d2414;
  border-radius: 10px;
  background: radial-gradient(531.62% 59.39% at 62.96% 50.79%, rgba(255, 255, 255, 0.20) 0%, rgba(105, 52, 255, 0.00) 100%), linear-gradient(107deg, rgba(255, 231, 146, 0.90) 1.32%, rgba(255, 164, 125, 0.90) 23.66%, rgba(238, 61, 231, 0.90) 66.12%, rgba(142, 97, 255, 0.90) 96.67%);
  background-blend-mode: plus-lighter, normal;
  box-shadow: 0 0 9.566px 0 rgba(255, 255, 255, 0.74) inset;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

.gradient-button:hover {
  background: radial-gradient(531.62% 59.39% at 62.96% 50.79%, rgba(255, 255, 255, 0.30) 0%, rgba(105, 52, 255, 0.00) 100%), linear-gradient(107deg, #8E61FF 1.32%, #EE3DE7 31.87%, #FFA47D 74.34%, #FFE792 96.67%);
  background-blend-mode: plus-lighter, normal;
}

.final-cta__button {
  width: 469px;
  max-width: 100%;
  padding: 10px 24px;
  white-space: nowrap;
}

.other-months {
  min-height: 1380px;
  overflow: hidden;
  padding-bottom: 80px;
  background:
    radial-gradient(ellipse 58% 32% at 50% 100%, rgba(123, 63, 228, .5) 0%, rgba(6, 6, 6, 0) 78%),
    #060606;
}

.other-months__content {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.month-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-section {
  min-height: 701px;
  padding: 100px 0;
  color: #333;
  background: linear-gradient(180deg, #ece6ff 0%, #f6f2fa 100%);
}

.faq-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.faq-heading {
  min-height: 105px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.faq-heading h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 600;
  line-height: 66px;
}

.faq-heading p {
  margin: 0;
  font-size: 18px;
  line-height: 27px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 40px;
}

.faq-grid > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
  width: 100%;
}

.faq-item {
  min-width: 0;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  border: 2px solid #fff;
  border-radius: 20px;
  background: rgba(255, 255, 255, .4);
  backdrop-filter: blur(20px);
  cursor: pointer;
}

.faq-item h3 {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: flex;
  justify-content: space-between;
}

.faq-item h3::after {
  content: "\e814";
  font-family: iconfont;
  display: inline-block;
  vertical-align: middle;
  color: #A19BB8;
}

.faq-item.active h3::after {
  content: "\e812";
} 

.faq-item p {
  font-size: 14px;
  color: #333;
}

.faq-answer {
  display: none;
  height: 0;
}

.faq-answer a {
  font-size: inherit;
  color: #2C67FF
}

.faq-item.active .faq-answer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: auto;
}

.plus-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: #a19bb8;
}

.downloader-promo {
  min-height: 660px;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(ellipse 52% 34% at 50% 100%, rgba(123, 63, 228, .42), rgba(15, 10, 30, 0) 76%),
    #0f0a1e;
}

.downloader-promo__content {
  min-height: 460px;
  display: grid;
  grid-template-columns: 689px 1fr;
  align-items: center;
  gap: 47px;
}

.downloader-copy {
  min-width: 0;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
}

.downloader-intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.downloader-intro h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
}

.downloader-intro p {
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 16px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  line-height: 21px;
}


.download-action {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.special-title {
  border-radius: 42px;
  background: linear-gradient(90deg, rgba(142, 97, 255, 0.40) 0%, rgba(142, 97, 255, 0.00) 100%);
  display: inline-block;
  max-width: 380px;
  width: 100%;
  padding: 2px 12px;
}

.special-title span {
  font-family: Poppins;
  font-size: 26px;
  font-weight: 500;
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.80) 88.74%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

a.save-button {
  width: 100%;
  max-width: 365px;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 40px;
  text-decoration: none;
  color: inherit;
}

a.save-button::before {
  content: "\e940";
  font-family: iconfont;
  display: inline-block;
  vertical-align: middle;
}

.save-button::before {
  content: "\e940";
  font-family: iconfont;
  display: inline-block;
  vertical-align: middle;
}

.button-icon {
  width: 19px;
  height: 24px;
  flex: 0 0 19px;
}

.download-action p {
  width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  line-height: 18px;
  text-align: left;
}

.product-preview {
  position: relative;
  min-width: 0;
  height: 460px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.product-preview__frame {
  position: relative;
  width: min(654px, 100%);
  height: auto;
  aspect-ratio: 654 / 381;
}

.product-preview__slide {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  border-radius: 9.65px;
}

.product-preview__slide[hidden] {
  display: none;
}

.carousel-controls {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.carousel-arrow,
.carousel-dots {
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(121, 121, 121, .2);
}

.carousel-arrow {
  width: 40px;
  padding: 0;
  border-radius: 50%;
  color: rgba(255, 255, 255, .5);
}

.arrow-left::before {
  content: "\e802";
  transform: rotateY(180deg);
  font-family: iconfont;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
}

.arrow-right::before {
  content: "\e802";
  font-family: iconfont;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
}

.arrow-right:hover::before,
.arrow-left:hover::before {
  color: #fff;
}

.carousel-dots {
  min-width: 84px;
  gap: 5px;
  padding-inline: 12px;
  border-radius: 36px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  transition: width .2s ease, background-color .2s ease;
}

.carousel-dot.is-active {
  width: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .5);
  position: relative;
  overflow: hidden;
}

.carousel-dot.is-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #fff;
  border-radius: 999px;
  animation: progressBar 3.6s ease-in-out forwards;
}

@keyframes progressBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@media (max-width: 1500px) {
  .downloader-promo__content {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 1180px) {
  .catalog-zone,
  .other-months,
  .faq-section,
  .downloader-promo,
  .final-cta {
    min-height: 0;
  }

  .catalog-zone {
    padding: 64px 0 72px;
    background: radial-gradient(299.8% 119.37% at 48.2% 100%, rgba(142, 84, 253, 0.50) 0%, rgba(65, 35, 117, 0.50) 53.12%, rgba(6, 6, 6, 0.50) 100%), #060606;
    background-blend-mode: lighten, normal;
  }

  .popular-section {
    min-height: 0;
  }

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

  .movie-card--tall {
    min-height: 398px;
  }

  .final-cta {
    padding: 72px 0;
  }

  .final-cta__panel {
    min-height: 0;
  }

  .other-months {
    padding: 72px 0;
  }

  .faq-section {
    padding: 72px 0;
  }

  .downloader-promo {
    padding: 72px 0;
  }

  .downloader-promo__content {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 56px;
  }

  .downloader-copy {
    min-height: 0;
  }

  .product-preview {
    height: auto;
    gap: 24px;
  }

  .carousel-controls {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 1400px);
  }

  .catalog-zone {
    padding-top: 36px;
  }

  .intro {
    min-height: 0;
  }

  .breadcrumb {
    min-height: 0;
    padding-block: 8px;
    flex-wrap: wrap;
  }

  .intro-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .intro-heading h1,
  .faq-heading h2,
  .downloader-intro h2 {
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.25;
  }

  .region-chip {
    align-self: flex-start;
  }

  .verified-pill {
    width: auto;
    max-width: 100%;
  }

  .popular-section {
    margin-top: 48px;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .section-heading-row h2 {
    font-size: 22px;
    line-height: 32px;
  }

  .text-link {
    max-width: 100%;
  }

  .card-row {
    grid-template-columns: 1fr;
  }

  .movie-card,
  .movie-card--standard,
  .movie-card--tall,
  .movie-card--left,
  .movie-card--compact {
    min-height: 0;
  }

  .final-cta, .other-months {
    padding: 40px 0 30px;
  }

  .final-cta__panel {
    width: calc(100% - 32px);
    padding: 40px 20px;
  }

  .final-cta__button {
    width: 100%;
    white-space: normal;
  }

  .product-mark strong {
    font-size: 18px;
  }

  .final-cta__copy h2 {
    font-size: 28px;
    line-height: 1.35;
  }

  .other-months__content {
    gap: 64px;
  }

  .faq-content {
    gap: 40px;
  }

  .faq-heading {
    min-height: 0;
  }

  .faq-heading p {
    font-size: 16px;
    line-height: 24px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-item {
    min-height: 72px;
  }

  .feature-list li {
    align-items: flex-start;
  }

  .save-button {
    width: 100%;
    padding-inline: 22px;
  }

  .download-action {
    width: 100%;
  }

  .download-action p {
    max-width: 100%;
  }

  .product-preview__frame {
    height: auto;
    aspect-ratio: 654 / 380;
  }

  .movie-actions {
    margin-top: 10px;
  }

  a.text-link {
    font-size: 15px;
  }
}
