:root {
  --bg-primary: #0e8bb1;
  --bg-secondary: #f2f2f2;
  --text-light: #ffffff;
  --text-dark: #1a1a1a;
  --back-accent: #b68e55;
  --back-accent-dark: #9f7646;
  --accent: #ffd200;
  --accent-dark: #d6b000;
  --max-width: 980px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background: url("../images/back.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page {
  width: 100%;
  flex: 1 0 auto;
}

.screen {
  width: 100%;
  min-height: 100vh; /* 2 экрана: первый экран + второй экран */
  display: flex;
  align-items: center;
  justify-content: center;
}

.screen-hero {
  background: url("../images/back.webp") center / cover no-repeat #0b4f99;
  color: var(--text-light);
  padding: 48px 20px 0;
  position: relative;
  overflow: hidden;
}

.screen-body {
  min-height: auto;
  padding-bottom: 0;
}

.screen-hero.is-hidden {
  display: none;
}

.screen-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.screen-hero::after {
  display: none;
}

.hero {
  width: 100%;
  max-width: var(--max-width);
  text-align: center;
  position: relative;
  z-index: 3;
}

.hero-title {
  margin: 0 0 24px;
  font-size: 68px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.5px;
  /* TODO: Ограничение ширины заголовка, чтобы не "разъезжался" */
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title .hl {
  color: #f3c602;
}

.hero-video {
  position: relative;
  margin: 0 auto;
  /* TODO: Размер видео-контейнера. Можно править под нужный визуал. */
  max-width: 650px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.hero-video.is-hidden {
  display: none;
}

.hero-title.is-hidden {
  display: none;
}

.video {
  width: 100%;
  aspect-ratio: 9 / 16;
  height: 100%;
  max-height: 100svh;
  border-radius: 10px;
  display: block;
  background: #1d1d1d;
  object-fit: cover;
}

.video-dim {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.video-cta {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: transparent;
  color: #000;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
  cursor: pointer;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1.25;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.2px;
}

.video-cta::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 3px solid rgba(200, 200, 200, 0.8);
  border-top-color: transparent;
  animation: spin 2.2s linear infinite;
}

.cta-ring {
  position: absolute;
  inset: -3px;
  border-radius: 80%;
  border: 4px solid #e00000;
  pointer-events: none;
}

.cta-inner {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 10px 40px;
  animation: pulse 1.6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.cta-text {
  position: relative;
  z-index: 10;
  padding: 15 8px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.cta-icons {
  position: absolute;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.cta-play {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.cta-finger {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 45px;
  height: 45px;
  object-fit: contain;
  z-index: 3;
}

.offer-timer {
  margin-top: 0;
  background: url("../images/back.webp") center / cover no-repeat;
  color: #ffffff;
  text-align: center;
  border-radius: 0;
  padding: 44px 16px 36px;
  display: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
}

.offer-timer.is-visible {
  display: block;
}

.offer-timer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.offer-timer__title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
}

.offer-timer__count {
  margin-top: 16px;
  font-size: 52px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
}

.offer-timer__notch {
  width: 180px;
  height: 26px;
  background: url("../images/back.webp") center / cover no-repeat;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%);
  z-index: 5;
}

.offer-white {
  display: none;
}

.offer-white.is-visible {
  display: block;
}

.product-block {
  background: #f6f7f9;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 36px 20px 40px;
  display: none;
  position: relative;
  z-index: 2;
}

.product-block.is-visible {
  display: block;
}

.product-block__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.product-header {
  margin-bottom: 18px;
  text-align: left;
}

.product-title {
  font-size: 41px;
  font-weight: 800;
  color: #000000;
}

.product-subtitle {
  font-size: 25px;
  font-weight: 700;
  color: #2b3340;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.benefits-title {
  margin-bottom: 14px;
  color: #1f2b3d;
  font-size: 30px;
  line-height: 1.06;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  text-align: left;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  margin-bottom: 18px;
}

.benefit {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: center;
  color: #000000;
  font-size: 19px;
  text-align: left;
}

.benefit-icon {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.form_order {
  background: #ffffff;
  border: 4px solid var(--back-accent);
  border-radius: 12px;
  padding: 28px;
  max-width: 580px;
  box-shadow: 0 12px 22px rgba(0,0,0,0.08);
}

.form-title {
  text-align: center;
  font-weight: 800;
  color: var(--back-accent);
  font-size: 22px;
  letter-spacing: 0.3px;
}

.form-subtitle {
  text-align: center;
  font-weight: 800;
  color: #111111;
  font-size: 22px;
  margin-bottom: 6px;
}

.form-subtitle .highlight {
  color: var(--back-accent);
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}

.price-old {
  color: #9aa3ad;
  text-decoration: line-through;
  font-weight: 700;
  font-size: 26px;
}

.price-new {
  color: var(--back-accent);
  font-size: 30px;
  font-weight: 800;
}

.form-note {
  text-align: center;
  font-size: 20px;
  color: #000000;
}

.form-note .highlight {
  color: var(--back-accent);
  font-weight: 700;
}

.form-timer {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: #e00000;
  margin: 6px 0 10px;
}

.form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.field label {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  color: #5a6472;
  text-align: left;
}

.field-input {
  background: #ffffff;
  border: 1px solid #111111;
  border-radius: 8px;
  padding: 13px 15px;
  font-size: 17px;
  color: #6c7786;
  width: 100%;
  box-sizing: border-box;
}

.field-input.is-invalid {
  border-color: #d40000;
}

input.field-input {
  outline: none;
}

.phone-input {
  width: 100%;
}

.iti {
  width: 100%;
  background: #ffffff;
}

.iti input {
  background: #ffffff !important;
  color: #111111;
}

.iti__country-list {
  max-width: 340px;
  background: #f3f3f3;
  color: #111111;
}

.iti__country-name,
.iti__dial-code {
  color: #111111;
}

.iti__country:hover {
  background: #e8e8e8;
}

.iti--separate-dial-code .iti__selected-flag,
.iti--separate-dial-code .iti__selected-dial-code {
  background: #ffffff !important;
  color: #111111;
}

.iti--separate-dial-code .iti__selected-flag {
  border-right: 1px solid #111111;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  height: 100%;
  box-sizing: border-box;
}

.iti__arrow {
  display: none;
}

.iti__selected-flag {
  pointer-events: none;
}

.form-submit {
  width: 100%;
  border: none;
  background: var(--back-accent);
  color: #ffffff;
  font-weight: 800;
  border-radius: 8px;
  padding: 15px 17px;
  cursor: pointer;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease;
}

.form-submit:hover {
  background: var(--back-accent-dark);
}

.field-error {
  margin-top: 6px;
  font-size: 12px;
  color: #d40000;
  min-height: 14px;
}

.form-footnote {
  font-size: 15px;
  text-align: center;
  color: #8a94a4;
  margin-top: 6px;
}

.origin {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 12px;
  color: #2b3340;
}

.origin-flag {
  width: 23px;
  height: 17px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.origin-flag img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-right {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.product-image {
  width: min(260px, 100%);
  height: auto;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  margin-top: 180px;
}

.product-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
}

.features-block {
  background: #f6f7f9;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 20px 20px 28px;
  display: none;
}

.features-block.is-visible {
  display: block;
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 40px;
}

.feature {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--back-accent);
  font-size: 19.5px;
  text-align: left;
  font-weight: 700;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@supports ((-webkit-mask-image: url("")) or (mask-image: url(""))) {
  .feature-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--back-accent);
    -webkit-mask-image: url("../images/icon_like.webp");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-image: url("../images/icon_like.webp");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
  }

  .feature-icon img {
    opacity: 0;
  }
}


@media (max-width: 860px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .form_order {
    max-width: 100%;
  }

  .form-fields {
    grid-template-columns: 1fr;
  }

  .features-inner {
    grid-template-columns: 1fr;
  }
}

.video-modal-open .video-cta {
  opacity: 0;
  pointer-events: none;
}

.video-modal-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal__player {
  background: #000000;
  aspect-ratio: 9 / 16;
  width: min(100vw, calc(100vh * 9 / 16));
  height: min(100vh, calc(100vw * 16 / 9));
  max-width: 100vw;
  max-height: 100vh;
  object-fit: cover;
}

.video-progress {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 10000;
}

.video-progress__bar {
  height: 100%;
  width: 0%;
  background: #e60000;
  will-change: width;
  transition: width 0.2s linear;
}

.video-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
}

.video-modal__close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-modal__close.is-fallback::before {
  content: "?";
  display: block;
}

.video-reminder {
  position: fixed;
  top: 0;
  left: 50%;
  right: auto;
  z-index: 10001;
  padding: 12px 16px;
  transform: translate(-50%, -100%);
  transition: transform 0.25s ease;
  max-width: 980px;
  width: calc(100% - 32px);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.video-reminder.is-visible {
  transform: translate(-50%, 0);
}

.video-reminder.is-danger {
  background: #e00000;
  color: #ffffff;
}
.video-reminder.is-danger .video-reminder__text {
  font-weight: 800;
}

.video-reminder__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}

.video-reminder__text {
  font-size: 16px;
  line-height: 1.3;
  white-space: nowrap;
  font-weight: 700;
}

.video-reminder__btn {
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.video-reminder.is-danger .video-reminder__btn {
  background: #ffffff;
  color: #e00000;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.screen-body {
  background: var(--bg-secondary);
  padding: 0 20px 0;
  align-items: flex-start;
}

.body-wrap {
  width: 100%;
  max-width: var(--max-width);
}

.author {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: stretch;
  padding: 0;
}

.author-media {
  display: flex;
  align-items: flex-end;
}

.author-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: 50% 100%;
  display: block;
  transform: scale(1.08);
  transform-origin: bottom center;
}

.author-title {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}

.author-text p {
  margin: 0 0 12px;
  line-height: 1.5;
  font-size: 22px;
  text-align: center;
}

.author-quote {
  margin-top: 6px;
}

.author-divider {
  width: 100%;
  max-width: 500px;
  height: 1.3px;
  background: #000000;
  margin: 28px auto 16px;
}

.author-sign {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  margin-bottom: 24px;
}

.author-sign img {
  width: 160px;
  height: auto;
}

.author-name {
  font-weight: 800;
}

.site-footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 10px 16px 14px;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-title {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  margin-bottom: 4px;
}

.footer-text {
  font-size: 13px;
  line-height: 1.35;
}

@media (max-width: 860px) {
  .author {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 26px;
  }
}



.video-cta-popup {
  position: absolute;
  left: 50%;
  z-index: 3;
  width: 240px;
  height: 240px;
  max-width: 70vw;
  max-height: 70vw;
  border-radius: 50%;
  background: #ffe34c;
  border: 4px solid #e10000;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
  padding: 18px;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.video-cta-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.video-cta-popup--bottom {
  bottom: 24px;
}

.video-cta-popup--center {
  top: 50%;
  transform: translate(-50%, -50%);
}

.video-cta-popup--red {
  background: #e00000;
  border-color: #e00000;
  color: #ffffff;
}

@media (min-width: 900px) {
  .video-cta-popup {
    width: 280px;
    height: 280px;
    font-size: 15px;
  }
}

.video-cta-popup {
  cursor: pointer;
}

.video-cta-popup::after {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  right: -12px;
  bottom: -12px;
  background: url("../images/palec.webp") center / contain no-repeat;
  opacity: 0;
  transform: translate(6px, 6px) scale(0.95);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.video-cta-popup:hover::after {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Mobile optimization */
@media (max-width: 640px) {
  .screen-hero {
    padding: 32px 14px 0;
  }

  .hero-title {
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: 0;
    margin-bottom: 18px;
  }

  .hero-video {
    margin-bottom: 12px;
  }

  .video {
    border-radius: 8px;
  }

  .video-cta {
    width: 120px;
    height: 120px;
    font-size: 10px;
  }

  .cta-inner {
    width: 112px;
    height: 112px;
    padding: 12px 8px 32px;
  }

  .cta-text {
    margin-top: 10px;
    font-size: 12px;
  }

  .cta-play {
    width: 26px;
    height: 26px;
  }

  .cta-finger {
    width: 36px;
    height: 36px;
    right: 4px;
    bottom: 4px;
  }

  .offer-timer {
    padding: 30px 12px 28px;
  }

  .offer-timer__title {
    font-size: 22px;
  }

  .offer-timer__count {
    font-size: 38px;
  }

  .product-block {
    padding: 26px 14px 32px;
  }

  .product-header {
    text-align: center;
  }

  .product-title {
    font-size: 32px;
  }

  .product-subtitle {
    font-size: 20px;
  }

  .benefits-title {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 10px;
  }

  .product-grid {
    gap: 18px;
  }

  .benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
  }

  .benefit {
    font-size: 17px;
    grid-template-columns: 36px 1fr;
  }

  .benefit-icon {
    width: 34px;
    height: 34px;
  }

  .form_order {
    padding: 18px;
    border-radius: 10px;
  }

  .form-title,
  .form-subtitle {
    font-size: 19px;
  }

  .price-old {
    font-size: 21px;
  }

  .price-new {
    font-size: 25px;
  }

  .form-note {
    font-size: 18px;
  }

  .form-timer {
    font-size: 25px;
  }

  .field label {
    font-size: 14px;
  }

  .field-input {
    font-size: 16px;
    padding: 12px 14px;
  }

  .form-submit {
    font-size: 16px;
  }

  .origin {
    justify-content: center;
  }

  .product-image {
    width: min(480px, 95vw);
    height: auto;
    margin-top: 18px;
  }

  .product-image img {
    height: auto;
  }

  .features-block {
    padding: 20px 14px 24px;
  }

  .feature {
    font-size: 16px;
    grid-template-columns: 40px 1fr;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }

  .reviews-block {
    padding: 28px 14px 32px;
  }

  .reviews-title {
    font-size: 26px;
  }

  .reviews-dot {
    font-size: 28px;
  }

  .review-name {
    font-size: 22px;
  }

  .review-stars {
    font-size: 18px;
  }

  .review-verified {
    font-size: 14px;
  }

  .review-text {
    font-size: 15px;
  }

  .review-location {
    font-size: 14px;
  }

  .review-avatar {
    width: 48px;
    height: 48px;
  }

  .faq-block {
    padding: 28px 14px 34px;
  }

  .faq-title {
    font-size: 28px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 15px;
  }

  .author {
    gap: 16px;
  }

  .author-title {
    font-size: 24px;
  }

  .author-text p {
    font-size: 17px;
  }

  .author-divider {
    margin: 20px auto 12px;
  }

  .author-sign img {
    width: 120px;
  }

  .site-footer {
    padding: 8px 12px 12px;
  }

  .footer-title {
    font-size: 13px;
  }

  .footer-text {
    font-size: 12px;
  }

  .video-reminder {
    width: calc(100% - 20px);
    padding: 10px 12px;
  }

  .video-reminder__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .video-reminder__text {
    font-size: 14px;
    white-space: normal;
    text-align: center;
  }

  .video-reminder__btn {
    width: 100%;
    max-width: 220px;
  }

  .video-cta-popup {
    width: 200px;
    height: 200px;
    font-size: 12px;
    padding: 14px;
  }

  .video-cta-popup::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 20px;
  }

  .video-cta {
    width: 110px;
    height: 110px;
    font-size: 9px;
  }

  .cta-inner {
    width: 100px;
    height: 100px;
  }

  .offer-timer__title {
    font-size: 20px;
  }

  .offer-timer__count {
    font-size: 34px;
  }

  .product-title {
    font-size: 28px;
  }

  .product-subtitle {
    font-size: 18px;
  }

  .benefits-title {
    font-size: 28px;
  }

  .form_order {
    padding: 16px;
  }

  .price-old {
    font-size: 17px;
  }

  .price-new {
    font-size: 20px;
  }

  .product-image {
    width: min(390px, 92vw);
  }

  .video-cta-popup {
    width: 170px;
    height: 170px;
    font-size: 11px;
  }
}



/* Keep video CTA circle sizes the same on mobile */
@media (max-width: 640px) {
  .video-cta {
    width: 150px;
    height: 150px;
    font-size: 11px;
  }

  .cta-inner {
    width: 140px;
    height: 140px;
    padding: 18px 10px 40px;
  }

  .cta-text {
    margin-top: 20px;
    font-size: 13px;
  }

  .cta-play {
    width: 30px;
    height: 30px;
  }

  .cta-finger {
    width: 45px;
    height: 45px;
    right: 6px;
    bottom: 6px;
  }
}

@media (max-width: 480px) {
  .video-cta {
    width: 150px;
    height: 150px;
    font-size: 11px;
  }

  .cta-inner {
    width: 140px;
    height: 140px;
    padding: 18px 10px 40px;
  }

  .cta-text {
    margin-top: 20px;
    font-size: 13px;
  }

  .cta-play {
    width: 30px;
    height: 30px;
  }

  .cta-finger {
    width: 45px;
    height: 45px;
    right: 6px;
    bottom: 6px;
  }
}

/* Tablet fixes for offer block + video popups */
@media (max-width: 900px) and (min-width: 641px) {
  .benefits {
    grid-template-columns: 1fr;
  }

  .product-header {
    text-align: center;
  }

  .product-image {
    width: min(420px, 90vw);
    height: auto;
    margin-top: 18px;
  }

  .product-image img {
    height: auto;
  }

  .offer-timer__notch {
    width: 120px;
    height: 18px;
    bottom: -17px;
  }

  .video-cta-popup {
    width: 220px;
    height: 220px;
    font-size: 12px;
  }
}

.bg-662a {
    background-color: #222021;
}

.modalvid {
    position: fixed;
    top: 0;
    left: 0;
    background: #000;
}

#form-banner {
    z-index: 9999;
}