:root {
  --color-primary: #0A0A0A;
  --color-secondary: #FFD700;
  --color-accent: #E6007E;
  --color-bg: #0D0D11;
  --color-surface: #1A1A24;
  --color-text-main: #FFFFFF;
  --color-text-muted: #B3B3B3;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Arial', 'Helvetica', sans-serif;
  --space-padding: clamp(2.5rem, 5vw, 6rem);
}

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

body {
  background-color: var(--color-bg);
  color: var(--color-text-main);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.85rem, 4.5vw, 3.25rem);
  margin-bottom: 1.5rem;
}

.text-accent {
  color: var(--color-accent);
}

.text-secondary {
  color: var(--color-secondary);
}

p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

section {
  padding: var(--space-padding) 1rem;
  position: relative;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
}

.btn {
  position: relative;
  z-index: 100;
  pointer-events: auto;
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-text-main);
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(230, 0, 126, 0.4);
}

.btn:hover {
  box-shadow: 0 0 30px rgba(230, 0, 126, 0.8);
  transform: translateY(-3px);
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.logo img {
  height: 70px;
  width: auto;
}

.nav-links {
  display: none;
  /* Mobile first, hidden on small screens */
}

.nav-links a.active {
  color: var(--color-accent) !important;
  text-shadow: 0 0 15px rgba(230, 0, 126, 0.75);
}

.lang-switch {
  display: flex;
  gap: 10px;
}

.lang-switch a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: bold;
}

.lang-switch a.active {
  color: var(--color-secondary);
}

/* Mobile Hamburger Toggle */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--color-text-main);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 5px;
  z-index: 101;
}

@media (max-width: 767px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: rgba(10, 10, 14, 0.98);
    backdrop-filter: blur(15px);
    padding: 80px 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.8);
    list-style: none;
    z-index: 100;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: var(--color-text-main);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: var(--font-heading);
    text-transform: uppercase;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links a:active,
  .nav-links a:hover {
    color: var(--color-accent);
  }
}

/* Hero Section */
#hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
  background: radial-gradient(circle at center, rgba(230, 0, 126, 0.1) 0%, rgba(13, 13, 17, 1) 70%);
}

.hero-with-video {
  position: relative;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 13, 17, 0.85) 0%, rgba(13, 13, 17, 0.65) 50%, rgba(230, 0, 126, 0.35) 100%);
  backdrop-filter: blur(2px);
}

/* Animated yellow text */
@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.2);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.9), 0 0 40px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.4);
    transform: scale(1.05);
  }
  100% {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.2);
    transform: scale(1);
  }
}

.hero-event-types {
  margin-top: 1.5rem;
  max-width: 880px;
  margin-inline: auto;
}

.hero-subtitle {
  color: var(--color-secondary);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.35);
  padding: 0.45rem 1.1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.tag:hover {
  background: linear-gradient(135deg, #E6007E 0%, #FFB800 100%);
  border-color: transparent;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 15px rgba(230, 0, 126, 0.4);
}

.pulse-glow {
  color: var(--color-secondary);
  animation: pulseGlow 2.5s infinite ease-in-out;
  font-weight: 800;
}

/* Intro Split Layout & Full Photo on Right */
.intro-split-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: stretch;
}

.intro-left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-right-content {
  display: flex;
}

.intro-photo-wrapper-full {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(230, 0, 126, 0.3);
  border: 2px solid rgba(255, 215, 0, 0.35);
  width: 100%;
  min-height: 100%;
  display: flex;
}

.intro-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.intro-photo-wrapper-full:hover .intro-photo {
  transform: scale(1.05);
}

/* What is Included Top Banner Photo & 3-Column Grid */
.included-top-photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 350px;
  margin: 1rem auto 1.5rem auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.2);
  border: 2px solid rgba(230, 0, 126, 0.4);
}

.included-top-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transition: transform 0.5s ease;
}

.included-top-photo-wrapper:hover .included-top-photo {
  transform: scale(1.05);
}

.handwritten-grid-3 {
  list-style: none;
  padding: 0;
  margin: 1rem auto 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1100px;
}

.handwritten-grid-3 li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px dashed rgba(255, 215, 0, 0.35);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  text-align: left;
}

.handwritten-grid-3 li:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--color-secondary);
  box-shadow: 0 6px 15px rgba(230, 0, 126, 0.2);
}

.handwritten-check {
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6));
}

.handwritten-text {
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 600;
  color: #FFF9D2;
  letter-spacing: 0.3px;
  line-height: 1.35;
}

/* Services / Features Grid 2 Columns (Compact) */
.features-grid-2,
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--color-surface);
  padding: 1rem 1.15rem;
  border-radius: 16px;
  border-bottom: 2px solid var(--color-accent);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(230, 0, 126, 0.25);
  border-bottom-color: var(--color-secondary);
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(230, 0, 126, 0.2) 0%, rgba(255, 215, 0, 0.15) 100%);
  border: 1px solid rgba(230, 0, 126, 0.4);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(230, 0, 126, 0.2);
}

.card-text h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.2;
}

.card-text p {
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.4;
  color: var(--color-text-muted);
}

/* Icon micro-animations */
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(230, 0, 126, 0.2); }
  50% { transform: scale(1.08); box-shadow: 0 0 18px rgba(255, 215, 0, 0.5); }
}

@keyframes iconWobble {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

.anim-float { animation: iconFloat 3s infinite ease-in-out; }
.anim-pulse { animation: iconPulse 2.5s infinite ease-in-out; }
.anim-wobble { animation: iconWobble 4s infinite ease-in-out; }

/* How it works Split Layout & Dynamic Zigzag Steps */
.how-it-works-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.steps-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.step-card-dynamic {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 215, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  position: relative;
  text-align: left;
}

.step-card-dynamic:nth-child(odd) {
  margin-right: 2.5rem;
  margin-left: 0;
}

.step-card-dynamic:nth-child(even) {
  margin-left: 2.5rem;
  margin-right: 0;
}

.step-card-dynamic:hover {
  transform: scale(1.03) !important;
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--color-secondary);
  box-shadow: 0 8px 25px rgba(230, 0, 126, 0.3);
  z-index: 2;
}

.step-number-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E6007E 0%, #FFB800 100%);
  color: #FFFFFF;
  font-weight: 900;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(230, 0, 126, 0.4), 0 0 10px rgba(255, 215, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.step-content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.2;
}

.step-content p {
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.4;
  color: var(--color-text-muted);
}

.how-it-works-video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(230, 0, 126, 0.25);
  border: 2px solid rgba(255, 215, 0, 0.35);
  height: 440px;
  max-height: 460px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-it-works-video {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
}

.video-caption {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
  text-align: center;
  letter-spacing: 0.3px;
}

/* Logos */
.logos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.logos-container img {
  height: 60px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.3s;
}

.logos-container img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Footer */
footer {
  background-color: var(--color-primary);
  padding: 4rem 1rem 2rem;
  text-align: center;
}

footer .btn {
  margin-bottom: 2rem;
}

/* 3D Rotating Cylinder Scene Styles */
.carousel-3d-scene {
  perspective: 2000px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 5;
}

.carousel-3d-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.carousel-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background-color: rgba(13, 13, 17, 0.88);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 110px;
  padding-bottom: 70px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.carousel-panel.active-panel {
  pointer-events: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 100 !important;
}

/* Hide scrollbars across all panels and specifically on what-is-included */
.carousel-panel::-webkit-scrollbar,
#what-is-included::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

#what-is-included {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

/* Ambient Floating Glow Lights (Fuchsia & Orange) on every section */
.carousel-panel::before,
.carousel-panel::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(85px);
  opacity: 0.45;
  transition: all 1s ease;
}

/* Fuchsia Light Orb */
.carousel-panel::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #E6007E 0%, rgba(230, 0, 126, 0.4) 50%, transparent 75%);
  top: 15%;
  left: 8%;
  animation: floatLightFuchsia 13s ease-in-out infinite alternate;
}

/* Orange/Gold Light Orb */
.carousel-panel::after {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, #FF8C00 0%, rgba(255, 184, 0, 0.4) 50%, transparent 75%);
  bottom: 12%;
  right: 10%;
  animation: floatLightOrange 15s ease-in-out infinite alternate;
}

@keyframes floatLightFuchsia {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.35;
  }
  33% {
    transform: translate(32vw, 18vh) scale(1.2);
    opacity: 0.55;
  }
  66% {
    transform: translate(-5vw, 35vh) scale(0.9);
    opacity: 0.4;
  }
  100% {
    transform: translate(25vw, -10vh) scale(1.15);
    opacity: 0.5;
  }
}

@keyframes floatLightOrange {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.35;
  }
  33% {
    transform: translate(-28vw, -22vh) scale(1.25);
    opacity: 0.52;
  }
  66% {
    transform: translate(12vw, -8vh) scale(0.85);
    opacity: 0.42;
  }
  100% {
    transform: translate(-18vw, 18vh) scale(1.1);
    opacity: 0.55;
  }
}

/* Bulletproof safe area for panels with rich content */
.carousel-panel.safe-panel {
  justify-content: flex-start !important;
  padding-top: 115px !important;
  padding-bottom: 80px !important;
}

.carousel-panel>.container {
  margin-top: auto;
  margin-bottom: auto;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 20px;
}

/* FAQ Section Background & Layout */
.faq-with-bg {
  overflow: hidden;
}

.faq-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.faq-bg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
}

.faq-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 5, 20, 0.88) 0%, rgba(20, 10, 30, 0.93) 100%);
  backdrop-filter: blur(3px);
}

.faq-split-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.faq-question-mark-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.faq-logo-blanco {
  max-width: 270px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 10px 25px rgba(230, 0, 126, 0.5)) drop-shadow(0 0 40px rgba(255, 215, 0, 0.35));
  animation: faqWobble 4s infinite ease-in-out;
  user-select: none;
}

@keyframes faqWobble {
  0%, 100% {
    transform: rotate(0deg) translateY(0);
  }
  25% {
    transform: rotate(-10deg) translateY(-8px) scale(1.03);
  }
  50% {
    transform: rotate(0deg) translateY(0) scale(1);
  }
  75% {
    transform: rotate(10deg) translateY(-8px) scale(1.03);
  }
}

.faq-item-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.faq-item-card:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-secondary);
  box-shadow: 0 4px 20px rgba(230, 0, 126, 0.25);
}

.faq-item-card h3 {
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.faq-item-card p {
  color: var(--color-text-main);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

#contact-section {
  text-align: center;
}

/* Contact Section & Confetti Background */
.contact-with-bg {
  overflow: hidden;
  background-color: var(--color-bg) !important;
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.confeti-bg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  opacity: 0.95;
}

/* Contact Section Video Preview Banner */
.contact-top-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 750px;
  height: 260px;
  margin: 0 auto 1.5rem auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(230, 0, 126, 0.35);
  border: 2px solid rgba(255, 215, 0, 0.5);
  cursor: pointer;
}

.contact-top-video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.contact-top-video-wrapper:hover .contact-top-video-preview {
  transform: scale(1.04);
}

.video-preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 17, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.contact-top-video-wrapper:hover .video-preview-overlay {
  background: rgba(13, 13, 17, 0.25);
}

.play-btn-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E6007E 0%, #FF8C00 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(230, 0, 126, 0.8), 0 0 15px rgba(255, 140, 0, 0.6);
  margin-bottom: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-top-video-wrapper:hover .play-btn-circle {
  transform: scale(1.15);
  box-shadow: 0 0 35px rgba(230, 0, 126, 1), 0 0 25px rgba(255, 140, 0, 0.8);
}

.play-btn-text {
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  letter-spacing: 0.5px;
}

/* Fullscreen Video Promo Modal */
.custom-video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-video-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 10, 0.92);
  backdrop-filter: blur(8px);
}

.custom-video-modal-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 950px;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(230, 0, 126, 0.5), 0 0 30px rgba(255, 215, 0, 0.3);
  border: 2px solid rgba(255, 215, 0, 0.5);
  display: flex;
}

.custom-video-modal-content video {
  width: 100%;
  max-height: 80vh;
  display: block;
}

.custom-video-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  background: rgba(230, 0, 126, 0.85);
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease, background 0.2s ease;
}

.custom-video-modal-close:hover {
  background: #E6007E;
  transform: scale(1.15);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 950px;
  margin: 2rem auto 2.5rem auto;
}

.contact-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.contact-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--color-secondary);
  box-shadow: 0 10px 25px rgba(230, 0, 126, 0.25);
}

.contact-icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E6007E 0%, #FFB800 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(230, 0, 126, 0.4);
}

.contact-box-text h3, .contact-box-text h4 {
  color: var(--color-secondary);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.contact-box-text p, .contact-box-text a {
  color: var(--color-text-main);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
  text-decoration: none;
}

.contact-box-text a:hover {
  color: var(--color-secondary);
}

/* Global Web Footer Bar */
.web-footer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(10, 8, 15, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 215, 0, 0.25);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
  z-index: 100;
}

.pixju-link {
  color: var(--color-secondary);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.pixju-link:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}
/* --- RESPONSIVE STYLES --- */
/* Desktop/Tablet Scaling */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  
  .nav-links {
    display: flex !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    flex-direction: row !important;
    gap: 2rem;
    list-style: none;
  }
  
  .nav-links a {
    color: var(--color-text-main);
    text-decoration: none;
    font-weight: bold;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: var(--color-accent);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .step-card {
    margin-bottom: 0;
  }
}

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

/* Comprehensive Mobile & Tablet Layout (< 1024px) */
@media (max-width: 1023px) {
  header {
    padding: 0.6rem 1rem !important;
  }

  .logo img {
    height: 52px !important;
  }

  .web-footer-bar {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    padding: 1.25rem 1rem !important;
  }

  .carousel-3d-scene {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
    perspective: none !important;
  }

  .carousel-3d-container {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    transform: none !important;
    transform-style: flat !important;
  }

  .carousel-panel {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    padding: 5.5rem 1.2rem 4rem 1.2rem !important;
    scroll-margin-top: 105px !important;
    border: none !important;
    display: block !important;
  }

  #hero-section {
    padding-top: 135px !important;
    padding-bottom: 4rem !important;
    min-height: calc(100vh - 5px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  .intro-split-layout,
  .included-split-layout,
  .how-it-works-layout,
  .faq-split-layout,
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-logo-blanco {
    max-width: 180px !important;
  }

  .faq-question-mark-container {
    padding: 0.5rem 0;
  }

  .contact-top-video-wrapper {
    height: 200px !important;
    margin-bottom: 1.25rem !important;
  }

  .play-btn-circle {
    width: 52px !important;
    height: 52px !important;
  }

  .play-btn-text {
    font-size: 0.95rem !important;
  }

  .step-card-dynamic:nth-child(odd) {
    margin-right: 1.2rem !important;
    margin-left: 0 !important;
  }
  
  .step-card-dynamic:nth-child(even) {
    margin-left: 1.2rem !important;
    margin-right: 0 !important;
  }

  .how-it-works-video-wrapper {
    height: 320px;
    max-height: 340px;
  }

  .intro-photo-wrapper-full,
  .included-photo-wrapper {
    max-height: 350px;
    margin: 1.5rem auto 0 auto;
    max-width: 100%;
    min-height: 250px;
  }

  .included-top-photo-wrapper {
    height: 250px;
    margin: 1rem auto;
  }

  .handwritten-grid-3 {
    grid-template-columns: 1fr !important;
    gap: 0.8rem !important;
  }

  .handwritten-grid-3 li {
    padding: 0.6rem 0.8rem !important;
    min-height: auto !important;
  }

  .handwritten-text {
    font-size: 0.8rem !important;
  }

  h1 {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
  }
  h2 {
    font-size: 1.7rem !important;
    margin-bottom: 1.2rem !important;
  }
  h3 {
    font-size: 1.25rem !important;
  }
  .container {
    padding: 0 1.2rem !important;
  }
  .features-grid-2,
  .features-grid {
    grid-template-columns: 1fr !important;
  }
  .step-card, .feature-card {
    padding: 1rem !important;
    margin-bottom: 0.8rem !important;
  }
  /* Improve spacing for FAQ items on mobile */
  #faq-section div > div {
    margin-bottom: 1.2rem !important;
  }
  /* Prevent horizontal scrolling from long text */
  p, a, li, span {
    word-break: break-word;
  }
  /* Make sure buttons are easy to tap on mobile */
  .btn {
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
    width: 100%;
    text-align: center;
    max-width: 300px;
    display: inline-block;
  }
  .hero-tags {
    gap: 0.45rem !important;
  }
  .tag {
    padding: 0.35rem 0.8rem !important;
    font-size: 0.8rem !important;
  }
  .hero-subtitle {
    font-size: 0.95rem !important;
  }
}
