﻿/* ============================================================
   LogiPack Landing Page Styles
   Extracted for browser caching and PageSpeed optimization
   ============================================================ */
    :root {
        color-scheme: light;
        --lp-bg: #050816;
        --lp-bg-soft: #0b1020;
        --lp-card: #0f1729;
        --lp-accent: #3b82f6;
        --lp-accent-soft: rgba(59, 130, 246, 0.12);
        --lp-text-main: #f9fafb;
        --lp-text-muted: #94a3b8;
        --lp-border-subtle: rgba(148, 163, 184, 0.25);
        --lp-font: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
        --lp-font-head: 'Outfit', 'DM Sans', sans-serif;
    }

    .lp-page {
        font-family: var(--lp-font);
        background: #020617;
        color: var(--lp-text-main);
        min-height: 100vh;
        overflow-x: hidden;
    }

    /* NAVBAR */
    .lp-nav {
        position: sticky;
        top: 0;
        z-index: 40;
        backdrop-filter: blur(18px);
        background: rgba(5, 8, 22, 0.88);
        border-bottom: 1px solid var(--lp-border-subtle);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    }

    .lp-nav-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0.75rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        min-height: 68px;
    }

    .lp-nav-brand {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .lp-nav-logo {
        width: 38px;
        height: 38px;
        object-fit: contain;
    }

    .lp-nav-title {
        font-family: var(--lp-font-head);
        font-weight: 600;
        font-size: 1.1rem;
        letter-spacing: 0.02em;
    }

    .lp-nav-links {
        display: flex;
        gap: 1.75rem;
        font-size: 0.9rem;
    }

    .lp-nav-links a {
        color: var(--lp-text-muted);
        text-decoration: none;
        position: relative;
        padding-bottom: 0.2rem;
        transition: color 0.2s ease;
    }

    .lp-nav-links a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 0;
        background: linear-gradient(90deg, #3b82f6, #22c55e);
        border-radius: 2px;
        transition: width 0.2s ease;
    }

    .lp-nav-links a:hover {
        color: #e2e8f0;
    }

    .lp-nav-links a:hover::after {
        width: 100%;
    }

    .lp-nav-actions {
        display: flex;
        gap: 0.75rem;
        align-items: center;
    }

    .lp-mobile-toggle {
        display: none;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        border: 1px solid var(--lp-border-subtle);
        background: rgba(15, 23, 42, 0.6);
        color: #e2e8f0;
        cursor: pointer;
        transition: background 0.2s, transform 0.2s;
    }

    .lp-mobile-toggle i {
        font-size: 1.35rem;
    }

    .lp-mobile-toggle:hover {
        background: rgba(15, 23, 42, 0.9);
        transform: translateY(-1px);
    }


    .lp-mobile-links,
    .lp-mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }

    .lp-mobile-links a {
        color: #e2e8f0;
        text-decoration: none;
        padding: 0.6rem 0.5rem;
        border-radius: 10px;
        background: rgba(15, 23, 42, 0.7);
    }

    /* BUTTONS */
    .lp-page .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        padding: 0.7rem 1.5rem;
        border-radius: 10px;
        font-family: var(--lp-font);
        font-weight: 500;
        font-size: 0.9rem;
        border: none;
        cursor: pointer;
        text-decoration: none;
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
        white-space: nowrap;
    }

    .lp-page .btn-primary {
        background: linear-gradient(135deg, #3b82f6, #2563eb);
        color: white;
        box-shadow: 0 10px 28px rgba(59, 130, 246, 0.4);
    }

    .lp-page .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 36px rgba(59, 130, 246, 0.5);
    }

    .lp-page .btn-outline {
        border: 1px solid rgba(148, 163, 184, 0.5);
        background: transparent;
        color: var(--lp-text-main);
    }

    .lp-page .btn-outline:hover {
        background: rgba(15, 23, 42, 0.8);
        border-color: rgba(148, 163, 184, 0.7);
    }

    .lp-page .btn-secondary {
        background: #22c55e;
        color: #022c22;
        font-weight: 600;
        box-shadow: 0 10px 28px rgba(34, 197, 94, 0.4);
    }

    .lp-page .btn-secondary:hover {
        background: #16a34a;
        transform: translateY(-2px);
    }

    .lp-page .btn-light {
        background: #f8fafc;
        color: #0f172a;
        font-weight: 500;
    }

    .lp-page .btn-light:hover {
        transform: translateY(-2px);
    }

    .lp-page .btn-ghost {
        padding: 0.5rem 1rem;
        background: transparent;
        color: var(--lp-text-muted);
        border-radius: 10px;
    }

    .lp-page .btn-ghost:hover {
        background: rgba(15, 23, 42, 0.8);
        color: #e2e8f0;
    }

    .lp-page .btn-small-primary {
        padding: 0.5rem 1.2rem;
        font-size: 0.88rem;
        background: linear-gradient(135deg, #3b82f6, #2563eb);
        color: white;
        border-radius: 10px;
        box-shadow: 0 8px 22px rgba(59, 130, 246, 0.4);
    }

    .lp-page .btn-block {
        width: 100%;
    }

    /* HERO */
    .lp-hero {
        position: relative;
        padding: 5rem 1.5rem 5.5rem;
        overflow: hidden;
    }

    .lp-hero-bg-blur {
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 0;
        overflow: hidden;
    }
    /* Dark radial backdrop */
    .lp-hero-bg-blur::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 80% 60% at 15% 40%, rgba(59,130,246,0.18) 0%, transparent 60%),
            radial-gradient(ellipse 60% 50% at 85% 60%, rgba(34,197,94,0.13) 0%, transparent 55%),
            radial-gradient(ellipse 100% 80% at 50% -10%, rgba(99,102,241,0.12) 0%, transparent 50%),
            #020617;
    }
    /* Animated orbs */
    .lp-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        will-change: transform;
    }
    .lp-orb-1 {
        width: 500px; height: 500px;
        background: radial-gradient(circle, rgba(59,130,246,0.25) 0%, rgba(59,130,246,0.05) 70%);
        top: -120px; left: -80px;
        animation: orb-drift-1 18s ease-in-out infinite;
    }
    .lp-orb-2 {
        width: 420px; height: 420px;
        background: radial-gradient(circle, rgba(34,197,94,0.2) 0%, rgba(34,197,94,0.04) 70%);
        bottom: -100px; right: -60px;
        animation: orb-drift-2 22s ease-in-out infinite;
    }
    .lp-orb-3 {
        width: 300px; height: 300px;
        background: radial-gradient(circle, rgba(168,85,247,0.18) 0%, rgba(168,85,247,0.03) 70%);
        top: 20%; right: 20%;
        animation: orb-drift-3 15s ease-in-out infinite;
    }
    @keyframes orb-drift-1 {
        0%, 100% { transform: translate(0, 0) scale(1); }
        33% { transform: translate(80px, 60px) scale(1.1); }
        66% { transform: translate(40px, 120px) scale(0.95); }
    }
    @keyframes orb-drift-2 {
        0%, 100% { transform: translate(0, 0) scale(1); }
        40% { transform: translate(-60px, -80px) scale(1.15); }
        70% { transform: translate(-30px, -40px) scale(0.9); }
    }
    @keyframes orb-drift-3 {
        0%, 100% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(-50px, 30px) scale(1.2); }
    }

    .lp-hero-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.05fr 1fr;
        gap: 3rem;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .lp-hero-copy {
        max-width: 580px;
    }

    .lp-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.35rem 1rem 0.35rem 0.7rem;
        border-radius: 999px;
        background: rgba(59, 130, 246, 0.1);
        border: 1px solid rgba(59, 130, 246, 0.35);
        font-size: 0.8rem;
        color: #93c5fd;
        margin-bottom: 1.5rem;
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
        animation: badge-glow 3s ease-in-out infinite;
    }
    @keyframes badge-glow {
        0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.15); }
        50% { box-shadow: 0 0 30px rgba(59, 130, 246, 0.3); }
    }

    .lp-badge i {
        color: #facc15;
        font-size: 0.95rem;
    }

    .lp-hero-title {
        font-family: var(--lp-font-head);
        color: #fff;
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        line-height: 1.1;
        font-weight: 800;
        margin-bottom: 1rem;
        letter-spacing: -0.03em;
    }

    .lp-hero-title span {
        display: block;
        background: linear-gradient(90deg, #60a5fa 0%, #a78bfa 40%, #34d399 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        animation: gradient-shift 6s ease-in-out infinite;
        background-size: 200% 100%;
    }
    @keyframes gradient-shift {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
    }

    .lp-hero-subtitle {
        font-size: 1.05rem;
        color: #cbd5e1;
        line-height: 1.7;
        margin-bottom: 1.8rem;
        max-width: 520px;
    }

    .lp-hero-cta {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .lp-hero-metrics {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .metric {
        min-width: 130px;
        padding: 0.85rem 1.1rem;
        border-radius: 14px;
        background: rgba(15, 23, 42, 0.85);
        border: 1px solid rgba(148, 163, 184, 0.2);
        backdrop-filter: blur(8px);
        transition: border-color 0.25s ease, transform 0.25s ease;
    }
    .metric:hover {
        border-color: rgba(96, 165, 250, 0.4);
        transform: translateY(-2px);
    }

    .metric-value {
        display: block;
        font-size: 1.4rem;
        font-weight: 700;
        background: linear-gradient(90deg, #fff, #93c5fd);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .metric-label {
        font-size: 0.8rem;
        color: var(--lp-text-muted);
        margin-top: 0.1rem;
    }

    /* HERO VISUAL */
    .lp-hero-visual {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lp-hero-card {
        width: 100%;
        max-width: 400px;
        border-radius: 1.25rem;
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(5, 8, 22, 0.98));
        border: 1px solid rgba(59, 130, 246, 0.4);
        box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5),
                    0 0 80px rgba(59, 130, 246, 0.12),
                    inset 0 1px 0 rgba(255,255,255,0.06);
        overflow: hidden;
        animation: hero-card-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    @keyframes hero-card-in {
        from { opacity: 0; transform: translateY(20px) scale(0.97); }
        to   { opacity: 1; transform: none; }
    }

    .lp-hero-card-header {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.65rem 1rem;
        background: rgba(2, 6, 23, 0.95);
        border-bottom: 1px solid rgba(30, 41, 59, 0.8);
    }

    .lp-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
    }

    .lp-dot.red { background: #f87171; }
    .lp-dot.yellow { background: #fbbf24; }
    .lp-dot.green { background: #22c55e; }

    .lp-hero-card-title {
        margin-left: auto;
        font-size: 0.75rem;
        color: var(--lp-text-muted);
    }

    .lp-hero-card-body {
        padding: 1rem 1.1rem 1.25rem;
    }

    .lp-hero-stats-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .mini-card {
        padding: 0.65rem 0.75rem;
        border-radius: 10px;
        background: rgba(59, 130, 246, 0.1);
        border: 1px solid rgba(59, 130, 246, 0.35);
        font-size: 0.78rem;
    }

    .mini-label {
        color: var(--lp-text-muted);
        display: block;
        margin-bottom: 0.1rem;
    }

    .mini-value {
        display: block;
        font-weight: 600;
        font-size: 1.05rem;
        margin-bottom: 0.15rem;
    }

    .mini-tag {
        font-size: 0.7rem;
        padding: 0.15rem 0.45rem;
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, 0.5);
        display: inline-block;
        color: var(--lp-text-muted);
    }

    .mini-tag.success {
        border-color: rgba(34, 197, 94, 0.6);
        color: #86efac;
    }

    .lp-hero-timeline {
        border-radius: 10px;
        border: 1px solid rgba(51, 65, 85, 0.8);
        background: rgba(2, 6, 23, 0.9);
        padding: 0.6rem 0.65rem;
    }

    .timeline-item {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 0.5rem;
        align-items: center;
        padding: 0.4rem 0.25rem;
        border-radius: 8px;
    }

    .timeline-item + .timeline-item {
        margin-top: 0.05rem;
    }

    .timeline-item:hover {
        background: rgba(15, 23, 42, 0.9);
    }

    .timeline-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
    }

    .timeline-title { font-size: 0.78rem; }
    .timeline-sub { font-size: 0.7rem; color: var(--lp-text-muted); }

    .timeline-status {
        font-size: 0.68rem;
        padding: 0.12rem 0.4rem;
        border-radius: 999px;
        border: 1px solid rgba(52, 211, 153, 0.5);
        color: #86efac;
    }

    .timeline-status.pending {
        border-color: rgba(234, 179, 8, 0.5);
        color: #fef08a;
    }

    .lp-hero-floating-card {
        position: absolute;
        bottom: -8px;
        right: 8px;
        padding: 0.6rem 0.85rem;
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.95);
        border: 1px solid rgba(148, 163, 184, 0.4);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.72rem;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
        animation: float 4s ease-in-out infinite;
    }

    .lp-hero-floating-card i {
        font-size: 1.1rem;
        color: #22c55e;
    }

    .floating-title { font-weight: 500; margin-bottom: 0.05rem; }
    .floating-sub { color: var(--lp-text-muted); }

    @keyframes float {
        0%, 100% { transform: translateY(0) translateX(0); }
        50% { transform: translateY(-4px) translateX(-3px); }
    }

    /* SECTIONS */
    .lp-section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 3.5rem 1.5rem 0;
    }

    .lp-section-alt {
        padding-top: 3rem;
    }

    .section-heading {
        text-align: center;
        max-width: 680px;
        margin: 0 auto 2.5rem;
    }

    .section-tag {
        text-transform: uppercase;
        letter-spacing: 0.12em;
        font-weight: 600;
        font-size: 0.7rem;
        color: #60a5fa;
        display: inline-block;
        margin-bottom: 0.5rem;
    }

    .section-heading h2 {
        font-family: var(--lp-font-head);
        font-size: clamp(1.75rem, 2.8vw, 2.1rem);
        color: #fff;
        margin-bottom: 0.75rem;
    }

    .section-heading p {
        color: #94a3b8;
        font-size: 0.95rem;
        line-height: 1.65;
    }

    /* SERVICE BLOCK (LogiPack principal) */
    .service-block {
        border-radius: 1.25rem;
        padding: 1.75rem 2rem;
        margin-bottom: 1.75rem;
        border: 1px solid rgba(59, 130, 246, 0.35);
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(15, 23, 42, 0.98));
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
    }

    .service-block-main {
        border-color: rgba(59, 130, 246, 0.5);
    }

    .service-block-header {
        display: flex;
        align-items: flex-start;
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .service-block-icon-wrap {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        background: rgba(59, 130, 246, 0.2);
        border: 1px solid rgba(59, 130, 246, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .service-block-icon-wrap i {
        font-size: 1.75rem;
        color: #60a5fa;
    }

    .service-block-header h3 {
        font-family: var(--lp-font-head);
        font-size: 1.35rem;
        color: #fff;
        margin-bottom: 0.35rem;
    }

    .service-block-desc {
        color: #94a3b8;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .service-block-features {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 0.5rem;
    }

    .service-block-features li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        color: #e2e8f0;
    }

    .service-block-features li i {
        color: #22c55e;
        font-size: 1.1rem;
    }

    /* SERVICE CARDS (Desarrollo + Integraciones) */
    .service-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .service-card {
        border-radius: 1.2rem;
        padding: 1.6rem 1.5rem;
        border: 1px solid rgba(148, 163, 184, 0.35);
        background: rgba(15, 23, 42, 0.7);
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
        transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .service-card:hover {
        transform: translateY(-4px);
        border-color: rgba(96, 165, 250, 0.5);
        box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
    }

    .service-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        background: rgba(15, 23, 42, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .service-icon i {
        font-size: 1.5rem;
        color: #60a5fa;
    }

    .service-card-dev .service-icon i { color: #818cf8; }
    .service-card-int .service-icon i { color: #34d399; }

    .service-card h3 {
        font-family: var(--lp-font-head);
        font-size: 1.1rem;
        color: #fff;
        margin-bottom: 0.5rem;
    }

    .service-card p {
        font-size: 0.9rem;
        color: var(--lp-text-muted);
        margin-bottom: 0.9rem;
        line-height: 1.55;
    }

    .service-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .service-card li {
        display: flex;
        align-items: center;
        gap: 0.45rem;
        font-size: 0.85rem;
        color: #cbd5e1;
        margin-bottom: 0.4rem;
    }

    .service-card li i {
        color: #22c55e;
    }

    /* PRICING */
    .pricing-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        max-width: 1100px;
        margin: 0 auto 3rem;
    }

    .pricing-card {
        position: relative;
        border-radius: 1.25rem;
        padding: 1.75rem 1.6rem;
        border: 1px solid rgba(148, 163, 184, 0.35);
        background: rgba(15, 23, 42, 0.8);
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
        transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .pricing-card:hover {
        transform: translateY(-4px);
        border-color: rgba(59, 130, 246, 0.4);
    }

    .pricing-card-featured {
        border-color: rgba(59, 130, 246, 0.5);
        background: linear-gradient(180deg, rgba(59, 130, 246, 0.15), rgba(15, 23, 42, 0.95));
    }

    .pricing-badge {
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.25rem 0.75rem;
        border-radius: 999px;
        background: linear-gradient(135deg, #3b82f6, #2563eb);
        color: #fff;
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .pricing-header {
        margin-bottom: 1.25rem;
    }

    .pricing-header h3 {
        font-family: var(--lp-font-head);
        font-size: 1.25rem;
        color: #fff;
        margin-bottom: 0.25rem;
    }

    .pricing-desc {
        font-size: 0.88rem;
        color: var(--lp-text-muted);
        margin-bottom: 1rem;
    }

    .pricing-amount {
        display: flex;
        align-items: baseline;
        gap: 0.2rem;
    }

    .pricing-amount .currency {
        font-size: 1.25rem;
        color: #94a3b8;
    }

    .pricing-amount .value {
        font-family: var(--lp-font-head);
        font-size: 2.5rem;
        font-weight: 700;
        color: #fff;
    }

    .pricing-amount .period {
        font-size: 1rem;
        color: var(--lp-text-muted);
    }

    .pricing-features {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem;
    }

    .pricing-features li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        color: #e2e8f0;
        margin-bottom: 0.4rem;
    }

    .pricing-features li i {
        color: #22c55e;
    }

    .pricing-features li.pricing-feature-group {
        margin-top: 0.75rem;
        color: #94a3b8;
        font-size: 0.8rem;
        list-style: none;
    }

        .pricing-features li.pricing-feature-group:first-child {
            margin-top: 0;
        }

        .pricing-features li.pricing-feature-group i {
            color: #60a5fa;
            margin-right: 0.25rem;
        }

    .pricing-note {
        font-size: 0.75rem;
        color: var(--lp-text-muted);
        margin-top: 0.75rem;
        text-align: center;
    }

    .pricing-card-cta .pricing-custom-text {
        font-size: 0.9rem;
        color: #94a3b8;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }

    /* EMPEZAR (formulario) */
    .empezar-wrap {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 2rem;
        align-items: start;
        max-width: 1000px;
        margin: 0 auto 3rem;
    }

    .empezar-form-card {
        border-radius: 1.25rem;
        padding: 1.75rem 1.75rem;
        border: 1px solid rgba(148, 163, 184, 0.35);
        background: rgba(15, 23, 42, 0.8);
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
    }

    .empezar-form-card h4 {
        font-family: var(--lp-font-head);
        font-size: 1.2rem;
        color: #fff;
        margin-bottom: 0.25rem;
    }

    .empezar-form-desc {
        font-size: 0.88rem;
        color: var(--lp-text-muted);
        margin-bottom: 1.25rem;
    }

    .empezar-form .form-row {
        margin-bottom: 1rem;
    }

    .empezar-form label {
        display: block;
        font-size: 0.85rem;
        font-weight: 500;
        color: #e2e8f0;
        margin-bottom: 0.35rem;
    }

    .empezar-form input {
        width: 100%;
        padding: 0.65rem 0.9rem;
        border-radius: 10px;
        border: 1px solid rgba(148, 163, 184, 0.4);
        background: rgba(2, 6, 23, 0.8);
        color: #f1f5f9;
        font-size: 0.95rem;
        font-family: var(--lp-font);
        box-sizing: border-box;
    }

    .empezar-form input::placeholder {
        color: #64748b;
    }

    .empezar-form input:focus {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    }

    .form-hint {
        font-size: 0.8rem;
        color: var(--lp-text-muted);
        margin-top: 0.25rem;
    }

    .empezar-form .btn {
        margin-top: 0.5rem;
    }

    .empezar-alert {
        padding: 0.75rem 1rem;
        border-radius: 10px;
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    .empezar-alert-ok {
        background: rgba(34, 197, 94, 0.2);
        border: 1px solid rgba(34, 197, 94, 0.5);
        color: #86efac;
    }

    .empezar-alert-error {
        background: rgba(239, 68, 68, 0.2);
        border: 1px solid rgba(239, 68, 68, 0.5);
        color: #fca5a5;
    }

    .empezar-file-input {
        display: block;
        margin-top: 0.35rem;
        font-size: 0.88rem;
        color: #94a3b8;
    }

    .empezar-alt {
        font-size: 0.85rem;
        color: var(--lp-text-muted);
        margin-top: 1.25rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(148, 163, 184, 0.25);
    }

    .empezar-alt a {
        color: #60a5fa;
        text-decoration: none;
    }

    .empezar-alt a:hover {
        text-decoration: underline;
    }

    .empezar-checklist {
        border-radius: 1.2rem;
        padding: 1.5rem 1.5rem;
        border: 1px solid rgba(148, 163, 184, 0.3);
        background: rgba(15, 23, 42, 0.6);
    }

    .empezar-checklist h4 {
        font-family: var(--lp-font-head);
        font-size: 1.05rem;
        color: #fff;
        margin-bottom: 0.75rem;
    }

    .empezar-checklist ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .empezar-checklist li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        color: #cbd5e1;
        margin-bottom: 0.5rem;
    }

    .empezar-checklist li i {
        color: #22c55e;
    }

    /* BENEFICIOS */
    .solution-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.25rem;
        margin-bottom: 3rem;
    }

    .solution-card {
        border-radius: 1.1rem;
        padding: 1.35rem 1.25rem;
        border: 1px solid rgba(59, 130, 246, 0.3);
        background: rgba(15, 23, 42, 0.85);
        font-size: 0.9rem;
        transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .solution-card:hover {
        transform: translateY(-2px);
        border-color: rgba(59, 130, 246, 0.5);
    }

    .solution-card i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: #60a5fa;
    }

    .solution-card h4 {
        font-family: var(--lp-font-head);
        font-size: 1rem;
        color: #fff;
        margin-bottom: 0.3rem;
    }

    .solution-card p {
        color: var(--lp-text-muted);
    }

    /* PROCESS + TESTIMONIALS */
    .process-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .process-step {
        position: relative;
        border-radius: 1.1rem;
        padding: 1.6rem 1.5rem;
        border: 1px solid rgba(59, 130, 246, 0.35);
        background: rgba(15, 23, 42, 0.85);
        font-size: 0.9rem;
    }

    .step-number {
        position: absolute;
        top: -14px;
        left: 1.5rem;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: linear-gradient(135deg, #3b82f6, #2563eb);
        color: #fff;
        font-size: 0.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
    }

    .process-step h4 {
        font-family: var(--lp-font-head);
        font-size: 1rem;
        color: #fff;
        margin-top: 0.6rem;
        margin-bottom: 0.4rem;
    }

    .process-step p {
        color: var(--lp-text-muted);
    }

    .testimonial-strip {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .testimonial-card {
        border-radius: 1.2rem;
        padding: 1.5rem 1.4rem;
        border: 1px solid rgba(148, 163, 184, 0.35);
        background: rgba(15, 23, 42, 0.8);
        font-size: 0.88rem;
    }

    .testimonial-card p {
        color: #e2e8f0;
        margin-bottom: 0.9rem;
    }

    .testimonial-meta {
        display: flex;
        flex-direction: column;
        font-size: 0.82rem;
        color: var(--lp-text-muted);
    }

    .testimonial-meta .name {
        font-weight: 600;
        color: #93c5fd;
    }

    /* CTA */
    .cta {
        padding: 3rem 1.5rem;
        margin-top: 1rem;
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.6), #020617);
        border-top: 1px solid rgba(51, 65, 85, 0.6);
    }

    .cta-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 2rem;
        border-radius: 1.25rem;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(34, 197, 94, 0.15));
        border: 1px solid rgba(255, 255, 255, 0.15);
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    }

    .cta-content h2 {
        font-family: var(--lp-font-head);
        font-size: 1.5rem;
        color: #fff !important;
        margin-bottom: 0.5rem;
    }

    .cta-content p {
        color: #cbd5e1 !important;
        font-size: 0.92rem;
        max-width: 520px;
    }

    .cta-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .cta-actions .btn-light {
        background: #fff;
        color: #0f172a;
        font-weight: 500;
    }

    .cta-actions .btn-secondary {
        background: #22c55e;
        color: #022c22;
        font-weight: 600;
    }

    /* FOOTER */
    .footer {
        background: #020617;
        color: #94a3b8;
        padding: 2.5rem 1.5rem 1.5rem;
        border-top: 1px solid rgba(51, 65, 85, 0.6);
    }

    .footer-columns {
        max-width: 1200px;
        margin: 0 auto 1.5rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
    }

    .footer-logo {
        width: 120px;
        margin-bottom: 0.9rem;
    }

    .footer h4 {
        font-family: var(--lp-font-head);
        color: #f1f5f9;
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .footer ul {
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 0.88rem;
    }

    .footer li {
        margin-bottom: 0.4rem;
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    .footer li i {
        font-size: 0.95rem;
        color: #60a5fa;
    }

    .footer-bottom {
        text-align: center;
        font-size: 0.78rem;
        color: #64748b;
    }


    /* RESPONSIVE */
    @media (max-width: 900px) {
        .lp-nav-links,
        .lp-nav-actions {
            display: none;
        }

        .lp-mobile-toggle {
            display: inline-flex;
        }

        .lp-hero-inner {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .lp-hero-visual {
            order: -1;
        }

        .lp-hero-copy {
            text-align: left;
        }

        .lp-hero-visual {
            max-width: 420px;
            margin: 0 auto;
        }

        .empezar-wrap {
            grid-template-columns: 1fr;
        }

        .pricing-cards {
            grid-template-columns: 1fr;
        }

    }

    @media (max-width: 600px) {
        .lp-hero {
            padding: 3rem 1rem 3.5rem;
        }

        .lp-hero-card {
            max-width: 100%;
        }

        .lp-hero-metrics {
            flex-direction: column;
            gap: 0.75rem;
        }


        .metric {
            min-width: unset;
            width: 100%;
        }

        .cta-content {
            padding: 1.5rem 1.25rem;
        }

        .cta-actions {
            justify-content: flex-start;
        }

        .service-block-header {
            flex-direction: column;
        }

        .service-block-features {
            grid-template-columns: 1fr;
        }

        .empezar-form-card {
            padding: 1.25rem 1.25rem;
        }
    }

    /* ── NAVBAR SCROLLED ─────────────────────────────────── */
    .lp-nav.scrolled {
        padding-block: 0;
        background: rgba(5, 8, 22, 0.97);
        box-shadow: 0 6px 32px rgba(0, 0, 0, 0.35);
        border-bottom-color: rgba(148, 163, 184, 0.15);
    }
    .lp-nav.scrolled .lp-nav-inner {
        min-height: 56px;
    }
    .lp-nav.scrolled .lp-nav-logo {
        width: 30px;
        height: 30px;
        transition: all 0.3s ease;
    }
    .lp-nav {
        transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    }
    .lp-nav-inner, .lp-nav-logo {
        transition: min-height 0.3s ease, width 0.3s ease, height 0.3s ease;
    }
    .lp-mobile-toggle.open {
        background: rgba(59, 130, 246, 0.15);
        border-color: rgba(59, 130, 246, 0.4);
        color: #60a5fa;
    }

    /* ── MOBILE MENU SLIDE ANIMATION ────────────────────── */
    .lp-mobile-menu {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 0 1.5rem;
        background: rgba(5, 8, 22, 0.98);
        border-bottom: 1px solid transparent;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.36s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.28s ease,
                    padding 0.28s ease,
                    border-color 0.28s ease;
    }
    .lp-mobile-menu.show {
        max-height: 600px;
        opacity: 1;
        padding-top: 1rem;
        padding-bottom: 1.25rem;
        border-bottom-color: var(--lp-border-subtle);
    }

    /* ── SCROLL-REVEAL ──────────────────────────────────── */
    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .reveal.is-visible {
        opacity: 1;
        transform: none;
    }
    /* Stagger for cards inside a revealed parent */
    .solution-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
    .solution-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
    .solution-grid .reveal:nth-child(3) { transition-delay: 0.19s; }
    .solution-grid .reveal:nth-child(4) { transition-delay: 0.26s; }
    .solution-grid .reveal:nth-child(5) { transition-delay: 0.33s; }
    .solution-grid .reveal:nth-child(6) { transition-delay: 0.40s; }
    .process-steps .reveal:nth-child(1) { transition-delay: 0.05s; }
    .process-steps .reveal:nth-child(2) { transition-delay: 0.15s; }
    .process-steps .reveal:nth-child(3) { transition-delay: 0.25s; }
    .testimonial-strip .reveal:nth-child(1) { transition-delay: 0.05s; }
    .testimonial-strip .reveal:nth-child(2) { transition-delay: 0.18s; }

    /* ── WHATSAPP PULSE ─────────────────────────────────── */
    .whatsapp-wrapper {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 51;
        /* Dimensiones explícitas para que position:absolute del pulse funcione */
        width: 52px;
        height: 52px;
    }
    .whatsapp-pulse {
        position: absolute;
        border-radius: 50%;
        width: 52px;
        height: 52px;
        background: rgba(34, 197, 94, 0.4);
        animation: wpulse 2.4s ease-out infinite;
        top: 0; left: 0;
        pointer-events: none;
    }
    @keyframes wpulse {
        0%   { transform: scale(1);   opacity: 0.7; }
        70%  { transform: scale(1.9); opacity: 0; }
        100% { transform: scale(1.9); opacity: 0; }
    }
    .whatsapp-float {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        background: #22c55e;
        color: #fff;
        border-radius: 50%;
        font-size: 1.5rem;
        text-decoration: none;
        box-shadow: 0 12px 32px rgba(34, 197, 94, 0.5);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .whatsapp-float:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 16px 40px rgba(34, 197, 94, 0.6);
    }

    /* ── PRICING TOGGLE ─────────────────────────────────── */
    .pricing-toggle {
        display: flex;
        justify-content: center;
        gap: 0;
        margin-bottom: 2rem;
        background: rgba(15, 23, 42, 0.7);
        border: 1px solid var(--lp-border-subtle);
        border-radius: 12px;
        padding: 4px;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    .toggle-btn {
        padding: 0.5rem 1.4rem;
        border-radius: 10px;
        border: none;
        background: transparent;
        color: var(--lp-text-muted);
        font-family: var(--lp-font);
        font-size: 0.88rem;
        font-weight: 500;
        cursor: pointer;
        transition: background 0.22s ease, color 0.22s ease;
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }
    .toggle-btn.active {
        background: linear-gradient(135deg, #3b82f6, #2563eb);
        color: #fff;
        box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
    }
    .toggle-badge {
        font-size: 0.72rem;
        padding: 0.1rem 0.4rem;
        border-radius: 999px;
        background: rgba(34, 197, 94, 0.2);
        color: #86efac;
        border: 1px solid rgba(34, 197, 94, 0.4);
    }
    .pricing-annual-note {
        font-size: 0.75rem;
        color: #86efac;
        margin-top: 0.35rem;
    }

    /* ── TESTIMONIAL IMPROVEMENTS ───────────────────────── */
    .testimonial-stars {
        margin-bottom: 0.6rem;
        display: flex;
        gap: 2px;
    }
    .testimonial-stars i {
        color: #fbbf24;
        font-size: 0.95rem;
    }
    .testimonial-avatar {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: linear-gradient(135deg, #3b82f6, #818cf8);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.72rem;
        font-weight: 700;
        color: #fff;
        flex-shrink: 0;
    }
    .testimonial-meta {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        margin-top: 0.85rem;
    }
    .testimonial-meta .name { font-weight: 600; display: block; font-size: 0.85rem; }
    .testimonial-meta .role { color: var(--lp-text-muted); font-size: 0.78rem; display: block; }

    /* ── SOLUTION CARD IMPROVEMENTS ─────────────────────── */
    .solution-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.25rem;
        margin-bottom: 3rem;
    }
    .solution-card {
        padding: 1.5rem;
        border-radius: 1.2rem;
        background: rgba(15, 23, 42, 0.7);
        border: 1px solid rgba(148, 163, 184, 0.2);
        transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        position: relative;
        overflow: hidden;
    }
    .solution-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(59,130,246,0.08), transparent 60%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .solution-card:hover {
        transform: translateY(-5px);
        border-color: rgba(96, 165, 250, 0.45);
        box-shadow: 0 20px 48px rgba(0,0,0,0.3);
    }
    .solution-card:hover::before {
        opacity: 1;
    }
    .solution-card i {
        font-size: 1.75rem;
        color: #60a5fa;
        margin-bottom: 0.75rem;
        display: block;
    }
    .solution-card h4 {
        color: #f1f5f9;
        font-family: var(--lp-font-head);
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    .solution-card p {
        color: #94a3b8;
        font-size: 0.875rem;
        line-height: 1.6;
    }

    /* ── REGIONAL SECTION ───────────────────────────────── */
    .region-wrap {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
        align-items: center;
        padding: 2.5rem 0 3rem;
        width: 100%;
        overflow: hidden;
    }
    .region-copy h2 {
        font-family: var(--lp-font-head);
        font-size: clamp(1.6rem, 2.5vw, 2rem);
        color: #fff;
        line-height: 1.25;
        margin: 0.5rem 0 0.85rem;
    }
    .region-copy p {
        color: #94a3b8;
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 1.25rem;
    }
    .region-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.55rem;
    }
    .region-list li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        color: #e2e8f0;
    }
    .region-list li i {
        color: #22c55e;
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    .region-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .region-stat {
        padding: 1.25rem 1rem;
        border-radius: 1rem;
        background: rgba(15, 23, 42, 0.7);
        border: 1px solid rgba(148, 163, 184, 0.2);
        text-align: center;
        transition: transform 0.25s ease, border-color 0.25s ease;
    }
    .region-stat:hover {
        transform: translateY(-3px);
        border-color: rgba(96, 165, 250, 0.4);
    }
    .region-stat-num {
        display: block;
        font-family: var(--lp-font-head);
        font-size: 1.8rem;
        font-weight: 700;
        background: linear-gradient(90deg, #60a5fa, #4ade80);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        line-height: 1.1;
    }
    .region-stat-label {
        display: block;
        font-size: 0.78rem;
        color: var(--lp-text-muted);
        margin-top: 0.3rem;
    }

    /* ── REGION RESPONSIVE (must come AFTER .region-wrap definition) ──── */
    /* Fix CSS cascade: putting media AFTER the normal rule so it wins    */
    @media (max-width: 900px) {
        .region-wrap {
            grid-template-columns: 1fr !important;
            gap: 1.5rem;
            padding: 1.5rem 0 2rem;
        }
        .region-stats {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    @media (max-width: 480px) {
        .region-stats {
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
        }
        .region-stat-num {
            font-size: 1.5rem;
        }
    }