@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap');

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

:root {
  --lagoon-blue: #00C3DA;
  --jet-black: #1F1F1F;
  --pure-white: #FFFFFF;
  --dark-bg: #0a0b0d;
  --dark-card: #121417;
  --dark-input: rgba(255, 255, 255, 0.05);
  --light-bg: #f8f9fa;
  --light-card: #ffffff;
  --text-dark: #1F1F1F;
  --text-dark-muted: #4a5568;
  --text-light: #ffffff;
  --text-light-muted: #a0aec0;
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-light: rgba(0, 0, 0, 0.08);
  --success: #1a3a2e;
  --success-text: #a8e6c8;
  --error: #d93025;
  --error-bg: #fce8e6;
  --font-title: 'Poppins', sans-serif;
  --font-body: 'Source Sans Pro', 'Source Sans 3', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background: var(--light-bg);
  color: var(--text-dark);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* TOPBAR */
.topbar {
  background: var(--jet-black);
  color: var(--lagoon-blue);
  text-align: center;
  padding: 12px 24px;
  font-size: 13px;
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-dark);
  z-index: 10;
}

/* NAVIGATION */
nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav.dark {
  background: rgba(10, 11, 13, 0.85);
  border-bottom: 1px solid var(--border-dark);
}

nav.nav-centered {
  justify-content: center;
}

nav.nav-centered .logo-img {
  height: 48px;
}

.logo-container {
  display: flex;
  align-items: center;
  /* Rule: 25px clear space. Checked in padding / margins */
  padding: 4px 25px;
}

.logo-img {
  height: 48px;
  min-width: 80px; /* Rule: minimum 80px width */
  display: block;
}

.nav-tagline {
  font-size: 13px;
  color: var(--text-dark-muted);
  font-weight: 400;
  letter-spacing: 0.04em;
}

nav.dark .nav-tagline {
  color: var(--text-light-muted);
}

/* SUCCESS BAR */
.success-bar {
  background: var(--success);
  color: var(--success-text);
  text-align: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.02em;
}

.success-bar::before {
  content: '✓';
  background: var(--success-text);
  color: var(--success);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
}

/* LAYOUT CONTAINER */
main {
  flex: 1;
}

/* HERO SECTION (Opt-in) */
.hero-wrapper {
  background: var(--pure-white);
  border-bottom: 1px solid var(--border-light);
  padding: 80px 48px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lagoon-blue);
  margin-bottom: 24px;
}

/* Lagoon Blue contrast highlight on dark background, or dark blue variant if on light background */
.eyebrow-light-bg {
  color: #00a4b8; /* Darker teal for proper contrast on white background */
}

h1 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--jet-black);
  margin-bottom: 24px;
}

h1 span.highlight {
  color: #00a4b8; /* Stricter blue contrast */
}

.hero-desc {
  font-size: 20px;
  color: var(--text-dark-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 620px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 36px;
  color: var(--jet-black);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span {
  color: #00a4b8;
}

.stat-label {
  font-size: 13px;
  color: var(--text-dark-muted);
  line-height: 1.4;
  font-weight: 400;
}

/* FORM CARD */
.form-card {
  background: var(--dark-bg);
  border-radius: 20px;
  padding: 40px 32px;
  color: var(--text-light);
  border: 1px solid var(--border-dark);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 195, 218, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.form-header {
  margin-bottom: 24px;
}

.form-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--text-light);
}

.form-subtitle {
  font-size: 14px;
  color: var(--text-light-muted);
  font-weight: 300;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-title);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  margin-bottom: 8px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--dark-input);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text-light);
  font-family: var(--font-body);
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--lagoon-blue);
  box-shadow: 0 0 0 3px rgba(0, 195, 218, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

/* User-valid & User-invalid styles as per modern-web-guidance */
.form-group input:user-invalid, .form-group select:user-invalid, .form-group textarea:user-invalid {
  border-color: var(--error);
  background-color: rgba(217, 48, 37, 0.1);
}

.form-group input:user-valid, .form-group select:user-valid, .form-group textarea:user-valid {
  border-color: #188038;
}

.error-msg {
  display: none;
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 6px;
  font-weight: 400;
}

.form-group:has(input:user-invalid) .error-msg, 
.form-group:has(select:user-invalid) .error-msg,
.form-group:has(textarea:user-invalid) .error-msg {
  display: block;
}

/* Conditional Field Logic Container */
.conditional-fields {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.conditional-fields.active {
  display: block;
}

/* Warning Message Block */
.warning-message {
  display: none;
  background: rgba(219, 147, 0, 0.15);
  border: 1px solid #db9300;
  color: #ffca58;
  border-radius: 8px;
  padding: 16px;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
  animation: fadeIn 0.4s ease forwards;
}

.warning-message.active {
  display: block;
}

/* Form Success & Download State */
.form-success-state {
  display: none;
  text-align: center;
  animation: fadeIn 0.5s ease forwards;
  padding: 24px 0;
}

.form-success-state.active {
  display: block;
}

.success-icon {
  font-size: 48px;
  color: var(--lagoon-blue);
  margin-bottom: 16px;
}

.success-title {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
}

.success-text {
  font-size: 16px;
  color: var(--text-light-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* BUTTONS */
.btn-primary {
  width: 100%;
  background: var(--lagoon-blue);
  color: var(--jet-black);
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-title);
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 195, 218, 0.4);
  opacity: 0.95;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  background: #555555;
  color: #888888;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 0.6;
}

.form-disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

/* DATA STRIP */
.data-strip {
  background: var(--jet-black);
  padding: 80px 24px;
  border-bottom: 1px solid var(--border-dark);
}

@media (max-width: 768px) {
  .data-strip {
    padding: 60px 16px;
  }
}

.data-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .data-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .data-strip-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.data-item {
  text-align: center;
  padding: 12px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.data-item:last-child {
  border-right: none;
}

@media (max-width: 768px) {
  .data-item {
    border-right: none;
  }
  .data-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 480px) {
  .data-item {
    border-right: none !important;
  }
}

.data-big {
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 800;
  color: var(--lagoon-blue);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.data-desc {
  font-size: 15px;
  color: var(--text-light-muted);
  font-weight: 300;
  line-height: 1.4;
  max-width: 200px;
  margin: 0 auto;
}

/* VALUE SECTION (4 Tendencias) */
.value-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  font-size: 12px;
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00a4b8;
  margin-bottom: 16px;
  display: block;
}

.section-label.light {
  color: var(--lagoon-blue);
}

.section-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--jet-black);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title.light {
  color: var(--pure-white);
}

.section-desc {
  font-size: 18px;
  color: var(--text-dark-muted);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-desc.light {
  color: var(--text-light-muted);
}

.trends-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

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

.trend-card {
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.trend-card:hover {
  transform: translateY(-5px);
  border-color: var(--lagoon-blue);
  box-shadow: 0 12px 30px rgba(0, 195, 218, 0.1);
}

.trend-num {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  color: #00a4b8;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.trend-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 16px;
  color: var(--jet-black);
  line-height: 1.4;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.trend-card-desc {
  font-size: 15px;
  color: var(--text-dark-muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: auto;
}

.trend-tag {
  display: inline-block;
  align-self: flex-start;
  margin-top: 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  background: #e6fafc;
  color: #008fa0;
}

/* SNEAK PEEK SECTION */
.sneak-wrapper {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--pure-white);
}

.sneak-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 968px) {
  .sneak-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.sneak-quote {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--jet-black);
  margin-bottom: 24px;
}

.sneak-quote span.underline {
  border-bottom: 3px solid var(--lagoon-blue);
  padding-bottom: 2px;
}

.sneak-body {
  font-size: 18px;
  color: var(--text-dark-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 32px;
}

.sneak-topics {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sneak-topic {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--text-dark-muted);
  font-weight: 400;
}

.sneak-topic::before {
  content: '→';
  color: #00a4b8;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.sneak-visual-card {
  background: var(--dark-bg);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border-dark);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

.radar-label {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lagoon-blue);
  margin-bottom: 28px;
}

.topics-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.topic-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topic-name {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  min-width: 150px;
}

.topic-bar-bg {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.topic-bar-fill {
  height: 100%;
  background: var(--lagoon-blue);
  border-radius: 3px;
  opacity: 0.8;
  animation: fillBar 1.5s ease-out forwards;
}

.topic-pages {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  min-width: 35px;
  text-align: right;
}

/* CTA FINAL */
.cta-final-section {
  background: var(--light-bg);
  padding: 80px 24px;
  text-align: center;
  border-top: 1px solid var(--border-light);
}

.cta-final-inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta-final-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.03em;
  color: var(--jet-black);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-final-sub {
  font-size: 16px;
  color: var(--text-dark-muted);
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.6;
}

.btn-cta-big {
  background: var(--jet-black);
  color: var(--pure-white);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 40px;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.05em;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
}

.btn-cta-big:hover {
  background: #1a1e24;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.cta-note {
  font-size: 13px;
  color: var(--text-dark-muted);
  margin-top: 16px;
}

/* FOOTER */
footer {
  background: var(--pure-white);
  border-top: 1px solid var(--border-light);
  padding: 32px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

@media (max-width: 568px) {
  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.footer-logo-img {
  height: 48px;
  min-width: 80px;
  display: block;
}

.footer-note {
  font-size: 13px;
  color: var(--text-dark-muted);
}

/* ==========================================================================
   PAGE 2: PROPUESTA STYLES
   ========================================================================== */

/* HERO TRANSICION */
.transition-hero {
  background: var(--dark-bg);
  padding: 96px 48px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-dark);
}

.transition-hero::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 195, 218, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-tag {
  display: inline-block;
  font-size: 14px;
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lagoon-blue);
  border: 1px solid rgba(0, 195, 218, 0.3);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-h1 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-h1 span.highlight {
  color: var(--lagoon-blue);
}

.hero-sub {
  font-size: 20px;
  color: var(--text-light-muted);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* VIDEO CONTAINER CONTAINER */
.video-wrapper {
  max-width: 800px;
  margin: 0 auto 48px;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.video-banner {
  background: rgba(0, 195, 218, 0.08);
  border: 1px solid rgba(0, 195, 218, 0.4);
  color: var(--text-light);
  padding: 12px 24px;
  border-radius: 8px;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  max-width: 640px;
  text-align: center;
}

.banner-icon-svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--lagoon-blue);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .video-banner {
    font-size: 13px;
    padding: 10px 16px;
    width: 100%;
    box-sizing: border-box;
  }
}

/* Wistia element custom override wrapper */
.wistia-container {
  position: relative;
  width: 100%;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.hero-cta-row .btn-primary {
  width: auto;
}

@media (max-width: 480px) {
  .hero-cta-row {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  .hero-cta-row .btn-primary {
    width: 100%;
  }
}

.btn-secondary {
  color: var(--text-light);
  font-size: 15px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 14px 28px;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-title);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  color: var(--text-light);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* EL PROBLEMA SECTION */
.problem-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
}

.pains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

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

.pain-card {
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 36px 28px;
  border-top: 4px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.pain-card:hover {
  border-top-color: var(--lagoon-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.pain-icon {
  font-size: 32px;
  margin-bottom: 20px;
  height: 50px;
  width: 50px;
  background: rgba(0, 195, 218, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--lagoon-blue);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pain-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 16px;
  color: var(--jet-black);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.pain-desc {
  font-size: 16px;
  color: var(--text-dark-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* DIFERENCIADORES SECTION */
.diff-section {
  background: var(--dark-bg);
  padding: 96px 48px;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.diff-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

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

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

.diff-card {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.diff-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(0, 195, 218, 0.3);
}

.diff-num {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  color: var(--lagoon-blue);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  opacity: 0.8;
}

.diff-title-item {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.4;
}

.diff-desc {
  font-size: 16px;
  color: var(--text-light-muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: auto;
}

.diff-stat {
  margin-top: 24px;
  display: inline-block;
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 800;
  color: var(--lagoon-blue);
  line-height: 1;
}

.diff-stat-label {
  font-size: 11px;
  color: var(--text-light-muted);
  font-weight: 300;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* PROCESO/METODOLOGIA SECTION */
.process-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
  position: relative;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--border-light);
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding-bottom: 40px;
  align-items: start;
}

.process-step:last-child {
  padding-bottom: 0;
}

.step-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--jet-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  color: var(--lagoon-blue);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px var(--light-bg);
}

.step-body {
  padding-top: 10px;
}

.step-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 18px;
  color: var(--jet-black);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 17px;
  color: var(--text-dark-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* PRUEBA SOCIAL / CASES STRIP */
.proof-strip {
  background: #f1f3f5;
  padding: 80px 48px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 968px) {
  .proof-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.proof-case {
  display: flex;
  flex-direction: column;
}

.proof-eyebrow {
  font-size: 12px;
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00a4b8;
  margin-bottom: 16px;
}

.proof-headline {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--jet-black);
  line-height: 1.2;
  margin-bottom: 16px;
}

.proof-sub {
  font-size: 18px;
  color: var(--text-dark-muted);
  font-weight: 300;
  line-height: 1.7;
}

.proof-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.proof-metric-card {
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.01);
}

.proof-metric-num {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 32px;
  color: var(--jet-black);
  line-height: 1;
  margin-bottom: 6px;
}

.proof-metric-num span {
  color: #00a4b8;
}

.proof-metric-label {
  font-size: 13px;
  color: var(--text-dark-muted);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* MARCAS / CLIENTS */
.brands-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 48px;
  text-align: center;
}

.brands-label {
  font-size: 12px;
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark-muted);
  margin-bottom: 32px;
}

.brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.brand-chip {
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--jet-black);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  transition: all 0.25s ease;
}

.brand-chip:hover {
  transform: translateY(-2px);
  border-color: var(--lagoon-blue);
  box-shadow: 0 8px 18px rgba(0, 195, 218, 0.1);
}

/* CTA FINAL DIALOG / SESION */
.session-cta-section {
  background: var(--dark-bg);
  padding: 96px 48px;
  text-align: center;
  border-top: 1px solid var(--border-dark);
}

.session-inner {
  max-width: 720px;
  margin: 0 auto;
}

.session-tag {
  display: inline-block;
  font-size: 12px;
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lagoon-blue);
  border: 1px solid rgba(0, 195, 218, 0.25);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.session-h2 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.03em;
  color: var(--text-light);
  line-height: 1.2;
  margin-bottom: 20px;
}

.session-h2 span.highlight {
  color: var(--lagoon-blue);
}

.session-sub {
  font-size: 18px;
  color: var(--text-light-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 40px;
}

.session-btn-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.session-btn {
  background: var(--lagoon-blue);
  color: var(--jet-black);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 48px;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 195, 218, 0.2);
}

.session-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 195, 218, 0.4);
}

.session-btn svg {
  fill: currentColor;
  width: 18px;
  height: 18px;
}

.session-note {
  font-size: 12px;
  color: var(--text-light-muted);
  opacity: 0.6;
}

.session-bullets {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 600px) {
  .session-bullets {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

.session-bullet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light-muted);
  font-weight: 300;
}

.session-bullet::before {
  content: '✓';
  color: var(--lagoon-blue);
  font-weight: 700;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fillBar {
  from {
    width: 0%;
  }
}

/* Ajustes de Legibilidad de Fuentes (Aumento de tamaño de letra de cuerpos) */
.stat-label, 
.form-subtitle, 
.warning-message, 
.success-text, 
.data-desc, 
.trend-card-desc, 
.topic-name, 
.cta-note, 
.footer-note, 
.proof-metric-label, 
.session-note {
  font-size: 16px; /* Aumentado de 15px */
}

.form-group label, 
.error-msg, 
.form-disclaimer, 
.trend-tag, 
.topic-pages, 
.diff-stat-label {
  font-size: 14px; /* Aumentado de 13px */
}

.form-group input, 
.form-group select, 
.form-group textarea, 
.pain-desc, 
.diff-desc, 
.step-desc, 
.brand-chip, 
.session-bullet {
  font-size: 18px; /* Aumentado de 16px */
}

.section-desc, 
.sneak-body, 
.sneak-topic, 
.cta-final-sub, 
.proof-sub, 
.session-sub {
  font-size: 20px; /* Aumentado de 18px */
}

/* ==========================================================================
   CLIENT LOGO WALL STYLES
   ========================================================================== */
.logo-wall-section {
  background: var(--pure-white);
  padding: 80px 24px;
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.logo-wall-container {
  max-width: 1200px;
  margin: 0 auto;
}

.logo-wall-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--jet-black);
  margin-bottom: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}

.logo-wall-wrapper {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 32px;
  align-items: center;
  justify-items: center;
}

.logo-wall-grid {
  display: contents;
}

@media (max-width: 1024px) {
  .logo-wall-wrapper {
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .logo-wall-section {
    padding: 40px 16px !important;
  }
}

.logo-wall-item {
  width: 100%;
  max-width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.logo-wall-item img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-large {
  flex: 0 0 165px !important;
  width: 165px !important;
  max-width: 165px !important;
}

.logo-large img {
  max-height: 72px !important;
}

.logo-wall-item img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.08);
}

/* ==========================================================================
   MOBILE UX/UI OPTIMIZATIONS (Overriding previous rules)
   ========================================================================== */
@media (max-width: 768px) {
  /* Navigation */
  nav {
    padding: 12px 16px !important;
  }
  
  .nav-tagline {
    display: none !important; /* Hide tagline to save space */
  }
  
  .logo-img {
    height: 36px !important; /* Sleeker logo in propuesta */
  }
  
  nav.nav-centered .logo-img {
    height: 48px !important; /* Sleeker logo in index */
  }

  /* Padding adjustments for sections */
  .hero-wrapper, 
  .transition-hero,
  .value-section, 
  .sneak-container, 
  .problem-section, 
  .diff-section, 
  .process-section, 
  .proof-strip, 
  .brands-row, 
  .session-cta-section {
    padding: 48px 16px !important;
  }

  /* Typography scale down for small screens */
  h1 {
    font-size: 32px !important;
    line-height: 1.2 !important;
    margin-bottom: 16px !important;
  }
  
  .hero-h1 {
    font-size: 32px !important;
    line-height: 1.2 !important;
  }

  .section-title, 
  .logo-wall-title,
  .session-h2, 
  .proof-headline {
    font-size: 26px !important;
    line-height: 1.25 !important;
  }

  .hero-desc, 
  .hero-sub, 
  .session-sub, 
  .proof-sub,
  .section-desc,
  .cta-final-sub {
    font-size: 18px !important;
    line-height: 1.6 !important;
    margin-bottom: 24px !important;
  }

  /* Stat grid wrapping */
  .stat-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding-top: 24px !important;
  }
  
  .stat-number {
    font-size: 28px !important;
  }

  /* Form card padding for easier taps */
  .form-card {
    padding: 24px 16px !important;
    border-radius: 16px !important;
  }

  /* Video scaling */
  .video-wrapper {
    margin-bottom: 32px !important;
    border-radius: 8px !important;
  }

  /* Timeline adjustments */
  .process-steps::before {
    left: 16px !important;
  }
  
  .process-step {
    grid-template-columns: 48px 1fr !important;
    gap: 12px !important;
    padding-bottom: 24px !important;
  }
  
  .step-dot {
    width: 32px !important;
    height: 32px !important;
    font-size: 12px !important;
    box-shadow: 0 0 0 6px var(--light-bg) !important;
  }
  
  .step-body {
    padding-top: 4px !important;
  }

  /* Footer adjustments */
  footer {
    padding: 16px 16px !important;
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  /* Extra tight screens (iPhone SE, etc.) */
  h1, .hero-h1 {
    font-size: 26px !important;
  }

  .section-title, 
  .logo-wall-title,
  .session-h2, 
  .proof-headline {
    font-size: 22px !important;
  }

  .btn-primary, 
  .btn-secondary, 
  .session-btn, 
  .btn-cta-big {
    width: 100% !important;
    padding: 14px 16px !important;
    font-size: 14px !important;
    text-align: center !important;
  }

  /* Topics list in index page (Sneak peek) */
  .topic-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }
  
  .topic-name {
    min-width: 100% !important;
  }
  
  .topic-bar-bg {
    width: 100% !important;
    flex: none !important;
    height: 6px !important;
    margin: 4px 0 !important;
  }
  
  .topic-pages {
    align-self: flex-end !important;
  }
}

/* Report Loader Banner */
.report-loader-banner {
  background: rgba(31, 31, 31, 0.95);
  border-bottom: 2px solid rgba(0, 195, 218, 0.2);
  padding: 16px 24px;
  position: sticky;
  top: 72px;
  z-index: 99;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100%;
  box-sizing: border-box;
}

.report-loader-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.report-loader-text-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 14px;
  color: var(--pure-white);
  letter-spacing: 0.03em;
}

.report-loader-message {
  display: flex;
  align-items: center;
  gap: 8px;
}

.report-loader-message::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--lagoon-blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--lagoon-blue);
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.5; }
}

.report-loader-pct {
  color: var(--lagoon-blue);
}

.report-loader-bg-bar {
  background: rgba(255, 255, 255, 0.1);
  height: 6px;
  border-radius: 3px;
  width: 100%;
  overflow: hidden;
}

.report-loader-progress {
  background: linear-gradient(90deg, var(--lagoon-blue), #00F0FF);
  height: 100%;
  width: 0%;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(0, 195, 218, 0.5);
  transition: width 0.1s linear;
}

.report-loader-banner.completed {
  border-bottom: 2px solid #00FF87;
}

.report-loader-banner.completed .report-loader-pct {
  color: #00FF87;
}

.report-loader-banner.completed .report-loader-message::before {
  background-color: #00FF87;
  box-shadow: 0 0 8px #00FF87;
  animation: none;
}

/* Report Download Button in Banner */
.report-download-btn {
  background: #00FF87;
  color: #1F1F1F;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 11px;
  padding: 6px 16px;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 255, 135, 0.2);
}

.report-download-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 255, 135, 0.4);
}

/* Form Loader & Decision State */
.form-loader-state {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.loader-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 15px;
  color: var(--pure-white);
}

.loader-message {
  display: flex;
  align-items: center;
  gap: 8px;
}

.loader-message::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--lagoon-blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--lagoon-blue);
  animation: pulse-dot 1.5s infinite;
}

.loader-pct {
  color: var(--lagoon-blue);
}

.loader-bg-bar {
  background: rgba(255, 255, 255, 0.1);
  height: 8px;
  border-radius: 4px;
  width: 100%;
  overflow: hidden;
}

.loader-progress {
  background: linear-gradient(90deg, var(--lagoon-blue), #00F0FF);
  height: 100%;
  width: 0%;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 195, 218, 0.5);
  transition: width 0.1s linear;
}

.decision-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.decision-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light-muted);
}

.decision-text strong {
  color: var(--pure-white);
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
  font-family: var(--font-title);
}

.decision-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.decision-btn-main {
  width: 100%;
  padding: 14px;
  font-size: 14px;
  text-align: center;
  justify-content: center;
}

.decision-btn-sub {
  width: 100%;
  padding: 12px;
  font-size: 13px;
  text-align: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light-muted);
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-title);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.decision-btn-sub:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--pure-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.form-loader-state.completed .loader-message::before {
  background-color: #00FF87;
  box-shadow: 0 0 8px #00FF87;
  animation: none;
}

.form-loader-state.completed .loader-pct {
  color: #00FF87;
}

/* Phone input with country code selector layout */
.phone-input-container {
  display: flex;
  gap: 8px;
  width: 100%;
}

#phone-country-code {
  width: 110px !important;
  flex-shrink: 0 !important;
  padding: 12px 8px !important;
  text-align: center !important;
  cursor: pointer;
}

#user-phone {
  flex-grow: 1 !important;
}

/* MOBILE LOGO MARQUEE */
@keyframes logoMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

.cloned-logo {
  display: none !important;
}

@media (max-width: 768px) {
  .cloned-logo {
    display: flex !important;
  }

  .logo-wall-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    overflow: hidden;
  }

  .logo-wall-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 0;
  }
  
  .logo-wall-container::before,
  .logo-wall-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }
  
  .logo-wall-container::before {
    left: 0;
    background: linear-gradient(to right, var(--pure-white) 0%, transparent 100%);
  }
  
  .logo-wall-container::after {
    right: 0;
    background: linear-gradient(to left, var(--pure-white) 0%, transparent 100%);
  }
  
  .logo-wall-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: max-content;
    gap: 40px;
    align-items: center;
    justify-content: flex-start;
  }

  .logo-row-1 {
    animation: logoMarquee 50s linear infinite;
  }

  .logo-row-2 {
    animation: logoMarqueeReverse 50s linear infinite;
  }

  .logo-wall-grid:hover,
  .logo-wall-grid:active {
    animation-play-state: paused;
    cursor: grab;
  }
  
  .logo-wall-item {
    flex: 0 0 110px !important;
    width: 110px !important;
    max-width: 110px !important;
  }
}

/* HIGHLIGHTED FORM TITLE */
.form-title-highlight {
  background: linear-gradient(135deg, var(--pure-white) 0%, var(--lagoon-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* INDUSTRY VIDEO SHOWCASE */
.showcase-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  margin-top: 12px;
}

.tabs-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.industry-tabs-scroll {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none; /* Hide scrollbar Firefox */
  scroll-behavior: smooth;
  display: flex;
  justify-content: safe center;
}

.industry-tabs-scroll::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.tab-arrow {
  display: flex;
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  color: var(--text-dark-muted);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.tab-arrow:hover {
  background: var(--light-bg);
  border-color: rgba(0, 195, 218, 0.3);
  color: var(--lagoon-blue);
  transform: translateY(-50%) scale(1.05);
}

.tab-arrow.prev-arrow {
  left: -60px;
}

.tab-arrow.next-arrow {
  right: -60px;
}

@media (max-width: 968px) {
  .tab-arrow.prev-arrow {
    left: -45px;
  }
  .tab-arrow.next-arrow {
    right: -45px;
  }
}

@media (max-width: 768px) {
  .tabs-carousel-wrapper {
    padding: 0 44px; /* Make space for arrows */
  }
  
  .tab-arrow.prev-arrow {
    left: 0;
  }

  .tab-arrow.next-arrow {
    right: 0;
  }
}

.industry-tabs {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 12px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 20px;
  min-width: max-content;
  margin: 0;
}

@media (max-width: 768px) {
  .industry-tabs-scroll {
    display: block; /* Standard block scroll container on mobile */
  }
  .industry-tabs {
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    padding-bottom: 12px !important;
    border-bottom: none;
    min-width: max-content;
    margin: 0 !important;
    padding-left: 20px; /* Add side padding for visual breathing room on mobile scroll */
    padding-right: 20px;
  }
}

.industry-tab {
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark-muted);
  border-radius: 30px;
  cursor: pointer;
  font-family: var(--font-title);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.industry-tab:hover {
  background: rgba(0, 195, 218, 0.05);
  color: #0093a4;
  border-color: rgba(0, 195, 218, 0.2);
}

.industry-tab.active {
  background: var(--lagoon-blue);
  color: var(--text-dark);
  border-color: var(--lagoon-blue);
  box-shadow: 0 4px 12px rgba(0, 195, 218, 0.2);
}

.industry-content {
  display: none;
  animation: fadeIn 0.4s ease forwards;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  background: var(--pure-white);
  border-radius: 20px;
  border: 1px solid var(--border-light);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.industry-content.active {
  display: grid;
}

.industry-info-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.industry-tag {
  align-self: flex-start;
  background: rgba(0, 195, 218, 0.1);
  color: #0093a4;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.industry-title {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 800;
  color: var(--jet-black);
  line-height: 1.2;
}

.industry-description {
  color: var(--text-dark-muted);
  line-height: 1.6;
}

.industry-brands {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.industry-brands-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--jet-black);
  letter-spacing: 0.05em;
}

.industry-brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.industry-brand-tag {
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  padding: 4px 12px;
  font-size: 13px;
  border-radius: 4px;
  color: var(--text-dark);
  font-weight: 600;
}

.industry-video-side {
  width: 100%;
}

.video-card-mockup {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card-mockup:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 195, 218, 0.25);
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-card-mockup:hover .video-thumbnail {
  opacity: 0.95;
  transform: scale(1.02);
}

.video-overlay-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  background: var(--lagoon-blue);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 195, 218, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.video-overlay-play svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  margin-left: 4px;
}

.video-card-mockup:hover .video-overlay-play {
  background: var(--text-light);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.5);
}

.video-duration-label {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  color: var(--text-light);
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 0.05em;
  z-index: 2;
}

/* RESPONSIVE LAYOUT FOR SHOWCASE */
@media (max-width: 968px) {
  .industry-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px;
  }
  .industry-title {
    font-size: 24px;
  }
}

/* STRATEGY SELECTION CARDS (Dos formas de dominar la conversación) */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 48px auto 0 auto;
}

.strategy-card {
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--jet-black);
  border-radius: 12px;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0,0,0,0.01);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.strategy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.strategy-card .card-image-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}

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

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

.strategy-card .card-content-wrapper {
  padding: 28px 24px 32px 24px;
}

.strategy-card .card-eyebrow {
  font-family: var(--font-title);
  font-size: 11px;
  text-transform: uppercase;
  color: #718096;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-weight: 600;
}

.strategy-card .card-title {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  color: var(--jet-black);
  margin-bottom: 16px;
}

.strategy-card .card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark-muted);
}

@media (max-width: 768px) {
  .strategy-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
}

