@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;250;300;400;500;600;700&display=swap');

/* =========================================================
   01. GLOBAL / RESET / CONTAINER
   ========================================================= */

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body,
button,
input,
textarea,
select {
  font-family: 'Poppins', sans-serif;
}

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

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

.svp-page {
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.svp-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.svp-container--wide {
  max-width: 1200px;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;250;300;400;500;600;700&display=swap');

/* =========================================================
   HERO + MOVING NAMES
   ========================================================= */

.svp-hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  padding-bottom: 0;
  background:
    radial-gradient(circle at 7% 0%, rgba(255, 16, 71, 0.58), rgba(255, 16, 71, 0) 28%),
    radial-gradient(circle at 78% 18%, rgba(60, 65, 177, 0.34), rgba(60, 65, 177, 0) 32%),
    #000000;
}

.svp-hero-section::before,
.svp-hero-section::after {
  content: "";
  position: absolute;
  border-radius: 900px;
  pointer-events: none;
}

.svp-hero-section::before {
  left: -220px;
  top: -260px;
  width: 620px;
  height: 520px;
  background: rgba(255, 16, 71, 0.34);
  filter: blur(150px);
}

.svp-hero-section::after {
  right: 80px;
  top: 40px;
  width: 520px;
  height: 420px;
  background: rgba(60, 65, 177, 0.24);
  filter: blur(150px);
}

.svp-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.svp-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 50px;
  min-height: 430px;
}

.svp-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}

.svp-hero-logo {
  width: 390px;
  height: auto;
}

.svp-hero-text {
  max-width: 460px;
  margin: 0;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  text-shadow: 0 0 49px rgba(0, 0, 0, 0.75);
}

.svp-hero-text p {
  margin: 0;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.svp-hero-text strong {
  font-weight: 700;
}

.svp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 10px 40px;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  background: #f6ae17;
  color: #121519;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.svp-button--yellow {
  background: #f6ae17;
  color: #121519;
}

.svp-hero-powered {
  display: flex;
  align-items: center;
  gap: 10px;
}

.svp-hero-powered span {
  color: #a2a2a2;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 17px;
}

.svp-hero-powered img {
  width: 118px;
  height: 30px;
  object-fit: contain;
}

.svp-hero-image-wrap {
  width: 100%;
  margin: 0;
}

.svp-hero-image {
  width: 112%;
  max-width: 760px;
  height: auto;
  object-fit: contain;
}

/* Moving names */

.svp-marquee-section {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 34px;
  padding-bottom: 34px;
  overflow: hidden;
  background: transparent;
}

.svp-marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  background: transparent;
  animation: svp-marquee 28s linear infinite;
}

.svp-marquee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: max-content;
}

.svp-marquee-name {
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 4px;
}

.svp-marquee-subtitle {
  color: #ffffff;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 2px;
}

.svp-marquee-dot {
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  opacity: 0.7;
}

@keyframes svp-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Tablet + mobile */

@media (max-width: 992px) {
  .svp-container {
    max-width: 100%;
  }

  .svp-hero-section {
    padding-top: 60px;
    padding-bottom: 0;
    background:
      radial-gradient(circle at 6% 0%, rgba(255, 16, 71, 0.50), rgba(255, 16, 71, 0) 34%),
      radial-gradient(circle at 84% 18%, rgba(60, 65, 177, 0.28), rgba(60, 65, 177, 0) 38%),
      #000000;
  }

  .svp-hero-section::before {
    left: -240px;
    top: -250px;
  }

  .svp-hero-section::after {
    right: -80px;
    top: 120px;
  }

  .svp-hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }

  .svp-hero-content {
    align-items: center;
    text-align: center;
  }

  .svp-hero-logo {
    width: 100%;
    max-width: 390px;
  }

  .svp-hero-text {
    max-width: 620px;
    font-size: 16px;
    line-height: 22px;
  }

  .svp-hero-text p {
    font-size: 16px;
    line-height: 22px;
  }

  .svp-button {
    min-height: 50px;
    font-size: 16px;
    line-height: 22px;
  }

  .svp-hero-powered {
    justify-content: center;
  }

  .svp-hero-image {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
  }

  .svp-marquee-name {
    font-size: 21px;
    line-height: 25px;
  }

  .svp-marquee-subtitle {
    font-size: 12px;
    line-height: 17px;
  }
}

/* Mobile */

@media (max-width: 576px) {
  .svp-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .svp-hero-section {
    padding-top: 44px;
    padding-bottom: 0;
    background:
      radial-gradient(circle at 0% 0%, rgba(255, 16, 71, 0.46), rgba(255, 16, 71, 0) 40%),
      radial-gradient(circle at 92% 20%, rgba(60, 65, 177, 0.24), rgba(60, 65, 177, 0) 40%),
      #000000;
  }

  .svp-hero-section::before {
    left: -260px;
    top: -240px;
    width: 520px;
    height: 460px;
  }

  .svp-hero-section::after {
    right: -180px;
    top: 180px;
    width: 420px;
    height: 360px;
  }

  .svp-hero-layout {
    gap: 32px;
  }

  .svp-hero-logo {
    max-width: 300px;
  }

  .svp-hero-text {
    max-width: 100%;
  }

  .svp-hero-image {
    width: 108%;
    max-width: none;
  }

  .svp-marquee-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

/* =========================================================
   04. MAIN BACKGROUND
   ========================================================= */

.svp-main {
  background:
    radial-gradient(circle at -8% 18%, rgba(255, 16, 71, 0.42), rgba(255, 16, 71, 0) 24%),
    radial-gradient(circle at 108% 42%, rgba(60, 65, 177, 0.40), rgba(60, 65, 177, 0) 28%),
    radial-gradient(circle at 8% 58%, rgba(255, 16, 71, 0.34), rgba(255, 16, 71, 0) 18%),
    #000000;
}

/* =========================================================
   05. MATERIALS SECTION
   ========================================================= */

.svp-materials-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* Wide cards */

.svp-wide-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 54px;
  width: 100%;
  min-height: 360px;
  margin: 0 auto 28px;
  padding: 44px 56px;
  background: rgba(15, 15, 15, 0.88);
  border: 1px solid #1f1f1f;
  border-radius: 30px;
  overflow: hidden;
}

.svp-wide-card--intro {
  grid-template-columns: 1.05fr 0.95fr;
}

.svp-wide-card--bonus {
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 380px;
  padding-top: 46px;
  padding-bottom: 46px;
}

.svp-wide-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-width: 0;
}

.svp-wide-card-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
}

.svp-wide-card-content p {
  max-width: 560px;
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
}

.svp-wide-card-content strong {
  font-weight: 700;
}

/* Icons */

.svp-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svp-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.svp-icon--pink {
  background: linear-gradient(180deg, #ff1047 0%, #58138d 100%);
}

.svp-icon--yellow {
  background: linear-gradient(180deg, #fdcd00 0%, #e6701b 100%);
}

/* One image in top card */

.svp-wide-card-media--single {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 100%;
}

.svp-wide-card-media--single img {
  width: 112%;
  max-width: 620px;
  height: auto;
  max-height: 330px;
  object-fit: contain;
  display: block;
}

/* One image in bonus card */

.svp-bonus-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 100%;
  min-height: 300px;
}

.svp-bonus-visual--single img {
  width: 115%;
  max-width: 690px;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 28px rgba(60, 65, 177, 0.78));
}

/* =========================================================
   BENTO GRID
   ========================================================= */

.svp-bento-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
  align-items: stretch;
}

.svp-bento-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  padding: 28px;
  background: #0f0f0f;
  border: 1px solid #1f1f1f;
  border-radius: 24px;
  overflow: visible;
}

.svp-bento-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.svp-bento-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 27px;
  font-weight: 700;
  line-height: 32px;
}

.svp-bento-card h3 span {
  display: block;
  font-weight: 400;
}

.svp-bento-card p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

/* Left tall card */

.svp-bento-card--topic {
  grid-column: 1;
  grid-row: 1 / span 2;
  justify-content: flex-start;
  min-height: 460px;
  padding: 28px;
  overflow: hidden;
}

.svp-bento-card--topic img {
  width: 100%;
  height: 185px;
  margin-bottom: 24px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

.svp-bento-card--topic h3 {
  font-size: 28px;
  line-height: 33px;
}

.svp-bento-card--topic p {
  font-size: 16px;
  line-height: 24px;
}

/* Top right wide card */

.svp-bento-card--experts {
  grid-column: 2 / span 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 34px;
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
}

.svp-bento-card--experts img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  border-radius: 28px;
}

.svp-bento-card--experts h3 {
  margin-bottom: 10px;
  font-size: 27px;
  line-height: 32px;
}

.svp-bento-card--experts p {
  font-size: 16px;
  line-height: 24px;
}

/* Bottom cards */

.svp-bento-card--hours {
  grid-column: 2;
  grid-row: 2;
  min-height: 220px;
}

.svp-bento-card--free {
  grid-column: 3;
  grid-row: 2;
  min-height: 220px;
}

.svp-bento-card--free h3 {
  margin-bottom: 0;
}

.svp-bento-card--free h3 span {
  color: #f6ae17;
}

/* Tablet */

@media (max-width: 992px) {
  .svp-wide-card,
  .svp-wide-card--intro,
  .svp-wide-card--bonus {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding: 34px;
  }

  .svp-wide-card-content h2 {
    font-size: 32px;
    line-height: 38px;
  }

  .svp-wide-card-content p {
    max-width: none;
    font-size: 16px;
    line-height: 24px;
  }

  .svp-wide-card-media--single img {
    width: 100%;
    max-width: 620px;
    max-height: none;
  }

  .svp-bonus-visual {
    min-height: auto;
  }

  .svp-bonus-visual--single img {
    width: 100%;
    max-width: 660px;
    max-height: none;
  }

  .svp-bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }

  .svp-bento-card {
    min-height: 220px;
    padding: 26px;
    overflow: visible;
  }

  .svp-bento-card--topic {
    grid-column: 1;
    grid-row: 1 / span 2;
    min-height: 460px;
    overflow: hidden;
  }

  .svp-bento-card--topic img {
    height: 185px;
  }

  .svp-bento-card--experts {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    min-height: 220px;
    overflow: hidden;
  }

  .svp-bento-card--experts img {
    width: 100%;
    height: 135px;
    border-radius: 18px;
  }

  .svp-bento-card--hours {
    grid-column: 2;
    grid-row: 2;
    min-height: 220px;
  }

  .svp-bento-card--free {
    grid-column: 1 / span 2;
    grid-row: 3;
    min-height: 190px;
  }

  .svp-bento-card h3 {
    font-size: 24px;
    line-height: 29px;
  }

  .svp-bento-card p {
    font-size: 15px;
    line-height: 22px;
  }
}

/* Mobile */

@media (max-width: 576px) {
  .svp-materials-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .svp-wide-card,
  .svp-wide-card--intro,
  .svp-wide-card--bonus {
    gap: 22px;
    padding: 20px;
    border-radius: 20px;
  }

  .svp-wide-card-content {
    gap: 14px;
  }

  .svp-wide-card-content h2 {
    font-size: 24px;
    line-height: 29px;
  }

  .svp-wide-card-content p {
    font-size: 15px;
    line-height: 22px;
  }

  .svp-icon {
    width: 44px;
    height: 44px;
  }

  .svp-icon img {
    width: 22px;
    height: 22px;
  }

  .svp-wide-card-media--single img {
    width: 112%;
    max-width: none;
  }

  .svp-bonus-visual--single img {
    width: 118%;
    max-width: none;
  }

  .svp-bento-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .svp-bento-card,
  .svp-bento-card--topic,
  .svp-bento-card--experts,
  .svp-bento-card--hours,
  .svp-bento-card--free {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
    padding: 26px;
    border-radius: 20px;
    overflow: visible;
  }

  .svp-bento-card--topic {
    min-height: auto;
    justify-content: flex-start;
    overflow: hidden;
  }

  .svp-bento-card--topic img {
    width: 100%;
    height: 190px;
    margin-bottom: 22px;
  }

  .svp-bento-card--experts {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    overflow: hidden;
  }

  .svp-bento-card--experts img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 20px;
  }

  .svp-bento-card--hours,
  .svp-bento-card--free {
    min-height: 190px;
  }

  .svp-bento-card h3 {
    font-size: 23px;
    line-height: 28px;
  }

  .svp-bento-card p {
    font-size: 15px;
    line-height: 22px;
  }
}

/* =========================================================
   06. FORM SECTION
   ========================================================= */

.svp-form-section {
  position: relative;
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 80px;
  background: #000000;
}

.svp-form-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('https://hub.whitepress.com/hubfs/form-bg.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  pointer-events: none;
}

.svp-form-section .svp-container {
  position: relative;
  z-index: 3;
}

/* Header text */

.svp-form-section .svp-section-header {
  width: 100%;
  max-width: 962px;
  margin: 0 auto 40px;
  text-align: center;
}

.svp-form-section .svp-section-header h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
}

.svp-form-section .svp-section-header p {
  margin: 0;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.svp-form-dots {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 40px);
  gap: 28px;
  pointer-events: none;
}

.svp-form-dots span {
  display: block;
  width: 40px;
  height: 40px;
  background: #ff1047;
  border-radius: 50%;
  opacity: 0.32;
}

.svp-form-dots--left {
  left: 34px;
  top: 120px;
}

.svp-form-dots--right {
  right: 34px;
  top: 170px;
}

.svp-form-dots--right span {
  opacity: 0.26;
}

.svp-form-box {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  width: 100%;
  margin: 0 auto;
  padding: 44px 56px;
  background: rgba(23, 23, 23, 0.92);
  border: 1px solid #3d3d3d;
  border-radius: 12px;
  box-shadow: 0 0 45px rgba(191, 21, 61, 0.46);
}

.svp-form-logo {
  width: 350px;
  height: auto;
  margin-bottom: 26px;
}

.svp-form-info h3,
.svp-hubspot-form-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
}

.svp-hubspot-form-card h3 {
  text-align: center;
}

.svp-form-info > p {
  margin: 0 0 36px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.svp-form-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.svp-form-benefit {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-items: start;
}

.svp-form-benefit-icon {
  width: 42px;
  height: 42px;
}

.svp-form-benefit h4 {
  margin: 0 0 6px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 29px;
}

.svp-form-benefit p {
  margin: 0;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.svp-hubspot-form-card {
  text-align: left;
}

.svp-hubspot-form {
  width: 100%;
  min-height: 360px;
  text-align: left;
}

.svp-hubspot-form .hs-form {
  width: 100%;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  text-align: left;
}

.svp-hubspot-form fieldset {
  max-width: 100%;
  margin: 0 0 12px;
  padding: 0;
  border: 0;
}

.svp-hubspot-form .form-columns-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.svp-hubspot-form .form-columns-1 {
  display: block;
}

.svp-hubspot-form .hs-form-field {
  width: 100%;
  margin: 0 0 12px;
}

.svp-hubspot-form .hs-form-field > label,
.svp-hubspot-form .hs-form-field label:not(.hs-form-booleancheckbox-display) {
  display: block;
  margin: 0 0 6px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  text-align: left;
}

.svp-hubspot-form .hs-input {
  width: 100%;
  min-height: 43px;
  padding: 10px 14px;
  background: #f4f5fb;
  border: 1px solid #cecccc;
  border-radius: 5px;
  color: #121519;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  outline: none;
}

.svp-hubspot-form .hs-input:focus {
  border-color: #f6ae17;
  box-shadow: 0 0 0 2px rgba(246, 174, 23, 0.20);
}

.svp-hubspot-form .legal-consent-container {
  margin-top: 12px;
  text-align: left;
}

.svp-hubspot-form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.svp-hubspot-form .hs-form-booleancheckbox {
  margin: 0 0 12px;
}

.svp-hubspot-form .hs-form-booleancheckbox-display {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: flex-start;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  text-align: left;
}

.svp-hubspot-form .hs-form-booleancheckbox-display input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #f6ae17;
}

.svp-hubspot-form .hs-form-booleancheckbox-display span,
.svp-hubspot-form .hs-form-booleancheckbox-display p {
  margin: 0;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  text-align: left;
}

.svp-hubspot-form .hs-form-required {
  color: #ff1047;
  margin-left: 3px;
}

.svp-hubspot-form .hs-richtext,
.svp-hubspot-form .hs-richtext p {
  margin: 10px 0 0;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  text-align: left;
}

.svp-hubspot-form .hs-richtext a,
.svp-hubspot-form .legal-consent-container a {
  color: #ff1047;
  text-decoration: underline;
}

.svp-hubspot-form .hs-error-msgs {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.svp-hubspot-form .hs-error-msgs label {
  display: block;
  color: #ff1047;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  text-align: left;
}

.svp-hubspot-form .hs_submit {
  margin-top: 16px;
  text-align: center;
}

.svp-hubspot-form .actions {
  margin: 0;
  padding: 0;
  text-align: center;
}

.svp-hubspot-form .hs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 34px;
  background: #f6ae17;
  border: 0;
  border-radius: 5px;
  color: #121519;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.svp-hubspot-form .svp-legal-hidden-content {
  display: none;
  margin-top: 12px;
}

.svp-hubspot-form .svp-legal-hidden-content.is-open {
  display: block;
}

.svp-hubspot-form .svp-legal-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 12px auto 0;
  padding: 0;
  background: transparent;
  border: 0;
  color: #ff1047;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
  text-decoration: underline;
}

.svp-hubspot-form .svp-legal-hidden-content,
.svp-hubspot-form .svp-legal-hidden-content p,
.svp-hubspot-form .svp-legal-hidden-content span {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  text-align: left;
}

.svp-hubspot-form .svp-legal-hidden-content a {
  color: #ff1047;
  text-decoration: underline;
}

@media (max-width: 992px) {
  .svp-form-bg-image {
    background-size: cover;
    background-position: center;
  }

  .svp-form-box {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .svp-form-section .svp-section-header h2 {
    font-size: 24px;
    line-height: 29px;
  }

  .svp-form-section .svp-section-header p {
    font-size: 16px;
    line-height: 22px;
  }

  .svp-form-info h3,
  .svp-hubspot-form-card h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .svp-form-info > p,
  .svp-form-benefit h4 {
    font-size: 16px;
    line-height: 22px;
  }

  .svp-form-benefit p {
    font-size: 14px;
    line-height: 20px;
  }

  .svp-hubspot-form .form-columns-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .svp-hubspot-form .hs-form-field > label,
  .svp-hubspot-form .hs-form-field label:not(.hs-form-booleancheckbox-display),
  .svp-hubspot-form .hs-form-booleancheckbox-display,
  .svp-hubspot-form .hs-form-booleancheckbox-display span,
  .svp-hubspot-form .hs-form-booleancheckbox-display p,
  .svp-hubspot-form .hs-richtext,
  .svp-hubspot-form .hs-richtext p,
  .svp-hubspot-form .svp-legal-toggle,
  .svp-hubspot-form .svp-legal-hidden-content,
  .svp-hubspot-form .svp-legal-hidden-content p,
  .svp-hubspot-form .svp-legal-hidden-content span {
    font-size: 12px;
    line-height: 17px;
  }
}

@media (max-width: 576px) {
  .svp-form-bg-image {
    background-size: cover;
    background-position: center;
  }

  .svp-form-section .svp-section-header {
    margin-bottom: 34px;
  }

  .svp-form-box {
    padding: 20px;
  }

  .svp-form-logo {
    width: 100%;
    max-width: 300px;
  }

  .svp-hubspot-form .svp-legal-toggle {
    margin-top: 10px;
  }
}
.svp-form-bottom-info {
  width: 100%;
  margin-top: 40px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 26px;
}

.svp-form-bottom-info p {
  margin: 0;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 26px;
}

.svp-form-bottom-info strong {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 26px;
}

.svp-form-bottom-info a {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 26px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 992px) {
  .svp-form-bottom-info {
    margin-top: 32px;
    font-size: 12px;
    line-height: 17px;
  }

  .svp-form-bottom-info p,
  .svp-form-bottom-info strong,
  .svp-form-bottom-info a {
    font-size: 12px;
    line-height: 17px;
  }
}

@media (max-width: 576px) {
  .svp-form-bottom-info {
    margin-top: 28px;
  }
}
/* =========================================================
   FORM FIXES - HUBSPOT FORM WIDTHS + CHECKBOX TEXT
   ========================================================= */

.svp-hubspot-form .hs-form fieldset {
  max-width: 100%;
  width: 100%;
}

.svp-hubspot-form .hs-form .form-columns-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  max-width: 100%;
}

.svp-hubspot-form .hs-form .form-columns-2 .hs-form-field {
  width: 100%;
  max-width: 100%;
  float: none;
}

.svp-hubspot-form .hs-form .form-columns-2 .input,
.svp-hubspot-form .hs-form .form-columns-1 .input {
  margin-right: 0;
  width: 100%;
}

.svp-hubspot-form .hs-form .form-columns-2 input.hs-input,
.svp-hubspot-form .hs-form .form-columns-1 input.hs-input,
.svp-hubspot-form .hs-form input.hs-input {
  width: 100%;
  max-width: 100%;
  min-height: 43px;
}

.svp-hubspot-form .hs-form-field > label,
.svp-hubspot-form .hs-form-field label:not(.hs-form-booleancheckbox-display) {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.svp-hubspot-form .legal-consent-container {
  margin-top: 24px;
  text-align: left;
}

.svp-hubspot-form .legal-consent-container .inputs-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.svp-hubspot-form .hs-form-booleancheckbox {
  margin: 0;
}

.svp-hubspot-form .hs-form-booleancheckbox-display {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  column-gap: 10px;
  row-gap: 0;
  align-items: start;
  width: 100%;
  margin: 0;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}

.svp-hubspot-form .hs-form-booleancheckbox-display input[type="checkbox"] {
  grid-column: 1;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: #f6ae17;
}

.svp-hubspot-form .hs-form-booleancheckbox-display > span {
  grid-column: 2;
  display: block;
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}

.svp-hubspot-form .hs-form-booleancheckbox-display > span p,
.svp-hubspot-form .hs-form-booleancheckbox-display p {
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}

.svp-hubspot-form .legal-consent-container label,
.svp-hubspot-form .legal-consent-container span,
.svp-hubspot-form .legal-consent-container p {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.svp-hubspot-form .hs-error-msgs label {
  font-size: 13px;
  line-height: 18px;
}

.svp-hubspot-form .svp-legal-toggle {
  font-size: 14px;
  line-height: 20px;
}

.svp-hubspot-form .svp-legal-hidden-content,
.svp-hubspot-form .svp-legal-hidden-content p,
.svp-hubspot-form .svp-legal-hidden-content span {
  font-size: 14px;
  line-height: 20px;
}

@media (max-width: 992px) {
  .svp-hubspot-form .hs-form .form-columns-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .svp-hubspot-form .hs-form-field > label,
  .svp-hubspot-form .hs-form-field label:not(.hs-form-booleancheckbox-display),
  .svp-hubspot-form .hs-form-booleancheckbox-display,
  .svp-hubspot-form .hs-form-booleancheckbox-display > span,
  .svp-hubspot-form .hs-form-booleancheckbox-display > span p,
  .svp-hubspot-form .hs-form-booleancheckbox-display p,
  .svp-hubspot-form .legal-consent-container label,
  .svp-hubspot-form .legal-consent-container span,
  .svp-hubspot-form .legal-consent-container p,
  .svp-hubspot-form .svp-legal-toggle,
  .svp-hubspot-form .svp-legal-hidden-content,
  .svp-hubspot-form .svp-legal-hidden-content p,
  .svp-hubspot-form .svp-legal-hidden-content span {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 576px) {
  .svp-hubspot-form .legal-consent-container .inputs-list {
    gap: 16px;
  }

  .svp-hubspot-form .hs-form-booleancheckbox-display {
    grid-template-columns: 18px minmax(0, 1fr);
    column-gap: 10px;
  }
}

/* =========================================================
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;250;300;400;500;600;700&display=swap');

/* =========================================================
   07. GUESTS / PODCAST CARDS SECTION
   ========================================================= */

.svp-guests-section {
  padding-bottom: 80px;
}

.svp-section-header--guests {
  width: 100%;
  max-width: 962px;
  margin: 0 auto 50px;
  text-align: center;
}

.svp-section-header--guests h2 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
}

/* Tabs */

.svp-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.svp-tab {
  min-height: 39px;
  padding: 7px 40px;
  background: rgba(67, 67, 67, 0.28);
  border: 1px solid #414141;
  border-radius: 1480px;
  color: #575757;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}

.svp-tab.is-active {
  background: rgba(252, 198, 49, 0.10);
  border-color: rgba(252, 198, 49, 0.40);
  color: #fcc631;
}

/* Tab panels */

.svp-tab-panel {
  display: none;
}

.svp-tab-panel.is-active {
  display: block;
}

/* Grid wrapper */

.svp-podcast-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  margin: 0 auto;
}

/* HubSpot Rich Text fallback */

.svp-tab-panel.is-active > .hs_cos_wrapper_type_rich_text,
.svp-tab-panel.is-active > .hs_cos_wrapper,
.svp-guests-section .hs_cos_wrapper_type_rich_text {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

/* Podcast card */

.svp-podcast-card {
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 16px;
  overflow: hidden;
  background: rgba(15, 15, 15, 0.82);
  border: 1px solid #363636;
  border-radius: 16px;
  text-align: center;
  transform: translateY(0);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.svp-podcast-card:hover {
  transform: translateY(-8px);
  border-color: rgba(252, 198, 49, 0.50);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.38);
}

/* Main card image - full bleed */

.svp-podcast-card > img {
  width: calc(100% + 32px);
  max-width: none;
  height: auto;
  aspect-ratio: 16 / 9;
  margin: -16px -16px 22px;
  object-fit: contain;
  object-position: center;
  background: #000000;
  border-radius: 16px 16px 0 0;
  display: block;
  flex-shrink: 0;
}

/* Text */

.svp-podcast-card h3 {
  min-height: 30px;
  margin: 0 0 6px;
  color: #fcc631;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
}

.svp-company {
  min-height: 44px;
  margin: 0 0 14px;
  color: #b1b1b1;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
}

.svp-podcast-card p:not(.svp-company) {
  min-height: 72px;
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
}

/* Buttons */

.svp-card-button {
  display: inline-flex;
  width: 100%;
  max-width: 260px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: center;
  margin-top: auto;
  padding: 11px 22px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, filter 180ms ease;
}

.svp-card-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.svp-card-button--locked {
  background: #ff1047;
  color: #000000;
}

.svp-card-button--youtube {
  background: #f6ae17;
  color: #000000;
}

/* Small icon inside button */

.svp-card-button img.btn-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  max-width: 24px;
  min-height: 24px;
  max-height: 24px;
  margin: 0;
  object-fit: contain;
  border-radius: 0;
  display: inline-block;
  flex: 0 0 24px;
}

/* Tablet */

@media (max-width: 992px) {
  .svp-section-header--guests h2 {
    font-size: 24px;
    line-height: 29px;
  }

  .svp-podcast-grid,
  .svp-tab-panel.is-active > .hs_cos_wrapper_type_rich_text,
  .svp-tab-panel.is-active > .hs_cos_wrapper,
  .svp-guests-section .hs_cos_wrapper_type_rich_text {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .svp-tabs {
    flex-wrap: wrap;
  }

  .svp-tab {
    font-size: 14px;
    line-height: 20px;
  }

  .svp-podcast-card {
    min-height: 420px;
  }

  .svp-podcast-card > img {
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
  }
}

/* Mobile */

@media (max-width: 576px) {
  .svp-guests-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .svp-section-header--guests {
    margin-bottom: 34px;
  }

  .svp-tabs {
    gap: 12px;
  }

  .svp-tab {
    width: 100%;
    padding: 8px 18px;
  }

  .svp-podcast-grid,
  .svp-tab-panel.is-active > .hs_cos_wrapper_type_rich_text,
  .svp-tab-panel.is-active > .hs_cos_wrapper,
  .svp-guests-section .hs_cos_wrapper_type_rich_text {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .svp-podcast-card {
    min-height: auto;
    padding: 16px;
    border-radius: 16px;
  }

  .svp-podcast-card > img {
    width: calc(100% + 32px);
    max-width: none;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: -16px -16px 18px;
    object-fit: contain;
    object-position: center;
    background: #000000;
    border-radius: 16px 16px 0 0;
  }

  .svp-podcast-card h3 {
    min-height: auto;
    font-size: 22px;
    line-height: 28px;
  }

  .svp-company {
    min-height: auto;
    font-size: 14px;
    line-height: 21px;
  }

  .svp-podcast-card p:not(.svp-company) {
    min-height: auto;
    font-size: 18px;
    line-height: 22px;
  }

  .svp-card-button {
    width: 100%;
    max-width: 240px;
    min-height: 44px;
    font-size: 14px;
  }
}

/* =========================================================
   08. SUMMIT INFO SECTION
   ========================================================= */

.svp-summit-section {
  padding-top: 0;
  padding-bottom: 0;
}

.svp-summit-box {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: var(--svp-summit-bg);
  background-size: cover;
  background-position: center;
}

.svp-summit-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #000000 0%,
    rgba(0, 0, 0, 0.78) 2%,
    rgba(0, 0, 0, 0.38) 5%,
    rgba(0, 0, 0, 0) 10%
  );
  pointer-events: none;
}

.svp-summit-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding-top: 70px;
  padding-bottom: 70px;
  text-align: center;
}

.svp-summit-content h2 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
}

.svp-summit-content p {
  max-width: 650px;
  margin: 0 auto 40px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
}

.svp-summit-content strong {
  font-weight: 700;
}

.svp-summit-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.svp-summit-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}

.svp-summit-stat strong {
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
}

.svp-summit-stat-line {
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 2px;
  margin-bottom: 2px;
  background: #ff1047;
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(255, 16, 71, 0.65);
}

.svp-summit-stat span:not(.svp-summit-stat-line) {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
}

@media (max-width: 992px) {
  .svp-summit-content h2 {
    font-size: 24px;
    line-height: 29px;
  }

  .svp-summit-content p {
    font-size: 16px;
    line-height: 22px;
  }

  .svp-summit-stats {
    gap: 20px;
  }

  .svp-summit-stat strong {
    font-size: 24px;
    line-height: 29px;
  }

  .svp-summit-stat span:not(.svp-summit-stat-line) {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 576px) {
  .svp-summit-stats {
    grid-template-columns: 1fr;
  }
}