/* ================================================================
   LANDING PAGE — JobOffer Hostelería
   Diseño editorial · Mobile-first · Original
   ================================================================ */

body { background: #F8F6F2; }

/* ─── SHARED ─── */
.lp-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
}
.lp-label-light { color: rgba(255,255,255,0.38); }

.lp-h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: var(--color-text-primary);
    letter-spacing: -0.03em;
    line-height: 1.18;
    margin: 0;
}

.text-amber      { color: var(--color-accent); }
.text-amber-light { color: #FBBF24; }

.lp-section-head { text-align: center; margin-bottom: 52px; }
.lp-section-head .lp-label { display: block; }
.lp-section-head--left { text-align: left; margin-bottom: 32px; }

.lp-hidden { display: none !important; }

/* Logo gradiente en landing */
.logo {
    background: linear-gradient(135deg, #FBBF24 0%, #F8FAFC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.lp-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 110px 0 72px;
    background: #080F1E;
    position: relative;
    overflow: hidden;
}

/* Fondo: grain texture */
.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 300px 300px;
    opacity: 0.032;
    pointer-events: none;
    z-index: 0;
}

/* Fondo: grid líneas sutiles */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    z-index: 0;
}

/* Layout hero: texto izq, phone der */
.lp-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 290px;
    gap: 60px;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 28px;
    animation: fadeUp 0.7s ease both;
}

/* Eyebrow */
.lp-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
}
.eyebrow-pill {
    background: rgba(200,121,28,0.15);
    border: 1px solid rgba(200,121,28,0.35);
    color: #FBBF24;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: 0.03em;
}
.eyebrow-sep { color: rgba(255,255,255,0.16); }
.eyebrow-aux { color: rgba(255,255,255,0.35); font-size: 0.78rem; font-weight: 600; }

/* H1 */
.lp-h1 {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.lp-h1-line {
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    display: block;
}
.lp-h1-white {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: rgba(255,255,255,0.88);
}

/* Contenedor de palabra rotatoria */
.lp-h1-rotate-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    height: clamp(3.4rem, 9.2vw, 7.2rem);
}

/* Palabras rotatorias — posición absoluta, animación por separado */
.lp-h1-accent {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(3.2rem, 8.5vw, 6.8rem);
    letter-spacing: -0.04em;
    line-height: 1.05;
    font-style: italic;
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 55%, #E8761A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    white-space: nowrap;
    animation: wordCycle 12s ease-in-out infinite;
}
.word-1 { animation-delay: 0s; }
.word-2 { animation-delay: 3s; }
.word-3 { animation-delay: 6s; }
.word-4 { animation-delay: 9s; }

@keyframes wordCycle {
    0%        { opacity: 0; transform: translateY(55%); }
    6%        { opacity: 1; transform: translateY(0); }
    22%       { opacity: 1; transform: translateY(0); }
    28%       { opacity: 0; transform: translateY(-55%); }
    100%      { opacity: 0; transform: translateY(55%); }
}

.lp-hero-desc {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    color: rgba(255,255,255,0.48);
    max-width: 500px;
    line-height: 1.75;
}

/* CTAs */
.lp-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.lp-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    border-radius: 16px;
    text-decoration: none;
    transition: transform 0.22s, box-shadow 0.22s;
    min-width: 210px;
    border: 1.5px solid transparent;
}
.lp-cta-amber {
    background: linear-gradient(135deg, #C8791C, #D97706);
    color: #FFF;
    box-shadow: 0 6px 24px rgba(200,121,28,0.38);
    border-color: rgba(255,255,255,0.10);
}
.lp-cta-amber:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(200,121,28,0.55); color: #FFF; }
.lp-cta-ghost {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.80);
    border-color: rgba(255,255,255,0.14);
}
.lp-cta-ghost:hover { background: rgba(255,255,255,0.10); color: #FFF; transform: translateY(-3px); }
.cta-icon { font-size: 1.5rem; flex-shrink: 0; }
.cta-text { display: flex; flex-direction: column; gap: 2px; }
.cta-text strong { font-weight: 800; font-size: 0.95rem; }
.cta-text small { font-size: 0.73rem; opacity: 0.55; font-weight: 600; }
.cta-arrow { margin-left: auto; font-size: 1.1rem; opacity: 0.45; transition: transform 0.18s; }
.lp-cta:hover .cta-arrow { transform: translateX(4px); opacity: 1; }

.lp-login-hint {
    color: rgba(255,255,255,0.28);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.18s;
}
.lp-login-hint span { transition: transform 0.18s; display: inline-block; }
.lp-login-hint:hover { color: rgba(255,255,255,0.60); }
.lp-login-hint:hover span { transform: translateX(4px); }

/* Scroll hint */
.lp-hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 1; }
.scroll-line {
    width: 1.5px; height: 42px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.22), transparent);
    margin: 0 auto;
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100%{transform:scaleY(1);opacity:.6}50%{transform:scaleY(0.5);opacity:.2} }
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }

/* ─── PHONE MOCKUP ─── */
.hero-phone {
    width: 270px;
    height: 540px;
    background: #0A0F1E;
    border-radius: 38px;
    border: 1.5px solid rgba(255,255,255,0.12);
    box-shadow:
        0 0 0 1px rgba(0,0,0,0.6),
        0 40px 80px rgba(0,0,0,0.55),
        inset 0 1px 0 rgba(255,255,255,0.05);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    animation: phoneFloat 5s ease-in-out infinite;
}
@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(0.5deg); }
    50%       { transform: translateY(-14px) rotate(-0.5deg); }
}

.phone-notch {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 90px; height: 26px;
    background: #0A0F1E;
    border-radius: 0 0 14px 14px;
    border: 1.5px solid rgba(255,255,255,0.08);
    border-top: none;
    z-index: 10;
}

.phone-screen {
    position: absolute;
    inset: 0;
    padding: 38px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

.phone-appbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 2px;
}
.pab-logo {
    font-weight: 900;
    font-size: 0.88rem;
    color: #FBBF24;
    letter-spacing: -0.02em;
}
.pab-badge {
    background: rgba(200,121,28,0.18);
    border: 1px solid rgba(200,121,28,0.38);
    color: #FBBF24;
    font-size: 0.58rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 100px;
}

.phone-search {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.64rem;
    color: rgba(255,255,255,0.28);
}

.phone-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 12px 13px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    transition: background 0.2s;
}
.phone-card-dim { opacity: 0.55; }

.pc-top { display: flex; align-items: center; gap: 9px; }
.pc-emoji { font-size: 1.35rem; flex-shrink: 0; }
.pc-info { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.pc-role  { font-size: 0.7rem; font-weight: 800; color: rgba(255,255,255,0.88); display: block; }
.pc-place { font-size: 0.59rem; color: rgba(255,255,255,0.35); display: block; font-weight: 600; }
.pc-new {
    background: rgba(74,222,128,0.14);
    border: 1px solid rgba(74,222,128,0.28);
    color: #4ADE80;
    font-size: 0.54rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}
.pc-bottom { display: flex; align-items: center; justify-content: space-between; }
.pc-salary { font-size: 0.67rem; font-weight: 800; color: #FBBF24; }
.pc-btn {
    background: rgba(200,121,28,0.18);
    border: 1px solid rgba(200,121,28,0.32);
    color: #FBBF24;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 100px;
}

/* Punto pulsante en el phone */
.phone-live-dot {
    position: absolute;
    bottom: 18px;
    right: 20px;
    width: 8px; height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(74,222,128,0.4);
    animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
    50%       { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
}

/* ═══════════════════════════════════════
   TICKER
═══════════════════════════════════════ */
.lp-ticker {
    background: #0D1625;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    padding: 12px 0;
}
.ticker-inner {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
    animation: ticker 28s linear infinite;
}
.t-item { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; }
.t-dot  { color: rgba(200,121,28,0.55); font-size: 0.45rem; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ═══════════════════════════════════════
   FEATURES — lista editorial
═══════════════════════════════════════ */
.lp-features { background: #F8F6F2; padding: 96px 0; }

.features-list { display: flex; flex-direction: column; }

.feat-row {
    display: grid;
    grid-template-columns: 44px 56px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.feat-row:first-child { border-top: 1px solid rgba(0,0,0,0.07); }
.feat-row.is-visible { opacity: 1; transform: translateY(0); }
.feat-row:nth-child(2) { transition-delay: 0.08s; }
.feat-row:nth-child(3) { transition-delay: 0.16s; }
.feat-row:nth-child(4) { transition-delay: 0.24s; }

.feat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: rgba(29,67,112,0.10);
    letter-spacing: -0.05em;
    line-height: 1;
}
.feat-icon { font-size: 1.9rem; line-height: 1; }
.feat-body h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-text-primary);
    letter-spacing: -0.01em;
    margin: 0 0 6px;
}
.feat-body p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
}
.feat-tag {
    background: #EEF2F8;
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ═══════════════════════════════════════
   REVIEWS — marquee
═══════════════════════════════════════ */
.lp-reviews { background: #FFF; padding: 80px 0 60px; overflow: hidden; }

.reviews-track-wrap {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    margin-top: 16px;
}
.reviews-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: reviewsScroll 32s linear infinite;
}
.reviews-track-wrap:hover .reviews-track { animation-play-state: paused; }

@keyframes reviewsScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.review-card {
    background: #F8F6F2;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    padding: 24px;
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.2s;
}
.review-card:hover { transform: translateY(-3px); }

.review-stars { color: #FBBF24; font-size: 0.85rem; letter-spacing: 2px; }
.review-card p { font-size: 0.88rem; color: var(--color-text-secondary); line-height: 1.65; margin: 0; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-av {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 900;
    color: #FFF;
    flex-shrink: 0;
}
.review-author strong { font-size: 0.82rem; font-weight: 800; color: var(--color-text-primary); display: block; }
.review-author small { font-size: 0.72rem; color: var(--color-text-muted); display: block; }

/* ═══════════════════════════════════════
   DUAL PATH
═══════════════════════════════════════ */
.lp-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}
.dual-side {
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.dual-company {
    background: linear-gradient(145deg, #070E1C 0%, #0D1C38 100%);
    justify-content: flex-end;
}
.dual-company::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 30%, rgba(29,67,112,0.28) 0%, transparent 60%);
    pointer-events: none;
}
.dual-worker {
    background: linear-gradient(145deg, #1C0E02 0%, #2E1606 100%);
    justify-content: flex-start;
}
.dual-worker::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 70%, rgba(200,121,28,0.22) 0%, transparent 60%);
    pointer-events: none;
}
.dual-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.dual-company .dual-inner { padding: 0 48px 0 min(48px, 4vw); }
.dual-worker  .dual-inner { padding: 0 min(48px, 4vw) 0 48px; }

.dual-label {
    font-size: 0.71rem;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.32);
    display: block;
}
.dual-side h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: rgba(255,255,255,0.80);
    letter-spacing: -0.03em;
    line-height: 1.18;
    margin: 0;
}
.dual-side h2 strong { font-weight: 900; color: #FFF; }
.dual-side .dual-inner > p { font-size: 0.93rem; color: rgba(255,255,255,0.43); line-height: 1.72; margin: 0; }

.dual-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 4px 0; padding: 0; }
.dual-checklist li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.58); font-weight: 600; }
.dual-checklist li span { color: #4ADE80; font-weight: 900; flex-shrink: 0; }

.dual-btn {
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    width: fit-content;
    transition: all 0.22s;
}
.dual-btn-white { background: #FFF; color: #0A1628; box-shadow: 0 4px 18px rgba(0,0,0,0.22); }
.dual-btn-white:hover { background: #F0F4FF; transform: translateY(-2px); color: #0A1628; }
.dual-btn-amber { background: linear-gradient(135deg, #C8791C, #D97706); color: #FFF; box-shadow: 0 4px 18px rgba(200,121,28,0.38); }
.dual-btn-amber:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,121,28,0.55); color: #FFF; }

/* ═══════════════════════════════════════
   PROCESS — timeline vertical
═══════════════════════════════════════ */
.lp-process { background: #F8F6F2; padding: 96px 0; }

.process-toggle {
    display: flex;
    background: #F3F4F6;
    border-radius: 100px;
    padding: 4px;
    width: fit-content;
    margin: 0 auto 52px;
    border: 1px solid var(--color-border);
}
.ptab {
    padding: 10px 28px;
    border: none;
    background: none;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: all 0.22s;
    white-space: nowrap;
}
.ptab.ptab-active { background: var(--color-primary); color: #FFF; box-shadow: 0 2px 10px rgba(29,67,112,0.30); }

.timeline {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.tl-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 24px;
}
.tl-side { display: flex; flex-direction: column; align-items: center; }
.tl-dot {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.82rem;
    flex-shrink: 0;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 14px rgba(29,67,112,0.35);
}
.tl-dot-last { background: linear-gradient(135deg, #C8791C, #D97706); box-shadow: 0 4px 14px rgba(200,121,28,0.35); }
.tl-connector {
    width: 2px;
    flex: 1;
    min-height: 32px;
    background: linear-gradient(to bottom, var(--color-primary), rgba(29,67,112,0.12));
    margin: 8px 0;
}
.tl-body {
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 10px;
}
.tl-emoji { font-size: 1.7rem; line-height: 1; display: block; }
.tl-body h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 800; color: var(--color-text-primary); margin: 0; }
.tl-body p { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.65; margin: 0; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.lp-faq { background: #FFF; padding: 96px 0; }

.lp-faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 72px;
    align-items: start;
}
.faq-left-col { position: sticky; top: 100px; }
.faq-left-col .lp-h2 { margin: 10px 0 16px; }
.faq-intro { font-size: 0.93rem; color: var(--color-text-muted); line-height: 1.72; margin-bottom: 24px; }
.faq-cta-link { color: var(--color-primary); font-weight: 700; text-decoration: none; font-size: 0.9rem; transition: color 0.18s; }
.faq-cta-link:hover { color: var(--color-primary-light); text-decoration: underline; }

.faq-right-col { display: flex; flex-direction: column; }

.faq-detail { border-bottom: 1px solid var(--color-border); }
.faq-detail:first-child { border-top: 1px solid var(--color-border); }
.faq-detail summary {
    padding: 20px 0;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: color 0.18s;
    user-select: none;
}
.faq-detail summary::-webkit-details-marker { display: none; }
.faq-detail summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-text-muted);
    transition: transform 0.22s, color 0.18s;
    flex-shrink: 0;
    line-height: 1;
}
.faq-detail[open] summary::after { transform: rotate(45deg); color: var(--color-primary); }
.faq-detail[open] summary { color: var(--color-primary); }
.faq-answer {
    padding: 0 0 20px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    animation: fadeIn 0.25s ease;
}
@keyframes fadeIn { from{opacity:0;transform:translateY(-5px)} to{opacity:1;transform:translateY(0)} }

/* ═══════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════ */
.lp-final-cta {
    background: #080F1E;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Gran texto de fondo */
.fcta-bg-word {
    position: absolute;
    font-family: var(--font-heading);
    font-size: clamp(6rem, 20vw, 18rem);
    font-weight: 900;
    color: rgba(255,255,255,0.022);
    letter-spacing: -0.05em;
    pointer-events: none;
    white-space: nowrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    user-select: none;
    line-height: 1;
}

.lp-final-inner { position: relative; z-index: 1; }
.lp-final-h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: rgba(255,255,255,0.88);
    letter-spacing: -0.04em;
    line-height: 1.12;
    margin: 16px auto 20px;
    max-width: 700px;
}
.lp-final-desc { font-size: 1rem; color: rgba(255,255,255,0.38); margin-bottom: 48px; line-height: 1.65; }

.lp-final-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.final-cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 18px 36px;
    border-radius: 18px;
    text-decoration: none;
    min-width: 200px;
    transition: all 0.22s;
    border: 1.5px solid transparent;
}
.fcta-amber { background: linear-gradient(135deg, #C8791C, #D97706); color: #FFF; box-shadow: 0 6px 24px rgba(200,121,28,0.38); }
.fcta-amber:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(200,121,28,0.55); color: #FFF; }
.fcta-white { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.78); border-color: rgba(255,255,255,0.14); }
.fcta-white:hover { background: rgba(255,255,255,0.12); color: #FFF; transform: translateY(-3px); }
.fcta-role { font-weight: 800; font-size: 0.95rem; }
.fcta-sub  { font-size: 0.74rem; opacity: 0.52; font-weight: 600; }

.lp-trust-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.28);
    font-weight: 600;
}
.lp-trust-row span::before { content: '✓ '; color: #4ADE80; }

/* ═══════════════════════════════════════
   MOBILE STICKY BAR
═══════════════════════════════════════ */
.mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(6,11,24,0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 998;
    gap: 10px;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-sticky.ms-visible { transform: translateY(0); }

.ms-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 16px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.88rem;
    text-decoration: none;
    transition: opacity 0.18s;
}
.ms-btn:active { opacity: 0.8; }
.ms-amber { background: linear-gradient(135deg, #C8791C, #D97706); color: #FFF; }
.ms-navy  { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.80); border: 1px solid rgba(255,255,255,0.14); }

/* ═══════════════════════════════════════
   RESPONSIVE — ≤ 1024px
═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .lp-hero-inner { grid-template-columns: 1fr 240px; gap: 40px; }
    .hero-phone { width: 220px; height: 440px; }
    .hero-phone { border-radius: 30px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — ≤ 900px (tablet)
═══════════════════════════════════════ */
@media (max-width: 900px) {
    .lp-hero-inner { grid-template-columns: 1fr; }
    .hero-phone { display: none; }

    .lp-h1-white { font-size: clamp(2.4rem, 6vw, 3.6rem); }
    .lp-h1-accent { font-size: clamp(2.8rem, 8vw, 4.4rem); }
    .lp-h1-rotate-wrap { height: clamp(2.94rem, 8.4vw, 4.62rem); }

    .lp-dual { grid-template-columns: 1fr; }
    .dual-side { padding: 60px 0; justify-content: center; }
    .dual-company .dual-inner,
    .dual-worker  .dual-inner { max-width: 100%; padding: 0 32px; }

    .lp-faq-inner { grid-template-columns: 1fr; gap: 40px; }
    .faq-left-col { position: static; }

    .stat-divider { display: none; }

    .feat-row { grid-template-columns: 40px 48px 1fr; }
    .feat-tag { display: none; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — ≤ 640px (móvil)
═══════════════════════════════════════ */
@media (max-width: 640px) {
    .mobile-sticky { display: flex; }

    /* Padding extra al final para no tapar con la sticky bar */
    .lp-final-cta { padding-bottom: 120px; }

    .lp-hero { padding: 88px 0 56px; min-height: auto; }
    .lp-hero-inner { gap: 20px; }
    .hero-text { gap: 22px; }

    .lp-h1-white { font-size: 2.3rem; }
    .lp-h1-accent { font-size: 2.7rem; }
    .lp-h1-rotate-wrap { height: 2.84rem; }

    .lp-hero-ctas { flex-direction: column; }
    .lp-cta { width: 100%; min-width: unset; }

    .lp-stats { padding: 40px 0; }

    .lp-features { padding: 60px 0; }
    .feat-row { grid-template-columns: 36px 44px 1fr; gap: 14px; padding: 22px 0; }
    .feat-num { font-size: 1.4rem; }
    .feat-icon { font-size: 1.6rem; }

    .lp-reviews { padding: 60px 0 40px; }
    .review-card { width: 260px; }

    .lp-process { padding: 60px 0; }
    .timeline { max-width: 100%; }
    .tl-item { grid-template-columns: 48px 1fr; gap: 18px; }

    .process-toggle { width: 100%; border-radius: 14px; }
    .ptab { flex: 1; text-align: center; border-radius: 10px; padding: 10px 8px; font-size: 0.82rem; }

    .lp-faq { padding: 60px 0; }

    .lp-final-cta { padding-top: 72px; }
    .lp-final-h2 { font-size: 2rem; }
    .lp-final-desc { font-size: 0.9rem; }
    .lp-final-btns { flex-direction: column; align-items: center; }
    .final-cta-btn { width: 100%; max-width: 320px; }
    .lp-trust-row { gap: 12px; font-size: 0.76rem; }

    .lp-section-head { margin-bottom: 36px; }

    .dual-side { padding: 52px 0; }
    .dual-company .dual-inner,
    .dual-worker  .dual-inner { padding: 0 20px; }
    .dual-side h2 { font-size: 1.5rem; }

    .footer-content { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — ≤ 400px (móvil pequeño)
═══════════════════════════════════════ */
@media (max-width: 400px) {
    .lp-hero { padding: 80px 0 48px; }
    .lp-h1-white { font-size: 1.9rem; }
    .lp-h1-accent { font-size: 2.25rem; }
    .lp-h1-rotate-wrap { height: 2.36rem; }
    .lp-hero-desc { font-size: 0.9rem; }
    .eyebrow-pill { font-size: 0.71rem; padding: 4px 10px; }

    .feat-row { grid-template-columns: 32px 40px 1fr; gap: 10px; }
    .feat-num { font-size: 1.2rem; }

    .tl-dot { width: 40px; height: 40px; font-size: 0.75rem; }
    .tl-item { grid-template-columns: 40px 1fr; gap: 14px; }

    .lp-final-h2 { font-size: 1.7rem; }
    .final-cta-btn { padding: 14px 20px; }

    .dual-side h2 { font-size: 1.3rem; }
    .dual-company .dual-inner,
    .dual-worker  .dual-inner { padding: 0 16px; }

    .lp-trust-row { flex-direction: column; align-items: center; gap: 8px; }
}
