/* ── HOW IT WORKS ─────────────────────────────────────────── */
.lb-how {
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

.lb-how__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.lb-how__orb--left  { top: 0; left: 25%;  width: 18rem; height: 18rem; background: rgba(26,58,92,0.05); }
.lb-how__orb--right { bottom: 0; right: 25%; width: 18rem; height: 18rem; background: rgba(42,143,168,0.05); }

.lb-how__header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.lb-how__eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.lb-how__header .lb-section-title { margin-bottom: 1rem; }
.lb-how__header .lb-section-subtitle { margin: 0 auto; }

/* Grid de cards */
.lb-how__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Card */
.lb-how__card {
    position: relative;
    background: var(--card);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lb-how__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

/* Número decorativo de fondo */
.lb-how__card-bg-num {
    position: absolute;
    top: 1rem; right: 1rem;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0,0,0,0.04);
    line-height: 1;
    transition: color 0.2s;
    pointer-events: none;
    user-select: none;
}
.lb-how__card:hover .lb-how__card-bg-num { color: rgba(26,58,92,0.08); }

/* Icono */
.lb-how__card-icon {
    width: 3.5rem; height: 3.5rem;
    background: var(--primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    margin-bottom: 1.25rem;
    transition: transform 0.2s, rotate 0.2s;
}
.lb-how__card:hover .lb-how__card-icon { transform: scale(1.1); rotate: 5deg; }

.lb-how__card-title {
    font-size: 0.975rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.lb-how__card-desc {
    font-size: 0.8375rem;
    color: var(--muted-foreground);
    line-height: 1.65;
}

/* Conector horizontal */
.lb-how__connector {
    display: none;
    position: absolute;
    top: 50%;
    right: -0.75rem;
    width: 1.5rem;
    height: 2px;
    background: var(--border);
    z-index: 2;
}

/* Responsive */
@media (min-width: 1024px) {
    .lb-how__grid { grid-template-columns: repeat(4, 1fr); }
    .lb-how__connector { display: block; }
}
