/* neomarketing: mobile fixes - prevent horizontal overflow */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #050506; /* very dark background */
  color: #e9e9e9;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

/* neomarketing: mobile fixes - ensure all elements use border-box */
*, *::before, *::after {
  box-sizing: border-box;
}

/* neomarketing: mobile fixes - ensure all images and iframes are responsive */
img, iframe {
  max-width: 100%;
  height: auto;
}

/* neomarketing: mobile fixes - prevent overflow in all sections */
section, .container, .row {
  max-width: 100%;
  overflow-x: hidden;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */

.announcement-bar {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 245, 245, 0.95) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.75rem 1rem;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
}

.announcement-bar p {
  margin: 0;
  font-size: 0.9rem;
  color: #1a1a1a;
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

.announcement-bar strong {
  font-weight: 600;
  color: #1a1a1a;
}

.announcement-bar .announcement-cta {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  margin-left: 0.5rem;
  transition: all 200ms ease;
}

.announcement-bar .announcement-cta:hover {
  background: #333;
  transform: translateY(-1px);
}

header {
  padding: 2rem 1rem;
  background: transparent;
  color: #fff;
}

.hero {
  padding: 2.5rem 1rem 2rem; /* reduced vertical padding for half-page layout */
  background: linear-gradient(180deg, rgba(0,0,0,0.85), rgba(0,0,0,0.90));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.0rem;
}

.hero img {
  max-width: 100%;
  border-radius: 10px;
}

/* NAV */
.nav {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 40;
  background: transparent;
  backdrop-filter: blur(10px);
  transition: background 300ms ease;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}
.logo {
  color: #fff;
  font-weight: 600;
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  display: flex;
  align-items: center;
}

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

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 50;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 1.5px;
  background: #fff;
  transition: all 300ms ease;
  border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  transition: color 300ms ease, transform 200ms ease;
  display: inline-block;
}

.nav-links a:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* Social links in navigation */
.social-links {
  display: none; /* Hidden on desktop */
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 300ms ease;
  flex-shrink: 0;
}

.social-link:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px) scale(1.05);
}

.social-link svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

/* Mobile navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: rgba(10,10,12,0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 80px 2rem 2rem;
    transition: right 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    z-index: 45;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .nav-links li.social-links {
    border-bottom: none;
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 2rem 0 1rem;
    margin-top: 1rem;
  }
  
  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
  }
}

/* HERO full-screen */
.hero {
  min-height: 50vh; /* half page height on desktop */
  padding: 0; /* we'll use inner spacing */
  align-items: center;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem; /* reduced inner padding to fit half-page */
  isolation: isolate; /* prevent blending between hero background layers and child elements */
}
.hero-kicker {
  display: inline-block;
  position: relative;
  z-index: 5; /* ensure visible above pseudo-element */
  padding: 0.45rem 1rem;
  border-radius: 999px; /* same rounded degree as buttons */
  border: 1px solid #ffffff; /* borde blanco de 1px directamente en el elemento */
  color: #ffffff; /* texto blanco */
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
  background: #000; /* fondo negro sólido */
  background-color: #000 !important; /* negro opaco */
  mix-blend-mode: normal; /* avoid blending with parent gradient layers */
}

/* Eliminamos pseudo-elemento para evitar que el fondo parezca blanco */

/* Only the very first letter of the kicker should be uppercase */
.hero-kicker::first-letter {
  text-transform: uppercase;
}
.hero-title {
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.02;
  margin: 0 0 0.5em 0; /* 0.5em entre título y subtítulo */
  color: #fff;
  font-weight: 400;
}

/* Brighter silver gradient text for hero title (more highlights and contrast) */
.hero-title {
  /* static silver gradient clipped to the text (no animation) */
  background: linear-gradient(90deg, #ffffff 0%, #fcfcfc 12%, #f6f6f7 28%, #f0f0f1 40%, #e4e4e6 56%, #d0d0d2 76%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(255,255,255,0.12), 0 8px 28px rgba(0,0,0,0.55);
  position: relative;
  overflow: visible;
}

/* Fallback for very old browsers: keep readable light color */
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-title { color: #e9e9e9; background: none; }
}

@media (prefers-reduced-motion: reduce) {
  /* no-op: text is static */
}
.hero-sub {
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  max-width: 900px;
  margin: 0 0 0.75rem 0; /* igual a la separación de los botones (.hero-cta margin-top: 0.75rem) */
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
}

/* Small inline badges placed between subtitle and CTAs */
.hero-badges {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  margin-top: 2em; /* suma 2em respecto al subtítulo */
  margin-bottom: 0.75rem;
}
.hero-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.92);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-badges .badge .badge-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  color: rgba(255,255,255,0.6); /* faded silver for icons */
  display: inline-block;
}
.hero-badges .badge span { display: inline-block; vertical-align: middle; }

@media (max-width: 600px) {
  .hero-badges { flex-wrap: wrap; gap: 0.45rem; }
  .hero-badges .badge { font-size: 0.78rem; padding: 0.32rem 0.55rem; }
}

.hero-cta { margin-top: 0.75rem; }

/* Cuando hay badges antes de los botones, evita sumar márgenes para que ambos huecos sean iguales (0.75rem) */
.hero-badges + .hero-cta {
  margin-top: 0; /* el espacio lo controla solo .hero-badges { margin-bottom: 0.75rem } */
}

/* Features */
.features {
  padding: 4.5rem 1rem;
  background: linear-gradient(180deg, rgba(5,5,6,1), rgba(15,15,15,1));
  color: rgba(255,255,255,0.95);
}
.features .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
.features h3 {
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}
.features p {
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}
.feature-list {
  list-style: none;
  margin: 1.25rem 0 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
.feature-list li {
  background: rgba(255,255,255,0.02);
  padding: 1rem;
  border-radius: 8px;
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* Pricing */
.pricing { padding: 4rem 1rem; }
.pricing .container { max-width: 1000px; margin: 0 auto; }
.pricing-grid { display: flex; gap: 1rem; justify-content: center; margin-top: 1.25rem; }
.price-card { background: rgba(255,255,255,0.02); padding: 1.25rem; border-radius: 10px; min-width: 160px; }
.price-card.featured { border: 2px solid rgba(255,255,255,0.08); box-shadow: 0 6px 24px rgba(0,0,0,0.6); }

/* Footer */
footer { 
  padding: 2rem 1rem; 
  color: rgba(255,255,255,0.65); 
  text-align: center;
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* Small adjustments for existing header text near nav */
header h1, header p { display:none; }

/* Page heading styles to match screenshot */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

h1 {
  font-weight: 400; /* Jost Regular 400 as requested */
  font-size: clamp(2.25rem, 4.5vw, 4.25rem);
  line-height: 1.02;
  margin: 0 0 0.75rem 0;
  color: #fff;
}

header p,
.hero p {
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
}

/* Slight container to keep hero content centered */
.hero > * {
  max-width: 980px;
}

/* Styles for the CTA link that looks like the design in the screenshot */
.btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px; /* pill */
  transition: all 180ms ease;
  margin-top: 1rem;
  cursor: pointer;
}

/* Outline button (secondary) */
.btn-outline {
  color: #fff;
  background: #4a4a4a; /* gris claro, no negro */
  border: 2px solid rgba(255,255,255,0.9);
  padding: 0.55rem 1.2rem;
}
.btn-outline:hover,
.btn-outline:focus {
  background: #5a5a5a; /* un poco más claro al hover/focus */
  transform: translateY(-2px);
  /* subtle white glow to make the outline stand out */
  box-shadow: 0 8px 30px rgba(255,255,255,0.06);
}

/* Solid button (primary) */
.btn-solid {
  /* silver gradient background for primary button */
  background: linear-gradient(180deg, #ffffff 0%, #e9e9ea 40%, #cfcfd1 100%);
  color: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.85);
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.6);
}
.btn-solid:hover,
.btn-solid:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.65);
}

/* Ensure kicker remains visually distinct */
.hero-kicker { z-index: 5; }

/* Layout for the two buttons */
.hero-cta {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
}

/* Announcement below CTAs: check icon + text */
.hero-announcement {
  margin-top: calc(0.5em + 1em); /* +1em extra sobre el espaciado previo */
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
  background: transparent;
}
.hero-announcement .check-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  color: #5dd17a; /* pleasant green for the check */
  display: inline-block;
  vertical-align: middle;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.6));
}
.hero-announcement .ann-text strong {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 600px) {
  .hero-announcement { font-size: 0.9rem; gap: 0.45rem; }
  .hero-announcement .check-icon { width: 1rem; height: 1rem; }
}

@media (max-width: 600px) {
  .hero-cta {
    flex-direction: column;
  }
}

/* Mobile / small-screen adjustments */
@media (max-width: 900px) {
  .hero {
    padding: 4.5rem 1rem 3rem;
    min-height: auto; /* don't force half-page on medium/small screens */
  }

  .hero > * {
    padding: 0 1rem;
  }

  .btn {
    padding: 0.55rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .hero {
    padding: 3.5rem 0.75rem 2.5rem;
    gap: 0.8rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

/* ============================================
   NEW SECTIONS - BENEFITS, HOW IT WORKS, TESTIMONIALS, ENHANCED PRICING, FINAL CTA
   ============================================ */

/* Common section title styles */
.section-title {
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.75rem 0;
  color: #fff;
}

.section-kicker {
  display: inline-block;
  background: #000;
  border: 1px solid #fff;
  color: #fff;
  padding: 0.5em 1.2em;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

.section-subtitle {
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin: 0 0 2.5rem 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Benefits Section */
/* neomarketing: mobile fixes - prevent benefits overflow */
.benefits {
  padding: 5rem 1rem;
  background: linear-gradient(180deg, rgba(15,15,15,1), rgba(10,10,12,1));
  color: #fff;
  max-width: 100%;
  overflow-x: hidden;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  padding: 0 1rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 100%;
}

.benefit-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  transition: all 280ms ease;
}

.benefit-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
}

.benefit-icon svg {
  width: 36px;
  height: 36px;
}

.benefit-title {
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.85rem 0;
  color: #fff;
}

.benefit-description {
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* How It Works Section */
/* neomarketing: mobile fixes - prevent how-it-works overflow */
.how-it-works {
  padding: 5rem 1rem;
  background: linear-gradient(180deg, rgba(10,10,12,1), rgba(5,5,6,1));
  color: #fff;
  max-width: 100%;
  overflow-x: hidden;
}

.how-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  padding: 0 1rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-top: 3rem;
}

.step-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(180deg, #ffffff 0%, #e9e9ea 40%, #cfcfd1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #0b0b0b;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
}

.step-title {
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  color: #fff;
}

.step-description {
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* Mobile adjustments for steps */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .step-connector {
    width: 2px;
    height: 40px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
  }
}

/* Testimonials Section */
/* neomarketing: mobile fixes - prevent testimonials overflow */
.testimonials {
  padding: 5rem 1rem;
  background: linear-gradient(180deg, rgba(5,5,6,1), rgba(10,10,12,1));
  color: #fff;
  max-width: 100%;
  overflow-x: hidden;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  padding: 0 1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 100%;
}

.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2rem;
  text-align: left;
  transition: all 280ms ease;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin: 0;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.15);
}

.author-info {
  flex: 1;
}

.author-name {
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.25rem 0;
}

.author-role {
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* Video Testimonial */
/* neomarketing: mobile fixes - responsive video testimonials */
.video-testimonial {
  width: 100%;
  margin-bottom: 1.5rem;
  max-width: 100%;
}

.video-testimonial iframe {
  max-width: 100%;
  border-radius: 8px;
}

.video-placeholder {
  position: relative;
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(30,30,35,1), rgba(20,20,25,1));
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 300ms ease;
  overflow: hidden;
}

.video-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(93,209,122,0.1), rgba(93,209,122,0.05));
  opacity: 0;
  transition: opacity 300ms ease;
}

.video-placeholder:hover::before {
  opacity: 1;
}

.video-placeholder:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(93,209,122,0.2);
}

.play-icon {
  width: 56px;
  height: 56px;
  color: #5dd17a;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  transition: all 300ms ease;
}

.video-placeholder:hover .play-icon {
  transform: scale(1.15);
  color: #6ee88a;
}

.video-label {
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
}

/* Enhanced Pricing Section */
/* neomarketing: mobile fixes - prevent pricing overflow */
.pricing {
  padding: 5rem 1rem;
  background: linear-gradient(180deg, rgba(10,10,12,1), rgba(5,5,6,1));
  max-width: 100%;
  overflow-x: hidden;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  padding: 0 1rem;
}

/* neomarketing: mobile fixes - responsive pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
  max-width: 100%;
  width: 100%;
}

/* neomarketing: mobile fixes - ensure price cards don't overflow */
.price-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 280ms ease;
  box-sizing: border-box;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.price-card.featured {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  transform: scale(1.05);
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-6px);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #ffffff 0%, #e9e9ea 40%, #cfcfd1 100%);
  color: #0b0b0b;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 10;
}

/* Hero-kicker style for featured badge */
.featured-badge.hero-kicker-style {
  background: #000;
  color: #ffffff;
  border: 1px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  text-transform: lowercase;
}

.price-card.featured {
  padding-top: 3.5rem;
}

.price-header {
  margin-bottom: 1.5rem;
}

.price-name {
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.5rem 0;
}

.price-description {
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 2rem;
}

.price-currency {
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-right: 0.25rem;
}

.price-value {
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.price-period {
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-left: 0.25rem;
}

.price-features {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
  text-align: left;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.price-features li:last-child {
  margin-bottom: 0;
}

.check-small {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #5dd17a;
  margin-top: 2px;
}

.btn-price-outline {
  width: 100%;
  display: block;
  text-align: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: all 180ms ease;
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  box-sizing: border-box;
}

.btn-price-outline:hover,
.btn-price-outline:focus {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.08);
}

.btn-price-solid {
  width: 100%;
  display: block;
  text-align: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: all 180ms ease;
  background: linear-gradient(180deg, #ffffff 0%, #e9e9ea 40%, #cfcfd1 100%);
  color: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.85);
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.6);
  cursor: pointer;
  box-sizing: border-box;
}

.btn-price-solid:hover,
.btn-price-solid:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.65);
}

/* Final CTA Section */
/* neomarketing: mobile fixes - prevent final CTA overflow */
.final-cta {
  padding: 6rem 1rem;
  background: linear-gradient(135deg, rgba(20,20,25,0.9) 0%, rgba(10,10,15,0.95) 100%), 
              url('https://xcrytmmgrfhyqjyouwcs.supabase.co/storage/v1/object/public/NeoAssets/NeoFunnel/Portfolio.png') center center / cover no-repeat;
  color: #fff;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 100%;
  overflow-x: hidden;
}

.final-cta-container {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

.final-cta-title {
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 1rem 0;
  color: #fff;
}

.final-cta-subtitle {
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin: 0 0 2.5rem 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.btn-final-cta {
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: all 200ms ease;
  background: linear-gradient(180deg, #ffffff 0%, #e9e9ea 40%, #cfcfd1 100%);
  color: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.85);
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.6);
  cursor: pointer;
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

.btn-final-cta:hover,
.btn-final-cta:focus {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.65);
}

.final-cta-note {
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* Mobile adjustments for pricing */
/* neomarketing: mobile fixes - better mobile pricing layout */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    gap: 1.5rem;
    padding: 0;
  }
  
  .price-card.featured {
    transform: scale(1);
  }
  
  .price-card.featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 600px) {
  .pricing {
    padding: 4rem 0.5rem;
  }
  
  .pricing-container {
    padding: 0 0.5rem;
  }
  
  .pricing-grid {
    max-width: 100%;
    gap: 1rem;
  }
  
  .price-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  /* neomarketing: mobile fixes - better testimonial cards on very small screens */
  .testimonials-grid {
    gap: 1.5rem;
  }
  
  .testimonial-card {
    max-width: 100%;
    padding: 1.5rem;
  }
  
  .final-cta {
    padding: 4rem 1rem;
  }
  
  .btn-final-cta {
    padding: 0.85rem 2rem;
    font-size: 1rem;
  }
}

/* ============================================
   LOGO DISPLAYER SECTION
   ============================================ */

.logo-displayer {
  background: #000;
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  width: fit-content;
  animation: scroll 30s linear infinite;
}

.logo-slide {
  display: flex;
  gap: 4rem;
  padding: 0 2rem;
}

/* neomarketing: mobile fixes - transparent logo boxes */
.partner-logo {
  min-width: 150px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: rgba(255,255,255,0.6);
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* neomarketing: mobile fixes - consistent logo sizing */
.partner-logo img {
  max-width: 120px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.logo-displayer:hover .logo-track {
  animation-play-state: paused;
}

/* ============================================
   IMAGE GALLERY SECTION (Inline Auto-Scroll)
   ============================================ */

/* neomarketing: mobile fixes - prevent gallery overflow */
.image-gallery {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(10,10,12,1), rgba(5,5,6,1));
  overflow: hidden;
  max-width: 100%;
}

.gallery-track {
  display: flex;
  width: fit-content;
  animation: gallery-scroll 40s linear infinite;
  gap: 2rem;
  max-width: none;
}

.gallery-slide {
  display: flex;
  gap: 2rem;
}

/* neomarketing: mobile fixes - responsive gallery items with 4:5 aspect ratio */
.gallery-item {
  position: relative;
  width: 400px;
  aspect-ratio: 4 / 5;
  max-width: 100%;
}

/* Fallback for browsers without aspect-ratio support */
@supports not (aspect-ratio: 4 / 5) {
  .gallery-item {
    width: 400px;
    height: 500px; /* 400 * 1.25 = 500 for 4:5 ratio */
    max-width: 100%;
  }
}

/* neomarketing: mobile fixes - 4:5 aspect ratio for gallery images on mobile */
@media (max-width: 768px) {
  .gallery-item {
    width: 300px;
  }
  
  /* Fallback for browsers without aspect-ratio support */
  @supports not (aspect-ratio: 4 / 5) {
    .gallery-item {
      width: 300px;
      height: 375px; /* 300 * 1.25 = 375 for 4:5 ratio */
    }
  }
}

/* neomarketing: mobile fixes - ensure images maintain aspect ratio and object-fit */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform 300ms ease;
  max-width: 100%;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-kicker {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid #ffffff;
  color: #ffffff;
  background: #000;
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  z-index: 10;
}

@keyframes gallery-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.image-gallery:hover .gallery-track {
  animation-play-state: paused;
}

/* ============================================
   SPAIN MAP SECTION
   ============================================ */

.spain-map-section {
  padding: 5rem 1rem;
  background: linear-gradient(180deg, rgba(5,5,6,1), rgba(10,10,12,1));
  color: #fff;
}

.map-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.spain-map {
  margin: 3rem auto;
  max-width: 100%;
}

.spain-map svg {
  max-width: 100%;
  height: auto;
}

.city-marker {
  cursor: pointer;
  transition: all 300ms ease;
}

.city-marker:hover circle:first-child {
  fill: rgba(255,255,255,0.2);
  r: 25;
}

.city-marker:hover circle:nth-child(2) {
  fill: #4ec76a;
  transform: scale(1.2);
}

.city-marker text {
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-weight: 600;
}

.map-note {
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .spain-map svg {
    transform: scale(0.8);
  }
}

/* ============================================
   FOOTER SECTION
   ============================================ */

.main-footer {
  background: #000;
  color: #fff;
  padding: 4rem 1rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

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

.footer-logo {
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
}

.footer-logo {
  margin-bottom: 1rem;
}

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

.footer-tagline {
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  max-width: 300px;
  text-align: left;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1rem 0;
  text-align: left;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.footer-column a {
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 200ms ease;
  text-align: left;
  display: block;
}

.footer-column a:hover {
  color: #fff;
}

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

.footer-copyright {
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  text-align: left;
}

.payment-methods {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.payment-icon {
  height: 24px;
  width: auto;
  opacity: 0.7;
  transition: opacity 200ms ease;
}

.payment-icon:hover {
  opacity: 1;
}

.footer-bottom p:not(.footer-copyright) {
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e8e8ea 0%, #c8c8cc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: all 300ms ease;
  z-index: 1000;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.5);
  background: linear-gradient(135deg, #f0f0f2 0%, #d8d8dc 100%);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  color: #0b0b0b;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}

/* ============================================
   GALLERY KICKER LOCATION STYLING
   ============================================ */

.gallery-kicker .location {
  font-weight: 400;
  text-transform: capitalize;
}

/* ============================================
   FAQS SECTION
   ============================================ */

/* neomarketing: mobile fixes - prevent FAQs overflow */
.faqs {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(10,10,12,1), rgba(15,15,15,1));
  max-width: 100%;
  overflow-x: hidden;
}

.faqs-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

.faqs-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 300ms ease;
}

.faq-item:hover {
  border-color: rgba(255,255,255,0.15);
}

/* neomarketing: mobile fixes - reduced font-weight for FAQ titles for better readability */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem;
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 200ms ease;
}

.faq-question:hover {
  color: rgba(255,255,255,0.8);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 300ms ease;
  color: rgba(255,255,255,0.6);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease, padding 400ms ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin: 0;
  text-align: left;
}

/* ============================================
   TRUST BADGES
   ============================================ */

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 2rem;
  padding: 3rem 1rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.trust-icon {
  width: 40px;
  height: 40px;
  color: #5dd17a;
}

.trust-badge span {
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* ============================================
   FOOTER MOBILE COLLAPSIBLE
   ============================================ */

.footer-toggle {
  display: none;
}

.footer-toggle-icon {
  display: none;
}

/* Show footer section headers on desktop */
.footer-column h4 {
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1rem 0;
  text-align: left;
  display: block;
}

/* Make sure lists are visible on desktop */
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  /* Thinner hamburger lines on mobile */
  .hamburger span {
    height: 1.5px;
  }
  
  /* Footer mobile - center all text */
  .footer-left {
    align-items: center;
  }
  
  .footer-tagline {
    text-align: center;
    max-width: 100%;
  }
  
  .footer-column {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  
  .footer-column h4 {
    display: none; /* Hide standalone h4 on mobile */
  }
  
  .footer-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: none;
    padding: 1rem 0;
    cursor: pointer;
  }
  
  .footer-toggle::before {
    content: attr(data-title);
    font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    flex: 1;
    text-align: center;
  }
  
  .footer-toggle-icon {
    display: block;
    width: 20px;
    height: 20px;
    color: rgba(255,255,255,0.6);
    transition: transform 300ms ease;
  }
  
  .footer-column.active .footer-toggle-icon {
    transform: rotate(180deg);
  }
  
  .footer-links-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 400ms ease, padding 400ms ease;
  }
  
  .footer-column.active .footer-links-list {
    max-height: 300px;
    padding-bottom: 1rem;
  }
  
  .footer-column ul {
    text-align: center;
  }
  
  .footer-column a {
    text-align: center;
  }
  
  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-copyright {
    text-align: center;
  }
  
  .payment-methods {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

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


/* ============================================
   FOOTER LOGO TEXT
   ============================================ */
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-logo-img {
  max-width: 150px;
  height: auto;
}

.footer-logo .logo-text {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 1.5rem;
  color: #fff;
}

.footer-logo .logo-light {
  font-weight: 400;
}

.footer-logo .logo-bold {
  font-weight: 600;
}

/* ============================================
   HOW IT WORKS FORM FIELDS
   ============================================ */
.step-form {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: #fff;
  font-family: 'Actor', sans-serif;
  font-size: 0.95rem;
  box-sizing: border-box;
  transition: all 200ms ease;
}

.form-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.form-input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
}

.slider-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slider-container label {
  font-family: 'Actor', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  text-align: left;
}

.form-slider {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
}

.form-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #fff;
  cursor: pointer;
  border-radius: 50%;
}

.form-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #fff;
  cursor: pointer;
  border-radius: 50%;
  border: none;
}

.gradient-slider {
  background: linear-gradient(to right, #000 0%, #fff 100%);
}

.btn-start {
  margin-top: 0.5rem;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #e8e8ea 0%, #c8c8cc 100%);
  color: #000;
  border: none;
  border-radius: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
}

.btn-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

/* ============================================
   VIDEO COVERAGE SECTION
   ============================================ */
/* neomarketing: mobile fixes - responsive video section */
.video-coverage-section {
  padding: 5rem 1rem;
  background: linear-gradient(180deg, rgba(10,10,12,1), rgba(15,15,15,1));
  max-width: 100%;
  overflow-x: hidden;
}

.video-container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  width: 100%;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  max-width: 100%;
}

/* neomarketing: Spain map image styling with proper border on all sides */
.spain-map-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  box-sizing: border-box;
}

/* ============================================
   VIDEO TESTIMONIALS WHITE HOVER
   ============================================ */
.video-testimonial iframe {
  border-radius: 8px;
  transition: all 300ms ease;
}

.testimonial-card:hover .video-testimonial iframe {
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* ============================================
   SOCIAL ICONS CIRCULAR FIX - ENHANCED
   ============================================ */
.social-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  transition: all 300ms ease !important;
  flex-shrink: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.social-link:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.2) !important;
  transform: translateY(-2px) scale(1.05) !important;
}

.social-link svg {
  width: 20px !important;
  height: 20px !important;
  color: #fff !important;
  flex-shrink: 0 !important;
}

/* ============================================
   PRICING — per-lead line + minimal extras + footnote
   ============================================ */

.price-leads {
  font-family: 'Actor', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin: -1rem 0 1.75rem;
  letter-spacing: 0.01em;
}

.pricing-footnote {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
}

/* ============================================
   LEGAL PAGES (aviso-legal, privacidad, cookies, terminos)
   ============================================ */

.legal-page {
  max-width: 800px;
  margin: 3rem auto 4rem;
  padding: 0 1.5rem;
  text-align: left;
  color: #e9e9e9;
  line-height: 1.7;
  font-size: 1rem;
}

.legal-page h1 {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.legal-page .legal-meta {
  color: #888;
  font-size: 0.875rem;
  margin: 0 0 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-page section {
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
  color: #fff;
}

.legal-page h3 {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: #fff;
}

.legal-page p {
  margin: 0 0 1rem;
  color: #d0d0d0;
}

.legal-page ul,
.legal-page ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
  color: #d0d0d0;
}

.legal-page li {
  margin-bottom: 0.5rem;
}

.legal-page strong {
  color: #fff;
  font-weight: 600;
}

.legal-page a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  transition: text-decoration-color 200ms ease;
}

.legal-page a:hover {
  text-decoration-color: #fff;
}

@media (max-width: 640px) {
  .legal-page {
    margin: 2rem auto 3rem;
    padding: 0 1.25rem;
    font-size: 0.95rem;
  }
  .legal-page h1 { font-size: 1.75rem; }
  .legal-page h2 { font-size: 1.2rem; }
  .legal-page h3 { font-size: 1.05rem; }
}
