/* ===========================================
   FXP LANDING ESSENTIALS STYLESHEET
   BRAND: FXP 2026
   CSS Variables + Compiled Styles (Commented)
   =========================================== */

/* ===========================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   =========================================== */

:root {
  /* Color Palette */
  --black: #000000;
  --white: #FFFFFF;
  --grey: #BFBFBF;
  --primary: #1b0338;
  --secondary-1: #ba225b;
  --secondary-2: #a42172;
  --secondary-3: #d046e6;
  --complementary-1: #BFBFBF;
  --complementary-2: #BFBFBF;
  --complementary-3: #BFBFBF;
  --complementary-4: #BFBFBF;
  --complementary-5: #BFBFBF;
  --complementary-6: #BFBFBF;
  --complementary-7: #BFBFBF;

  /* Typography System */
  --font-primary: "Raleway", sans-serif;
  --font-secondary: "Raleway", sans-serif;
  --font-weight-light: 200;
  --font-weight-normal: 300;
  --font-weight-regular: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;

  /* Spacing Scale */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 2.5rem;
  --spacing-xxl: 3rem;

  /* Border Radius System */
  --radius-sm: 2px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 50%;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;

  /* Transition System */
  --transition-fast: 0.15s;
  --transition-normal: 0.3s;
  --transition-slow: 0.5s;

  /* Z-Index System */
  --z-background: -1;
  --z-base: 1;
  --z-header: 100;
  --z-overlay: 1000;
  --z-modal: 2000;
}

/* ===========================================
   COMPILED CSS STYLES
   Using CSS Variables for Easy Customization
   =========================================== */

/* ===========================================
   BASE STYLES
   =========================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: var(--font-secondary);
  color: var(--white);
}

/* ===========================================
   BACKGROUND EFFECTS
   =========================================== */

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-background);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
  opacity: 1;
  transition: opacity var(--transition-normal) ease;
}

.background.bg-image-1 {
  background-image: url("https://image.digital.fxp.mx/lib/fe3711747364057d751074/m/1/aa62033d-a02f-4131-a9c1-842d6c0c3656.jpg");
}

.background.bg-image-2 {
  background-image: url("https://image.digital.fxp.mx/lib/fe3711747364057d751074/m/1/35fa1ddf-f49a-423d-a1f2-8a76590167ad.jpg");
}

.background.bg-image-3 {
  background-image: url("https://image.digital.fxp.mx/lib/fe3711747364057d751074/m/1/5b7f83da-fff8-4e06-aa86-d9aa262f4da5.jpg");
}

.background-radial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--secondary-3) 0%, var(--secondary-2) 25%, var(--secondary-1) 60%, var(--primary) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ===========================================
   LAYOUT COMPONENTS
   =========================================== */

.root {
  background: transparent;
  position: relative;
  z-index: var(--z-base);
  min-height: 100vh;
}

.glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: var(--z-base);
}

.content {
  position: relative;
  z-index: var(--z-base);
  padding: var(--spacing-lg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ===========================================
   TYPOGRAPHY
   =========================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h3 {
  font-size: clamp(0.9rem, 2.4vw, 1.5rem);
}

p,
span,
a,
button,
input,
textarea,
select,
label {
  font-family: var(--font-secondary);
}

.banner-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--white);
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.headline {
  font-family: var(--font-primary);
  font-size: clamp(37.8px, 8.55vw, 68.4px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--secondary-1);
  margin-bottom: 0.3rem;
}

.headline .white {
  color: var(--white);
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--secondary-1);
  margin: 1.6rem auto;
}

.subheadline {
  font-size: 28.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.access-tag {
  margin-top: 1.6rem;
  display: inline-block;
  border: 0.5px solid rgba(200, 16, 46, 0.6);
  padding: 10.5px 33px;
  font-family: var(--font-primary);
  font-size: 18px;
  letter-spacing: 0.3em;
  color: var(--secondary-1);
  background: rgba(200, 16, 46, 0.06);
}

/* ===========================================
   HEADER COMPONENTS
   =========================================== */

.navbar {
  background-color: transparent;
  padding: 0.5rem 0;
  position: relative;
  z-index: var(--z-header);
}

.logo {
  max-width: 100%;
  height: auto;
  opacity: 1;
  transform: scale(1.2);
  transition: opacity var(--transition-normal) ease;
}

.logo:hover {
  opacity: 0.8;
}

/* ===========================================
   LOGO IMAGES
   =========================================== */

.logo-header-light {
  content: url("img/logos-mg.png");
  max-height: 40px;
  width: auto;
  display: block;
}

.logo-header-dark {
  content: url("https://image.digital.fxp.mx/lib/fe3711747364057d751074/m/1/5853fe3c-ecaf-4db1-8881-95f0ad018528.png");
  max-height: 40px;
  width: auto;
  display: block;
}

.logo-header-sponsor {
  content: url("https://image.digital.fxp.mx/lib/fe3711747364057d751074/m/1/46ca314d-6d4f-458a-82da-4b6a07906cfc.png");
  max-height: 40px;
  width: auto;
  display: block;
  margin-left: auto;
  opacity: 0.9;
  transition: opacity var(--transition-normal) ease;
}

.logo-header-sponsor:hover {
  opacity: 1;
}

.logo-footer-light {
  content: url("https://image.digital.fxp.mx/lib/fe3711747364057d751074/m/1/cea1a4df-2da9-4445-b675-e3378cc818d2.png");
  max-width: 169px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo-footer-light {
    margin: 0 auto;
  }
}

.logo-footer-dark {
  content: url("https://image.digital.fxp.mx/lib/fe3711747364057d751074/m/1/5853fe3c-ecaf-4db1-8881-95f0ad018528.png");
  max-width: 169px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo-footer-dark {
    margin: 0 auto;
  }
}

.by-fxp-light {
  content: url("https://image.digital.fxp.mx/lib/fe3711747364057d751074/m/1/a5b711f0-3015-428c-89c0-1f7216530205.png");
  max-width: 250px;
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.8;
  transform: scale(0.8);
  filter: brightness(0) invert(1);
  transition: opacity var(--transition-normal) ease;
}

.by-fxp-light:hover {
  opacity: 1;
}

.by-fxp-dark {
  content: url("https://image.digital.fxp.mx/lib/fe3711747364057d751074/m/1/598cc42a-c0ac-4cee-b365-73124fa03fe5.png");
  max-width: 250px;
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.8;
  transform: scale(0.8);
  transition: opacity var(--transition-normal) ease;
}

.by-fxp-dark:hover {
  opacity: 1;
}

/* ===========================================
   HERO BANNER COMPONENTS
   =========================================== */

.hero-banner {
  padding: var(--spacing-xxl) 0;
  position: relative;
  z-index: var(--z-base);
}

.hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-normal) ease;
}

.hero-image:hover {
  transform: scale(1.02);
}

/* ===========================================
   FORM COMPONENTS
   =========================================== */

.form-wrap {
  width: 100%;
  margin-top: var(--spacing-xl);
  background: rgba(0, 0, 0, 0.25);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-top: 2px solid var(--secondary-1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg) var(--spacing-lg) 1.8rem;
}

.rj-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 24px;
  padding: 12px;
  outline: none;
  transition: border-color var(--transition-normal);
  border-radius: var(--radius-md);
}

.rj-input:focus {
  border-color: var(--secondary-1);
}

.card {
  transition: border-color var(--transition-normal);
}

.card:has(input[type="radio"]:checked),
.card:has(input[type="checkbox"]:checked) {
  border-color: var(--secondary-1);
  border-width: 2px;
}

.form-title {
  font-family: var(--font-primary);
  font-size: 25.5px;
  letter-spacing: 0.2em;
  color: var(--secondary-1);
  margin-bottom: var(--spacing-md);
  text-align: left;
}

.rj-field {
  margin-bottom: 1.1rem;
  text-align: left;
}

.rj-label {
  display: block;
  color: var(--white);
  font-size: 18px;
  margin-bottom: 0.5rem;
  font-weight: var(--font-weight-semibold);
}

.rj-input option {
  background: var(--primary);
  color: var(--white);
}

.rj-input::placeholder {
  color: #ffffff;
}

.rj-checkbox {
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 2px solid var(--white);
  border-radius: 3px;
  cursor: pointer;
  margin-right: 12px;
  transition: all var(--transition-normal);
}

.rj-checkbox:checked {
  background-color: var(--secondary-1);
  border-color: var(--secondary-1);
}

.rj-checkbox:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(200, 16, 46, 0.3);
}

.checkbox-label {
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
}

.form-check-input:checked {
  background-color: var(--secondary-1);
  border-color: var(--secondary-1);
}

.form-check-input:focus {
  border-color: var(--secondary-1);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(200, 16, 46, 0.25);
}

.form-check-label {
  color: var(--white);
  font-size: 14px;
  line-height: 1.8;
}

.form-check-label a {
  color: var(--secondary-1);
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

.swipe-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 20px 0;
}

.cards-stack {
  position: relative;
  width: 100%;
  min-height: 500px;
  margin: 0 auto;
}

.swipe-card {
  position: absolute;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: grab;
  user-select: none;
  transition: all var(--transition-normal);
}

.swipe-card.active {
  z-index: 10;
}

.swipe-card.swiped {
  display: none;
}

.swipe-card:active {
  cursor: grabbing;
}

.swipe-card img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

.card-counter {
  font-weight: var(--font-weight-semibold);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.selected-items-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.selected-items-list .item-entry {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.selected-items-list .item-entry:hover {
  border-color: var(--secondary-1);
  box-shadow: 0 2px 8px rgba(0, 201, 67, 0.1);
}

.selected-items-list .item-entry .item-number {
  font-weight: var(--font-weight-bold);
  color: var(--secondary-1);
  margin-right: 12px;
  font-size: 1.1rem;
}

.selected-items-list .item-entry .item-name {
  color: var(--black);
  font-weight: 500;
}

.sortable-container {
  list-style: none;
  padding: 0;
}

.sortable-item {
  cursor: move;
  transition: all var(--transition-normal);
  user-select: none;
}

.sortable-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sortable-item.dragging {
  opacity: 0.5;
  transform: scale(1.02);
}

.sortable-item.drag-over {
  border-top: 3px solid var(--secondary-1);
}

.drag-handle {
  cursor: grab;
  color: var(--grey);
}

.drag-handle:active {
  cursor: grabbing;
}

.item-number {
  font-size: 1.25rem;
  min-width: 35px;
}

/* ===========================================
   BUTTON COMPONENTS
   =========================================== */

.fxp-btn-1 {
  width: auto;
  min-width: 200px;
  max-width: 280px;
  margin-top: 0;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--white);
  border: 1px solid transparent;
  font-family: var(--font-primary);
  font-size: 16px;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: var(--radius-lg);
}

.fxp-btn-1:hover {
  color: var(--white);
  border-color: var(--primary);
  background: color-mix(in srgb, var(--primary) 95%, black);
}

.fxp-btn-1:active {
  transform: scale(0.99);
}

.fxp-btn-2 {
  width: auto;
  min-width: 200px;
  max-width: 280px;
  margin-top: 0;
  padding: 12px 24px;
  background: var(--secondary-1);
  color: var(--white);
  border: 1px solid transparent;
  font-family: var(--font-primary);
  font-size: 16px;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: var(--radius-lg);
}

.fxp-btn-2:hover {
  color: var(--white);
  border-color: var(--secondary-1);
  background: color-mix(in srgb, var(--secondary-1) 95%, black);
}

.fxp-btn-2:active {
  transform: scale(0.99);
}

.fxp-btn-3 {
  width: auto;
  min-width: 200px;
  max-width: 280px;
  margin-top: 0;
  padding: 12px 24px;
  background: var(--secondary-2);
  color: var(--white);
  border: 1px solid transparent;
  font-family: var(--font-primary);
  font-size: 16px;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: var(--radius-lg);
}

.fxp-btn-3:hover {
  border-color: var(--secondary-2);
  background: color-mix(in srgb, var(--secondary-2) 95%, black);
}

.fxp-btn-3:active {
  transform: scale(0.99);
}

.share-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: var(--font-weight-semibold);
  padding: 12px 24px;
  border: 2px solid var(--secondary-1);
  border-radius: var(--radius-lg);
  background: rgba(0, 157, 199, 0.1);
  transition: all var(--transition-normal) ease;
}

.share-link:hover {
  background: var(--secondary-1);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 157, 199, 0.3);
}

.share-link i {
  font-size: 1.1rem;
}

/* ===========================================
   MULTISTEP FORM COMPONENTS
   =========================================== */

.progress-container {
  margin-bottom: var(--spacing-lg);
}

.progress {
  height: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar {
  background: var(--secondary-1);
  transition: width var(--transition-normal) ease;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  position: relative;
}

.step {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-weight: var(--font-weight-semibold);
  font-size: 14px;
  transition: all var(--transition-normal) ease;
  position: relative;
  z-index: 2;
}

.step.active {
  background: var(--secondary-1);
  border-color: var(--secondary-1);
  color: var(--white);
}

.step.completed {
  background: var(--secondary-1);
  border-color: var(--secondary-1);
  color: var(--white);
}

.form-step {
  display: none;
  animation: fadeIn 0.5s ease;
}

.form-step.active {
  display: block;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.card {
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card:has(input:checked) {
  border-color: var(--primary);
  background-color: rgba(0, 40, 86, 0.05);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.welcome-step {
  text-align: center;
}

.welcome-banner {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.form-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.6;
}

.voting-step {
  text-align: center;
}

.step-image {
  max-width: 250px;
  height: auto;
  margin: 0 auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.step-question {
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-lg);
}

.card-option {
  position: relative;
  margin-bottom: 1rem;
}

.card-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.card-label {
  display: block;
  cursor: pointer;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--transition-normal) ease;
  height: 100%;
}

.card-label:hover {
  border-color: var(--secondary-1);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 157, 199, 0.3);
}

.card-input:checked+.card-label {
  border: 3px solid var(--secondary-1);
  background: var(--primary);
  box-shadow: 0 12px 32px rgba(37, 86, 152, 0.4), 0 6px 16px rgba(15, 35, 70, 0.3);
  animation: shinyEffect 3s ease-in-out infinite;
  overflow: hidden;
  position: relative;
}

.card-input:checked+.card-label::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: -35%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
  animation: shinyMove 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 10;
}

.card-input:checked+.card-label .card-content {
  position: relative;
  z-index: 1;
}

.card-content {
  padding: var(--spacing-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.card-content h5 {
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.5rem;
}

.card-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 14px;
}

.option-image {
  width: 100%;
  height: 150px;
  object-fit: contain;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.option-video {
  width: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.step-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--spacing-lg);
  gap: 1rem;
}

.step-navigation .btn {
  min-width: 120px;
  border-radius: var(--radius-md);
}

@keyframes shinyEffect {

  0%,
  100% {
    box-shadow: 0 12px 32px rgba(37, 86, 152, 0.4), 0 6px 16px rgba(15, 35, 70, 0.3), 0 0 20px rgba(37, 86, 152, 0.2);
  }

  50% {
    box-shadow: 0 12px 32px rgba(37, 86, 152, 0.5), 0 6px 16px rgba(15, 35, 70, 0.4), 0 0 30px rgba(37, 86, 152, 0.4);
  }
}

@keyframes shinyMove {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(150%) translateY(100%) rotate(45deg);
  }
}

@media (max-width: 768px) {
  .step-question {
    font-size: 20px;
  }

  .card-content {
    padding: 1rem;
  }

  .option-image {
    height: 120px;
  }

  .step-navigation {
    flex-direction: column;
    gap: 1rem;
  }

  .step-navigation .btn {
    width: 100%;
  }
}


/* ===========================================
   MODAL COMPONENTS
   =========================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal) ease, visibility var(--transition-normal) ease;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.modal-content {
  background: var(--complementary-3);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  max-width: 500px;
  width: 90%;
  border: 2px solid var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  border-radius: var(--radius-full);
  z-index: 10;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.modal-close-btn svg {
  width: 24px;
  height: 24px;
}

.modal-title {
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
}

.modal-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.email-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 16px;
  outline: none;
  transition: border-color var(--transition-normal) ease;
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
  border-color: var(--secondary-1);
}

.modal-submit-btn {
  background: var(--secondary-1);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 24px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: all var(--transition-normal) ease;
}

.modal-submit-btn:hover {
  background: var(--secondary-1);
  transform: translateY(-2px);
}

.success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: var(--spacing-lg);
  text-align: center;
}

.success-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary-1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-step {
  text-align: center;
}

.thank-you-image {
  max-width: 400px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

/* ===========================================
   PERCENTAGE GRAPH COMPONENT
   =========================================== */

.percentage-graph {
  margin: 0 auto;
}

.graph-bar-item .graph-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.graph-bar-item .graph-bar-container {
  height: 40px;
  width: 100%;
}

.graph-bar-item .graph-bar-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--grey);
  border-radius: 20px;
}

.graph-bar-item .graph-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--secondary-1);
  border-radius: 20px;
  transition: width var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
}

.graph-bar-item .graph-percentage {
  color: var(--white);
  font-weight: var(--font-weight-bold);
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ===========================================
   BANNER SLIDER COMPONENT
   =========================================== */

.banner-slider {
  width: 100%;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform var(--transition-slow) ease-in-out;
}

.slider-item {
  min-width: 100%;
  display: none;
}

.slider-item.active {
  display: block;
}

.slider-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: var(--radius-full);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
  color: var(--black);
}

.slider-arrow:hover {
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.slider-arrow.slider-arrow-prev {
  left: 20px;
}

.slider-arrow.slider-arrow-next {
  right: 20px;
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
}

.slider-markers {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-marker {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.slider-marker:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.slider-marker.active {
  background: var(--white);
  transform: scale(1.2);
}

/* ===========================================
   FAQ ACCORDION COMPONENT
   =========================================== */

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-fast);
}

.faq-question:hover {
  filter: brightness(0.9);
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-icon {
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform var(--transition-normal);
}

.faq-answer {
  background-color: var(--white);
  color: var(--black);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease;
}

.faq-answer.active {
  max-height: 500px;
}

.faq-answer p {
  padding: 20px 24px;
  margin: 0;
  line-height: 1.6;
}

/* ===========================================
   UTILITY CLASSES - COLOR & BACKGROUND
   =========================================== */

.bg-black {
  background-color: var(--black) !important;
}

.bg-white {
  background-color: var(--white) !important;
}

.bg-grey {
  background-color: var(--grey) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary-1 {
  background-color: var(--secondary-1) !important;
}

.bg-secondary-2 {
  background-color: var(--secondary-2) !important;
}

.bg-secondary-3 {
  background-color: var(--secondary-3) !important;
}

.color-black {
  color: var(--black) !important;
}

.color-white {
  color: var(--white) !important;
}

.color-grey {
  color: var(--grey) !important;
}

.color-primary {
  color: var(--primary) !important;
}

.color-secondary-1 {
  color: var(--secondary-1) !important;
}

.color-secondary-2 {
  color: var(--secondary-2) !important;
}

.color-secondary-3 {
  color: var(--secondary-3) !important;
}

.noPadding {
  padding: 0 !important;
}

.text-end {
  text-align: end;
}

.text-center {
  text-align: center;
}

/* ===========================================
   FOOTER COMPONENTS
   =========================================== */

.footer {
  padding: var(--spacing-xxl) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: var(--z-overlay);
}

.social {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.social li a {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal) ease;
  text-decoration: none;
}

.social li a:hover {
  background: var(--secondary-1);
  transform: translateY(-2px);
}

.social li a span {
  display: block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer-logo {
  max-width: 200px;
  opacity: 0.6;
  transition: opacity var(--transition-normal) ease;
}

.footer-logo:hover {
  opacity: 1;
}

.small-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  margin-top: var(--spacing-xxl);
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 0.12em;
}

.social-facebook-light span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
}

.social-instagram-light span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640' fill='%23fff'%3E%3Cpath d='M320.3 205C256.8 204.8 205.2 256.2 205 319.7C204.8 383.2 256.2 434.8 319.7 435C383.2 435.2 434.8 383.8 435 320.3C435.2 256.8 383.8 205.2 320.3 205zM319.7 245.4C360.9 245.2 394.4 278.5 394.6 319.7C394.8 360.9 361.5 394.4 320.3 394.6C279.1 394.8 245.6 361.5 245.4 320.3C245.2 279.1 278.5 245.6 319.7 245.4zM413.1 200.3C413.1 185.5 425.1 173.5 439.9 173.5C454.7 173.5 466.7 185.5 466.7 200.3C466.7 215.1 454.7 227.1 439.9 227.1C425.1 227.1 413.1 215.1 413.1 200.3zM542.8 227.5C541.1 191.6 532.9 159.8 506.6 133.6C480.4 107.4 448.6 99.2 412.7 97.4C375.7 95.3 264.8 95.3 227.8 97.4C192 99.1 160.2 107.3 133.9 133.5C107.6 159.7 99.5 191.5 97.7 227.4C95.6 264.4 95.6 375.3 97.7 412.3C99.4 448.2 107.6 480 133.9 506.2C160.2 532.4 191.9 540.6 227.8 542.4C264.8 544.5 375.7 544.5 412.7 542.4C448.6 540.7 480.4 532.5 506.6 506.2C532.8 480 541 448.2 542.8 412.3C544.9 375.3 544.9 264.5 542.8 227.5zM495 452C487.2 471.6 472.1 486.7 452.4 494.6C422.9 506.3 352.9 503.6 320.3 503.6C287.7 503.6 217.6 506.2 188.2 494.6C168.6 486.8 153.5 471.7 145.6 452C133.9 422.5 136.6 352.5 136.6 319.9C136.6 287.3 134 217.2 145.6 187.8C153.4 168.2 168.5 153.1 188.2 145.2C217.7 133.5 287.7 136.2 320.3 136.2C352.9 136.2 423 133.6 452.4 145.2C472 153 487.1 168.1 495 187.8C506.7 217.3 504 287.3 504 319.9C504 352.5 506.7 422.6 495 452z'/%3E%3C/svg%3E");
  background-size: 32px auto !important;
}

.social-youtube-light span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/%3E%3C/svg%3E");
}

.social-x-twitter-light span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
}

.social-tiktok-light span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M15 2h3.5v3.32c1 .8 2.3 1.3 3.5 1.34v4a9.23 9.23 0 0 1-3.5-.77v6.83c0 3.92-3.18 7.18-7.1 7.18s-7.1-3.26-7.1-7.18c0-3.25 2.3-6 5.3-6.7v4.15a2 2 0 0 0-1.4-.57 2.16 2.16 0 0 0-2.17 2.17 3.24 3.24 0 0 0 3.23 3.24 3.24 3.24 0 0 0 3.24-3.24V2H15z'/%3E%3C/svg%3E");
}

.social-facebook-dark span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
}

.social-instagram-dark span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640' fill='%23000'%3E%3Cpath d='M320.3 205C256.8 204.8 205.2 256.2 205 319.7C204.8 383.2 256.2 434.8 319.7 435C383.2 435.2 434.8 383.8 435 320.3C435.2 256.8 383.8 205.2 320.3 205zM319.7 245.4C360.9 245.2 394.4 278.5 394.6 319.7C394.8 360.9 361.5 394.4 320.3 394.6C279.1 394.8 245.6 361.5 245.4 320.3C245.2 279.1 278.5 245.6 319.7 245.4zM413.1 200.3C413.1 185.5 425.1 173.5 439.9 173.5C454.7 173.5 466.7 185.5 466.7 200.3C466.7 215.1 454.7 227.1 439.9 227.1C425.1 227.1 413.1 215.1 413.1 200.3zM542.8 227.5C541.1 191.6 532.9 159.8 506.6 133.6C480.4 107.4 448.6 99.2 412.7 97.4C375.7 95.3 264.8 95.3 227.8 97.4C192 99.1 160.2 107.3 133.9 133.5C107.6 159.7 99.5 191.5 97.7 227.4C95.6 264.4 95.6 375.3 97.7 412.3C99.4 448.2 107.6 480 133.9 506.2C160.2 532.4 191.9 540.6 227.8 542.4C264.8 544.5 375.7 544.5 412.7 542.4C448.6 540.7 480.4 532.5 506.6 506.2C532.8 480 541 448.2 542.8 412.3C544.9 375.3 544.9 264.5 542.8 227.5zM495 452C487.2 471.6 472.1 486.7 452.4 494.6C422.9 506.3 352.9 503.6 320.3 503.6C287.7 503.6 217.6 506.2 188.2 494.6C168.6 486.8 153.5 471.7 145.6 452C133.9 422.5 136.6 352.5 136.6 319.9C136.6 287.3 134 217.2 145.6 187.8C153.4 168.2 168.5 153.1 188.2 145.2C217.7 133.5 287.7 136.2 320.3 136.2C352.9 136.2 423 133.6 452.4 145.2C472 153 487.1 168.1 495 187.8C506.7 217.3 504 287.3 504 319.9C504 352.5 506.7 422.6 495 452z'/%3E%3C/svg%3E");
  background-size: 32px auto !important;
}

.social-youtube-dark span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/%3E%3C/svg%3E");
}

.social-x-twitter-dark span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
}

.social-tiktok-dark span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M15 2h3.5v3.32c1 .8 2.3 1.3 3.5 1.34v4a9.23 9.23 0 0 1-3.5-.77v6.83c0 3.92-3.18 7.18-7.1 7.18s-7.1-3.26-7.1-7.18c0-3.25 2.3-6 5.3-6.7v4.15a2 2 0 0 0-1.4-.57 2.16 2.16 0 0 0-2.17 2.17 3.24 3.24 0 0 0 3.23 3.24 3.24 3.24 0 0 0 3.24-3.24V2H15z'/%3E%3C/svg%3E");
}


/* ===========================================
   PREFERENCES COMPONENTS
   =========================================== */

/* Custom Switch Styles */
.switch-container {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 12px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  margin-right: 12px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 26px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked+.slider {
  background-color: var(--secondary-1);
}

input:checked+.slider:before {
  transform: translateX(24px);
}

.switch-label {
  color: #000000;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
  line-height: 1.5;
  flex: 1;
}

/* ===========================================
   QUIZ CARD STYLES
   =========================================== */

.quiz-card-wrapper {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.quiz-card-wrapper:hover {
  transform: translateY(-2px);
}

.quiz-card-wrapper .card {
  transition: all 0.3s ease;
}

.quiz-card-wrapper:hover .card {
  box-shadow: 0 4px 12px rgba(0, 157, 199, 0.3);
}

.quiz-card-wrapper input[type="radio"]:checked ~ .card {
  border: 2px solid var(--secondary-1);
  background-color: rgba(0, 157, 199, 0.1);
}

/* ===========================================
   FORM LABEL STYLING
   =========================================== */

.form-label {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-regular);
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: var(--spacing-xs);
  display: block;
}

/* ===========================================
   RANGE SLIDER STYLING
   =========================================== */

.form-range {
  height: 0.5rem;
}

.form-range::-webkit-slider-thumb {
  background-color: var(--secondary-1);
  border: 2px solid var(--secondary-1);
  width: 1.5rem;
  height: 1.5rem;
}

.form-range::-webkit-slider-thumb:hover {
  background-color: var(--secondary-1);
  transform: scale(1.1);
}

.form-range::-moz-range-thumb {
  background-color: var(--secondary-1);
  border: 2px solid var(--secondary-1);
  width: 1.5rem;
  height: 1.5rem;
}

.form-range::-moz-range-thumb:hover {
  background-color: var(--secondary-1);
  transform: scale(1.1);
}

.form-range::-webkit-slider-runnable-track {
  background-color: var(--grey);
  height: 0.5rem;
  border-radius: 0.25rem;
}

.form-range::-moz-range-track {
  background-color: var(--grey);
  height: 0.5rem;
  border-radius: 0.25rem;
}

/* ===========================================
   END OF BRAND-01 STYLESHEET
   =========================================== */