@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

.ytvv-premium-section,
.ytvv-premium-section * {
  box-sizing: border-box !important;
  min-width: 0;
}

.ytvv-premium-section {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #202124;
  font-family: Arial, Helvetica, sans-serif;
  --ytvv-primary: #ff0033;
  --ytvv-secondary: #ff7a1a;
  --ytvv-accent: #111827;
  --ytvv-soft: #fff5f2;
  --ytvv-border: rgba(255, 0, 51, 0.16);
  --ytvv-shadow: rgba(180, 24, 32, 0.14);
  --ytvv-text: #202124;
  --ytvv-muted: #5f6368;
}

.ytvv-premium-section .ytvv-band {
  width: 100% !important;
}

.ytvv-premium-section .ytvv-band-white {
  background: #ffffff !important;
}

.ytvv-premium-section .ytvv-band-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 0, 51, 0.08), transparent 34%),
    linear-gradient(180deg, #fff8f5 0%, #fff4ef 100%) !important;
}

.ytvv-premium-section .ytvv-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.ytvv-premium-section .ytvv-heading {
  margin: 0 auto;
  color: var(--ytvv-text);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
}

.ytvv-premium-section .ytvv-heading::after {
  content: "";
  display: block;
  width: 78px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ytvv-primary), var(--ytvv-secondary));
}

.ytvv-premium-section .ytvv-intro {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--ytvv-muted);
  line-height: 1.7;
  text-align: center;
}

.ytvv-premium-section .ytvv-grid {
  display: grid !important;
  align-items: stretch !important;
}

.ytvv-premium-section .ytvv-card {
  position: relative;
  display: grid;
  align-content: start;
  justify-items: center;
  height: 100% !important;
  overflow: hidden;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--ytvv-border);
  box-shadow: 0 18px 46px var(--ytvv-shadow);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.ytvv-premium-section .ytvv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 0, 51, 0.08), rgba(255, 122, 26, 0.08));
  transition: opacity 260ms ease;
  pointer-events: none;
}

.ytvv-premium-section .ytvv-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255, 0, 51, 0.36);
  box-shadow: 0 26px 66px rgba(180, 24, 32, 0.2);
}

.ytvv-premium-section .ytvv-card:hover::before {
  opacity: 1;
}

.ytvv-premium-section .ytvv-card:hover .ytvv-icon {
  transform: translateY(-4px);
  background-position: 100% 50%;
}

.ytvv-premium-section .ytvv-card:hover .ytvv-i {
  transform: scale(1.08);
}

.ytvv-premium-section .ytvv-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--ytvv-primary), var(--ytvv-secondary), #111827);
  background-size: 190% 190%;
  box-shadow: 0 16px 34px rgba(255, 0, 51, 0.22);
  transition: transform 260ms ease, background-position 260ms ease;
}

.ytvv-premium-section .ytvv-i {
  display: block;
  line-height: 1;
  transition: transform 260ms ease;
}

.ytvv-premium-section .ytvv-card-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ytvv-text);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
}

.ytvv-premium-section .ytvv-card-text {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  color: var(--ytvv-muted);
  line-height: 1.65;
  text-align: center;
}

.ytvv-premium-section .ytvv-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.ytvv-premium-section .ytvv-reveal.ytvv-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

@media (min-width: 1024px) {
  .ytvv-premium-section .ytvv-band {
    padding: 92px 0 !important;
  }

  .ytvv-premium-section .ytvv-container {
    padding: 0 28px !important;
  }

  .ytvv-premium-section .ytvv-heading {
    font-size: 42px;
  }

  .ytvv-premium-section .ytvv-intro {
    font-size: 17px;
  }

  .ytvv-premium-section .ytvv-grid {
    gap: 28px;
    margin-top: 48px;
  }

  .ytvv-premium-section .ytvv-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ytvv-premium-section .ytvv-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ytvv-premium-section .ytvv-card {
    min-height: 300px;
    padding: 34px 28px 30px;
    border-radius: 26px;
  }

  .ytvv-premium-section .ytvv-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 26px;
  }

  .ytvv-premium-section .ytvv-i {
    font-size: 30px;
  }

  .ytvv-premium-section .ytvv-card-title {
    font-size: 20px;
  }

  .ytvv-premium-section .ytvv-card-text {
    margin-top: 14px;
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ytvv-premium-section .ytvv-band {
    padding: 76px 0 !important;
  }

  .ytvv-premium-section .ytvv-container {
    padding: 0 24px !important;
  }

  .ytvv-premium-section .ytvv-heading {
    font-size: 34px;
  }

  .ytvv-premium-section .ytvv-intro {
    font-size: 16px;
  }

  .ytvv-premium-section .ytvv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 40px;
  }

  .ytvv-premium-section .ytvv-card {
    min-height: 270px;
    padding: 30px 24px 26px;
    border-radius: 22px;
  }

  .ytvv-premium-section .ytvv-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 22px;
  }

  .ytvv-premium-section .ytvv-i {
    font-size: 27px;
  }

  .ytvv-premium-section .ytvv-card-title {
    font-size: 19px;
  }

  .ytvv-premium-section .ytvv-card-text {
    margin-top: 12px;
    font-size: 14.5px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .ytvv-premium-section .ytvv-band {
    padding: 58px 0 !important;
  }

  .ytvv-premium-section .ytvv-container {
    padding: 0 16px !important;
  }

  .ytvv-premium-section .ytvv-heading {
    max-width: 420px;
    font-size: 29px;
  }

  .ytvv-premium-section .ytvv-intro {
    font-size: 14.5px;
  }

  .ytvv-premium-section .ytvv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
  }

  .ytvv-premium-section .ytvv-card {
    min-height: 230px;
    padding: 22px 14px 20px;
    border-radius: 18px;
  }

  .ytvv-premium-section .ytvv-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 17px;
    border-radius: 17px;
  }

  .ytvv-premium-section .ytvv-i {
    font-size: 22px;
  }

  .ytvv-premium-section .ytvv-card-title {
    font-size: 16px;
  }

  .ytvv-premium-section .ytvv-card-text {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.55;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .ytvv-premium-section .ytvv-band {
    padding: 50px 0 !important;
  }

  .ytvv-premium-section .ytvv-container {
    padding: 0 13px !important;
  }

  .ytvv-premium-section .ytvv-heading {
    max-width: 350px;
    font-size: 26px;
  }

  .ytvv-premium-section .ytvv-heading::after {
    width: 58px;
    height: 3px;
    margin-top: 14px;
  }

  .ytvv-premium-section .ytvv-intro {
    margin-top: 14px;
    font-size: 13.5px;
    line-height: 1.55;
  }

  .ytvv-premium-section .ytvv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
  }

  .ytvv-premium-section .ytvv-card {
    min-height: 222px;
    padding: 19px 11px 17px;
    border-radius: 16px;
  }

  .ytvv-premium-section .ytvv-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
    border-radius: 15px;
  }

  .ytvv-premium-section .ytvv-i {
    font-size: 20px;
  }

  .ytvv-premium-section .ytvv-card-title {
    font-size: 14.5px;
  }

  .ytvv-premium-section .ytvv-card-text {
    margin-top: 8px;
    font-size: 12.2px;
    line-height: 1.48;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .ytvv-premium-section .ytvv-band {
    padding: 44px 0 !important;
  }

  .ytvv-premium-section .ytvv-container {
    padding: 0 10px !important;
  }

  .ytvv-premium-section .ytvv-heading {
    max-width: 300px;
    font-size: 23px;
  }

  .ytvv-premium-section .ytvv-heading::after {
    width: 52px;
    height: 3px;
    margin-top: 12px;
  }

  .ytvv-premium-section .ytvv-intro {
    margin-top: 12px;
    font-size: 12.8px;
    line-height: 1.5;
  }

  .ytvv-premium-section .ytvv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .ytvv-premium-section .ytvv-card {
    min-height: 214px;
    padding: 16px 9px 15px;
    border-radius: 14px;
  }

  .ytvv-premium-section .ytvv-icon {
    width: 43px;
    height: 43px;
    margin-bottom: 13px;
    border-radius: 14px;
  }

  .ytvv-premium-section .ytvv-i {
    font-size: 18px;
  }

  .ytvv-premium-section .ytvv-card-title {
    font-size: 13.5px;
    line-height: 1.22;
  }

  .ytvv-premium-section .ytvv-card-text {
    margin-top: 7px;
    font-size: 11.5px;
    line-height: 1.42;
  }
}