/* VODGate landing page styles */
:root {
  --color-bg: #05070d;
  --color-bg-soft: #0b1020;
  --color-card: rgba(15, 23, 42, 0.78);
  --color-card-solid: #101827;
  --color-text: #f8fafc;
  --color-muted: #a8b3c7;
  --color-accent: #e50914;
  --color-accent-dark: #9f1119;
  --color-border: rgba(255, 255, 255, 0.12);
  --shadow-card: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container-max: 1240px;
  --container-padding: clamp(20px, 4vw, 48px);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  background:
    radial-gradient(circle at top left, rgba(229, 9, 20, 0.22), transparent 32rem),
    radial-gradient(circle at top right, rgba(33, 76, 160, 0.25), transparent 28rem),
    var(--color-bg);
  color: var(--color-text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  margin: 0 auto;
  max-width: calc(var(--container-max) + (var(--container-padding) * 2));
  padding-inline: var(--container-padding);
  width: 100%;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.site-header {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(5, 7, 13, 0.88);
  border-bottom: 1px solid var(--color-border);
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 50;
}

.navbar {
  align-items: center;
  display: flex;
  height: var(--header-height);
  justify-content: space-between;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 1.25rem;
  font-weight: 800;
  gap: 0.7rem;
  letter-spacing: -0.03em;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--color-accent), #ff4b55);
  border-radius: 0.9rem;
  box-shadow: 0 12px 30px rgba(229, 9, 20, 0.35);
  display: inline-flex;
  height: 2.5rem;
  justify-content: center;
  width: 2.5rem;
}

.nav-menu {
  align-items: center;
  display: flex;
  gap: 1.5rem;
}

.nav-menu a,
.nav-country-toggle {
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-country-toggle:hover,
.nav-country-toggle:focus-visible {
  color: var(--color-text);
}

.nav-country {
  position: relative;
}

.nav-country-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0.65rem;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.1rem;
  font-family: inherit;
  gap: 0.3rem;
  line-height: 1;
  padding: 0.35rem 0.45rem;
}

.nav-country-toggle::after {
  content: "\25BE";
  font-size: 0.65rem;
  line-height: 1;
}

.country-dropdown {
  background: rgba(5, 7, 13, 0.98);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 0.2rem;
  min-width: 13rem;
  opacity: 0;
  padding: 0.55rem;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 0.8rem);
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-country:hover .country-dropdown,
.nav-country:focus-within .country-dropdown,
.nav-country.open .country-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-country.click-closed .country-dropdown {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}

.country-dropdown a {
  align-items: center;
  border-radius: 0.65rem;
  display: flex;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  white-space: nowrap;
}

.country-dropdown span {
  flex: 0 0 1.35rem;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
}

.country-dropdown a:hover,
.country-dropdown a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 0.34rem;
  padding: 0.5rem;
}

.nav-toggle span {
  background: var(--color-text);
  border-radius: 999px;
  display: block;
  height: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 1.65rem;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  align-items: center;
  display: flex;
  min-height: min(720px, calc(100vh - var(--header-height)));
  overflow: hidden;
  padding-bottom: clamp(2.5rem, 5vh, 3.25rem);
  padding-top: clamp(1.9rem, 3.5vh, 2.6rem);
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 3.5vw, 3.4rem);
  grid-template-columns: 1fr;
}

.hero-glow {
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.55;
  position: absolute;
}

.hero-glow-one {
  background: rgba(229, 9, 20, 0.24);
  height: 18rem;
  left: -8rem;
  top: 10rem;
  width: 18rem;
}

.hero-glow-two {
  background: rgba(43, 100, 210, 0.18);
  bottom: 8rem;
  height: 22rem;
  right: -10rem;
  width: 22rem;
}

.eyebrow {
  color: #ff737b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.hero h1 {
  color: #f8fafc;
  font-size: clamp(2.5rem, 4.95vw, 4.18rem);
  line-height: 0.96;
  max-width: 610px;
}

.hero-text {
  color: var(--color-muted);
  font-size: 1.08rem;
  margin: 1.15rem 0 1.65rem;
  max-width: 580px;
}

.hero-actions,
.contact-card {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.35rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), #ff3842);
  box-shadow: 0 18px 40px rgba(229, 9, 20, 0.32);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 24px 52px rgba(229, 9, 20, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
}

.trust-row {
  color: var(--color-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.45rem;
}

.trust-row span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
}

.hero-panel {
  display: none;
  position: relative;
  width: 100%;
}

.tv-visual {
  --tv-shift-x: 0rem;
  margin: 0 auto;
  max-width: 820px;
  position: relative;
  transform: perspective(850px) rotateY(-8deg) rotateX(2deg) translate(var(--tv-shift-x), 0.25rem);
  transform-origin: center center;
  width: 100%;
}

.tv-frame {
  background:
    linear-gradient(145deg, rgba(24, 33, 54, 0.98), rgba(4, 6, 12, 0.98) 66%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: clamp(1.4rem, 2.8vw, 2.35rem);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.56),
    0 0 70px rgba(43, 100, 210, 0.14);
  margin: 0 auto;
  padding: clamp(0.55rem, 1.1vw, 0.85rem);
  position: relative;
  width: 100%;
}

.tv-frame::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 34%);
  border-radius: inherit;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.tv-screen {
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 18% 16%, rgba(229, 9, 20, 0.18), transparent 15rem),
    radial-gradient(circle at 88% 18%, rgba(43, 100, 210, 0.18), transparent 16rem),
    #060a12;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: clamp(1rem, 2vw, 1.6rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.32rem, 0.65vw, 0.52rem);
  justify-content: flex-start;
  overflow: hidden;
  padding: clamp(0.75rem, 1.35vw, 1rem);
  position: relative;
}

.tv-shine {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 34%);
  height: 100%;
  left: -22%;
  opacity: 0.42;
  pointer-events: none;
  position: absolute;
  top: -35%;
  transform: rotate(12deg);
  width: 55%;
  z-index: 3;
}

.tv-feature-card {
  background:
    linear-gradient(90deg, rgba(229, 9, 20, 0.86), rgba(100, 18, 35, 0.42) 52%, rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at 86% 20%, rgba(255, 255, 255, 0.16), transparent 12rem);
  align-self: stretch;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: clamp(0.45rem, 1vw, 0.75rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  min-height: clamp(1.65rem, 2.35vw, 2.05rem);
  overflow: hidden;
  padding: clamp(0.38rem, 0.58vw, 0.5rem) clamp(0.8rem, 1.35vw, 1.1rem);
  position: relative;
  width: 100%;
  z-index: 2;
}

.tv-feature-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.82rem, 1vw, 0.96rem);
  font-weight: 800;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tv-row-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.66rem, 0.85vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: clamp(0.08rem, 0.25vw, 0.18rem);
  position: relative;
  z-index: 2;
}

.tv-row {
  height: auto;
  margin-inline: clamp(-2.2rem, -4vw, -1.2rem);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.tv-track {
  --tv-loop-distance: 0px;
  display: flex;
  gap: clamp(0.42rem, 0.75vw, 0.58rem);
  height: auto;
  width: max-content;
}

.tv-row-top .tv-track {
  animation: tvMarqueeRight 38s linear infinite;
  transform: translateX(calc(-1 * var(--tv-loop-distance)));
}

.tv-row-bottom .tv-track {
  animation: tvMarqueeLeft 32s linear infinite;
  transform: translateX(0);
}

.tv-track span {
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    #111827;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: clamp(0.7rem, 1.4vw, 1rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  flex: 0 0 auto;
  height: auto;
  overflow: hidden;
  position: relative;
  width: clamp(3.65rem, 5.35vw, 5.05rem);
}

.tv-track span::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 50%);
  content: "";
  inset: 0;
  position: absolute;
}

.tv-track span:nth-child(3n+1) {
  background: linear-gradient(150deg, rgba(229, 9, 20, 0.2), rgba(255, 255, 255, 0.04)), #111827;
}

.tv-track span:nth-child(3n+2) {
  background: linear-gradient(150deg, rgba(43, 100, 210, 0.2), rgba(255, 255, 255, 0.04)), #111827;
}

.tv-track span > img {
  border-radius: inherit;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.tv-stand {
  height: clamp(1.7rem, 3vw, 2.5rem);
  margin: -0.05rem auto 0;
  position: relative;
  width: min(38%, 19rem);
}

.tv-stand::before,
.tv-stand::after {
  content: "";
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.tv-stand::before {
  background: linear-gradient(180deg, rgba(42, 55, 82, 0.96), rgba(8, 12, 22, 0.96));
  border-inline: 1px solid rgba(255, 255, 255, 0.14);
  height: 72%;
  top: 0;
  width: 24%;
}

.tv-stand::after {
  background: linear-gradient(180deg, rgba(36, 48, 72, 0.96), rgba(5, 7, 13, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  bottom: 0;
  height: 30%;
  width: 100%;
}

@keyframes tvMarqueeRight {
  from {
    transform: translateX(calc(-1 * var(--tv-loop-distance)));
  }

  to {
    transform: translateX(0);
  }
}

@keyframes tvMarqueeLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-1 * var(--tv-loop-distance)));
  }
}

.section-heading {
  margin: 0 auto 2.5rem;
  max-width: 720px;
  text-align: center;
}

.section-heading h2,
.contact-card h2 {
  font-size: clamp(2rem, 8vw, 3.8rem);
}

.section-heading p:not(.eyebrow),
.contact-card p {
  color: var(--color-muted);
  margin-top: 1rem;
}

.features-grid,
.pricing-grid,
.steps-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
  grid-template-columns: 1fr;
}

.feature-card,
.price-card,
.step-card,
.contact-card,
.faq-list details {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.feature-card,
.price-card,
.step-card {
  padding: clamp(1.25rem, 2vw, 1.6rem);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.feature-card:hover,
.price-card:hover,
.step-card:hover {
  background: rgba(20, 29, 50, 0.92);
  border-color: rgba(229, 9, 20, 0.42);
  transform: translateY(-6px);
}

.icon {
  align-items: center;
  background: rgba(229, 9, 20, 0.14);
  border-radius: var(--radius-sm);
  display: inline-flex;
  font-size: 1.45rem;
  height: 3rem;
  justify-content: center;
  margin-bottom: 1.15rem;
  width: 3rem;
}

.feature-card h3,
.price-card h3,
.step-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.feature-card p,
.price-label,
.step-card p,
.faq-list p {
  color: var(--color-muted);
}

.pricing-section,
.faq-section {
  background: linear-gradient(180deg, rgba(11, 16, 32, 0.58), rgba(5, 7, 13, 0));
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
}

.price-card.featured {
  border-color: rgba(229, 9, 20, 0.65);
  box-shadow: 0 24px 80px rgba(229, 9, 20, 0.13);
}

.badge {
  background: rgba(229, 9, 20, 0.16);
  border: 1px solid rgba(229, 9, 20, 0.45);
  border-radius: 999px;
  color: #ff9aa0;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.7rem;
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  text-transform: uppercase;
}

.price-card ul {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.price-card li {
  color: #d8e0ed;
  padding-left: 1.7rem;
  position: relative;
}

.price-card li::before {
  color: #ff5a62;
  content: "✓";
  font-weight: 900;
  left: 0;
  position: absolute;
}

.price-card .btn {
  margin-top: auto;
}

.step-card span {
  color: rgba(229, 9, 20, 0.95);
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin: 0 auto;
  max-width: 900px;
}

.faq-list details {
  overflow: hidden;
  padding: 1rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  padding-right: 2rem;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--color-accent);
  content: "+";
  font-size: 1.4rem;
  position: absolute;
  right: 0;
  top: -0.2rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin-top: 0.85rem;
}

.contact-card {
  justify-content: space-between;
  padding: 1.5rem;
}

.contact-card > div {
  max-width: 710px;
}

.contact-card a:not(.btn) {
  color: #ff737b;
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 2rem 0;
}

.footer-content {
  align-items: center;
  color: var(--color-muted);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  text-align: center;
}

.floating-whatsapp {
  background: linear-gradient(135deg, #1cbf5b, #118c42);
  border-radius: 999px;
  bottom: 1rem;
  box-shadow: 0 16px 38px rgba(28, 191, 91, 0.35);
  color: white;
  font-size: 0.85rem;
  font-weight: 900;
  padding: 0.8rem 1rem;
  position: fixed;
  right: 1rem;
  z-index: 45;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .tv-row-top .tv-track,
  .tv-row-bottom .tv-track {
    animation: none !important;
    transform: translateX(0) !important;
  }
}

@media (max-width: 767px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    background: rgba(5, 7, 13, 0.98);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    flex-direction: column;
    gap: 0;
    left: 0;
    opacity: 0;
    padding: 1rem 1.25rem 1.5rem;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: var(--header-height);
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a,
  .nav-country-toggle {
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
    text-align: left;
    width: 100%;
  }

  .nav-country {
    width: 100%;
  }

  .country-dropdown {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    gap: 0;
    min-width: 0;
    opacity: 1;
    padding: 0;
    pointer-events: auto;
    position: static;
    transform: none;
    transition: none;
    width: 100%;
  }

  .country-dropdown a {
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    padding: 1rem 0 1rem 1rem;
  }

  .country-dropdown a:hover,
  .country-dropdown a:focus-visible {
    background: transparent;
  }

  .hero-actions .btn,
  .contact-card .btn {
    width: 100%;
  }
}

@media (min-width: 640px) {
  .features-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-card {
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  .section {
    padding: 6.5rem 0;
  }

  .hero-panel {
    display: block;
  }

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

  .footer-content {
    flex-direction: row;
    text-align: left;
  }
}

@media (min-width: 980px) {
  .features-grid,
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (min-width: 1080px) {
  .tv-visual {
    --tv-shift-x: clamp(0.65rem, 2vw, 1.6rem);
  }

  .tv-row {
    margin-inline: 0;
    width: min(100%, 29rem);
  }

  .tv-row-label {
    width: min(100%, 29rem);
  }

  .tv-track span {
    width: clamp(4.65rem, 5.3vw, 5.15rem);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  }
}
