:root {
  --primary-orange: #ff6b00;
  --primary-orange-hover: #e66000;
  --bg-dark: #070709;
  --bg-darker: #040405;
  --card-bg: #101014;
  --border-color: rgba(255, 255, 255, 0.06);
  --text-main: #f0f0f5;
  --text-muted: #94949e;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { background: var(--bg-dark); color: var(--text-main); font-family: 'Inter', sans-serif; line-height: 1.6; overflow-x: hidden; overscroll-behavior-y: none; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; }

h1 { font-size: clamp(2.5rem, 3.5vw, 3.25rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; margin-bottom: 0.5rem; }
p { font-family: 'Inter', sans-serif; color: var(--text-muted); font-size: 1.0625rem; line-height: 1.8; margin-bottom: 1.5rem; }
.subtitle { font-family: 'Inter', sans-serif; font-size: 1.0625rem; color: var(--text-muted); line-height: 1.7; }
strong { color: var(--text-main); font-weight: 700; }
.text-orange { color: var(--primary-orange); }
/* Removed .hero h1 span conflicting gradient rule */

a { text-decoration: none; transition: 0.3s; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 5%; }
.text-center { text-align: center; }

/* Buttons */
.btn-primary {
  font-family: 'Outfit', sans-serif; background: var(--primary-orange); color: #fff; padding: 1.25rem 2.5rem;
  font-weight: 700; font-size: 1.0625rem; letter-spacing: 0.01em; border-radius: 4px; display: inline-flex; align-items: center; gap: 0.75rem; transition: 0.3s;
}
.btn-primary:hover { background: var(--primary-orange-hover); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,107,0,0.3); }

.btn-outline-orange {
  font-family: 'Outfit', sans-serif; border: 1px solid var(--primary-orange); color: var(--primary-orange); padding: 0.75rem 1.5rem;
  border-radius: 4px; font-weight: 700; font-size: 0.9375rem; letter-spacing: 0.01em; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-outline-orange:hover { background: var(--primary-orange); color: #fff; }

.cta-link { font-family: 'Inter', sans-serif; color: #fff; font-weight: 600; font-size: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; }
.cta-link:hover { color: var(--primary-orange); }

/* Header */
header { position: fixed; top: 0; width: 100%; padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; z-index: 100; transition: 0.3s; }
header.scrolled { background: rgba(7, 7, 9, 0.85); -webkit-backdrop-filter: blur(15px); backdrop-filter: blur(15px); border-bottom: 1px solid var(--border-color); padding: 1rem 5%; }
.logo { font-family: 'Outfit', sans-serif; font-size: 1.375rem; font-weight: 800; display:flex; align-items:center; gap:0.5rem; letter-spacing: -0.02em; }
.nav-links a { font-family: 'Inter', sans-serif; color: var(--text-main); font-weight: 500; font-size: 0.9375rem; margin: 0 1rem; letter-spacing: 0.1px; }
.nav-links a:hover { color: var(--primary-orange); }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; padding: 0 5%; overflow: hidden; }
.hero-content p { font-size: 1.125rem; color: rgba(240, 240, 245, 0.82); line-height: 1.75; }
.hero-bg {
    position: absolute; top:0; left:0; width:100%; height:100%;
    z-index: -1; overflow: hidden;
}
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to right, var(--bg-dark) 0%, rgba(7,7,9,0.6) 40%, rgba(7,7,9,0) 100%);
    z-index: 1;
    pointer-events: none;
}
.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: right center;
    background: transparent;
    z-index: 0;
    mix-blend-mode: screen;
    opacity: 0.85;
}
.hero-content { max-width: 860px; z-index: 10; margin-top: 5rem; position: relative; }
.badge-alert { font-family: 'Inter', sans-serif; display: inline-flex; background: rgba(255,0,0,0.1); border: 1px solid rgba(255,0,0,0.3); color: #ff4444; padding: 0.5rem 1rem; border-radius: 50px; font-weight: 600; font-size: 0.875rem; letter-spacing: 0.1px; margin-bottom: 2rem; align-items: center; gap: 0.5rem; }
.hero-actions { display: flex; gap: 2rem; align-items: center; margin-top: 2rem; flex-wrap: wrap; }

/* Ambient Orange Glow */
.hero-ambient-glow {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vh;
    background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.06) 0%, rgba(255, 107, 0, 0) 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 700px;
    margin-bottom: 3.5rem;
    line-height: 1.8;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

/* ── HERO TITLE (Advanced Typography) ── */
.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 2rem;
}
.hero-h1-line1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: -0.01em;
}
.hero-h1-line2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 6vw, 5.25rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: #ffffff;
}
.text-orange-glow {
    background: linear-gradient(90deg, #ff6b00 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    white-space: nowrap;
    display: inline-block;
}
.text-orange-glow::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(90deg, #ff6b00 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(18px);
    opacity: 0.5;
    pointer-events: none;
}
.hero-sub-primary {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
}
.text-gradient {
    background: linear-gradient(90deg, #ff6b00 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 0.02em;
    filter: drop-shadow(0 0 12px rgba(255, 107, 0, 0.3));
    display: inline-block;
}
.hero-sub-secondary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
}
.hero-sub-secondary span {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap; /* Evita que el texto de un bloque se parta por la mitad */
}
.hero-sub-secondary span::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.8);
    box-shadow: 0 0 8px rgba(255, 107, 0, 0.8);
}

.hero-trust-badges {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    background: transparent;
    padding: 0;
    border: none;
    width: 100%;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.trust-badge i {
    color: var(--primary-orange);
    font-size: 1rem;
    filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.5));
}
.trust-badge-divider {
    width: 1px;
    height: 16px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.15), rgba(255,255,255,0));
}

/* Split Section (Zig Zag) */
.split-section { padding: 6rem 0; background: var(--bg-darker); }
.zig-zag { display: flex; flex-wrap: wrap; min-height: 70vh; }
.zz-reverse { flex-direction: row-reverse; }
.zz-img-wrapper { flex: 1; min-width: 300px; position: relative; }
.zz-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.img-overlay { position: absolute; inset:0; background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(7,7,9,1)); }
.zz-content { flex: 1; padding: 3rem 5%; display: flex; flex-direction: column; justify-content: center; min-width: 300px; }
.zz-content p { max-width: 62ch; }
.flip-back p { max-width: 52ch; }
.eyebrow { font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 2.5px; font-size: 0.75rem; margin-bottom: 1rem; display: block; }
.pain-list { list-style: none; margin-top: 1.5rem; }
.pain-list li { font-family: 'Inter', sans-serif; display: flex; align-items: center; gap: 1rem; font-size: 1rem; margin-bottom: 1rem; font-weight: 500; color: #ffaaaa; }

.trust-metrics { display: flex; gap: 2rem; margin-top: 2rem; }
.metric { font-family: 'Outfit', sans-serif; display: flex; align-items: center; gap: 0.75rem; font-weight: 700; font-size: 1rem; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }

/* Audiences / Flip Cards */
.audience-section { padding: 8rem 0; }
.audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 4rem; perspective: 1000px;}

.flip-card {
  background-color: transparent;
  height: 480px;
  border-radius: 12px;
  perspective: 1200px;
}

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

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

.flip-front, .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.flip-front {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 3rem;
  border-bottom: 3px solid var(--primary-orange);
}

.flip-front-content { z-index: 2; position: relative; }
.flip-front h3 { font-size: 2rem; margin-bottom: 0; text-shadow: 0 2px 10px rgba(0,0,0,0.8);}
.aud-icon { font-size: 3.5rem; color: var(--primary-orange); margin-bottom: 1rem; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.8));}

.flip-back {
  background: var(--card-bg);
  transform: rotateY(180deg);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.flip-back h3 { color: var(--primary-orange); font-size: 1.75rem; margin-bottom: 1.5rem; }

.aud-benefits { list-style: none; margin-top: 1.5rem; border-top: 1px solid var(--border-color); padding-top: 1.5rem; }
.aud-benefits li { font-family: 'Inter', sans-serif; margin-bottom: 1rem; display: flex; gap: 1rem; font-weight: 500; font-size: 0.9375rem; }

/* System Interface Section / Process Flow */
.system-interface-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--bg-dark) 0%, rgba(15, 15, 20, 0.9) 100%);
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.si-background-glow {
    position: absolute;
    top: 50%;
    left: 0;
    width: 50vw;
    height: 100%;
    background: radial-gradient(ellipse at left center, rgba(255, 107, 0, 0.08) 0%, rgba(15,15,20,0) 70%);
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

.si-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8rem;
    align-items: center;
}

.si-left {
    flex: 1.2;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.si-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.25rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
    color: #ffffff;
}

.si-fragments {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding-top: 1.5rem;
}

.si-fragments::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--primary-orange);
    opacity: 0.8;
}

.si-fragment {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    font-weight: 500;
    color: rgba(240, 240, 245, 0.75);
    letter-spacing: 0.1px;
    position: relative;
    padding-left: 1.75rem;
}

.si-fragment:first-child {
    color: #ffffff; /* Brighter entry point */
}

.si-fragment::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    opacity: 0.8;
}

.si-constraint {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: rgba(240, 240, 245, 0.65);
    padding-left: 1rem;
    border-left: 2px solid rgba(255, 255, 255, 0.08);
    margin-top: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
}

.si-right {
    flex: 1;
    min-width: 300px;
    position: relative;
    padding: 2rem 0;
}

.si-flow-line {
    position: absolute;
    left: 7px; /* Offset to center the line under the 16px markers */
    top: 2rem; 
    bottom: 2rem; 
    width: 2px;
    background: rgba(255, 255, 255, 0.15); /* More visible, still subtle */
    z-index: 0;
}

.si-flow-steps {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.si-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    cursor: default;
}

.si-marker {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 107, 0, 0.5);
    border-radius: 50%;
    background: var(--bg-darker);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 0 12px rgba(255, 107, 0, 0.2); /* Soft orange glow */
}

.si-step-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    font-weight: 500;
    color: rgba(240, 240, 245, 0.6);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    letter-spacing: 0.1px;
}

/* Interaction */
.si-step:hover .si-marker {
    transform: scale(1.25);
    border-color: var(--primary-orange);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
    background: var(--primary-orange);
}

.si-step:hover .si-step-text {
    color: #ffffff;
    transform: translateX(6px);
}

/* Google Reviews */
/* Horizontal Fanning Cards */
.reviews-section { padding: 8rem 0; background: var(--bg-dark); overflow: hidden; }
.google-rating-header { margin-bottom: 4rem; }
.stars i { font-size: 1.5rem; }

.reviews-stack {
    position: relative;
    width: 100%; /* Toma todo el ancho para que el cursor no salga de la zona al moverse a los lados */
    margin: 4rem auto 2rem;
    height: 380px; 
    perspective: 1200px;
    z-index: 10;
}

.stacked-card {
    position: absolute;
    top: 0; 
    left: 50%;
    margin-left: -190px; /* Centrado absoluto (mitad de 380px) */
    width: 380px;
    background: var(--bg-darker);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    cursor: default;
}

/* Initial Stacked Position in the Center */
.stacked-card:nth-child(1) { z-index: 3; transform: translateX(0) scale(1) translateY(0); }
.stacked-card:nth-child(2) { z-index: 2; transform: translateX(15px) translateY(15px) scale(0.95) rotate(3deg); opacity: 0.8; }
.stacked-card:nth-child(3) { z-index: 1; transform: translateX(-15px) translateY(30px) scale(0.9) rotate(-3deg); opacity: 0.6; }

/* The text is half hidden/faded until the fan out */
.stacked-card .review-body { opacity: 0; transform: translateY(10px); transition: all 0.5s ease 0.1s; }
.stacked-card:nth-child(1) .review-body { opacity: 1; transform: translateY(0); } 

/* Fan Out on Stack Hover (Horizontal spread) */
.reviews-section:hover .stacked-card, .reviews-stack:hover .stacked-card { opacity: 1; box-shadow: 0 20px 40px rgba(0,0,0,0.7); }
.reviews-section:hover .stacked-card .review-body, .reviews-stack:hover .stacked-card .review-body { opacity: 1; transform: translateY(0); }

/* Left Card */
.reviews-stack:hover .stacked-card:nth-child(1), .reviews-section:hover .stacked-card:nth-child(1) {
    transform: translateX(-400px) translateY(0) rotate(-4deg);
    z-index: 2;
}

/* Center Card */
.reviews-stack:hover .stacked-card:nth-child(2), .reviews-section:hover .stacked-card:nth-child(2) {
    transform: translateX(0) translateY(-20px) scale(1.05);
    z-index: 3;
    border-color: rgba(255, 107, 0, 0.5);
    box-shadow: 0 25px 50px rgba(255, 107, 0, 0.15);
}

/* Right Card */
.reviews-stack:hover .stacked-card:nth-child(3), .reviews-section:hover .stacked-card:nth-child(3) {
    transform: translateX(400px) translateY(0) rotate(4deg);
    z-index: 2;
}

/* Focus completely on a specific card if hovered */
.reviews-stack:hover .stacked-card:nth-child(1):hover, .reviews-section:hover .stacked-card:nth-child(1):hover {
    z-index: 10 !important;
    transform: translateX(-400px) translateY(-10px) rotate(0deg) scale(1.05);
    border-color: rgba(255, 107, 0, 0.9);
}

.reviews-stack:hover .stacked-card:nth-child(2):hover, .reviews-section:hover .stacked-card:nth-child(2):hover {
    z-index: 10 !important;
    transform: translateX(0) translateY(-30px) scale(1.1);
    border-color: rgba(255, 107, 0, 0.9);
}

.reviews-stack:hover .stacked-card:nth-child(3):hover, .reviews-section:hover .stacked-card:nth-child(3):hover {
    z-index: 10 !important;
    transform: translateX(400px) translateY(-10px) rotate(0deg) scale(1.05);
    border-color: rgba(255, 107, 0, 0.9);
}

/* Trusted Brands Marquee */
.trusted-brands { padding: 4rem 0 3rem; background: var(--bg-dark); }
.trusted-title { font-family: 'Outfit', sans-serif; font-size: clamp(1.5rem, 2.5vw, 2.125rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.5rem; color: #fff; }
.trusted-brands .subtitle { font-family: 'Inter', sans-serif; font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 3rem; font-weight: 400; }

.marquee-container {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    overflow: hidden;
    padding: 1.5rem 0;
}

.marquee-fade {
    position: absolute;
    top: 0;
    width: 15rem;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.marquee-left {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark) 0%, transparent 100%);
}
.marquee-right {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark) 0%, transparent 100%);
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee-scroll 45s linear infinite;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
}

.marquee-list li {
    padding: 0 4rem; /* Generous spacing */
}

/* Image Brand Logos (Local SVGs) */
.marquee-list img {
    height: 45px; 
    max-width: 140px;
    object-fit: contain;
    /* Invert black SVGs to white, tone down to grey */
    filter: invert(1) opacity(0.3); 
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: default;
}

.marquee-list li:hover img {
    /* Pure bright white on hover */
    filter: invert(1) opacity(1);
    transform: scale(1.1);
}

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

/* Turbo brands row — opposite direction */
.marquee-content-right {
    display: flex;
    width: max-content;
    animation: marquee-scroll-right 40s linear infinite;
}
.marquee-container:hover .marquee-content-right {
    animation-play-state: paused;
}
@keyframes marquee-scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.marquee-container-turbos {
    margin-top: 0.75rem;
    padding: 0.5rem 0;
}

.turbo-brands-list li {
    padding: 0 3rem;
    display: flex;
    align-items: center;
}

.turbo-brands-list img {
    height: 32px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: invert(1) brightness(1) opacity(0.25);
    transition: filter 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.turbo-brands-list li:hover img {
    filter: invert(1) brightness(1.2) opacity(0.9) sepia(1) saturate(3) hue-rotate(5deg);
    transform: scale(1.05);
}

/* Accessibility: Reduce motion if requested */
@media (prefers-reduced-motion: reduce) {
    .marquee-content {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    .marquee-list:nth-child(2) {
        display: none;
    }
    .marquee-list li { padding: 1.5rem 2rem; }
    .marquee-fade { display: none; }
}

/* Reviews Typography */
.reviewer-info { display: flex; align-items: center; gap: 1rem; position: relative; margin-bottom: 1.5rem; }
.reviewer-avatar { font-family: 'Outfit', sans-serif; width: 50px; height: 50px; background: #5c6bc0; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.375rem; font-weight: 700; flex-shrink: 0; box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);}
.avatar-orange { background: #e65100; }
.reviewer-details h4 { font-family: 'Outfit', sans-serif; margin-bottom: 2px; font-size: 1rem; font-weight: 700; color: #fff; letter-spacing: -0.1px; }
.reviewer-details span { font-family: 'Inter', sans-serif; color: var(--text-muted); font-size: 0.8125rem; font-weight: 500; }
.review-date { font-family: 'Inter', sans-serif; position: absolute; right: 0; top: 0; color: var(--text-muted); font-size: 0.8125rem; font-weight: 400; }

.stars-small { margin-bottom: 1rem; }
.stars-small i { font-size: 0.9rem; color: #FBBC04; }
.review-text { font-family: 'Inter', sans-serif; font-size: 0.9375rem; color: rgba(240, 240, 245, 0.85); font-style: italic; line-height: 1.75; }

/* Responsive Fallback: On Mobile, just list them vertically */
@media (max-width: 1100px) {
    .reviews-stack { width: 100%; height: auto; display: flex; flex-direction: column; gap: 2rem; margin: 2rem auto; align-items: center;}
    .stacked-card { position: relative; left: auto; margin-left: auto; margin-right: auto; width: 100%; max-width: 450px; transform: none !important; opacity: 1 !important; z-index: auto !important; height: auto; }
    .reviews-stack:hover .stacked-card { transform: none !important; margin: 0; }
    .stacked-card .review-body { opacity: 1; transform: translateY(0); }
}

/* Accordion FAQ */
.faq-section { padding: 8rem 0; background: var(--bg-darker); border-top: 1px solid var(--border-color);}
.faq-accordion { max-width: 800px; margin: 4rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border-color); margin-bottom: 1rem; }
.faq-question { font-family: 'Outfit', sans-serif; width: 100%; background: none; border: none; text-align: left; padding: 1.5rem 0; color: #fff; font-size: 1.125rem; font-weight: 700; letter-spacing: -0.01em; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-question i { color: var(--primary-orange); transition: 0.3s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding-right: 2rem; }
.faq-answer p { font-family: 'Inter', sans-serif; font-size: 0.9375rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 1.5rem; max-width: 68ch; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* Final CTA */
.final-cta { padding: 8rem 0; background-position: center; background-size: cover; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.final-cta-content { max-width: 860px; margin: 0 auto; }
@media (min-width: 900px) {
    .final-cta-content { transform: translateX(70px); }
}

/* Footer */
footer { background: var(--bg-darker); border-top: 1px solid var(--border-color); }

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1.1fr 1.8fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem 0 1.25rem;
}

.footer-col-brand .logo { margin-bottom: 0.625rem; }
.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(148, 148, 158, 0.55);
    margin-bottom: 0 !important;
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(240, 240, 245, 0.3);
    margin-bottom: 0.625rem;
}
.footer-col a,
.footer-col p {
    font-family: 'Inter', sans-serif;
    font-size: 0.84rem;
    line-height: 1.6;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.35rem !important;
}
.footer-col a i {
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.footer-col a:has(i) {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
}
.footer-col a:last-child,
.footer-col p:last-child { margin-bottom: 0 !important; }
.footer-col a:hover { color: var(--primary-orange); }

.footer-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
}
.footer-location-addr a { margin-top: 0.35rem; }
.footer-location-hours p { margin-bottom: 0.2rem !important; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-top: 1px solid var(--border-color);
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    color: rgba(148, 148, 158, 0.4);
}
.footer-bottom a { color: rgba(148, 148, 158, 0.4); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--primary-orange); }

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
    .footer-col-brand { grid-column: 1 / -1; }
    .footer-col-desc { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .footer-bottom { flex-direction: column; gap: 0.3rem; text-align: center; }
}

/* ── Security: disable text selection on decorative/UI elements only ── */
header, .badge-alert, .hero-mini-bullets, .eyebrow,
.btn-primary, .btn-outline-orange, .symptom-check-btn,
.whatsapp-float, .footer-bottom, .logo, nav {
    -webkit-user-select: none;
    user-select: none;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
    color: #fff;
}

/* Animations */
.reveal { opacity: 0; transform: translateY(40px); transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ===================================================
   WORKSHOP PHOTO GALLERY — Triple-Band Marquee
   =================================================== */

.gallery-section {
    padding: 8rem 0 2rem;
    background: var(--bg-dark);
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.gallery-header {
    text-align: center;
    padding: 0 5% 4rem;
    position: relative;
    z-index: 10;
}

/* Wrapper — houses all 3 rows + edge fades */
.photo-marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    user-select: none;
}

/* Left + right fade edges */
.photo-marquee-wrapper::before,
.photo-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 250px;
    z-index: 2;
    pointer-events: none;
}
.photo-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark) 0%, transparent 100%);
}
.photo-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark) 0%, transparent 100%);
}

/* Individual row — clips overflow */
.photo-row {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* The actual scrolling track — using a very long loop to prevent white space */
.photo-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    will-change: transform;
}

/* Row 1 & 3: left direction, different speeds */
/* Desktop: Row1 fast → Row2 medium → Row3 slow (depth effect) */
.photo-track-left  { animation: photoLeft  35s linear infinite; }
.photo-track-right { animation: photoRight 55s linear infinite; }
.photo-track-slow  { animation-duration: 75s; }

@keyframes photoLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% / 3)); } /* Using 3 sets of items */
}

@keyframes photoRight {
    0% { transform: translateX(calc(-100% / 3)); }
    100% { transform: translateX(0); }
}

/* Photo items */
.photo-item {
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    display: block;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    position: relative;
    transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.photo-portrait  { width: 140px; height: 180px; }
.photo-landscape { width: 260px; height: 180px; }

.photo-item:hover {
    border-color: var(--primary-orange);
    transform: scale(1.02);
    z-index: 10;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
                filter 0.5s ease;
    filter: brightness(0.88) saturate(0.9);
}


.photo-item:hover img {
    transform: scale(1.06);
    filter: brightness(1) saturate(1);
}

/* Accessibility: no motion */
@media (prefers-reduced-motion: reduce) {
    .photo-track { animation: none !important; }
    .photo-row   { overflow-x: auto; }
    .photo-track { width: auto; justify-content: flex-start; flex-wrap: wrap; gap: 0.5rem; padding: 0.5rem; }
    .photo-marquee-wrapper::before,
    .photo-marquee-wrapper::after { display: none; }
}

/* Mobile gallery */
@media (max-width: 768px) {
    .photo-portrait  { width: 110px; height: 150px; }
    .photo-landscape { width: 190px; height: 150px; }
    .photo-item::before { font-size: 6px; top: 6px; left: 6px; }
    /* Mobile: images narrower, proportionally faster */
    .photo-track-left  { animation-duration: 22s; }
    .photo-track-right { animation-duration: 34s; }
    .photo-track-slow  { animation-duration: 48s; }
    .photo-marquee-wrapper::before,
    .photo-marquee-wrapper::after { width: 60px; }
    .gallery-section { padding-top: 4rem; }
    .gallery-header { padding-bottom: 2.5rem; }
}

/* Responsive adjustments */
@media(max-width: 900px) {
  .nav-links { display: none; }
  header { padding: 1rem 5%; }

  .si-container { gap: 4rem; }
  .si-left { flex: 1 1 100%; }
  .si-right { flex: 1 1 100%; }
}

/* Mobile — Flip Cards: image background + gradient + text overlay */
@media (max-width: 768px) {
  .flip-card { height: 420px; }
  .flip-inner {
    transform: none !important;
    transition: none;
    position: relative;
    height: 100%;
    display: block;
  }
  .flip-front {
    display: block;
    position: absolute;
    inset: 0;
    transform: none;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
  }
  .flip-front-content { display: none; }
  .flip-back {
    position: absolute;
    inset: 0;
    transform: none;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    background: linear-gradient(to bottom,
      rgba(7,7,9,0.0)  0%,
      rgba(7,7,9,0.25) 25%,
      rgba(7,7,9,0.72) 45%,
      rgba(7,7,9,0.92) 65%,
      rgba(7,7,9,0.97) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    overflow: hidden;
    height: 100%;
  }
  .flip-back h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
  .flip-back p { font-size: 0.9rem; margin-bottom: 0.75rem; overflow: visible; display: block; -webkit-line-clamp: unset; }
  .aud-benefits { margin-top: 0.75rem; padding-top: 0.75rem; }
  .aud-benefits li { font-size: 0.875rem; padding: 0.2rem 0; }
}

/* Mobile Typography */
@media (max-width: 768px) {
  h1 { font-size: clamp(2.25rem, 8vw, 3rem); line-height: 1.1; letter-spacing: -0.02em; }
  h2 { font-size: clamp(1.625rem, 6vw, 2.25rem); line-height: 1.15; letter-spacing: -0.01em; }
  h3 { font-size: 1.25rem; }

  p { font-size: 1rem; line-height: 1.7; }
  .hero-content p { font-size: 1.0625rem; }

  .hero-pain { font-size: 0.65em; }

  .faq-question { font-size: 1rem; padding: 1.25rem 0; }
  .faq-answer p { font-size: 0.9375rem; max-width: 100%; }

  .si-title { font-size: clamp(1.875rem, 6vw, 2.5rem); }
  .si-fragment { font-size: 1rem; }
  .si-step-text { font-size: 1rem; }

  .eyebrow { font-size: 0.7rem; letter-spacing: 2px; }

  .badge-alert { font-size: 0.8125rem; }

  .zz-content p { max-width: 100%; }
  .flip-back p { max-width: 100%; }

  .btn-primary { font-size: 1rem; padding: 1.125rem 2rem; }
  .metric { font-size: 0.9375rem; }
  /* Reset CTA subtitle offset on mobile */
  .final-cta .subtitle { left: 0 !important; }
}

/* Micro-proof element */
.micro-proof {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 107, 0, 0.08);
    border-left: 3px solid var(--primary-orange);
    margin: 1.5rem 0 2rem;
    width: fit-content;
    border-radius: 0 4px 4px 0;
}
.micro-proof i {
    color: var(--primary-orange);
}

/* Hero paragraph accent — staccato second line */
.hero-p-accent {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: rgba(240, 240, 245, 0.96);
    letter-spacing: 0.01em;
}

/* Solution section heading — promoted from eyebrow */
.zz-solution-h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--primary-orange);
    margin-bottom: 1.25rem;
}

/* Pain section h2 — long heading needs tighter sizing */
.zig-zag .zz-content h2 {
    line-height: 1.25;
}

/* Hero Reg Input Form */
.hero-reg-form {
    display: flex;
    align-items: stretch;
    border-radius: 50px;
    background: rgba(10, 10, 12, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    padding: 0.35rem;
    max-width: 550px;
    position: relative;
    transition: all 0.3s ease;
    z-index: 2;
}
.hero-reg-form:focus-within {
    box-shadow: 0 0 50px rgba(255, 107, 0, 0.2), inset 0 0 0 1px rgba(255, 107, 0, 0.3);
}
.reg-input {
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    font-weight: 500;
    padding: 0 1.5rem;
    width: 220px;
    outline: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.reg-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    text-transform: none;
    font-weight: 400;
    letter-spacing: 0;
    font-size: 0.9375rem;
}
.hero-reg-form .btn-primary { 
    border-radius: 40px;
    padding: 0.85rem 1.5rem;
    margin: 0;
}

/* ── Symptom Checker ── */
.symptom-section {
    padding: 4rem 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
}
.symptom-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.symptom-header h3 {
    font-size: clamp(1.375rem, 2vw, 1.875rem);
    font-weight: 700;
    margin: 0.5rem 0 0.4rem;
    color: var(--text-main);
}
.symptom-header p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
}
.symptom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    gap: 0.75rem;
    max-width: 860px;
    margin: 0 auto;
}
.symptom-item { cursor: pointer; }
.symptom-item input[type="checkbox"] { display: none; }
.symptom-label {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.9rem 1.125rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.2s;
    cursor: pointer;
    user-select: none;
}
.symptom-label i { color: var(--text-muted); width: 1.1rem; text-align: center; transition: 0.2s; }
.symptom-item input:checked + .symptom-label {
    background: rgba(255, 107, 0, 0.08);
    border-color: var(--primary-orange);
    color: var(--text-main);
}
.symptom-item input:checked + .symptom-label i { color: var(--primary-orange); }
.symptom-cta-row { text-align: center; margin-top: 1.75rem; }
.symptom-check-btn {
    font-family: 'Outfit', sans-serif;
    background: var(--primary-orange);
    color: #fff;
    border: none;
    padding: 0.9rem 2.25rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}
.symptom-check-btn:hover { background: var(--primary-orange-hover); transform: translateY(-2px); }
.symptom-result {
    max-width: 680px;
    margin: 2rem auto 0;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.4s ease;
    pointer-events: none;
}
.symptom-result.active { opacity: 1; transform: translateY(0); pointer-events: all; }
.symptom-card {
    border-radius: 8px;
    padding: 1.5rem 1.75rem;
    border: 1px solid;
}
.symptom-high { background: rgba(255, 107, 0, 0.07); border-color: rgba(255, 107, 0, 0.3); }
.symptom-medium { background: rgba(255, 195, 0, 0.06); border-color: rgba(255, 195, 0, 0.25); }
.symptom-low { background: rgba(148, 148, 158, 0.07); border-color: rgba(148, 148, 158, 0.18); }
.symptom-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.6rem; }
.symptom-card-header strong { font-family: 'Outfit', sans-serif; font-size: 1.0625rem; font-weight: 700; color: var(--text-main); }
.symptom-card > p { font-size: 0.9375rem; color: rgba(240, 240, 245, 0.72); line-height: 1.65; margin-bottom: 1.25rem; }
.symptom-reg-row {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.reg-input-small {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.8rem 1rem;
    outline: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    min-width: 0;
}
.reg-input-small::placeholder { color: rgba(255,255,255,0.22); text-transform: none; font-weight: 400; letter-spacing: 0; }
.symptom-wa-btn {
    background: #25d366;
    color: #fff;
    border: none;
    padding: 0.8rem 1.125rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    transition: 0.2s;
    white-space: nowrap;
}
.symptom-wa-btn:hover { background: #1fb855; }

/* Removed old hero hierarchy */

/* Gallery subhead */
.gallery-subhead {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 60ch;
    margin: 0.5rem auto 0;
}

/* Botón hero: desktop muestra texto largo, móvil texto corto */
.btn-long { display: inline; }
.btn-short { display: none; }

/* ── Hamburger button (desktop oculto) ── */
.hamburger { display: none; }
.header-right { display: flex; align-items: center; gap: 0.75rem; }

/* ── Mobile fixes: iPhone / narrow screens ─────────────────────────────── */
@media (max-width: 900px) {

  /* Header hamburger */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: 1px solid rgba(255,107,0,0.4);
    border-radius: 6px;
    cursor: pointer;
    padding: 0.45rem 0.55rem;
    width: 38px;
    height: 38px;
  }
  .hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
  }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* Nav oculto por defecto — abre como dropdown */
  .nav-links {
    display: none;
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    background: rgba(7,7,9,0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 0.5rem 5% 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { margin: 0; padding: 0.85rem 0; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-links a:last-child { border-bottom: none; }

  /* Phone: solo icono en móvil */
  .header-phone { padding: 0.45rem 0.55rem !important; border-radius: 6px; }
  .header-phone .call-text { display: none !important; }

  /* Logo */
  .logo { font-size: 1.05rem; }
}

@media (max-width: 768px) {

  /* 2. Hero — pantalla completa, video cubre toda la pantalla */
  .hero { align-items: flex-start; padding-top: 5.5rem; min-height: 100svh; padding-bottom: 3rem; }
  .hero-content { margin-top: 0; }
  .hero-video { object-fit: cover !important; object-position: 69% center !important; }
  .hero-bg::after {
    background:
      linear-gradient(to right, rgba(7,7,9,0.55) 0%, rgba(7,7,9,0) 55%),
      linear-gradient(to bottom, rgba(7,7,9,0.6) 0%, rgba(7,7,9,0.35) 40%, rgba(7,7,9,0.7) 100%);
  }

  /* 3. Título hero */
  .hero-h1-line1 { font-size: clamp(1.25rem, 5vw, 1.75rem); }
  .hero-h1-line2 { font-size: clamp(1.875rem, 7.5vw, 2.5rem); }
  .text-orange-glow { white-space: normal; }

  /* 4. Formulario del hero — fila compacta en móvil */
  .hero-reg-form {
    max-width: 100%;
    flex-direction: row;
    border-radius: 50px;
    padding: 0.3rem;
    gap: 0;
  }
  .reg-input { flex: 1; min-width: 0; width: auto; padding: 0.6rem 1rem; font-size: 0.9rem; }
  .hero-reg-form .btn-primary { width: auto; padding: 0.6rem 1.1rem; font-size: 0.875rem; border-radius: 40px; white-space: nowrap; gap: 0.4rem; }

  /* Texto botón — mostrar corto en móvil */
  .btn-long { display: none !important; }
  .btn-short { display: inline !important; }

  /* 5. Trust badges */
  .hero-trust-badges { gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }
  .trust-badge-divider { display: none; }

  /* 6. Bullets hero — cada uno en su propia línea en móvil */
  .hero-sub-secondary { flex-direction: column; align-items: flex-start; gap: 0.4rem; }

  /* 7. Hero subtitle */
  .hero-subtitle { margin-bottom: 2rem; }

  /* 8. Imágenes zig-zag */
  .zz-img-wrapper { min-height: 280px; width: 100%; flex: none; }

  /* 9. Reducir padding de todas las secciones en móvil */
  .split-section { padding: 2.5rem 0; }
  .audience-section { padding: 3rem 0; }
  .system-interface-section { padding: 3rem 0; }
  .reviews-section { padding: 3rem 0; }
  .faq-section { padding: 3rem 0; }
  .final-cta { padding: 3.5rem 0; }
  .gallery-section { padding-top: 3rem; }
  .trusted-brands { padding: 2rem 0; }
  .symptom-section { padding: 2.5rem 0; }

  /* 10. Fuente How It Works */
  .si-title { font-family: 'Outfit', sans-serif; }

  /* 11. CTA subtitle reset */
  .final-cta .subtitle { left: 0 !important; }

  /* 12. Cards — texto en la zona oscura inferior, imagen visible arriba */
  .flip-card { height: 560px !important; }
  .flip-back { justify-content: flex-end !important; overflow: hidden !important; }
}
