/* Hosting — page-unique styles */

/* Status bar (variante dark con datos) */
.lbp-hosting-statusbar {
    background: #0D1117;
    color: #fff;
    padding: 9px clamp(16px, 4vw, 40px);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.lbp-hosting-statusbar__left  { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.lbp-hosting-statusbar__right { opacity: 0.55; }
.lbp-hosting-statusbar__muted { opacity: 0.6; }
.lbp-hosting-statusbar__pipe  { opacity: 0.3; }
.lbp-hosting-statusbar__ok    { color: #58D68D; font-weight: 600; }
.lbp-hosting-statusbar__warn  { color: #FFA657; }

/* Hero */
.lbp-host-hero { background: var(--lbp-bg); }
.lbp-host-hero__inner {
    max-width: var(--lbp-max);
    margin: 0 auto;
    padding: clamp(56px, 8vw, 92px) var(--lbp-pad-x) clamp(40px, 6vw, 56px);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 6vw, 72px);
    align-items: center;
}
.lbp-host-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34,160,107,0.08);
    border: 1px solid rgba(34,160,107,0.15);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 11px;
    color: #0E7A4D;
    letter-spacing: 0.3px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.lbp-host-hero__title {
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 600;
    letter-spacing: -3.5px;
    margin: 0;
    line-height: 0.98;
    text-wrap: balance;
}
.lbp-host-hero__italic {
    font-style: italic;
    font-weight: 400;
}
.lbp-host-hero__sub {
    font-size: clamp(15px, 1.6vw, 20px);
    color: var(--lbp-fg-soft);
    margin-top: 32px;
    max-width: 520px;
    line-height: 1.5;
}
.lbp-host-hero__ctas { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.lbp-host-hero__features {
    margin-top: 36px;
    display: flex; gap: 24px; flex-wrap: wrap;
    font-size: 12px;
    color: var(--lbp-fg-muted);
}
.lbp-host-hero__features > span {
    display: inline-flex; align-items: center; gap: 6px;
}
.lbp-host-hero__check { color: var(--lbp-success); }

/* Live uptime mock panel */
.lbp-host-uptime__head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px;
}
.lbp-host-uptime__bars {
    display: flex; align-items: flex-end; gap: 2px;
    height: 72px;
    margin-bottom: 16px;
}
.lbp-host-uptime__bar {
    flex: 1;
    border-radius: 2px;
    transition: all .3s;
}
.lbp-host-uptime__time {
    display: flex; justify-content: space-between;
    font-size: 10px; color: #8B949E; margin-bottom: 20px;
}
.lbp-host-uptime__foot {
    margin-top: 16px;
    display: flex; justify-content: space-between;
    font-size: 11px; color: #8B949E;
}
.lbp-host-uptime__foot strong { color: #fff; font-weight: 600; }
@media (max-width: 980px) {
    .lbp-host-hero__inner { grid-template-columns: 1fr; }
}

/* Quick stats */
.lbp-host-qs { background: var(--lbp-bg); }
.lbp-host-qs__grid {
    max-width: var(--lbp-max);
    margin: 0 auto;
    padding: 24px var(--lbp-pad-x);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(20,20,20,0.08);
    border-bottom: 1px solid rgba(20,20,20,0.08);
}
.lbp-host-qs__cell {
    padding: 28px 24px;
    border-left: 1px solid rgba(20,20,20,0.06);
}
.lbp-host-qs__cell:first-child { border-left: none; }
.lbp-host-qs__value {
    font-size: clamp(32px, 5vw, 46px);
    font-weight: 600;
    letter-spacing: -1.8px;
    color: var(--lbp-accent);
    line-height: 1;
}
.lbp-host-qs__unit { font-size: 22px; }
.lbp-host-qs__label {
    font-size: 14px;
    color: var(--lbp-fg);
    margin-top: 10px;
    font-weight: 500;
}
.lbp-host-qs__sub {
    font-size: 11px;
    color: var(--lbp-fg-faint);
    margin-top: 4px;
}
@media (max-width: 880px) { .lbp-host-qs__grid { grid-template-columns: repeat(2, 1fr); } .lbp-host-qs__cell:nth-child(3) { border-left: none; } }
@media (max-width: 480px) { .lbp-host-qs__grid { grid-template-columns: 1fr; } .lbp-host-qs__cell { border-left: none; border-top: 1px solid rgba(20,20,20,0.06); } .lbp-host-qs__cell:first-child { border-top: none; } }

/* Why managed */
.lbp-host-why { background: var(--lbp-bg); }
.lbp-host-why__inner {
    max-width: var(--lbp-max);
    margin: 0 auto;
    padding: clamp(64px, 10vw, 96px) var(--lbp-pad-x);
}
.lbp-host-why__grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lbp-host-why__card {
    padding: 32px;
    border-radius: 16px;
    position: relative;
}
.lbp-host-why__card--bad {
    background: #fff;
    border: 1px solid rgba(20,20,20,0.08);
}
.lbp-host-why__card--bad .lbp-host-why__title,
.lbp-host-why__card--bad .lbp-host-why__desc { color: var(--lbp-fg-faint); }
.lbp-host-why__card--good {
    background: linear-gradient(180deg, rgba(232,90,43,0.05), transparent 60%), #fff;
    border: 2px solid var(--lbp-accent);
}
.lbp-host-why__tag {
    position: absolute; top: -12px; right: 20px;
    background: var(--lbp-accent); color: #fff;
    padding: 4px 10px; border-radius: 999px;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.4px; text-transform: uppercase;
}
.lbp-host-why__title {
    font-size: 28px; font-weight: 600; letter-spacing: -0.6px;
    color: var(--lbp-fg);
    margin-bottom: 14px;
}
.lbp-host-why__desc {
    font-size: 15px; color: var(--lbp-fg-soft);
    line-height: 1.55; text-wrap: pretty;
}
.lbp-host-why__feat {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(20,20,20,0.08);
    display: flex; flex-direction: column; gap: 8px;
    font-size: 13px; color: var(--lbp-fg);
}
.lbp-host-why__feat > div {
    display: flex; align-items: center; gap: 10px;
}
.lbp-host-why__check {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--lbp-accent); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700;
    flex-shrink: 0;
}
@media (max-width: 1080px) { .lbp-host-why__grid { grid-template-columns: 1fr; } }

/* Stack */
.lbp-host-stack { background: var(--lbp-bg); }
.lbp-host-stack__inner {
    max-width: var(--lbp-max);
    margin: 0 auto;
    padding: clamp(64px, 10vw, 96px) var(--lbp-pad-x);
}
.lbp-host-stack__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.lbp-host-stack__hint {
    font-size: 13px; color: var(--lbp-fg-muted);
    max-width: 320px; line-height: 1.5; text-wrap: pretty;
}
.lbp-host-stack__layers {
    display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap;
}
.lbp-host-stack__layer {
    padding: 12px 20px;
    border: 1px solid rgba(20,20,20,0.1);
    background: #fff;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: var(--lbp-fg);
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 2px; min-width: 140px;
}
.lbp-host-stack__layer.is-active {
    background: var(--lbp-fg);
    color: #fff;
    border-color: var(--lbp-fg);
}
.lbp-host-stack__layer-id    { font-size: 11px; opacity: 0.5; letter-spacing: 0.3px; }
.lbp-host-stack__layer.is-active .lbp-host-stack__layer-id { opacity: 0.6; }
.lbp-host-stack__layer-label { font-size: 16px; }
.lbp-host-stack__layer-sub   { font-size: 11px; opacity: 0.6; }
.lbp-host-stack__layer.is-active .lbp-host-stack__layer-sub { opacity: 0.7; }

.lbp-host-stack__panel {
    background: #fff;
    border: 1px solid rgba(20,20,20,0.08);
    border-radius: 20px;
    padding: 40px;
    display: none;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    min-height: 360px;
}
.lbp-host-stack__panel.is-active { display: grid; }
.lbp-host-stack__panel-title {
    font-size: 28px; font-weight: 600; letter-spacing: -0.8px;
    margin: 0 0 28px;
}
.lbp-host-stack__items { display: flex; flex-direction: column; gap: 18px; }
.lbp-host-stack__item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(20,20,20,0.05);
}
.lbp-host-stack__item:last-child { border-bottom: none; padding-bottom: 0; }
.lbp-host-stack__item > div:first-child { font-size: 13px; font-weight: 600; }
.lbp-host-stack__item > div:last-child { font-size: 14px; color: var(--lbp-fg-soft); line-height: 1.5; }
.lbp-host-stack__aside {
    background: #F0EEE8;
    border-radius: 14px;
    padding: 24px;
}
.lbp-host-stack__aside-title {
    font-size: 11px; color: var(--lbp-fg-muted);
    letter-spacing: 0.5px; text-transform: uppercase; font-weight: 600;
    margin-bottom: 20px;
}
.lbp-host-stack__aside-row {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(20,20,20,0.08);
}
.lbp-host-stack__aside-row:last-of-type { border-bottom: none; }
.lbp-host-stack__aside-k {
    font-size: 11px; color: var(--lbp-fg-faint);
    text-transform: uppercase; letter-spacing: 0.4px;
    margin-bottom: 6px;
}
.lbp-host-stack__aside-v {
    font-size: 28px; font-weight: 600; letter-spacing: -0.8px;
    color: var(--lbp-fg);
}
.lbp-host-stack__aside-foot {
    margin-top: 8px;
    font-size: 11px; color: var(--lbp-fg-muted);
    display: flex; align-items: center; gap: 6px;
}
@media (max-width: 980px) {
    .lbp-host-stack__panel.is-active { grid-template-columns: 1fr; }
}

/* Seguridad (dark) */
.lbp-host-sec {
    background: #0D1117; color: #fff;
    padding: clamp(64px, 10vw, 96px) var(--lbp-pad-x);
    position: relative; overflow: hidden;
}
.lbp-host-sec::before {
    content: ""; position: absolute; inset: 0;
    opacity: 0.03;
    background: radial-gradient(var(--lbp-accent) 1px, transparent 1px);
    background-size: 24px 24px;
}
.lbp-host-sec__inner { max-width: var(--lbp-max); margin: 0 auto; position: relative; }
.lbp-host-sec__head {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px; align-items: flex-end;
    margin-bottom: 56px;
}
.lbp-host-sec__eyebrow {
    font-size: 12px; color: #FFA657;
    letter-spacing: 0.5px; text-transform: uppercase;
    font-weight: 600; margin-bottom: 14px;
}
.lbp .lbp-host-sec__title {
    font-size: clamp(32px, 5.5vw, 56px);
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.05;
    text-wrap: balance;
    margin: 0;
    color: #fff;
}
.lbp-host-sec__italic {
    color: #FFA657;
    font-style: italic;
    font-weight: 400;
}
.lbp-host-sec__panel {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px;
}
.lbp-host-sec__panel-label {
    font-size: 11px; color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px; text-transform: uppercase;
    margin-bottom: 12px;
}
.lbp-host-sec__panel-num {
    font-size: 48px; font-weight: 600;
    letter-spacing: -1.5px; color: #FF5F57; line-height: 1;
}
.lbp-host-sec__panel-foot {
    font-size: 12px; color: rgba(255,255,255,0.5);
    margin-top: 12px;
    display: flex; align-items: center; gap: 8px;
}
.lbp-livedot--red::before,
.lbp-livedot--red::after { background: #FF5F57 !important; }
.lbp-host-sec__grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.lbp-host-sec__card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 24px;
}
.lbp-host-sec__num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(255,166,87,0.15);
    color: #FFA657;
    font-size: 13px; font-weight: 700;
    margin-bottom: 16px;
}
.lbp-host-sec__card-title {
    font-size: 18px; font-weight: 600;
    margin-bottom: 8px; letter-spacing: -0.3px;
}
.lbp-host-sec__card-body {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.55; text-wrap: pretty;
}
.lbp-host-sec__cta {
    margin-top: 56px;
    padding: 28px 32px;
    background: rgba(255,166,87,0.06);
    border: 1px solid rgba(255,166,87,0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.lbp-host-sec__cta-num {
    font-size: 44px; font-weight: 600;
    color: #FFA657; letter-spacing: -1.5px;
    font-family: var(--lbp-mono);
}
.lbp-host-sec__cta-text { flex: 1; }
.lbp-host-sec__cta-text strong { font-size: 17px; display: block; margin-bottom: 4px; }
.lbp-host-sec__cta-text span   { font-size: 13px; color: rgba(255,255,255,0.65); }
.lbp-host-sec__cta-btn {
    background: #FFA657; color: var(--lbp-fg);
    border: none; border-radius: 10px;
    padding: 11px 18px; font-size: 13px; font-weight: 600;
}
@media (max-width: 980px) { .lbp-host-sec__head { grid-template-columns: 1fr; gap: 32px; } .lbp-host-sec__grid { grid-template-columns: 1fr; } .lbp-host-sec__cta { flex-direction: column; align-items: flex-start; gap: 16px; } }

/* Dashboard */
.lbp-host-dash { background: var(--lbp-bg); }
.lbp-host-dash__inner {
    max-width: var(--lbp-max);
    margin: 0 auto;
    padding: clamp(64px, 10vw, 96px) var(--lbp-pad-x);
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(40px, 6vw, 72px);
    align-items: center;
}
.lbp-host-dash__sub {
    font-size: 17px; color: var(--lbp-fg-soft);
    margin-top: 24px; line-height: 1.55; text-wrap: pretty;
}
.lbp-host-dash__features {
    margin-top: 28px;
    display: flex; flex-direction: column; gap: 14px;
}
.lbp-host-dash__features li {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; color: var(--lbp-fg);
}
.lbp-host-dash__bullet {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--lbp-accent); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700;
    flex-shrink: 0;
}
.lbp-host-dash__panel {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(20,20,20,0.08);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(20,20,20,0.12);
}
.lbp-host-dash__body { padding: 20px; }
.lbp-host-dash__top {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 20px;
}
.lbp-host-dash__site-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--lbp-accent); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
}
.lbp-host-dash__site { flex: 1; }
.lbp-host-dash__site strong { display: block; font-size: 14px; }
.lbp-host-dash__site span {
    font-size: 11px; color: var(--lbp-fg-muted);
    display: flex; align-items: center; gap: 6px;
}
.lbp-host-dash__btn {
    background: #F0EEE8;
    border: none; border-radius: 6px;
    padding: 6px 10px; font-size: 11px; font-weight: 500;
}
.lbp-host-dash__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}
.lbp-host-dash__stat {
    background: #FAFAF7;
    border-radius: 8px;
    padding: 12px 14px;
}
.lbp-host-dash__stat-k {
    font-size: 10px; color: var(--lbp-fg-faint);
    text-transform: uppercase; letter-spacing: 0.3px;
}
.lbp-host-dash__stat-v {
    font-size: 18px; font-weight: 600; letter-spacing: -0.3px;
    margin-top: 3px;
}
.lbp-host-dash__stat-v--success { color: var(--lbp-success); }
.lbp-host-dash__chart {
    background: #FAFAF7;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
}
.lbp-host-dash__chart-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 12px;
    font-size: 12px;
}
.lbp-host-dash__chart-head strong { font-weight: 600; }
.lbp-host-dash__chart-head span   { color: var(--lbp-fg-muted); }
.lbp-host-dash__svg { width: 100%; height: 56px; display: block; }
.lbp-host-dash__actions {
    background: #FAFAF7;
    border-radius: 10px;
    padding: 4px;
}
.lbp-host-dash__action {
    padding: 10px 12px;
    display: flex; align-items: center; gap: 12px;
    border-bottom: 1px solid rgba(20,20,20,0.04);
}
.lbp-host-dash__action:last-child { border-bottom: none; }
.lbp-host-dash__action-icon {
    width: 24px; height: 24px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 13px;
}
.lbp-host-dash__action-icon--success { background: rgba(34,160,107,0.13); color: var(--lbp-success); }
.lbp-host-dash__action-icon--sky     { background: rgba(46,127,214,0.13);  color: #2E7FD6; }
.lbp-host-dash__action-icon--amber   { background: rgba(232,162,15,0.13);  color: #E8A20F; }
.lbp-host-dash__action > div {
    flex: 1;
}
.lbp-host-dash__action strong { font-size: 12.5px; font-weight: 500; display: block; }
.lbp-host-dash__action span   { font-size: 10px; color: var(--lbp-fg-faint); margin-top: 2px; }
.lbp-host-dash__chev { font-size: 11px; color: var(--lbp-fg-faint); }
@media (max-width: 980px) {
    .lbp-host-dash__inner { grid-template-columns: 1fr; }
}

/* Planes */
.lbp-host-planes { background: var(--lbp-bg); }
.lbp-host-planes__inner {
    max-width: var(--lbp-max);
    margin: 0 auto;
    padding: clamp(64px, 10vw, 96px) var(--lbp-pad-x);
}
.lbp-host-planes__head {
    text-align: center;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.lbp-host-planes__head .lbp-eyebrow { text-align: center; }
.lbp-host-planes__head .lbp-section-title {
    text-align: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.lbp-host-planes__sub {
    font-size: 16px; color: var(--lbp-fg-muted);
    margin: 18px auto 0;
    max-width: 560px;
    line-height: 1.5;
    text-align: center;
}
.lbp-host-planes__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.lbp-host-plan {
    background: #fff;
    border: 1px solid rgba(20,20,20,0.08);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    display: flex; flex-direction: column;
}
.lbp-host-plan--dark { background: var(--lbp-fg); color: #fff; border-color: transparent; }
.lbp-host-plan--popular { border: 2px solid var(--lbp-accent); }
.lbp-host-plan__pop {
    position: absolute; top: -12px; left: 20px;
    background: var(--lbp-accent); color: #fff;
    padding: 4px 10px; border-radius: 999px;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.4px; text-transform: uppercase;
}
.lbp-host-plan__name { font-size: 22px; font-weight: 600; letter-spacing: -0.4px; }
.lbp-host-plan__tag  { font-size: 12px; color: var(--lbp-fg-faint); margin-top: 4px; }
.lbp-host-plan--dark .lbp-host-plan__tag { color: rgba(255,255,255,0.55); }
.lbp-host-plan__price-row {
    margin-top: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(20,20,20,0.06);
    min-height: 68px;
}
.lbp-host-plan--dark .lbp-host-plan__price-row { border-bottom-color: rgba(255,255,255,0.08); }
.lbp-host-plan__price       { font-size: 44px; font-weight: 600; letter-spacing: -1.5px; }
.lbp-host-plan__per         { font-size: 13px; color: var(--lbp-fg-muted); margin-left: 6px; }
.lbp-host-plan__price-text  { font-size: 28px; font-weight: 600; letter-spacing: -0.8px; }
.lbp-host-plan__features {
    flex: 1; margin-top: 20px;
    display: flex; flex-direction: column; gap: 9px;
}
.lbp-host-plan__features li {
    display: flex; align-items: flex-start; gap: 9px;
    font-size: 13px; color: #2a2a2a; line-height: 1.4;
}
.lbp-host-plan--dark .lbp-host-plan__features li { color: rgba(255,255,255,0.85); }
.lbp-host-plan__check {
    color: var(--lbp-accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
.lbp-host-plan__btn {
    margin-top: 24px;
    background: var(--lbp-fg); color: #fff;
    border: none; border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px; font-weight: 600;
}
.lbp-host-plan--popular .lbp-host-plan__btn { background: var(--lbp-accent); }
.lbp-host-plan--dark .lbp-host-plan__btn { background: #fff; color: var(--lbp-fg); }
.lbp-host-planes__note {
    margin-top: 32px;
    padding: 20px;
    text-align: center;
    font-size: 13px;
    color: var(--lbp-fg-muted);
    background: #F0EEE8;
    border-radius: 12px;
}
.lbp-host-planes__note strong { color: var(--lbp-fg); }
@media (max-width: 1100px) { .lbp-host-planes__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .lbp-host-planes__grid { grid-template-columns: 1fr; } }

/* Migración */
.lbp-host-mig { background: #F0EEE8; padding: clamp(64px, 10vw, 96px) var(--lbp-pad-x); }
.lbp-host-mig__inner { max-width: var(--lbp-max); margin: 0 auto; }
.lbp-host-mig__head {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
    margin-bottom: 48px;
}
.lbp-host-mig__hint {
    font-size: 13px; color: var(--lbp-fg-muted);
    max-width: 320px; line-height: 1.5;
}
.lbp-host-mig__grid {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
}
.lbp-host-mig__grid::before {
    content: ""; position: absolute;
    top: 24px; left: 40px; right: 40px;
    height: 2px; background: rgba(20,20,20,0.08);
    z-index: 0;
}
.lbp-host-mig__step { position: relative; z-index: 1; }
.lbp-host-mig__num {
    width: 48px; height: 48px;
    border-radius: 50%; background: #fff;
    border: 2px solid var(--lbp-accent);
    display: flex; align-items: center; justify-content: center;
    color: var(--lbp-accent);
    font-size: 14px; font-weight: 700;
    box-shadow: 0 0 0 4px #F0EEE8;
}
.lbp-host-mig__day {
    font-size: 11px; color: var(--lbp-fg-faint);
    margin-top: 16px;
    letter-spacing: 0.3px;
    text-transform: uppercase; font-weight: 600;
}
.lbp-host-mig__title {
    font-size: 17px; font-weight: 600;
    color: var(--lbp-fg); letter-spacing: -0.3px;
    margin-top: 4px;
}
.lbp-host-mig__desc {
    font-size: 13px; color: var(--lbp-fg-soft);
    margin-top: 8px; line-height: 1.5;
}
@media (max-width: 1080px) { .lbp-host-mig__grid { grid-template-columns: repeat(3, 1fr); } .lbp-host-mig__grid::before { display: none; } }
@media (max-width: 600px)  { .lbp-host-mig__grid { grid-template-columns: 1fr; } }

/* SLA */
.lbp-host-sla { background: var(--lbp-bg); padding: clamp(64px, 10vw, 96px) var(--lbp-pad-x); }
.lbp-host-sla__inner {
    max-width: var(--lbp-max);
    margin: 0 auto;
    background: var(--lbp-fg);
    color: #fff;
    border-radius: 24px;
    padding: clamp(32px, 5vw, 56px);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.lbp-host-sla__inner::before {
    content: ""; position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,90,43,0.13), transparent 70%);
}
.lbp-host-sla__copy { position: relative; }
.lbp .lbp-host-sla__title {
    font-size: clamp(34px, 5.5vw, 52px);
    font-weight: 600; letter-spacing: -1.8px;
    line-height: 1.05; margin: 0;
    text-wrap: balance;
    color: #fff;
}
.lbp-host-sla__sub {
    font-size: 17px; color: rgba(255,255,255,0.75);
    margin-top: 20px; line-height: 1.55; max-width: 480px;
    text-wrap: pretty;
}
.lbp-host-sla__ctas {
    margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap;
}
.lbp-host-sla__btn {
    padding: 13px 20px;
    border-radius: 10px;
    font-size: 13px; font-weight: 500;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
}
.lbp-host-sla__btn--primary {
    background: var(--lbp-accent);
    border: none;
    font-weight: 600;
}
.lbp-host-sla__table {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}
.lbp-host-sla__table-head {
    padding: 14px 20px;
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lbp-host-sla__row {
    padding: 16px 20px;
    display: grid;
    grid-template-columns: 1.4fr 60px 1fr;
    gap: 16px; align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 13px;
}
.lbp-host-sla__row:last-child { border-bottom: none; }
.lbp-host-sla__credit {
    color: var(--lbp-accent);
    font-weight: 700; font-size: 16px;
}
.lbp-host-sla__sub-row {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
}
@media (max-width: 980px) {
    .lbp-host-sla__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* Soporte */
.lbp-host-sup { background: var(--lbp-bg); padding: clamp(64px, 10vw, 96px) var(--lbp-pad-x); }
.lbp-host-sup__inner {
    max-width: var(--lbp-max); margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}
.lbp-host-sup__sub {
    font-size: 17px; color: var(--lbp-fg-soft);
    margin-top: 20px; line-height: 1.55; text-wrap: pretty;
}
.lbp-host-sup__metrics {
    margin-top: 28px;
    display: flex; gap: 20px; flex-wrap: wrap;
}
.lbp-host-sup__metrics > div {
    display: inline-block;
}
.lbp-host-sup__metric-num {
    font-size: 40px; font-weight: 600;
    color: var(--lbp-accent);
    letter-spacing: -1.2px; line-height: 1;
    display: inline-block;
}
.lbp-host-sup__metric-unit {
    font-size: 24px; font-weight: 600;
    color: var(--lbp-accent); margin-left: 2px;
}
.lbp-host-sup__metric-l {
    font-size: 12px; color: var(--lbp-fg-muted);
    margin-top: 6px; max-width: 160px; line-height: 1.4;
}
.lbp-host-sup__inbox {
    background: #fff;
    border: 1px solid rgba(20,20,20,0.08);
    border-radius: 14px;
    overflow: hidden;
}
.lbp-host-sup__inbox-head {
    padding: 14px 20px;
    background: #F0EEE8;
    border-bottom: 1px solid rgba(20,20,20,0.06);
    display: flex; align-items: center; justify-content: space-between;
    font-size: 13px;
}
.lbp-host-sup__inbox-head span {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; color: var(--lbp-success);
}
.lbp-host-sup__ticket {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(20,20,20,0.05);
    display: flex; align-items: flex-start; gap: 14px;
}
.lbp-host-sup__ticket:last-child { border-bottom: none; }
.lbp-host-sup__avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 13px;
    flex-shrink: 0;
}
.lbp-host-sup__ticket-body { flex: 1; min-width: 0; }
.lbp-host-sup__ticket-meta {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px;
}
.lbp-host-sup__ticket-meta strong { font-weight: 600; }
.lbp-host-sup__ticket-meta span:nth-child(2) { color: var(--lbp-fg-faint); }
.lbp-host-sup__ticket-meta span:last-child { color: var(--lbp-fg-faint); font-size: 11px; }
.lbp-host-sup__ticket-q {
    font-size: 13px; color: #2a2a2a;
    margin-top: 4px; line-height: 1.4;
}
.lbp-host-sup__ticket-status {
    font-size: 11px; color: var(--lbp-fg-muted);
    margin-top: 6px;
    display: flex; align-items: center; gap: 6px;
}
.lbp-host-sup__status {
    padding: 2px 8px; border-radius: 999px;
    font-size: 10px; font-weight: 600; letter-spacing: 0.3px;
}
.lbp-host-sup__status--ok      { background: #DCF5E8; color: #126B44; }
.lbp-host-sup__status--pending { background: #FFEFD0; color: #8A5A00; }
@media (max-width: 980px) { .lbp-host-sup__inner { grid-template-columns: 1fr; } }

/* Comparativa */
.lbp-host-comp { background: var(--lbp-bg); padding: clamp(64px, 10vw, 96px) var(--lbp-pad-x); }
.lbp-host-comp__inner { max-width: var(--lbp-max); margin: 0 auto; }
.lbp-host-comp__head { text-align: center; margin-bottom: 48px; }
.lbp-host-comp__table {
    background: #fff;
    border: 1px solid rgba(20,20,20,0.08);
    border-radius: 16px;
    overflow: hidden;
}
.lbp-host-comp__row {
    display: grid;
    grid-template-columns: 1.4fr 1.4fr 1fr 1fr;
    padding: 16px 24px;
    align-items: center;
    border-bottom: 1px solid rgba(20,20,20,0.05);
    font-size: 13.5px;
}
.lbp-host-comp__row:last-child { border-bottom: none; }
.lbp-host-comp__row--head {
    background: #F0EEE8;
    font-size: 12px;
    color: var(--lbp-fg-muted);
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.lbp-host-comp__lbp { color: var(--lbp-accent); }
.lbp-host-comp__cell-lbp {
    font-weight: 600; color: var(--lbp-fg);
    display: flex; align-items: center; gap: 8px;
}
.lbp-host-comp__check { color: var(--lbp-success); }
.lbp-host-comp__cell-other { color: var(--lbp-fg-faint); }
@media (max-width: 880px) {
    .lbp-host-comp__row { grid-template-columns: 1fr; gap: 4px; padding: 14px 18px; }
    .lbp-host-comp__row--head { display: none; }
    .lbp-host-comp__cell-lbp::before  { content: "LBP: "; color: var(--lbp-accent); font-weight: 600; }
    .lbp-host-comp__cell-other:nth-of-type(3)::before { content: "Hosting barato: "; color: var(--lbp-fg-faint); }
    .lbp-host-comp__cell-other:nth-of-type(4)::before { content: "Cloud DIY: "; color: var(--lbp-fg-faint); }
}

/* Testimonios */
.lbp-host-test { background: #F0EEE8; padding: clamp(64px, 10vw, 96px) var(--lbp-pad-x); }
.lbp-host-test__inner { max-width: var(--lbp-max); margin: 0 auto; }
.lbp-host-test__inner > .lbp-section-title { margin-bottom: 48px; max-width: 900px; }
.lbp-host-test__grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.lbp-host-test__card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    display: flex; flex-direction: column; gap: 20px;
}
.lbp-host-test__quote-mark { font-size: 32px; line-height: 1; }
.lbp-host-test__quote {
    font-size: 16px;
    line-height: 1.5;
    color: var(--lbp-fg);
    text-wrap: pretty;
    flex: 1;
}
.lbp-host-test__author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(20,20,20,0.06);
}
.lbp-host-test__avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 14px;
}
.lbp-host-test__author strong { font-size: 13px; display: block; font-weight: 600; }
.lbp-host-test__author span   { font-size: 11px; color: var(--lbp-fg-muted); }
@media (max-width: 980px) { .lbp-host-test__grid { grid-template-columns: 1fr; } }

/* FAQ */
.lbp-host-faq { background: var(--lbp-bg); padding: clamp(64px, 10vw, 96px) var(--lbp-pad-x); }
.lbp-host-faq__inner { max-width: 1000px; margin: 0 auto; }
.lbp-faq__num {
    color: #c4c4c4;
    font-size: 13px; margin-right: 12px; font-weight: 500;
}

/* CTA Final */
.lbp-host-cta { background: var(--lbp-bg); padding: 0 var(--lbp-pad-x) clamp(64px, 10vw, 96px); }
.lbp-host-cta__inner {
    max-width: var(--lbp-max);
    margin: 0 auto;
    background: var(--lbp-accent);
    color: #fff;
    border-radius: 24px;
    padding: clamp(40px, 8vw, 72px) clamp(28px, 5vw, 56px);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px; align-items: center;
    position: relative; overflow: hidden;
}
.lbp-host-cta__inner::before {
    content: ""; position: absolute;
    top: -150px; right: -150px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}
.lbp-host-cta__inner::after {
    content: ""; position: absolute;
    bottom: -100px; left: -100px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(0,0,0,0.1);
}
.lbp-host-cta__copy { position: relative; z-index: 1; }
.lbp-host-cta .lbp-eyebrow--white {
    color: #fff;
    opacity: 0.85;
    font-family: var(--lbp-mono);
}
.lbp .lbp-host-cta__title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 600;
    letter-spacing: -2.5px;
    margin: 0;
    line-height: 0.98;
    text-wrap: balance;
    max-width: 640px;
    color: #fff;
}
.lbp-host-cta__sub {
    font-size: 18px; opacity: 0.9;
    margin-top: 20px; line-height: 1.5; max-width: 520px;
}
.lbp-host-cta__ctas {
    margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap;
}
.lbp-host-cta__panel {
    position: relative; z-index: 1;
    background: rgba(0,0,0,0.25);
    border-radius: 16px;
    padding: 28px;
    font-size: 12.5px;
    line-height: 1.9;
    backdrop-filter: blur(4px);
}
.lbp-host-cta__panel-title {
    opacity: 0.6; margin-bottom: 12px;
    font-size: 10px; letter-spacing: 0.5px;
    text-transform: uppercase; font-weight: 600;
}
.lbp-host-cta__panel-foot {
    margin-top: 10px; opacity: 0.7;
}
.lbp-host-cta__panel-foot strong { color: #fff; font-weight: 700; }
.lbp-host-cta__arrow { opacity: 0.5; }
@media (max-width: 980px) { .lbp-host-cta__inner { grid-template-columns: 1fr; } }
