:root {
  --bg-color: #000000;
  --accent-color: #ff6a00;
  --accent-glow: rgba(255, 106, 0, 0.5);
  --text-main: #ffffff;
  --text-muted: #a1a1aa;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Glowing Cursor Halo */
#cursor-halo {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.08) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s ease, height 0.3s ease;
}

/* Repeated Background Text Layer */
.bg-text-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

/* Soft floating animation for the background text */
@keyframes driftBg {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

.bg-text-base,
.bg-text-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 120vw;
  height: 140vh;
  font-size: 13vw;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  word-wrap: break-word;
  white-space: pre-wrap;
  text-align: justify;
  animation: driftBg 30s ease-in-out infinite;
}

.bg-text-base {
  color: transparent;
  -webkit-text-stroke: 1px rgba(100, 100, 100, 0.2);
  filter: blur(3px);
  transition: filter 0.8s ease;
}

.bg-text-glow {
  background: linear-gradient(135deg, #ff6a00 0%, #ffc163 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(255, 106, 0, 0.4);
  /* Use CSS mask variable --x and --y updated by JS */
  -webkit-mask-image: radial-gradient(circle 400px at var(--x, -1000px) var(--y, -1000px), black 10%, transparent 80%);
  mask-image: radial-gradient(circle 400px at var(--x, -1000px) var(--y, -1000px), black 10%, transparent 80%);
  transition: -webkit-mask-image 0.1s ease-out;
}

/* Background Canvas */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 4rem;
  /* Slightly reduced for tighter stickiness */
  background: rgba(0, 0, 0, 0.5);
  /* Glassmorphism background */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  animation: fadeInDown 1.2s ease-out forwards;
  transition: transform 0.4s ease, opacity 0.4s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  /* Clean partition */
}

.header.hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo img {
  height: 35px;
  width: auto;
}

.header-logo span {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  white-space: nowrap;
}

.nav-center {
  display: flex;
  gap: 2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-right {
  display: flex;
  align-items: center;
}

.nav-btn {
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.pill-btn {
  background: var(--accent-color) !important;
  color: #000 !important;
  border-radius: 50px !important;
  font-weight: 800 !important;
  padding: 0.75rem 2rem !important;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.4);
  border: none !important;
}

.pill-btn:hover {
  background: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.primary-btn {
  background: rgba(255, 106, 0, 0.15);
  border-color: var(--accent-color);
  color: var(--accent-color);
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.2);
}

.primary-btn:hover {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 0 30px var(--accent-glow);
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  pointer-events: none;
  width: 100%;
  height: 100vh;
  padding-top: 100px;
  padding-bottom: 80px;
  box-sizing: border-box;
}

/* Logo & Hotspots */
.logo-wrapper {
  perspective: 1000px;
  pointer-events: auto;
}

.logo-container {
  position: relative;
  width: 850px;
  height: 45vh;
  max-width: 90vw;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform-style: preserve-3d;
}

/* Animated subtle float for the logo to appear alive */
@keyframes floatLogo {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.glow-orb {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.15) 0%, transparent 60%);
  filter: blur(50px);
  z-index: 1;
  border-radius: 50%;
  animation: pulseGlow 4s infinite alternate;
}

.hero-logo {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 35px rgba(255, 106, 0, 0.5));
  animation: floatLogo 6s ease-in-out infinite;
}

/* Horizontal Benefits Bar */
.hero-benefits {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 1rem;
  z-index: 5;
  pointer-events: auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  cursor: pointer;
}

.benefit-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color);
  position: relative;
}

.benefit-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.benefit-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s ease;
}

.benefit-tooltip {
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translateX(-50%) translateY(10px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  width: 240px;
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.25rem;
  border-radius: 12px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  text-align: center;
  color: #e0e0e0;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.benefit-item:hover .benefit-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.benefit-item:hover .benefit-title {
  color: var(--accent-color);
}

/* Typography section */
.text-content {
  text-align: center;
  z-index: 2;
  animation: fadeUpText 1.2s ease-out 0.8s forwards;
  opacity: 1;
  /* Set to 1 as default to avoid invisibility if animation fails */
  pointer-events: auto;
  margin-bottom: 40px;
}

.main-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #a3a3a3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.sub-headline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  font-weight: 400;
  max-width: 650px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

.hero-cta-wrapper {
  margin-top: 30px;
  text-align: center;
}

.hero-cta-btn {
  padding: 15px 40px !important;
  font-size: 1.2rem !important;
  text-decoration: none;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: #fff;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 1.1rem 3.5rem;
  border-radius: 50px;
  box-shadow: 0 0 25px var(--accent-glow), inset 0 2px 2px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s, transform 0.3s;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px var(--accent-glow), inset 0 2px 2px rgba(255, 255, 255, 0.3);
}

.cta-button:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

@media (min-width: 769px) {
  .scroll-indicator {
    position: relative;
    bottom: auto;
    margin-top: 80px;
    /* Increased margin to sit well below the CTA button */
    padding-bottom: 40px;
  }
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #fff, transparent);
  animation: scrollLineAnim 2s infinite;
}

@keyframes scrollLineAnim {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }

  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 1;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

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

@keyframes fadeUpText {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulseGlow {
  from {
    opacity: 0.5;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes ping {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}

/* Sticky Scroll Narrative Engine */
.narrative-section {
  position: relative;
  width: 100%;
  height: 300vh;
  /* Scroll Depth */
  background: #000;
  z-index: 5;
}

.narrative-sticky-container {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Base Asset Layers */
.narrative-asset {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease, filter 0.8s ease;
  will-change: opacity, filter;
  z-index: 10;
  pointer-events: none;
}

.narrative-asset.active-layer {
  opacity: 1;
}

.narrative-asset.dimmed-layer {
  opacity: 0.3;
  filter: blur(5px);
}

.narrative-asset.semi-dimmed-layer {
  opacity: 0.7;
  /* 70% visibility for the final chef background */
  filter: blur(2px);
}

.narrative-asset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#asset-phase-1 img,
#asset-phase-3 img {
  object-fit: cover;
  /* Ensures filling the frame dynamically */
}

/* Specific Parallax handling for Phase 3 */
#parallax-chef {
  will-change: transform;
}

.floating-video-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45vw;
  /* Much larger and impactful */
  min-width: 400px;
  max-width: 800px;
  z-index: 15;
}

.narrative-video {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9), 0 0 50px rgba(255, 106, 0, 0.2);
  object-fit: cover;
}

/* Text Overlays */
.narrative-text-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  pointer-events: none;
}

.narrative-text-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 800px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.text-stage-1,
.text-stage-2 {
  /* Aligned absolutely centered vertically against the full 100vh viewport */
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.text-stage-1.active-text,
.text-stage-2.active-text {
  opacity: 1;
  /* Restored visibility */
  transform: translateY(-50%);
}

.text-stage-1.hidden-state,
.text-stage-2.hidden-state {
  opacity: 0;
  transform: translateY(calc(-50% + 40px));
}

.text-stage-1 {
  max-width: 500px;
}

.text-stage-2 {
  max-width: 600px;
  z-index: 25;
  /* Ensures it sits above centered video cleanly */
}

.text-stage-3 {
  /* Center horizontally and vertically */
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  text-align: center;
}

.text-stage-3.active-text {
  opacity: 1;
  /* Restored visibility */
  transform: translate(-50%, -50%);
}

.text-stage-3.hidden-state {
  opacity: 0;
  transform: translate(-50%, calc(-50% + 40px));
}

/* Typography specifics */
.n-headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 6vh, 4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.n-body {
  font-size: clamp(1rem, 2.5vh, 1.3rem);
  line-height: 1.2;
  color: #ddd;
}

.n-highlight {
  color: var(--accent-color);
  font-weight: 700;
}

.n-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.n-list li {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 2.5vh, 1.3rem);
  font-weight: 500;
  line-height: 1.2;
  color: #eeeeee;
  margin-bottom: 0.75rem;
  /* Compressed vertically for readability */
  padding-left: 2rem;
  position: relative;
}

.n-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 10px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.n-promise-wrapper {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 3rem 5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9);
}

.n-promise {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 6vh, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  background: linear-gradient(135deg, #ffffff 0%, #ffc163 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

/* Responsive tweaks */
@media (max-width: 900px) {

  .text-stage-1,
  .text-stage-2 {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
  }

  .floating-video-wrapper {
    top: 5%;
    right: 50%;
    transform: translateX(50%);
    width: 80%;
  }

  .n-promise {
    font-size: 2rem;
  }

  .n-promise-wrapper {
    padding: 2rem;
  }
}

/* Content Sections */
.features-section {
  padding: 8rem 4rem;
  position: relative;
  z-index: 2;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.features-left .section-title {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  line-height: 1.15;
  background: linear-gradient(135deg, #ffffff 0%, #a3a3a3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.features-list li {
  font-size: 1.15rem;
  color: var(--text-muted);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  line-height: 1.6;
}

.features-list .icon {
  color: var(--accent-color);
  font-size: 1.5rem;
  line-height: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 106, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 50px rgba(255, 106, 0, 0.1);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover .stat-value {
  text-shadow: 0 0 20px rgba(255, 106, 0, 0.5);
  transform: scale(1.05);
}

.stat-value {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.stat-label {
  font-size: 1.05rem;
  color: #aaa;
  font-weight: 500;
}

.cta-section {
  padding: 8rem 4rem 10rem;
  text-align: center;
  position: relative;
  z-index: 2;
  background: radial-gradient(circle at top, rgba(255, 106, 0, 0.08), #000 60%);
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.cta-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
}

.primary-btn-glow {
  display: inline-block;
  background-color: var(--accent-color);
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 800;
  padding: 1.25rem 4rem;
  border-radius: 50px;
  box-shadow: 0 0 30px var(--accent-glow), inset 0 2px 2px rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.primary-btn-glow:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 50px var(--accent-glow), inset 0 2px 2px rgba(255, 255, 255, 0.3);
}

/* Scroll Animation Classes */
.fade-on-scroll {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(60px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-on-scroll.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}



/* Lead Capture Section */
.lead-capture-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2vh 2vw;
  box-sizing: border-box;
  z-index: 2;
  background-color: var(--bg-color);
}

.lead-container {
  width: 100%;
  height: 100%;
  max-height: 95vh;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(20, 20, 20, 0.4);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.lead-left {
  padding: clamp(1.5rem, 3vh, 4rem);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--glass-border);
}

.lead-title {
  font-size: clamp(2rem, 4vh, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: clamp(0.5rem, 1vh, 1rem);
}

.lead-subtitle {
  font-size: clamp(1rem, 2vh, 1.25rem);
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: clamp(0.5rem, 1.5vh, 1.5rem);
}

.lead-body {
  font-size: clamp(0.85rem, 1.5vh, 1.05rem);
  color: #ddd;
  line-height: 1.6;
}

.lead-body .hashtag {
  font-weight: 800;
  color: #fff;
}

.lead-right {
  padding: clamp(1.5rem, 3vh, 4rem);
  background: rgba(25, 25, 25, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1.5vh, 1.5rem);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.5rem, 1.5vh, 1.5rem);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-group label {
  font-size: clamp(0.75rem, 1.2vh, 0.9rem);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: clamp(0.5rem, 1.25vh, 1rem) 1.25rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: clamp(0.85rem, 1.5vh, 1rem);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 15px rgba(255, 106, 0, 0.2);
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.submit-btn {
  border: none;
  cursor: pointer;
  margin-top: clamp(0.25rem, 1vh, 1rem);
}

/* Interactive Corkboard Collage Sequence */
.collage-section {
  position: relative;
  width: 100%;
  min-height: 120vh;
  background: #f9f9f9;
  padding: 4rem 2rem 0rem 2rem;
  /* Compact vertical flow: Removed bottom padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.collage-header {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  /* Exact 10px limit as requested */
  padding-bottom: 5px;
  /* Pull the orange border up to the text tightly */
  text-align: center;
  text-shadow: none;
  border-bottom: 2px solid rgba(255, 106, 0, 0.4);
  /* subtle orange accent border */
  z-index: 10;
}

.collage-workspace {
  position: relative;
  width: 100%;
  max-width: 1400px;
  min-height: 800px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 4rem;
  z-index: 5;
}

/* Cluster Stack */
.collage-cluster {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  perspective: 1000px;
  gap: 0;
  padding: 1rem 0;
  /* Crushed the 4rem excess padding to seal the gap underneath title */
}

.cutout {
  position: relative;
  width: 380px;
  background: #fdfaf6;
  padding: 15px 15px 30px 15px;
  cursor: pointer;
  transform: rotate(var(--rotation)) scale(0.95);
  margin: -10px -25px;
  /* Tight overlapping margin structure */
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: var(--step);
}

/* Base states for stacking order */
.cutout[data-step="1"] {
  z-index: 10;
  margin-left: 0;
  margin-top: 5px;
}

.cutout[data-step="2"] {
  z-index: 20;
  margin-top: 25px;
}

.cutout[data-step="3"] {
  z-index: 30;
  margin-top: -10px;
}

.cutout[data-step="4"] {
  z-index: 40;
  margin-top: 15px;
}

.cutout[data-step="5"] {
  z-index: 50;
  margin-top: -15px;
}

.cutout-img-wrapper {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.8);
  border-radius: 4px;
}

.cutout-img-wrapper img {
  display: block;
  /* Prevent baseline spacing */
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.2) saturate(0.9) contrast(1.1);
  transition: all 0.5s ease;
}

.cutout-title {
  margin-top: 15px;
  font-family: inherit;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  color: #1a1a1a;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  padding-bottom: 5px;
}

/* Floating Sequence Badges */
.step-badge {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 35px;
  height: 35px;
  background-color: var(--accent-color);
  color: #fff;
  border: 1.5px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  z-index: 9999 !important;
  /* Force high z-index inside its stacking context */
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cutout:hover .step-badge,
.cutout.active .step-badge {
  transform: scale(1.2);
}

/* Hover Engine Overrides */
.cutout:hover,
.cutout.active {
  z-index: 50 !important;
  transform: rotate(0deg) scale(1.05);
  /* Reduced hover scale for larger overlapping elements */
  box-shadow: 0 40px 60px rgba(0, 0, 0, 0.3);
}

.cutout.active .cutout-img-wrapper img {
  filter: sepia(0) saturate(1.1) contrast(1.05);
}

/* Side Description Binding Frame */
.collage-blurb-container {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.blurb-paper {
  background: #fdfaf6;
  padding: 3rem;
  border-radius: 2px 8px 4px 5px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  transform: rotate(2deg);
  border-left: 5px solid #ff6a00;
  filter: sepia(0.1);
  transition: all 0.4s ease;
  opacity: 1;
}

.blurb-paper.updating {
  opacity: 0;
  transform: rotate(-2deg) scale(0.95);
}

#blurb-header {
  font-family: 'Times New Roman', serif;
  font-size: 2rem;
  font-weight: 900;
  color: #8c3f00;
  /* deep copper/brown */
  margin-bottom: 1rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  padding-bottom: 1rem;
}

#blurb-text {
  font-size: 1.2rem;
  color: #222;
  line-height: 1.8;
  font-weight: 500;
}

/* Fix intl-tel-input full width break and Add Dark Mode Styling */
.iti {
  width: 100%;
}

.iti__country-list {
  background-color: rgba(25, 25, 25, 0.98) !important;
  color: #fff !important;
  border: 1px solid var(--glass-border) !important;
  backdrop-filter: blur(10px);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8) !important;
}

.iti__country-name,
.iti__dial-code {
  color: #e0e0e0 !important;
}

.iti__country:hover,
.iti__country.iti__highlight {
  background-color: rgba(255, 106, 0, 0.2) !important;
  color: #fff !important;
}

.iti__country {
  padding: 10px 15px !important;
  transition: background 0.2s ease;
}

.iti__flag {
  background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags.png");
}

@media (min-resolution: 2x) {
  .iti__flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags@2x.png");
  }
}

/* Final Logo Footer Section */
.final-logo-section {
  background: var(--bg-color);
  padding: 8rem 2rem 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 106, 0, 0.1);
  overflow: hidden;
}

.logo-animation-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 500px;
  height: 250px;
  cursor: pointer;
}

.hidden-bg-text {
  position: absolute;
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.08);
  /* faint transparent */
  z-index: 1;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

/* Final Logo Clean Divider */
.final-logo-section {
  padding: 1rem 0;
  /* Crushed padding to bind sections tighter */
  text-align: center;
  background: #000;
}

.final-text-divider {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: 15px;
  color: rgba(255, 255, 255, 0.05);
  /* very faint */
  text-transform: uppercase;
  cursor: default;
}

/* Testimonials Section */
.testimonials-section {
  padding: 1rem 2rem 6rem 2rem;
  /* Sliced top padding to eliminate dead air */
  background: linear-gradient(180deg, #000000 0%, #050505 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.5s ease-in-out;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.t-stars {
  color: var(--accent-color);
  font-size: 2rem;
  letter-spacing: 5px;
  margin-bottom: 1rem;
}

.t-headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  width: 100%;
}

.testimonial-card {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 106, 0, 0.15);
  padding: 3rem;
  border-radius: 20px;
  transition: all 0.4s ease;
  cursor: default;
}

.testimonial-card:hover {
  border-color: rgba(255, 106, 0, 0.3);
  box-shadow: 0 10px 40px rgba(255, 106, 0, 0.05);
  transform: translateY(-5px);
}

.t-text {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 2rem;
  font-style: italic;
}

/* Micro logo author layout */
.t-footer {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: auto;
}

.t-logo svg {
  width: 45px;
  height: 45px;
  color: rgba(255, 255, 255, 0.15);
  transition: color 0.4s ease;
}

.testimonial-card:hover .t-logo svg {
  color: rgba(255, 106, 0, 0.7);
}

.t-author {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.t-brand {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-color);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Contact Section & Map */
.contact-section {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 600px;
  background: #000;
  overflow: hidden;
}

.dark-map-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  /* Dark Mode Filter Magic */
  filter: invert(100%) hue-rotate(180deg) brightness(95%) contrast(100%) grayscale(10%);
  z-index: 1;
}

.contact-card-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 15%;
  z-index: 10;
  pointer-events: none;
  /* Allows interacting with the map */
}

.contact-glass-card {
  pointer-events: auto;
  /* Allows selecting text in card */
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3.5rem;
  border-radius: 20px;
  max-width: 450px;
  width: 100%;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9);
}

.contact-headline {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #ffc163 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.contact-label {
  font-size: 1rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-value {
  font-size: 1.25rem;
  color: #ddd;
  font-weight: 500;
}

/* Premium Footer */
.premium-footer {
  background: #000000;
  color: #fff;
  padding: 6rem 4rem 2rem 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 5rem auto;
}

.footer-col-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-address {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-bottom-right {
  display: flex;
  gap: 1.5rem;
}

.social-icon {
  color: rgba(255, 255, 255, 0.5);
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

/* Responsive constraints */
@media (max-width: 1024px) {
  .logo-container {
    width: 380px;
    height: 380px;
  }

  .main-headline {
    font-size: 2.5rem;
  }

  .bg-text-base,
  .bg-text-glow {
    font-size: 15vw;
  }

  .features-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .features-left .section-title {
    font-size: 2.8rem;
  }

  .cta-title {
    font-size: 3rem;
  }

  .contact-section {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .dark-map-iframe {
    position: relative;
    height: 50vh;
  }

  .contact-card-wrapper {
    position: relative;
    justify-content: center;
    padding-right: 0;
    padding: 3rem 2rem;
    height: auto;
  }

  .contact-glass-card {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
  }

  .logo-container {
    width: 280px;
    height: 280px;
  }

  .main-headline {
    font-size: 2rem;
  }

  .sub-headline {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .bg-text-base,
  .bg-text-glow {
    font-size: 20vw;
  }

  .hero-benefits {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .features-section,
  .cta-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lead-capture-section {
    padding: 3rem 2rem;
  }

  .lead-container {
    grid-template-columns: 1fr;
  }

  .lead-left {
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
    padding: 3rem 2rem;
  }

  .lead-title {
    font-size: 2.2rem;
  }

  .lead-right {
    padding: 3rem 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-card {
    padding: 2.5rem;
    max-width: 90%;
  }

  .process-step-title {
    font-size: 1.8rem;
  }

  .process-icon {
    font-size: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-bottom-left {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* --- MOBILE RESPONSIVENESS FIXES --- */
/* Hide Hamburger by Default */
.hamburger-btn {
  display: none;
}

.mobile-nav-overlay {
  display: none;
}

@media (max-width: 768px) {

  /* 1. Header & Navigation */
  .desktop-only {
    display: none !important;
  }

  .hamburger-btn {
    display: flex;
    background: transparent;
    border: none;
    color: var(--accent-color);
    cursor: pointer;
    z-index: 9999;
  }

  .mobile-nav-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .mobile-nav-link {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .mobile-nav-link:hover {
    color: var(--accent-color);
  }

  .primary-mobile-btn {
    color: var(--accent-color);
  }

  /* 2. Narrative Scroll Section */
  .narrative-sticky-container {
    flex-direction: column !important;
    justify-content: flex-start;
    padding-top: 15vh;
  }

  .narrative-text-container {
    width: 90% !important;
    position: relative !important;
    padding: 0;
    right: auto !important;
    margin: 0 auto;
    text-align: center;
  }

  .narrative-text-container p {
    font-size: 1.2rem !important;
    /* Critical typography fix */
    line-height: 1.3 !important;
  }

  .narrative-video-inset {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    margin: 2rem auto 0 auto;
    width: 90% !important;
    max-width: 320px;
    height: 200px !important;
  }

  /* 3. Form Layout (iOS friendly) */
  .lead-container {
    grid-template-columns: 1fr !important;
    /* Force Single Column Flow */
    gap: 1.5rem !important;
  }

  .input-wrapper,
  input,
  textarea,
  select {
    width: 100% !important;
  }

  .input-wrapper input {
    font-size: 16px !important;
    /* Prevent iOS Camera / Screen Zoom */
  }

  /* 4. Step-by-Step Collage */
  .collage-cluster {
    flex-direction: column;
    padding: 2rem 0;
  }

  .cutout {
    width: 90% !important;
    margin: 0 auto -15px auto !important;
    /* Retain stack structural collision */
  }

  .cutout:nth-child(even) {
    transform: rotate(2deg) scale(0.95);
  }

  .cutout:nth-child(odd) {
    transform: rotate(-2deg) scale(0.95);
  }
}

/* CRITICAL MOBILE HOTFIXES APPENDED */
@media (max-width: 768px) {

  /* Header Hotfix */
  .header {
    justify-content: space-between !important;
    padding: 10px 20px !important;
    height: auto !important;
    min-height: 60px;
  }

  .hamburger-btn {
    max-width: 30px !important;
  }

  /* Narrative Typography & Video Hotfix */
  .narrative-text-container p {
    font-size: clamp(1rem, 4vw, 1.2rem) !important;
  }

  .narrative-video-inset {
    display: block !important;
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    margin: 20px auto !important;
    width: 90% !important;
    max-width: 320px !important;
    height: auto !important;
    aspect-ratio: 16/9;
  }

  /* Form & Lead Capture Hotfix */
  #lead-capture,
  .lead-capture-section {
    height: auto !important;
    min-height: auto !important;
    padding-bottom: 50px !important;
  }

  /* Step-by-Step Collage Hotfix */
  .cutout {
    width: 85vw !important;
    margin-top: -40px !important;
  }

  .cutout:first-child {
    margin-top: 0 !important;
  }
}

/* FINAL MOBILE HOTFIXES BATCH 2 */
@media (max-width: 768px) {

  /* Header Explicit Row Alignment */
  .header {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .hamburger-btn {
    max-width: 28px !important;
    margin-left: auto !important;
  }

  .header-logo {
    justify-content: flex-start !important;
  }

  /* Narrative Stacking & Typography overrides */
  .narrative-sticky-container {
    display: flex !important;
    flex-direction: column !important;
  }

  .narrative-text-layer {
    display: contents !important;
    /* Allow children to flow freely */
  }

  .narrative-text-block,
  .narrative-asset {
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    height: auto !important;
    display: block !important;
  }

  /* Flex Order Stacking */
  #text-phase-1 {
    order: 1 !important;
    margin-bottom: 20px !important;
  }

  #asset-phase-1 {
    order: 2 !important;
    margin-bottom: 40px !important;
    max-height: 40vh !important;
  }

  #text-phase-2 {
    order: 3 !important;
    margin-bottom: 20px !important;
  }

  #asset-phase-2 {
    order: 4 !important;
    margin-bottom: 40px !important;
  }

  #text-phase-3 {
    order: 5 !important;
    margin-bottom: 20px !important;
  }

  #asset-phase-3 {
    order: 6 !important;
    max-height: 40vh !important;
    margin-bottom: 40px !important;
  }

  .narrative-text-block p,
  .n-body {
    font-size: 1.1rem !important;
    line-height: 1.4 !important;
  }

  /* Video Force Display */
  .floating-video-wrapper {
    display: block !important;
    position: relative !important;
    width: 90% !important;
    max-width: 90% !important;
    margin: 20px auto !important;
    height: auto !important;
    aspect-ratio: 16/9;
  }

  /* Form Scroll Fixes */
  .lead-capture-section {
    overflow: visible !important;
    height: auto !important;
    min-height: auto !important;
    padding-bottom: 80px !important;
  }

  .lead-container {
    overflow: visible !important;
  }
}

/* CRITICAL MOBILE BUG FIX BATCH 3 */
@media (max-width: 768px) {

  /* 1. Header Strict Alignment */
  .header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .hamburger-btn {
    width: 20px !important;
    max-width: 20px !important;
    height: 20px !important;
    margin-left: auto !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: flex-end !important;
  }

  .header-logo,
  .nav-left {
    justify-content: flex-start !important;
    width: auto !important;
    max-width: 60% !important;
  }

  /* 2. Narrative Typography Clip Fix */
  .narrative-text-block p,
  .n-body,
  .n-list li,
  .n-promise {
    font-size: 1rem !important;
    line-height: 1.4 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  /* 2. Narrative Video Display Fix */
  /* The class the user requested: */
  .narrative-video-inset {
    display: block !important;
    position: relative !important;
    margin: 20px auto !important;
    width: 90% !important;
    z-index: 10 !important;
  }

  /* The actual class inside HTML: */
  .floating-video-wrapper,
  #asset-phase-2,
  .narrative-video {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    width: 90% !important;
    max-width: 100% !important;
    margin: 20px auto !important;
    z-index: 10 !important;
    height: auto !important;
  }

  /* Guarantee the whole section stacks properly to not hide video underneath absolute components */
  .narrative-asset {
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* 3. Form Vertical Separation Fix */
  #lead-capture,
  .lead-capture-section {
    margin-top: 50px !important;
    padding-bottom: 80px !important;
    overflow: visible !important;
    height: auto !important;
    min-height: auto !important;
  }
}

/* CRITICAL MOBILE BUG FIX BATCH 4 - EMERGENCY REFACTOR */
@media (max-width: 768px) {

  /* 1. Stop Element Collisions - Force Block Vertical Flow Native */
  .collage-section,
  .step-by-step-section,
  #lead-capture,
  .lead-capture-section,
  .narrative-section {
    position: relative !important;
    display: block !important;
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  /* 2. Fix Narrative Text Clipping */
  .narrative-text-block,
  .text-content,
  .n-body {
    width: 90% !important;
    margin: 0 auto !important;
    left: 0 !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    white-space: normal !important;
  }

  /* 3. The Missing Video Refactor */
  .narrative-video-inset,
  .floating-video-wrapper,
  .narrative-video,
  #asset-phase-2 {
    display: block !important;
    width: 100% !important;
    height: 250px !important;
    margin-top: 20px !important;
    position: relative !important;
    z-index: 100 !important;
    opacity: 1 !important;
    visibility: visible !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
  }

  /* Guarantee Video Plays/Shows Over Background */
  video.narrative-video {
    object-fit: contain !important;
  }

  /* 4. Hamburger Scaling Constraint */
  .hamburger-btn,
  .hamburger-btn svg {
    width: 18px !important;
    max-width: 18px !important;
    height: auto !important;
  }
}

/* CRITICAL MOBILE BUG FIX BATCH 5 - FULL FLUID OVERRIDE */
@media (max-width: 768px) {

  /* 1. Kill Fixed/Viewport Heights */
  section,
  .section,
  .narrative-block,
  .container,
  .lead-capture,
  .narrative-section,
  .narrative-sticky-container,
  main,
  .hero,
  .collage-section,
  .lead-capture-section,
  .contact-section {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  /* 2. Narrative Text Native Fluidity */
  .narrative-text-container,
  .narrative-text-layer,
  .narrative-text-block,
  #text-phase-1,
  #text-phase-2,
  #text-phase-3 {
    overflow: visible !important;
    display: block !important;
    padding-bottom: 60px !important;
    position: relative !important;
    height: auto !important;
  }

  /* 3. Form Bruteforce Salvage */
  #lead-capture,
  .lead-capture-section {
    margin-top: 150px !important;
    position: relative !important;
    display: block !important;
  }

  .lead-container input,
  .lead-container textarea,
  .lead-container select,
  .input-wrapper {
    display: block !important;
    width: 100% !important;
    margin-bottom: 15px !important;
  }

  /* 4. Total Disablement of Sticky/Fixed/Absolute Constraints */
  .narrative-sticky-container,
  .narrative-text-block,
  .narrative-asset,
  .floating-video-wrapper,
  .narrative-video,
  #asset-phase-1,
  #asset-phase-2,
  #asset-phase-3 {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* CRITICAL MOBILE BUG FIX BATCH 6 - FINAL POLISH */
@media (max-width: 768px) {

  /* 1. Global Side-Scroll Annihilation */
  html,
  body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
    position: relative !important;
  }

  * {
    max-width: 100vw !important;
  }

  /* 2. Hamburger Visibility Restoration */
  .hamburger-btn {
    display: flex !important;
    z-index: 99999 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .hamburger-btn svg {
    color: #ff6a00 !important;
    stroke: #ff6a00 !important;
    fill: none !important;
    display: block !important;
    visibility: visible !important;
  }

  /* 3. Narrative Squeeze - Reduce Gap Dead Zones */
  .narrative-text-block,
  .narrative-text-container,
  #text-phase-1,
  #text-phase-2,
  #text-phase-3 {
    padding-bottom: 20px !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .features-section,
  .features-container {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
}

/* CRITICAL MOBILE BUG FIX BATCH 7 - HERO & COLLISION OVERRIDES */
@media (max-width: 768px) {

  /* 1. Hero Expansion & Alignment */
  .hero-content,
  .text-content,
  .sub-headline {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
    display: block !important;
    padding-bottom: 30px !important;
  }

  .scroll-indicator {
    position: relative !important;
    margin-top: 60px !important;
    bottom: auto !important;
  }

  /* 2. Process Section Safe-Zone Sinking */
  .collage-section,
  .step-by-step-section,
  #process-collage {
    margin-top: 150px !important;
    position: relative !important;
    padding-top: 20px !important;
    height: auto !important;
  }

  .lead-capture-section,
  #lead-capture {
    position: relative !important;
    height: auto !important;
    margin-bottom: 40px !important;
  }

  /* 3. Global Height Unlocking */
  .features-section,
  .contact-section,
  .hero,
  .narrative-section {
    height: auto !important;
    min-height: 0 !important;
  }
}

/* ==================================================== */
/* BATCH 8 - MANUAL MASTER FIX (CENTERING & COLLISION)  */
/* ==================================================== */
@media (max-width: 768px) {

  /* 1. CENTRAR TODO EL HERO PERFECTAMENTE */
  .hero-content,
  .text-content,
  .hero-benefits {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    left: 0 !important;
    margin: 0 auto !important;
  }

  .benefit-item {
    justify-content: center !important;
    width: 100% !important;
  }

  .main-headline,
  .sub-headline {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* 2. REPARAR EL CHOQUE FORMULARIO VS FOTOS Y QUITAR HUECOS */
  /* Reducimos los márgenes exagerados que dejó la IA y separamos limpiamente */
  #lead-capture,
  .lead-capture-section {
    margin-top: 40px !important;
    padding-bottom: 60px !important;
    position: relative !important;
    display: block !important;
    clear: both !important;
    /* Fuerza a que ocupe su propio espacio */
    height: auto !important;
    z-index: 10 !important;
  }

  .collage-section,
  .step-by-step-section,
  #process-collage {
    margin-top: 20px !important;
    /* Quitamos el espacio gigante de 150px */
    padding-top: 40px !important;
    position: relative !important;
    display: block !important;
    clear: both !important;
    /* Obliga a que empiece estrictamente debajo del formulario */
    z-index: 5 !important;
  }
}

/* ==================================================== */
/* BATCH 9 - FORZAR CONTENEDOR DEL FORMULARIO Y EMPUJAR */
/* ==================================================== */
@media (max-width: 768px) {

  .lead-capture-section,
  #lead-capture {
    height: auto !important;
    min-height: max-content !important;
    max-height: none !important;
    overflow: visible !important;
    display: block !important;
    position: relative !important;
    padding-bottom: 60px !important;
    /* Espacio extra debajo del botón Submit */
  }

  .lead-container {
    height: auto !important;
    max-height: none !important;
    /* Quitamos la restricción de altura */
    position: relative !important;
    margin-bottom: 40px !important;
  }

  .collage-section,
  .step-by-step-section,
  #process-collage {
    margin-top: 60px !important;
    /* Empuja la sección blanca hacia abajo a la fuerza */
    padding-top: 40px !important;
    display: block !important;
    position: relative !important;
    clear: both !important;
  }
}

/* ==================================================== */
/* BATCH 10 - CENTRADO ABSOLUTO Y BOTON START NOW MÓVIL */
/* ==================================================== */
@media (max-width: 768px) {

  /* 1. FORZAR CENTRADO DEL LOGO Y LOS BENEFICIOS */
  .hero-content {
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .logo-wrapper,
  .logo-container {
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .hero-benefits {
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .benefit-item {
    justify-content: center !important;
    /* Centra el punto naranja y el texto */
    margin: 0 auto !important;
    width: 100% !important;
  }

  /* 2. REVIVIR EL BOTÓN "START NOW" EN EL ENCABEZADO */
  .nav-right {
    display: flex !important;
    /* Lo vuelve a hacer visible */
    margin-left: auto !important;
    /* Lo empuja hacia la derecha */
    margin-right: 15px !important;
    /* Le da espacio antes de la hamburguesa */
  }

  /* Hacemos el botón un poco más pequeño para que quepa en la pantalla del celular */
  .nav-right .pill-btn {
    display: inline-block !important;
    padding: 8px 15px !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.5px !important;
  }
}

/* ==================================================== */
/* BATCH 11 - LIMPIEZA TOTAL HERO, LOGO Y ESPACIOS MÓVIL */
/* ==================================================== */
@media (max-width: 768px) {

  /* 1. ACHICAR EL TEXTO "HAWK ORDER" EN EL MENÚ */
  .header-logo span {
    font-size: 1rem !important;
    /* Estaba en 1.25rem, ahora es más discreto */
    letter-spacing: 1px !important;
  }

  /* 2. ACHICAR BOTÓN START NOW Y ALINEAR MENÚ */
  .nav-right {
    display: flex !important;
    margin-left: auto !important;
    margin-right: 15px !important;
  }

  .nav-right .pill-btn {
    display: inline-block !important;
    padding: 6px 12px !important;
    font-size: 0.7rem !important;
  }

  /* 3. CENTRAR TODO A LA FUERZA Y QUITAR ESPACIOS MUERTOS */
  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    /* Evita que se vaya hasta el fondo */
    text-align: center !important;
    width: 100% !important;
    padding-top: 80px !important;
    /* Reduce el espacio debajo del menú negro */
    margin: 0 auto !important;
  }

  .logo-wrapper,
  .logo-container {
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    height: auto !important;
    /* Mata la altura fija que generaba huecos */
    margin-bottom: 20px !important;
    /* Acerca el logo a las viñetas */
  }

  .hero-benefits {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .benefit-item {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
    width: 100% !important;
    transform: translateX(-10px) !important;
    /* Pequeño ajuste visual para compensar la viñeta */
  }

  .main-headline,
  .sub-headline {
    text-align: center !important;
    width: 100% !important;
  }
}

/* ==================================================== */
/* BATCH 12 - ARREGLAR SUPERPOSICIÓN DE FOTOS (TEXTO CORTADO) */
/* ==================================================== */
@media (max-width: 768px) {

  /* Separar un poco más las cartas para que no tapen el texto */
  .cutout {
    margin-top: -15px !important;
    /* Pasamos de -40px a -15px (un solapamiento sutil) */
    padding-bottom: 35px !important;
    /* Le damos más espacio en la base para que el texto respire */
  }

  /* Asegurarnos de que el texto del título esté siempre por encima */
  .cutout-title {
    position: relative !important;
    z-index: 100 !important;
    padding-bottom: 15px !important;
  }
}

/* ==================================================== */
/* BATCH 13 - CENTRADO DEFINITIVO DEL HERO MÓVIL        */
/* ==================================================== */
@media (max-width: 768px) {

  /* Obliga a la caja principal a no tener márgenes laterales ocultos */
  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin: 0 auto !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Centra el contenedor del Logo del tenedor */
  .logo-wrapper,
  .logo-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
    width: 100% !important;
    left: 0 !important;
    transform: none !important;
  }

  /* Centra la lista de beneficios */
  .hero-benefits {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
  }

  /* Centra cada punto (Punto naranja + Texto) */
  .benefit-item {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    margin: 0 auto 15px auto !important;
    width: 100% !important;
    transform: none !important;
  }

  /* Centra los textos finales gigantes */
  .text-content,
  .main-headline,
  .sub-headline {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    width: 100% !important;
    display: block !important;
  }
}

/* ==================================================== */
/* BATCH 14 - ELIMINADOR DE DESVIACIONES A LA IZQUIERDA */
/* ==================================================== */
@media (max-width: 768px) {

  /* 1. Centramos el lienzo principal (Hero) a la fuerza */
  .hero,
  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    /* Obliga a todo lo que esté adentro a ir al centro */
    justify-content: flex-start !important;
    width: 100vw !important;
    /* Ancho exacto de la pantalla, ni un píxel más */
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* 2. El Logo: Le quitamos anchos fijos */
  .logo-wrapper,
  .logo-container {
    width: auto !important;
    /* LA CLAVE: al ser auto, se centra solo */
    max-width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .hero-logo {
    margin: 0 auto !important;
    display: block !important;
  }

  /* 3. Las letras y viñetas (No Commission, etc.) */
  .hero-benefits {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    /* Atrapa las viñetas y las pone en el medio */
    width: 100% !important;
    margin: 30px auto !important;
    padding: 0 !important;
  }

  .benefit-item {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    width: auto !important;
    /* Se encoge al tamaño del texto y se centra */
    margin: 10px auto !important;
    padding: 0 !important;
  }

  /* 4. Textos gigantes (SAVE ON COMMISSIONS) */
  .text-content,
  .main-headline,
  .sub-headline {
    text-align: center !important;
    width: auto !important;
    max-width: 90vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }
}

/* ==================================================== */
/* BATCH 15 - CENTRADO DEFINITIVO DE "KEEP SCROLLING."  */
/* ==================================================== */
@media (max-width: 768px) {
  .scroll-indicator {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 40px auto 0 auto !important;
    left: 0 !important;
    transform: none !important;
    /* Esto quita cualquier empuje lateral viejo */
  }

  .scroll-text {
    text-align: center !important;
    width: 100% !important;
  }
}

/* ==================================================== */
/* BATCH 16 - CORRECCIÓN DE LA CARTA 4 (STEP-BY-STEP)   */
/* ==================================================== */
@media (max-width: 768px) {

  /* Obligamos a la carta 4 a centrarse y ponerse por encima de la 3 */
  .cutout:nth-child(4),
  .cutout[data-step="4"] {
    margin-left: auto !important;
    margin-right: auto !important;
    left: 0 !important;
    z-index: 40 !important;
    /* Sube la capa de la carta 4 */
    display: block !important;
  }

  /* Aseguramos que la carta 3 se quede abajo */
  .cutout:nth-child(3),
  .cutout[data-step="3"] {
    z-index: 30 !important;
  }

  /* Movemos un poquito la burbuja naranja hacia adentro para que no se corte en los bordes del celular */
  .step-badge {
    left: 0px !important;
  }
}

/* Trust Badges Styles */
.trust-badges {
  text-align: center;
  margin-top: 15px;
  font-family: 'Montserrat', sans-serif;
}

.trust-text {
  font-size: 0.8rem;
  color: #a0a0a0;
  margin-bottom: 5px;
}

/* Trust Badges Styles */
.trust-badges {
  text-align: center;
  margin-top: 15px;
  font-family: 'Montserrat', sans-serif;
}

.trust-text {
  font-size: 0.8rem;
  color: #a0a0a0;
  margin-bottom: 5px;
}

.stripe-branding {
  display: flex;
  justify-content: center;
  gap: 10px;
  opacity: 0.7;
}

.stripe-text {
  font-size: 0.8rem;
  font-weight: bold;
  color: #fff;
}

/* ==================================================== */
/* ESTILOS DE PREGUNTAS FRECUENTES (TARJETAS)           */
/* ==================================================== */
.faq-manual-section {
  padding: 80px 20px;
  background-color: #050505;
  /* Fondo ultra oscuro */
  color: white;
  text-align: center;
}

.faq-manual-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-manual-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
}

.faq-item-manual {
  background: #111;
  border: 1px solid #222;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  transition: border-color 0.3s;
}

.faq-item-manual:hover {
  border-color: #ff6b00;
  /* Borde naranja al pasar el mouse */
}

.faq-q-manual {
  color: #ff6b00;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.faq-a-manual {
  color: #ccc;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

/* ==================================================== */
/* EFECTO DE ANILLOS ROTATORIOS (INSPIRACIÓN ADNIGHT)   */
/* ==================================================== */
.tech-rings-bg {
  position: fixed;
  /* Se queda fijo en la pantalla aunque bajes */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -2;
  /* Lo manda bien al fondo, detrás de todo */
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  /* Asegura que no bloquee los clics en tus botones */
}

.ring {
  position: absolute;
  border-radius: 50%;
  /* Borde súper sutil y elegante */
  border: 1px solid rgba(255, 255, 255, 0.05);
  /* Un fragmento naranja para crear el efecto de radar al girar */
  border-top: 1px solid rgba(255, 107, 0, 0.4);
  animation: spin-ring linear infinite;
}

/* Tamaños y velocidades de cada anillo */
.ring-1 {
  width: 600px;
  height: 600px;
  animation-duration: 45s;
  /* Gira una vez cada 45 segundos */
}

.ring-2 {
  width: 950px;
  height: 950px;
  animation-duration: 65s;
  animation-direction: reverse;
  /* Este anillo gira en sentido contrario */
}

.ring-3 {
  width: 1400px;
  height: 1400px;
  animation-duration: 90s;
  /* El más grande gira más lento */
}

/* La orden matemática para que giren (360 grados) */
@keyframes spin-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ==================================================== */
/* BARRA DE ALIADOS (MARQUESINA INFINITA) CORREGIDA     */
/* ==================================================== */
.partner-marquee-section {
  background-color: #050505;
  padding: 40px 0;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  overflow: hidden;
  position: relative;
  z-index: 10;
  width: 100%;
}

.marquee-title {
  text-align: center !important;
  color: #666;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 30px;
  text-transform: uppercase;
  display: block;
  width: 100%;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap !important;
}

.marquee-track {
  display: inline-flex !important;
  align-items: center;
  white-space: nowrap !important;
  animation: marqueeScroll 35s linear infinite;
}

/* Regla estricta para equilibrar los tamaños visualmente */
.partner-logo {
  display: block !important;
  max-height: 35px !important;
  max-width: 130px !important;
  /* Evita que Uber Eats se vea gigante */
  width: auto !important;
  margin: 0 40px !important;
  object-fit: contain;
  opacity: 0.5;
  transition: all 0.3s ease;
  filter: grayscale(100%) brightness(200%);
  /* Vuelve TODOS los logos grises/blancos */
}

/* Efecto al pasar el mouse para TODOS los logos */
.partner-logo:hover {
  opacity: 1;
  transform: scale(1.1);
  filter: grayscale(0%) brightness(100%);
  /* Recuperan su color original */
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

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

/* ==================================================== */
/* BATCH 18 - DASHBOARD FLOTANTE EN PC Y ARREGLO DE FOTOS MÓVIL */
/* ==================================================== */

/* 1. DISEÑO DEL DASHBOARD (SOLO PC) */
@media (min-width: 769px) {
  #text-phase-1 {
    max-width: 1200px !important;
    width: 85% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 60px;
  }

  .n-text-content {
    flex: 1;
    max-width: 550px;
  }

  /* La tarjeta de cristal de la derecha */
  .n-floating-dashboard {
    flex: 0.8;
    max-width: 380px;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 106, 0, 0.15);
    /* Efecto 3D sutil */
    transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
    transition: transform 0.4s ease;
  }

  .n-floating-dashboard:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
  }
}

/* Ocultar la tarjeta en celulares para no saturar */
.desktop-only-flex {
  display: none;
}

@media (min-width: 769px) {
  .desktop-only-flex {
    display: block;
  }
}

/* Estilos internos de las letras y colores de la tarjeta */
.dash-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 15px;
}

.mac-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dot.red {
  background: #ff5f56;
}

.dot.yellow {
  background: #ffbd2e;
}

.dot.green {
  background: #27c93f;
}

.dash-title {
  color: #888;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.dash-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

.dash-label {
  color: #aaa;
  font-weight: 500;
  font-size: 0.95rem;
}

.dash-value {
  color: #fff;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.dash-value.strike {
  text-decoration: line-through;
  color: #ff5f56;
  opacity: 0.7;
}

.dash-value.green {
  color: #27c93f;
  font-size: 1.2rem;
}

.dash-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}

.dash-row.highlight .dash-label {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.dash-row.highlight .dash-value.orange {
  color: #ff6b00;
  font-size: 1.6rem;
  text-shadow: 0 0 15px rgba(255, 106, 0, 0.4);
}


/* 2. SOLUCIÓN MÓVIL: CORTE PERFECTO PARA LAS IMÁGENES (CERO CHOCQUES) */
@media (max-width: 768px) {
  .narrative-asset {
    overflow: hidden !important;
    /* Corta mágicamente cualquier parte que se desborde */
    border-radius: 16px !important;
    margin: 20px auto 40px auto !important;
    width: 90% !important;
    max-height: 40vh !important;
    /* Límite estricto de altura */
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .narrative-asset img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    /* Esto fuerza a la imagen a mostrar la cara/parte superior, escondiendo los zapatos */
    object-position: center 20% !important;
  }
}

/* ==================================================== */
/* MASTER BATCH V2 - AJUSTE DE TAMAÑOS Y ESPACIOS       */
/* ==================================================== */

/* 1. ESTRUCTURA CENTRAL DEL PC */
@media (min-width: 769px) {
  .hero {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100vw !important;
    height: 100vh !important;
    padding-top: 80px !important;
    /* Compensa la barra del menú superior */
    box-sizing: border-box !important;
  }

  .hero-content {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    /* Evita empujes extra */
    transform: none !important;
  }

  /* Control estricto del tamaño del logo para que no empuje todo */
  .logo-wrapper,
  .logo-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    margin-bottom: 20px !important;
  }

  .hero-logo {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 35vh !important;
    /* Límite vital: no más del 25% de la pantalla */
  }

  .hero-benefits {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 auto 20px auto !important;
  }

  .text-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }
}

/* 2. COMPACTAR KEEP SCROLLING & BOTÓN NARANJA (Ajustado hacia arriba) */
.scroll-indicator {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  margin: 5px auto !important;
  /* Cortamos el aire de arriba */
  opacity: 0.8 !important;
  left: auto !important;
  transform: none !important;
  bottom: auto !important;
}

.scroll-line {
  height: 15px !important;
  /* Hacemos la línea un poco más corta */
  width: 1px;
  background: linear-gradient(to bottom, #ff6b00, transparent);
  margin-top: 5px;
}

.hero-cta-wrapper {
  position: relative !important;
  z-index: 100 !important;
  display: block !important;
  visibility: visible !important;
  margin-top: -45px !important;
  /* ¡Este valor negativo funciona como un imán que jala el botón hacia arriba! */
}

/* 3. DISEÑOS EXTRA (Anillos y FAQ Hover) */
.ring {
  border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
}

.ring-1 {
  border-top: 2px solid rgba(255, 107, 0, 0.8) !important;
}

.ring-2 {
  border-bottom: 2px solid rgba(255, 107, 0, 0.7) !important;
}

.ring-3 {
  border-left: 2px solid rgba(255, 107, 0, 0.6) !important;
}

.faq-item-manual {
  background-color: #111 !important;
}

.faq-item-manual:hover {
  border-color: #ff6b00 !important;
  background-color: #1a1a1a !important;
}

.faq-item-manual:hover .faq-q-manual {
  color: #ff6b00 !important;
}

.faq-item-manual:hover .faq-a-manual {
  color: #ffffff !important;
}

/* ==================================================== */
/* FIX MÓVIL - OCULTAR SCROLL Y AJUSTAR BOTÓN           */
/* ==================================================== */
@media (max-width: 768px) {

  /* Desaparece el "Keep Scrolling" solo en celulares */
  .scroll-indicator {
    display: none !important;
  }

  /* Le da un respiro al botón naranja debajo del texto */
  .hero-cta-wrapper {
    margin-top: 25px !important;
    margin-bottom: 20px !important;
  }
}

/* ==================================================== */
/* BATCH 25 - AJUSTE DE ESPACIO Y NÚMEROS CON VIDA      */
/* ==================================================== */

/* 1. CERRAR EL HUECO NEGRO (REDUCIR ESPACIOS) */
.partner-marquee-section {
  padding: 15px 0 !important;
  /* Reduce la franja negra de los logos a la mitad */
}

@media (min-width: 769px) {

  /* Sube la foto del chef y el dashboard para matar el espacio muerto superior */
  #asset-phase-1 {
    align-items: flex-start !important;
    padding-top: 15vh !important;
  }

  /* Sube los textos para que acompañen a la imagen */
  #text-phase-1 {
    margin-top: -8vh !important;
  }
}

/* 2. DARLE VIDA A LOS NÚMEROS DEL DASHBOARD */

/* Animación de latido y brillo para el Extra Profit (Naranja) */
@keyframes livePulseOrange {
  0% {
    transform: scale(1);
    text-shadow: 0 0 10px rgba(255, 106, 0, 0.4);
  }

  50% {
    transform: scale(1.08);
    text-shadow: 0 0 25px rgba(255, 106, 0, 0.9);
  }

  100% {
    transform: scale(1);
    text-shadow: 0 0 10px rgba(255, 106, 0, 0.4);
  }
}

/* Animación de latido sutil para el $0.00 (Verde) */
@keyframes livePulseGreen {
  0% {
    transform: scale(1);
    text-shadow: 0 0 5px rgba(39, 201, 63, 0.1);
  }

  50% {
    transform: scale(1.05);
    text-shadow: 0 0 15px rgba(39, 201, 63, 0.6);
  }

  100% {
    transform: scale(1);
    text-shadow: 0 0 5px rgba(39, 201, 63, 0.1);
  }
}

/* Efecto de "Cálculo en vivo" al pasar el mouse por la tarjeta */
@keyframes calculateData {
  0% {
    opacity: 0.3;
  }

  20% {
    opacity: 1;
  }

  40% {
    opacity: 0.5;
  }

  60% {
    opacity: 1;
  }

  80% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

/* Aplicando las animaciones a los números */
.dash-row.highlight .dash-value.orange {
  display: inline-block;
  animation: livePulseOrange 2s infinite ease-in-out;
}

.dash-value.green {
  display: inline-block;
  animation: livePulseGreen 2.5s infinite ease-in-out;
  /* Un ritmo ligeramente distinto al naranja */
}

/* Dispara el efecto de cálculo cuando el usuario mira la tarjeta */
.n-floating-dashboard:hover .dash-value {
  animation: calculateData 0.4s ease-out forwards;
}

/* ==================================================== */
/* ANIMACIÓN DE NÚMEROS DEL DASHBOARD (SIN ROMPER NADA) */
/* ==================================================== */

/* Animación de latido y brillo para el Extra Profit (Naranja) */
@keyframes livePulseOrange {
  0% {
    transform: scale(1);
    text-shadow: 0 0 10px rgba(255, 106, 0, 0.4);
  }

  50% {
    transform: scale(1.08);
    text-shadow: 0 0 25px rgba(255, 106, 0, 0.9);
  }

  100% {
    transform: scale(1);
    text-shadow: 0 0 10px rgba(255, 106, 0, 0.4);
  }
}

/* Animación de latido sutil para el $0.00 (Verde) */
@keyframes livePulseGreen {
  0% {
    transform: scale(1);
    text-shadow: 0 0 5px rgba(39, 201, 63, 0.1);
  }

  50% {
    transform: scale(1.05);
    text-shadow: 0 0 15px rgba(39, 201, 63, 0.6);
  }

  100% {
    transform: scale(1);
    text-shadow: 0 0 5px rgba(39, 201, 63, 0.1);
  }
}

/* Aplicando las animaciones exclusivamente a los números */
.dash-row.highlight .dash-value.orange {
  display: inline-block;
  animation: livePulseOrange 2s infinite ease-in-out;
}

.dash-value.green {
  display: inline-block;
  animation: livePulseGreen 2.5s infinite ease-in-out;
}

/* ==================================================== */
/* ANIMACIÓN DE LATIDO (ACTIVADO POR JAVASCRIPT)        */
/* ==================================================== */
.pulse-orange {
  display: inline-block;
  animation: livePulseOrange 2s infinite ease-in-out;
}

@keyframes livePulseOrange {
  0% {
    transform: scale(1);
    text-shadow: 0 0 10px rgba(255, 106, 0, 0.4);
  }

  50% {
    transform: scale(1.08);
    text-shadow: 0 0 25px rgba(255, 106, 0, 0.9);
  }

  100% {
    transform: scale(1);
    text-shadow: 0 0 10px rgba(255, 106, 0, 0.4);
  }
}

/* ==================================================== */
/* BATCH 26 V2 - FONDO PANTALLA COMPLETA Y CELULAR 3D   */
/* ==================================================== */

/* 1. VIDEO DE FONDO EXPANDIDO (SIN FRANJAS) */
#asset-phase-2 .floating-video-wrapper {
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100% !important;
  border-radius: 0 !important;
  /* Quita los bordes redondos para que toque las esquinas */
  box-shadow: none !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  transform: none !important;
}

#asset-phase-2 .narrative-video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  /* Fueraza al video a llenar cada milímetro */
  opacity: 0.3 !important;
  /* Lo oscurece para que tu texto y el celular brillen */
}

/* 2. LAYOUT: TEXTO A LA IZQUIERDA, CELULAR A LA DERECHA */
#text-phase-2 {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 90% !important;
  max-width: 1100px !important;
  gap: 40px;
}

.glass-text-panel {
  flex: 1;
  max-width: 550px;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 50px;
  border-radius: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #ffc163 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px !important;
  font-size: 3rem !important;
  text-align: left;
}

.pro-features-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pro-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.03);
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.pro-feature-item:hover {
  background: rgba(255, 106, 0, 0.08);
  border-color: rgba(255, 106, 0, 0.3);
  transform: translateX(10px);
}

.pro-icon {
  color: #ff6b00;
  display: flex;
}

.pro-icon svg {
  width: 22px;
  height: 22px;
}

.pro-feature-item p {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 500 !important;
  font-size: 1.1rem !important;
  color: #e0e0e0;
  margin: 0 !important;
}

/* 3. CARCASA DEL CELULAR DE DEMOSTRACIÓN */
.phone-mockup-wrapper {
  flex: 0.8;
  display: flex;
  justify-content: center;
}

.iphone-frame {
  position: relative;
  width: 280px;
  height: 580px;
  background-color: #000;
  border: 10px solid #1a1a1a;
  border-radius: 40px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9), inset 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 2px #333;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
  /* Efecto 3D de cristal */
  transition: transform 0.5s ease;
}

.iphone-frame:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.iphone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 25px;
  background-color: #1a1a1a;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

.iphone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ADAPTACIÓN A MÓVILES */
@media (max-width: 768px) {
  #text-phase-2 {
    flex-direction: column !important;
  }

  .glass-text-panel {
    padding: 25px;
    margin-bottom: 30px;
  }

  .gradient-text {
    font-size: 2.2rem !important;
    text-align: center;
  }

  .iphone-frame {
    width: 240px;
    height: 500px;
    transform: none;
  }
}

/* ==================================================== */
/* BATCH 27 - AJUSTE CELULAR DERECHA Y LIMPIEZA MÓVIL   */
/* ==================================================== */

/* 1. MOVER EL CELULAR A LA DERECHA EN PC */
@media (min-width: 769px) {
  #text-phase-2 {
    max-width: 1250px !important;
    /* Ensancha el contenedor para dar más espacio libre */
    gap: 80px !important;
    /* Empuja el celular lejos del texto */
  }

  .phone-mockup-wrapper {
    justify-content: flex-end !important;
    /* Lo ancla estrictamente a la derecha */
    padding-right: 20px !important;
  }
}

/* 2. LIMPIEZA MÓVIL: OCULTAR FOTOS Y ORDENAR CELULAR */
@media (max-width: 768px) {

  /* Oculta las dos fotos del chef estáticas para no saturar el celular */
  #asset-phase-1,
  #asset-phase-3 {
    display: none !important;
  }

  /* Aseguramos que el panel de cristal y el celular se agrupen correctamente */
  #text-phase-2 {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  /* Forzamos al celular a quedarse justo debajo de los "Checks" y arriba de "More profit" */
  .phone-mockup-wrapper {
    position: relative !important;
    order: 10 !important;
    margin-top: 40px !important;
    margin-bottom: 20px !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    z-index: 50 !important;
  }

  /* El bloque del "More orders..." se empuja para que no se monte */
  #text-phase-3 {
    margin-top: 40px !important;
    position: relative !important;
    z-index: 10 !important;
  }
}

/* ==================================================== */
/* BATCH 28 - AJUSTES DE TAMAÑO Y ESPACIO DEL CELULAR   */
/* ==================================================== */

/* 1. PC: HACERLO MÁS ANCHO Y BAJARLO UN POCO */
@media (min-width: 769px) {
  .iphone-frame {
    width: 320px !important;
    /* Antes 280px -> Ahora mucho más ancho y visible */
    height: 640px !important;
    /* Altura proporcional */
  }

  .phone-mockup-wrapper {
    margin-top: 70px !important;
    /* Lo empuja hacia abajo para que no quede tan pegado arriba */
  }
}

/* 2. MÓVIL: HACERLO MÁS ANCHO Y EVITAR QUE SE MONTE (REMONTADO) */
@media (max-width: 768px) {
  .iphone-frame {
    width: 290px !important;
    /* Antes 240px -> Ahora ocupa un excelente espacio en pantalla */
    height: 590px !important;
    transform: none !important;
    margin: 0 auto !important;
  }

  .phone-mockup-wrapper {
    display: flex !important;
    width: 100% !important;
    height: 620px !important;
    /* ESTA ES LA MAGIA: Obliga al navegador a respetar este espacio */
    margin-top: 40px !important;
    margin-bottom: 60px !important;
    position: relative !important;
    z-index: 50 !important;
  }

  /* Muro de contención extra para el texto "More orders..." */
  #text-phase-3 {
    margin-top: 80px !important;
    /* Lo empuja bien abajo del celular */
    padding-top: 20px !important;
    position: relative !important;
    clear: both !important;
    z-index: 60 !important;
  }
}

/* ==================================================== */
/* BATCH 29 - IPHONE MÁS ANCHO, ANTI-CHOQUES Y ESPACIOS */
/* ==================================================== */

/* 1. IPHONE MÁS ANCHO (PC Y MÓVIL) */
@media (min-width: 769px) {
  .iphone-frame {
    width: 320 px !important;
    /* Mucho más ancho en PC */
    height: 550px !important;
  }
}

@media (max-width: 768px) {
  .iphone-frame {
    width: 300px !important;
    /* Más ancho y legible en Celular */
    height: 700px !important;
    margin: 0 auto !important;
    transform: none !important;
    /* Le quitamos el giro 3D en móvil para que ocupe todo el ancho posible */
  }
}

/* 2. EVITAR QUE SE MONTE EL TEXTO (MORE ORDERS...) EN MÓVIL */
@media (max-width: 768px) {
  #text-phase-2 {
    display: flex !important;
    flex-direction: column !important;
    padding-bottom: 20px !important;
  }

  .phone-mockup-wrapper {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    height: 620px !important;
    /* La magia: crea una pared sólida del tamaño exacto del celular */
    margin-top: 1px !important;
    margin-bottom: 30px !important;
    z-index: 50 !important;
  }

  #text-phase-3 {
    position: relative !important;
    display: block !important;
    clear: both !important;
    margin-top: 550px !important;
    /* Lo empuja a la fuerza por debajo del muro */
    padding-top: 380px !important;
    z-index: 800 !important;
  }
}

/* 3. REDUCIR ESPACIO: MARQUESINA -> ABOUT HAWK ORDER (MÓVIL) */
@media (max-width: 768px) {

  /* Succiona el relleno gigante que tenía la caja contenedora */
  .narrative-sticky-container {
    padding-top: 5vh !important;
    justify-content: flex-start !important;
  }

  /* Sube el título "About Hawk Order" */
  #text-phase-1 {
    margin-top: 10px !important;
    margin-bottom: 20px !important;
  }

  /* Le quita el espacio de sobra a la barra de logos por debajo */
  .partner-marquee-section {
    padding-bottom: 10px !important;
  }
}

/* ==================================================== */
/* BATCH 30 V2 - DISEÑO COMBINADO Y SLIDER DESBLOQUEADO */
/* ==================================================== */

.combined-hero-section {
  padding: 80px 20px !important;
  background: #000;
  position: relative;
  z-index: 50;
  /* Z-index altísimo para que nada lo bloquee */
}

/* Grilla para PC: Mitad y Mitad */
.combined-layout {
  display: grid !important;
  grid-template-columns: 1fr 1.1fr !important;
  /* Lado derecho un poco más grande */
  gap: 50px !important;
  align-items: center !important;
  max-width: 1300px !important;
  margin: 0 auto;
}

.features-left-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.compact-stats {
  margin-top: 10px;
  gap: 15px !important;
}

.compact-stats .stat-card {
  padding: 20px 15px !important;
}

.compact-stats .stat-value {
  font-size: 2.2rem !important;
}

/* Calculadora a la derecha */
.calculator-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 100;
  /* Prioridad máxima de clics */
}

.calc-glass-panel.mini-calc {
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 35px 40px;
  width: 100%;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 106, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 30px;
  pointer-events: auto;
  /* Fuerza a que reciba clics */
}

.calc-header-mini h3 {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #ffc163 100%);
  -webkit-background-clip: text;
  /* Para Chrome y Safari */
  background-clip: text;
  /* ¡Esta es la regla estándar que quita el error! */
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

.calc-header-mini p {
  color: #a1a1aa;
  font-size: 1rem;
}

/* BLINDAJE DEL SLIDER PARA QUE SE DEJE ARRASTRAR */
.safe-zone {
  position: relative !important;
  z-index: 9999 !important;
  /* Por encima de TODO en la página */
  pointer-events: auto !important;
}

.range-slider-wrapper input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 12px;
  background: #222;
  border-radius: 10px;
  outline: none;
  transition: background 0.1s;
  position: relative;
  z-index: 9999 !important;
  cursor: pointer;
}

.range-slider-wrapper input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer !important;
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.8);
  border: 4px solid #ff6b00;
  position: relative;
  z-index: 10000 !important;
}

/* Resultados */
.mini-results {
  gap: 15px !important;
}

.mini-results .result-card {
  padding: 20px !important;
}

.mini-results .result-amount {
  font-size: 2rem !important;
}

.mini-btn {
  padding: 15px 30px !important;
  font-size: 1.1rem !important;
  width: 100% !important;
}

/* Móvil: Se apilan uno sobre otro */
@media (max-width: 900px) {
  .combined-layout {
    grid-template-columns: 1fr !important;
    gap: 60px !important;
  }

  .calc-glass-panel.mini-calc {
    padding: 25px 20px;
  }
}

/* ==================================================== */
/* BATCH 31 - MEJORA TIPOGRÁFICA Y LISTA PREMIUM        */
/* ==================================================== */

/* Título con tipografía fuerte y degradado */
.modern-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: clamp(2.2rem, 4vw, 3.2rem) !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  background: linear-gradient(135deg, #ffffff 0%, #ffc163 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin-bottom: 25px !important;
}

/* Espacio debajo de la lista para no chocar con los números (0%, 24h...) */
.features-left-content .pro-features-list {
  margin-bottom: 35px;
}

/* Tipografía elegante para los puntos */
.features-left-content .pro-feature-item p {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 1.15rem !important;
  color: #a1a1aa !important;
  /* Gris elegante */
  line-height: 1.5;
  margin: 0 !important;
}

/* Resalte blanco brillante para los números clave */
.features-left-content .text-white {
  color: #ffffff !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px;
}

/* ==================================================== */
/* BATCH 33 - CARRUSEL BLANCO CON FOTOS Y FIX MÓVIL     */
/* ==================================================== */

.process-carousel-section {
  padding: 100px 20px;
  background: #fdfaf6;
  /* Fondo blanco/hueso elegante para contraste */
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  text-align: center;
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.carousel-header {
  margin-bottom: 50px;
}

/* Modificadores para texto oscuro sobre fondo blanco */
.dark-title {
  color: #111 !important;
  background: none !important;
  -webkit-text-fill-color: #111 !important;
  text-shadow: none !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
}

.dark-subtitle {
  color: #666 !important;
  font-weight: 500;
}

.carousel-viewport {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 40px;
  padding-top: 20px;
}

.carousel-viewport::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 30px;
  padding: 0 20px;
  width: max-content;
  align-items: stretch;
  /* Iguala las alturas */
}

/* ------------------------------------- */
/* DISEÑO DE LA TARJETA CON FOTO         */
/* ------------------------------------- */
.light-card {
  width: 350px;
  flex: 0 0 auto;
  /* ¡LA MAGIA DEL MÓVIL! Evita que se estiren de forma fea */
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
  scroll-snap-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  cursor: grab;
}

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

.light-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12), 0 0 0 2px rgba(255, 106, 0, 0.5);
}

/* El bloque de la imagen arriba */
.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  background: #eee;
  border-bottom: 3px solid #ff6b00;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.light-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

/* El pequeño círculo naranja flotante con el número */
.step-badge-modern {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: #ff6b00;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(255, 106, 0, 0.4);
  border: 3px solid #fff;
  z-index: 2;
}

/* Zona de texto blanca abajo */
.card-content {
  padding: 35px 25px 25px 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.light-card h3 {
  font-family: 'Poppins', sans-serif;
  color: #111;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.light-card p {
  color: #555;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* ------------------------------------- */
/* ADAPTACIÓN MÓVIL                      */
/* ------------------------------------- */
@media (max-width: 768px) {
  .process-carousel-section {
    padding: 60px 0px;
    /* Quitamos márgenes laterales para que ruede suave */
  }

  .light-card {
    width: 80vw;
    /* Ancho perfecto para celular */
    max-width: 320px;
    height: auto;
    /* Bloquea el estiramiento vertical horrible */
    scroll-snap-align: center;
  }

  .carousel-track {
    /* Este cálculo centra la primera tarjeta en la pantalla del celular */
    padding: 0 calc(50vw - 40vw);
    gap: 20px;
  }
}

/* ==================================================== */
/* BATCH 34 - FLECHAS, DRAG PC Y NÚMEROS ARREGLADOS     */
/* ==================================================== */

/* 1. Arreglo del título para que no se vea feo ni gritón */
.dark-title {
  font-family: 'Poppins', sans-serif !important;
  color: #111 !important;
  font-size: clamp(2.5rem, 4vw, 3.5rem) !important;
  letter-spacing: -1px !important;
  text-transform: none !important;
  /* Quita las mayúsculas forzadas */
  margin-bottom: 15px !important;
}

/* 2. Arreglo de los números cortados */
.step-badge-modern {
  bottom: 15px !important;
  /* Lo sube para que no lo corte el borde */
  right: 15px !important;
  border: 2px solid #fff !important;
}

/* 3. Estructura de las flechas laterales */
.carousel-container-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.carousel-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  z-index: 20;
  transition: all 0.3s ease;
  color: #111;
}

.carousel-arrow:hover {
  background: #ff6b00;
  color: #fff;
  border-color: #ff6b00;
  box-shadow: 0 10px 20px rgba(255, 106, 0, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow svg {
  width: 26px;
  height: 26px;
}

.left-arrow {
  left: 10px;
}

.right-arrow {
  right: 10px;
}

/* En celulares ocultamos las flechas porque se usa el dedo */
@media (max-width: 768px) {
  .carousel-arrow {
    display: none !important;
  }
}

/* ==================================================== */
/* BATCH 35 - ACORDEÓN FAQ PREMIUM                      */
/* ==================================================== */

.faq-premium-section {
  padding: 100px 20px;
  background: #000;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Tarjetas base de cada pregunta */
.faq-item {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 106, 0, 0.4);
  background: rgba(30, 30, 30, 0.8);
  transform: translateX(5px);
  /* Pequeño salto a la derecha al pasar el mouse */
}

/* El botón que contiene la pregunta */
.faq-question {
  width: 100%;
  text-align: left;
  padding: 25px 30px;
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #ff6b00;
}

/* La flecha que gira */
.faq-icon {
  color: #ff6b00;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 20px;
}

/* Cuando se abre, la flecha gira 180 grados */
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* El contenedor oculto de la respuesta */
.faq-answer {
  max-height: 0;
  /* Por defecto mide 0 de alto = oculto */
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 30px 30px 30px;
  color: #a1a1aa;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Ajustes Móviles */
@media (max-width: 768px) {
  .faq-premium-section {
    padding: 60px 20px;
  }

  .faq-question {
    padding: 20px;
    font-size: 1.05rem;
  }

  .faq-answer-inner {
    padding: 0 20px 20px 20px;
    font-size: 0.95rem;
  }
}

/* ==================================================== */
/* BATCH 36 V2 - GOOGLE VERIFIED FLIP CARDS             */
/* ==================================================== */

.testimonials-section {
  padding: 100px 20px;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.main-google-logo {
  width: 50px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Contenedor principal de la tarjeta */
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 340px;
  /* Un poco más de altura para el bloque de Google */
  perspective: 1000px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: left;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
}

/* DISEÑO DE LA CARA FRONTAL (Estilo Google Review) */
.flip-card-front {
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  display: flex;
  flex-direction: column;
}

/* El bloque de meta de Google arriba */
.google-review-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.reviewer-avatar-wrapper {
  position: relative;
  width: 55px;
  height: 55px;
}

.reviewer-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ccc;
}

/* El pequeño "G" en la esquina del avatar */
.mini-g-badge {
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  padding: 2px;
  border: 1px solid #ccc;
  z-index: 2;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.t-author {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.verified-tag {
  color: #888;
  font-size: 0.8rem;
  font-weight: 400;
}

.review-date {
  color: #888;
  font-size: 0.85rem;
  margin-top: -3px;
}

/* El color de las estrellas de Google es fundamental */
.google-stars {
  color: #F4B400;
  /* ¡El amarillo/oro oficial de Google! */
  font-size: 1.2rem;
  margin-top: 3px;
  letter-spacing: 1px;
}

.t-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #ddd;
  font-style: italic;
  font-family: 'Montserrat', sans-serif;
}

/* DISEÑO DE LA CARA TRASERA (Fachada) */
.flip-card-back {
  background-color: #111;
  color: white;
  transform: rotateY(180deg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.back-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
  width: 100%;
  padding: 30px 20px;
  text-align: center;
}

.back-overlay h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 5px;
}

.back-overlay p {
  color: #ff6b00;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (min-width: 769px) {
  .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .flip-card {
    height: 320px;
  }
}

/* ==================================================== */
/* BATCH 37 - SALTO INSTANTÁNEO (SIN SCROLL SUAVE)      */
/* ==================================================== */

html {
  scroll-behavior: auto !important;
}

/* ==================================================== */
/* BATCH 38 - FIX DEL MENÚ MÓVIL (HAMBURGUESA)          */
/* ==================================================== */

.mobile-nav-overlay {
  transition: all 0.4s ease-in-out;
}

/* Esta es la clase mágica que aplicaremos con Javascript */
.mobile-nav-overlay.menu-active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
  background: rgba(0, 0, 0, 0.95);
  /* Fondo oscuro elegante */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
/* ==================================================== */
/* BATCH 39 - FIX FOOTER RESPONSIVO (MÓVIL)             */
/* ==================================================== */

@media (max-width: 768px) {
  /* Hace que las 3 columnas se vuelvan 1 sola bien espaciada */
  .premium-footer .footer-grid {
    grid-template-columns: 1fr !important; 
    text-align: center;
    gap: 40px;
    padding: 0 20px;
  }

  /* Centra los títulos y quita el amontonamiento */
  .footer-col-title {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }

  /* Arregla la barra de abajo (Logo y Redes) */
  .footer-bottom {
    flex-direction: column !important; /* Pone las redes debajo del logo */
    gap: 25px;
    padding-top: 30px;
    text-align: center;
  }

  .footer-bottom-left {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* Hace que las redes sociales se vean grandes y centradas */
  .footer-bottom-right {
    display: flex !important;
    justify-content: center !important;
    gap: 20px;
    width: 100%;
  }

.social-icon {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 45px !important;  /* Un poco más grandes para que sea fácil tocarlos */
  height: 45px !important;
  color: #ff6600 !important; /* El color naranja de Hawk Order para que resalten */
  background: rgba(255, 255, 255, 0.1); /* Un circulito suave detrás */
  border-radius: 50%;
  transition: all 0.3s ease;
  }

.social-icon svg {
  width: 24px !important;
  height: 24px !important;
  fill: #ff6600 !important; /* Esto fuerza el color naranja en el dibujo */
  }
