/* Univer Video - Landing base styles
   Shared structural styles used by this LP.
*/

:root {
  --card-color-1: #1c4363;
  --card-color-2: #162c39;
  --dark-blue-1: #0d2a41;
  --dark-blue-2: #02223a;
  --gradient-light-blue-1: linear-gradient(137deg, #30caf9 0%, #074d63 100%);
  --gradient-light-blue-2: linear-gradient(137deg, #30caf9 0%, #0b9fcb 100%);
  --gradient-dark-blue-1: linear-gradient(90deg, #1a526d 0%, #14324a 100%);
  --green-1: #12a062;
  --light-blue-1: #0b9fcb;
  --black: #000;
  --white: #fff;
  --container: 1160px;
  --radius: 26px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 18px #0b9fcb;
  --shadow-glow-blue: 0 0 18px rgba(48, 202, 249, 0.55);
  --topbar-h: 76px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  color: var(--white);
  background: linear-gradient(180deg, var(--dark-blue-2), var(--dark-blue-1));
}

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

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

button {
  font: inherit;
}

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

@media (max-width: 480px) {
  .container {
    width: calc(100% - 28px);
  }
}

@media (max-width: 360px) {
  .container {
    width: calc(100% - 22px);
  }
}

@media (max-width: 320px) {
  .container {
    width: calc(100% - 18px);
  }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(12px);
  background: rgba(2, 34, 58, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar__inner {
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
}

.brand__logo {
  height: 26px;
  width: auto;
  opacity: 0.95;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
}

.nav__link {
  font-size: 17px;
  font-weight: 500;
  opacity: 0.92;
  transition: color 0.2s ease, text-shadow 0.2s ease, opacity 0.2s ease;
}

.nav__link:hover {
  color: #30caf9;
  text-shadow: var(--shadow-glow-blue);
  opacity: 1;
}

.nav__link--gold {
  color: #0b9fcb;
  font-weight: 600;
}

.nav__link--gold:hover {
  color: #30caf9;
  text-shadow: var(--shadow-glow-blue);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.95);
  font-size: 17px;
  font-weight: 700;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
  will-change: transform, box-shadow;
}

.nav__cta:hover {
  background: var(--white);
  color: #0b9fcb;
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-glow-blue);
  transform: translateY(-1px);
}

.nav__cta:active {
  transform: translateY(0);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 30;
}

.lang-switcher__trigger {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.lang-switcher__trigger:hover {
  transform: translateY(-1px);
  border-color: rgba(48, 202, 249, 0.6);
  box-shadow: 0 0 14px rgba(48, 202, 249, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.lang-switcher__flag {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
}

.lang-switcher__popover {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  width: max-content;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.lang-switcher__list {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}

.lang-switcher__option {
  appearance: none;
  width: 100%;
  min-width: 210px;
  padding: 10px 16px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #334155;
  text-align: left;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.16s ease;
}

.lang-switcher__option:hover {
  background: #f1f5f9;
}

.lang-switcher__option-flag {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.hamburger__lines {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
}

.hamburger__lines::before,
.hamburger__lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  transition: transform 0.18s ease, top 0.18s ease, opacity 0.18s ease;
}

.hamburger__lines::before {
  top: -6px;
}

.hamburger__lines::after {
  top: 6px;
}

.topbar.is-open .hamburger__lines {
  background: transparent;
}

.topbar.is-open .hamburger__lines::before {
  top: 0;
  transform: rotate(45deg);
}

.topbar.is-open .hamburger__lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(2, 34, 58, 0.92);
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 0 22px;
  text-align: center;
}

.mobile-menu__link {
  display: block;
  width: 100%;
  padding: 12px 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.mobile-menu__link:hover {
  color: #30caf9;
  text-shadow: var(--shadow-glow-blue);
}

.mobile-menu__link--gold {
  color: #0b9fcb;
}

.mobile-menu__cta {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(280px, 100%);
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: transparent;
  font-weight: 800;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.mobile-menu__cta:hover {
  background: var(--white);
  color: #0b9fcb;
  box-shadow: var(--shadow-glow-blue);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  margin-top: -50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.01);
}

.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__content {
  position: relative;
  width: 100%;
}

.promo-section {
  position: relative;
  overflow: hidden;
  padding: 64px 0 0;
  background: var(--gradient-dark-blue-1);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
  margin-bottom: 22px;
}

.promo-details {
  font-size: 18px;
}

.promo-headline {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
}

.promo-details p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.promo-coupon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.coupon-label {
  align-self: flex-start;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
  transform: translateX(-56px);
}

.coupon-code-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.coupon-code {
  padding: 10px 26px;
  border: 2px solid var(--light-blue-1);
  border-radius: 12px;
  background: var(--dark-blue-2);
  color: var(--white);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 4px;
  user-select: all;
}

.copy-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: var(--light-blue-1);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.copy-btn:hover {
  background: #30caf9;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(48, 202, 249, 0.25);
}

.copy-btn:active {
  transform: translateY(0);
}

.copy-feedback {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9999;
  padding: 10px 26px;
  border-radius: 12px;
  background: var(--green-1);
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.45);
  transform: translate(-50%, -50%) scale(0.92);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.copy-feedback.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.promo-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.btn-primary-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 44px;
  border: 0;
  border-radius: 999px;
  background: var(--gradient-light-blue-2);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34), 0 0 22px rgba(48, 202, 249, 0.35);
  filter: drop-shadow(0 0 16px rgba(48, 202, 249, 0.25));
}

.info-section {
  padding: 64px 0;
  background: var(--gradient-dark-blue-1);
}

.info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.info-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 40px 44px;
  border-radius: 18px;
  background: var(--card-color-1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.info-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 18px;
  border-radius: 999px;
  background: var(--green-1);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.info-plan-title {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
}

.info-plan-subtitle {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.info-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.info-price-old {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  text-decoration: line-through;
}

.info-price-new {
  color: var(--white);
  font-size: 32px;
  font-weight: 900;
}

.info-price-period {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

.info-note {
  max-width: 900px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.trailer {
  background: linear-gradient(180deg, rgba(22, 44, 57, 0.55), rgba(13, 42, 65, 0.68));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trailer__inner {
  width: 100%;
  height: 100%;
  padding: 56px 0 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.trailer__title {
  margin: 0;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
}

.video {
  width: min(760px, 100%);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer {
  padding: 44px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(0, 0, 0, 0.96));
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.25fr 1fr;
  gap: 34px;
  padding-bottom: 36px;
}

.footer__title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 800;
}

.footer__link {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.footer__link:hover {
  color: var(--light-blue-1);
  text-shadow: var(--shadow-glow);
}

.footer__meta {
  margin-top: 14px;
}

.footer__metaTitle {
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 800;
}

.footer__metaText {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 8px 0;
  padding: 10px 14px;
  border: 1px solid rgba(18, 160, 98, 0.35);
  border-radius: 999px;
  background: rgba(18, 160, 98, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
}

.pill:hover {
  box-shadow: 0 0 18px rgba(18, 160, 98, 0.22);
}

.pill--phone {
  background: rgba(11, 159, 203, 0.14);
  border-color: rgba(11, 159, 203, 0.35);
}

.payments img {
  max-width: 210px;
  opacity: 0.95;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

.footer__bottom {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottomInner {
  display: flex;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.carousel-section {
  width: 100%;
  padding: 56px 5% 70px;
}

.carousel-section__inner {
  margin-bottom: 18px;
}

.carousel-section__title {
  margin: 0;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
}

.carousel-section .live-list,
.carousel-section .carousel-container {
  width: 100%;
  max-width: none;
}

.carousel-section .carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
}

.carousel-section .carousel {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 18px 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (16px * 5)) / 6);
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  transition: transform 0.3s ease;
  will-change: transform;
}

.carousel-section .carousel::-webkit-scrollbar {
  display: none;
}

.carousel-section .carousel[data-target="carousel"] {
  align-items: stretch;
}

.carousel-section .carousel[data-target="carousel"] > li,
.carousel-section .carousel[data-target="carousel"] > .carousel__item {
  width: 100%;
  min-width: 0;
  scroll-snap-align: start;
}

.carousel-section .carousel[data-target="carousel"] a,
.carousel-section .carousel[data-target="carousel"] .carousel__link {
  display: block;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.carousel-section .carousel[data-target="carousel"] a:hover,
.carousel-section .carousel[data-target="carousel"] .carousel__link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft), 0 0 22px rgba(255, 255, 255, 0.1);
}

.carousel-section .carousel[data-target="carousel"] img,
.carousel-section .carousel[data-target="carousel"] .carousel__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.carousel-section .carousel[data-target="carousel"][aspect-ratio="portrait"] {
  grid-auto-columns: calc((100% - (16px * 5)) / 6);
}

.carousel-section .carousel[data-target="carousel"][aspect-ratio="portrait"] img,
.carousel-section .carousel[data-target="carousel"][aspect-ratio="portrait"] .carousel__img {
  aspect-ratio: 2 / 3;
}

.carousel-section .carousel[data-target="carousel"][aspect-ratio="landscape"] {
  grid-auto-columns: calc((100% - (16px * 3)) / 4);
}

.carousel-section .carousel[data-target="carousel"][aspect-ratio="landscape"] img,
.carousel-section .carousel[data-target="carousel"][aspect-ratio="landscape"] .carousel__img {
  aspect-ratio: 16 / 9;
}

.carousel__empty {
  padding: 12px 18px;
  color: rgba(255, 255, 255, 0.78);
}

.carousel-section .slideLeft,
.carousel-section .slideRight {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.carousel-section .slideLeft {
  left: 12px;
}

.carousel-section .slideRight {
  right: 12px;
}

.carousel-section .slideLeft:hover,
.carousel-section .slideRight:hover {
  transform: translateY(-50%) scale(1.05);
  background: rgba(0, 0, 0, 0.36);
  box-shadow: var(--shadow-glow);
}

.carousel-section .slideLeft img,
.carousel-section .slideRight img {
  width: 18px;
  height: 18px;
  opacity: 0.95;
}

main {
  transition: transform 0.3s ease;
  will-change: transform;
}

main.page-nudge {
  transform: translateY(-8px);
}

.carousel.carousel-nudge-left {
  transform: translateX(-12px);
}

.carousel.carousel-nudge-right {
  transform: translateX(12px);
}

@media (min-width: 831px) {
  .topbar__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
  }

  .brand {
    justify-self: start;
  }

  .nav {
    justify-self: end;
  }

  .topbar__actions {
    order: 3;
    justify-self: end;
    margin-left: 0;
  }

  .hamburger {
    display: none;
  }
}

@media (max-width: 900px) {
  .promo-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .promo-cta {
    justify-content: center;
  }

  .coupon-label {
    align-self: center;
    transform: none;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
}

@media (max-width: 830px) {
  .nav {
    display: none;
  }

  .topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .topbar__actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    margin-left: 0;
  }

  .lang-switcher {
    order: 1;
  }

  .lang-switcher__popover {
    top: calc(100% + 10px);
    left: auto;
    right: 0;
    transform: none;
  }

  .hamburger {
    order: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-section {
    padding: 44px 5% 64px;
  }

  .carousel-section__title {
    font-size: 32px;
  }

  .carousel-section .carousel {
    padding: 14px 0;
    gap: 12px;
    grid-auto-columns: calc((100% - (12px * 2)) / 3);
  }

  .carousel-section .carousel[data-target="carousel"][aspect-ratio="portrait"] {
    grid-auto-columns: calc((100% - (12px * 2)) / 2.75);
  }

  .carousel-section .carousel[data-target="carousel"][aspect-ratio="landscape"] {
    grid-auto-columns: calc((100% - 12px) / 1.5);
  }

  .carousel-section .slideLeft,
  .carousel-section .slideRight {
    display: none !important;
  }

  .payments {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .payments img {
    max-width: 180px;
    height: auto;
  }
}

@media (max-width: 600px) {
  .coupon-code {
    padding: 10px 22px;
    font-size: 34px;
    letter-spacing: 3px;
  }

  .btn-primary-large {
    width: 100%;
  }

  .info-card {
    padding: 34px 26px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer__title,
  .footer__col {
    text-align: center;
  }

  .pill {
    margin-left: auto;
    margin-right: auto;
  }

  .payments {
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .carousel-section__title {
    font-size: 28px;
  }
}
