/* ============================================================
   PS Ranchero — estilos de la landing (/ps-ranchero)
   Depende de css/modern-theme.css (variables) y css/landing.css.
   Prefijo .psr- para no colisionar con nada existente.
   ============================================================ */

/* ─────────── HERO ─────────── */
.psr-hero {
    background: var(--gradient-hero);
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.psr-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 22%, rgba(37, 99, 235, 0.35) 0%, transparent 52%),
        radial-gradient(circle at 12% 82%, rgba(124, 58, 237, 0.28) 0%, transparent 48%);
    pointer-events: none;
}
.psr-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}
.psr-breadcrumb { margin-bottom: 1.25rem; }

.psr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #bfdbfe;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: var(--rounded-full);
    margin-bottom: 1.25rem;
}
.psr-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4.4vw, 3.15rem);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -0.02em;
    margin: 0 0 1.25rem;
}
.psr-hero__sub {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.13rem;
    line-height: 1.75;
    max-width: 40em;
    margin: 0 0 1.75rem;
}
.psr-hero__sub strong { color: var(--white); }

.psr-hero__bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.5rem;
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
}
.psr-hero__bullets li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}
.psr-hero__bullets i { color: #6ee7b7; }

.psr-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.psr-hero__trust {
    margin: 1.75rem 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.psr-hero__trust i { color: #6ee7b7; }

/* Celular del hero */
.psr-hero__visual { position: relative; display: flex; justify-content: center; }
.psr-phone {
    position: relative;
    width: 300px;
    max-width: 100%;
    aspect-ratio: 9 / 19;
    background: #0b1220;
    border: 10px solid #1f2937;
    border-radius: 2.6rem;
    box-shadow: var(--shadow-2xl), 0 0 60px rgba(37, 99, 235, 0.28);
    overflow: hidden;
}
.psr-phone__notch {
    position: absolute;
    top: 0.55rem;
    left: 50%;
    transform: translateX(-50%);
    width: 42%;
    height: 1.1rem;
    background: #1f2937;
    border-radius: var(--rounded-full);
    z-index: 2;
}
.psr-phone img { width: 100%; height: 100%; object-fit: cover; display: block; }
.psr-phone__placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(160deg, #111c33 0%, #1e293b 100%);
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    padding: 1.5rem;
}
.psr-phone__placeholder i { font-size: 3rem; color: #3ddc84; }
.psr-phone__placeholder span { font-size: 1.35rem; font-weight: 700; }
.psr-phone__placeholder small { color: rgba(255, 255, 255, 0.55); font-size: 0.82rem; }

.psr-hero__chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--white);
    color: var(--gray-800);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.6rem 0.95rem;
    border-radius: var(--rounded-full);
    box-shadow: var(--shadow-xl);
    white-space: nowrap;
}
.psr-hero__chip i { color: var(--success); }
.psr-hero__chip--1 { top: 14%; left: -0.5rem; }
.psr-hero__chip--2 { bottom: 16%; right: -0.5rem; }
.psr-hero__chip--2 i { color: var(--primary); }

/* ─────────── DOLOR / SOLUCIÓN ─────────── */
.psr-pain__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.psr-pain__item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--rounded-xl);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.psr-pain__item:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.psr-pain__x {
    width: 2.5rem; height: 2.5rem;
    display: flex; align-items: center; justify-content: center;
    background: #fef2f2; color: var(--danger);
    border-radius: var(--rounded-md);
    margin-bottom: 1rem;
}
.psr-pain__item h3 { font-size: 1.08rem; color: var(--gray-900); margin: 0 0 0.6rem; }
.psr-pain__item p { color: var(--gray-600); line-height: 1.65; font-size: 0.95rem; margin: 0 0 0.75rem; }
.psr-pain__fix {
    display: flex; gap: 0.5rem;
    color: var(--gray-800) !important;
    font-weight: 600;
    background: #ecfdf5;
    border-left: 3px solid var(--success);
    border-radius: var(--rounded);
    padding: 0.7rem 0.85rem;
    margin: 0 !important;
}
.psr-pain__fix i { color: var(--success); margin-top: 0.2rem; flex-shrink: 0; }

/* ─────────── PILARES ─────────── */
.psr-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.psr-pillar {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--rounded-xl);
    padding: 2rem 1.65rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.psr-pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: var(--primary-light); }
.psr-pillar__icon {
    width: 3.5rem; height: 3.5rem;
    margin: 0 auto 1rem;
    display: flex; align-items: center; justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.4rem;
    border-radius: var(--rounded-lg);
}
.psr-pillar__icon--green { background: linear-gradient(135deg, #059669 0%, #10b981 100%); }
.psr-pillar__icon--amber { background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%); }
.psr-pillar__icon--dark  { background: var(--gradient-dark); }
.psr-pillar__tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary-dark);
    background: var(--primary-50);
    padding: 0.25rem 0.65rem;
    border-radius: var(--rounded-full);
    margin-bottom: 0.7rem;
}
.psr-pillar h3 { font-size: 1.15rem; color: var(--gray-900); margin: 0 0 0.6rem; }
.psr-pillar p { color: var(--gray-600); font-size: 0.94rem; line-height: 1.65; margin: 0; }

/* ─────────── VIDEO ─────────── */
.psr-video {
    max-width: 940px;
    margin: 0 auto;
    border-radius: var(--rounded-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    background: #0b1220;
    aspect-ratio: 16 / 9;
    position: relative;
}
.psr-video__facade {
    display: block;
    width: 100%; height: 100%;
    padding: 0; border: 0;
    background: #0b1220;
    cursor: pointer;
    position: relative;
}
.psr-video__facade img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.82; transition: var(--transition); }
.psr-video__facade:hover img { opacity: 1; transform: scale(1.02); }
.psr-video__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 5rem; height: 5rem;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-size: 1.6rem;
    border-radius: var(--rounded-full);
    box-shadow: 0 0 0 12px rgba(37, 99, 235, 0.25);
    transition: var(--transition);
}
.psr-video__facade:hover .psr-video__play { background: var(--primary-dark); box-shadow: 0 0 0 18px rgba(37, 99, 235, 0.3); }
.psr-video__label {
    position: absolute;
    bottom: 1.25rem; left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    background: rgba(0, 0, 0, 0.55);
    padding: 0.45rem 1.1rem;
    border-radius: var(--rounded-full);
}
.psr-video__iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ─────────── FLUJO ─────────── */
.psr-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
    gap: 1.25rem;
    counter-reset: psrflow;
}
.psr-flow__step {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--rounded-xl);
    padding: 1.75rem 1.4rem;
    position: relative;
    box-shadow: var(--shadow-sm);
}
.psr-flow__num {
    width: 2.4rem; height: 2.4rem;
    display: flex; align-items: center; justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 800;
    border-radius: var(--rounded-full);
    margin-bottom: 0.9rem;
}
.psr-flow__step h4 { font-size: 1.03rem; color: var(--gray-900); margin: 0 0 0.5rem; }
.psr-flow__step p { color: var(--gray-600); font-size: 0.92rem; line-height: 1.6; margin: 0; }

/* ─────────── SPLIT (texto + mockup) ─────────── */
.psr-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}
.psr-split--rev .psr-split__media { order: -1; }
.psr-split h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: var(--gray-900); margin: 0 0 1rem; line-height: 1.25; }
.psr-split .lead { font-size: 1.08rem; color: var(--gray-600); line-height: 1.75; margin: 0 0 1.5rem; }
.psr-split__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-dark);
    background: var(--primary-50);
    border: 1px solid var(--primary-100);
    padding: 0.4rem 0.9rem;
    border-radius: var(--rounded-full);
    margin-bottom: 1.1rem;
}
.psr-split__badge--green { color: #047857; background: #ecfdf5; border-color: #a7f3d0; }
.psr-split__badge--amber { color: #b45309; background: #fffbeb; border-color: #fde68a; }

.psr-split__media img {
    width: 100%;
    border-radius: var(--rounded-2xl);
    box-shadow: var(--shadow-2xl);
    display: block;
}
.psr-split__ph {
    aspect-ratio: 4 / 3;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0.75rem;
    background: var(--gray-50);
    border: 2px dashed var(--gray-300);
    border-radius: var(--rounded-2xl);
    color: var(--gray-400);
    text-align: center;
    padding: 1.5rem;
}
.psr-split__ph i { font-size: 2.5rem; }
.psr-split__ph span { font-size: 0.9rem; font-weight: 600; }

/* Listas con check */
.psr-check { list-style: none; padding: 0; margin: 0 0 1.75rem; display: flex; flex-direction: column; gap: 0.85rem; }
.psr-check li {
    position: relative;
    padding-left: 1.9rem;
    color: var(--gray-600);
    line-height: 1.65;
}
.psr-check li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0; top: 0.15rem;
    color: var(--success);
    font-size: 0.85rem;
}
.psr-check strong { color: var(--gray-900); }

.psr-note {
    display: flex; gap: 0.7rem;
    background: var(--primary-50);
    border-left: 3px solid var(--primary);
    border-radius: var(--rounded);
    padding: 1rem 1.15rem;
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}
.psr-note i { color: var(--primary); margin-top: 0.2rem; flex-shrink: 0; }

/* ─────────── TARJETAS 4 (camión) ─────────── */
.psr-cards4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.psr-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--rounded-xl);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.psr-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.psr-card__ic {
    width: 3rem; height: 3rem;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary-50);
    color: var(--primary-dark);
    font-size: 1.2rem;
    border-radius: var(--rounded-lg);
    margin-bottom: 1rem;
}
.psr-card h3 { font-size: 1.05rem; color: var(--gray-900); margin: 0 0 0.5rem; }
.psr-card p { color: var(--gray-600); font-size: 0.93rem; line-height: 1.62; margin: 0; }

.psr-buckets {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--rounded-xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}
.psr-buckets h3 { font-size: 1.15rem; color: var(--gray-900); margin: 0 0 0.65rem; display: flex; align-items: center; gap: 0.6rem; }
.psr-buckets h3 i { color: var(--primary); }
.psr-buckets p { color: var(--gray-600); margin: 0 0 1.25rem; line-height: 1.65; }
.psr-buckets__row { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.psr-bucket {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    padding: 0.45rem 0.9rem;
    border-radius: var(--rounded-full);
}
.psr-bucket--ok  { color: #047857; background: #ecfdf5; border-color: #a7f3d0; }
.psr-bucket--bad { color: #b91c1c; background: #fef2f2; border-color: #fecaca; }

/* ─────────── OFFLINE (bloque oscuro) ─────────── */
.psr-offline { background: var(--gradient-dark); position: relative; overflow: hidden; }
.psr-offline::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(circle at 85% 15%, rgba(37, 99, 235, 0.28) 0%, transparent 55%);
    pointer-events: none;
}
.psr-offline .container { position: relative; }
.psr-offline__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3.5rem; align-items: center; }
.section-badge--light {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #bfdbfe !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.psr-offline__lead { color: rgba(255, 255, 255, 0.85); font-size: 1.08rem; line-height: 1.8; margin: 0 0 1.75rem; }
.psr-offline__facts { display: flex; flex-direction: column; gap: 1rem; }
.psr-offline__facts > div {
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--rounded-lg);
    padding: 1rem 1.15rem;
    line-height: 1.6;
    font-size: 0.95rem;
}
.psr-offline__facts strong { color: var(--white); }

.psr-offline__visual {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--rounded-2xl);
    padding: 1.75rem;
}
.psr-offline__badge {
    display: inline-flex; align-items: center; gap: 0.55rem;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fca5a5;
    font-size: 0.85rem; font-weight: 700;
    padding: 0.45rem 0.95rem;
    border-radius: var(--rounded-full);
    margin-bottom: 1.25rem;
}
.psr-offline__queue { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.psr-offline__queue li {
    display: flex; align-items: center; gap: 0.65rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--rounded-md);
    padding: 0.7rem 0.9rem;
}
.psr-offline__queue i { color: #6ee7b7; }
.psr-offline__sync { color: #93c5fd !important; }
.psr-offline__sync i { color: #93c5fd !important; animation: psrSpin 2s linear infinite; }
@keyframes psrSpin { to { transform: rotate(360deg); } }

/* ─────────── INTEGRACIÓN ─────────── */
.psr-integra {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1.25rem;
    align-items: stretch;
    margin-bottom: 2rem;
}
.psr-integra__node {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--rounded-xl);
    padding: 1.85rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.psr-integra__node--main { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.psr-integra__ic {
    width: 3.25rem; height: 3.25rem;
    margin: 0 auto 1rem;
    display: flex; align-items: center; justify-content: center;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 1.3rem;
    border-radius: var(--rounded-lg);
}
.psr-integra__ic--main { background: var(--gradient-primary); color: var(--white); }
.psr-integra__node h3 { font-size: 1.1rem; color: var(--gray-900); margin: 0 0 0.55rem; }
.psr-integra__node p { color: var(--gray-600); font-size: 0.91rem; line-height: 1.6; margin: 0; }
.psr-integra__arrow { display: flex; align-items: center; color: var(--primary); font-size: 1.2rem; }
.psr-integra__note {
    display: flex; gap: 0.85rem;
    max-width: 780px; margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--rounded-lg);
    padding: 1.15rem 1.35rem;
}
.psr-integra__note i { color: var(--success); margin-top: 0.25rem; }
.psr-integra__note p { margin: 0; color: var(--gray-600); font-size: 0.95rem; line-height: 1.65; }

/* ─────────── GALERÍA DE MOCKUPS ─────────── */
.psr-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 1.75rem;
}
.psr-shot { margin: 0; text-align: center; }
.psr-shot__link {
    display: block;
    border-radius: var(--rounded-xl);
    overflow: hidden;
    background: #0b1220;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}
.psr-shot__link:hover { transform: translateY(-5px); box-shadow: var(--shadow-2xl); }
.psr-shot img { width: 100%; height: auto; display: block; }
.psr-shot figcaption {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.4;
}

/* ─────────── SECTORES ─────────── */
.psr-sectors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}
.psr-sector {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--rounded-xl);
    padding: 1.65rem 1.4rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.psr-sector:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); }
.psr-sector i { font-size: 1.5rem; color: var(--primary); margin-bottom: 0.85rem; display: block; }
.psr-sector h3 { font-size: 1.03rem; color: var(--gray-900); margin: 0 0 0.45rem; }
.psr-sector p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* ─────────── BENEFICIOS ─────────── */
.psr-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
    gap: 1.5rem;
}
.psr-benefit {
    padding: 1.65rem;
    border-radius: var(--rounded-xl);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border: 1px solid var(--gray-200);
}
.psr-benefit i {
    font-size: 1.4rem;
    color: var(--primary);
    background: var(--primary-50);
    width: 2.85rem; height: 2.85rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--rounded-lg);
    margin-bottom: 0.95rem;
}
.psr-benefit h3 { font-size: 1.05rem; color: var(--gray-900); margin: 0 0 0.5rem; }
.psr-benefit p { color: var(--gray-600); font-size: 0.93rem; line-height: 1.62; margin: 0; }

/* ─────────── REQUISITOS ─────────── */
.psr-req {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    gap: 1.75rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--rounded-2xl);
    padding: 2.25rem;
    box-shadow: var(--shadow-sm);
}
.psr-req__col h3 {
    font-size: 1.05rem;
    color: var(--gray-900);
    margin: 0 0 1rem;
    display: flex; align-items: center; gap: 0.6rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
}
.psr-req__col h3 i { color: var(--primary); }
.psr-req__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.psr-req__col li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--gray-600);
    font-size: 0.93rem;
    line-height: 1.55;
}
.psr-req__col li::before {
    content: "";
    position: absolute;
    left: 0; top: 0.5rem;
    width: 6px; height: 6px;
    background: var(--primary);
    border-radius: var(--rounded-full);
}

/* ─────────── COMPARATIVAS ─────────── */
.psr-vs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
    gap: 1.5rem;
}
.psr-vs__card {
    display: block;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--rounded-xl);
    padding: 1.75rem 1.6rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
}
.psr-vs__card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.psr-vs__tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--secondary-dark);
    background: #f5f3ff;
    padding: 0.25rem 0.6rem;
    border-radius: var(--rounded-full);
    margin-bottom: 0.8rem;
}
.psr-vs__card h3 { font-size: 1.08rem; color: var(--gray-900); margin: 0 0 0.5rem; }
.psr-vs__card p { color: var(--gray-600); font-size: 0.92rem; line-height: 1.6; margin: 0 0 1rem; }
.psr-vs__go { font-size: 0.88rem; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 0.4rem; }
.psr-vs__card:hover .psr-vs__go i { transform: translateX(4px); transition: var(--transition-fast); }

/* ─────────── CTA / FORM ─────────── */
.psr-cta__list { list-style: none; padding: 0; margin: 1.75rem 0 0; display: flex; flex-direction: column; gap: 0.6rem; }
.psr-cta__list li { display: flex; align-items: center; gap: 0.6rem; color: var(--gray-600); font-size: 0.95rem; }
.psr-cta__list i { color: var(--success); }
.psr-form__legal { margin: 1rem 0 0; font-size: 0.78rem; color: var(--gray-400); text-align: center; }

.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;
}

/* ─────────── PANEL DE MEDIOS (?media=1) ─────────── */
.psr-media-panel { background: #1e293b; color: #e2e8f0; padding: 6.5rem 0 2.5rem; }
.psr-media-panel h2 { color: #fff; font-size: 1.4rem; margin: 0 0 0.4rem; display: flex; align-items: center; gap: 0.6rem; }
.psr-media-panel > .container > p { color: #94a3b8; font-size: 0.9rem; margin: 0 0 1.5rem; }
.psr-media-panel code { background: rgba(255,255,255,0.1); padding: 0.1rem 0.4rem; border-radius: 4px; font-size: 0.85em; color: #fbbf24; }
.psr-media-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; }
.psr-media-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--rounded-lg); padding: 1.35rem; }
.psr-media-card h3 { color: #fff; font-size: 1rem; margin: 0 0 0.4rem; }
.psr-media-path { color: #7dd3fc; font-family: monospace; font-size: 0.85rem; margin: 0 0 0.85rem; }
.psr-media-ok { color: #6ee7b7; font-size: 0.9rem; margin: 0; }
.psr-media-warn { color: #fcd34d; font-size: 0.9rem; margin: 0; line-height: 1.55; }
.psr-media-list { margin: 0; padding-left: 1.35rem; display: flex; flex-direction: column; gap: 0.55rem; }
.psr-media-list li { color: #cbd5e1; font-size: 0.85rem; }
.psr-media-list small { color: #94a3b8; }

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 1024px) {
    .psr-hero { padding: 7rem 0 4rem; }
    .psr-hero__grid { grid-template-columns: 1fr; gap: 3rem; }
    .psr-hero__visual { order: -1; }
    .psr-phone { width: 250px; }
    .psr-hero__chip { display: none; }
    .psr-split, .psr-offline__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .psr-split--rev .psr-split__media { order: 0; }
    .psr-integra { grid-template-columns: 1fr; }
    .psr-integra__arrow { justify-content: center; transform: rotate(90deg); }
}

@media (max-width: 640px) {
    .psr-hero { padding: 6.5rem 0 3rem; }
    .psr-hero h1 { font-size: 1.85rem; }
    .psr-hero__sub { font-size: 1rem; }
    .psr-hero__bullets { flex-direction: column; gap: 0.5rem; }
    .psr-hero__actions .btn { width: 100%; justify-content: center; }
    .psr-req { padding: 1.5rem; }
    .psr-gallery { grid-template-columns: repeat(auto-fill, minmax(145px, 1fr)); gap: 1.15rem; }
    .psr-video__play { width: 3.75rem; height: 3.75rem; font-size: 1.2rem; box-shadow: 0 0 0 8px rgba(37,99,235,0.25); }
    .psr-video__label { font-size: 0.82rem; bottom: 0.85rem; }
    .psr-buckets, .psr-integra__note { padding: 1.35rem; }
}

/* Respeta la preferencia de menos movimiento */
@media (prefers-reduced-motion: reduce) {
    .psr-offline__sync i { animation: none; }
    .psr-pain__item:hover, .psr-pillar:hover, .psr-card:hover,
    .psr-shot__link:hover, .psr-vs__card:hover { transform: none; }
}
