/**
 * Public landing page styles — namespace: lp-*
 * Self-contained (does not use public-global class names).
 */
 .lp-html {
    scroll-behavior: smooth;
}

.lp-body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: #0b1120;
    color: #f8fafc;
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.lp-body *,
.lp-body *::before,
.lp-body *::after {
    box-sizing: border-box;
}

.lp-wrap {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .lp-wrap { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .lp-wrap { padding: 0 2rem; }
}

.lp-main {
    position: relative;
    z-index: 1;
}

.lp-glow {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.lp-glow--a {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(11, 17, 32, 0) 70%);
}

.lp-glow--b {
    width: 500px;
    height: 500px;
    bottom: 100px;
    right: -100px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, rgba(11, 17, 32, 0) 70%);
}

.lp-gradient-text {
    background: linear-gradient(to right, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.lp-text-accent { color: #3b82f6; }

/* Buttons */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    gap: 0.5rem;
    border: 1px solid transparent;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.lp-btn:hover { text-decoration: none; }

.lp-btn--sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.95rem;
    border-radius: 0.625rem;
}

.lp-btn--lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.75rem;
}

.lp-btn--block { width: 100%; }

.lp-btn--primary {
    background: #0d9488;
    color: #fff;
    box-shadow: 0 10px 25px -8px rgba(13, 148, 136, 0.4);
}

.lp-btn--primary:hover {
    background: #0f766e;
    color: #fff;
}

.lp-btn--secondary {
    background: #0f766e;
    color: #fff;
}

.lp-btn--secondary:hover {
    background: #115e59;
    color: #fff;
}

.lp-btn--ghost {
    background: #1e293b;
    color: #fff;
    border-color: #334155;
}

.lp-btn--ghost:hover {
    background: #1e293b;
    border-color: #475569;
    color: #fff;
}

.lp-btn--white {
    background: #fff;
    color: #1e3a8a;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
}

.lp-btn--white:hover {
    background: #f1f5f9;
    color: #1e3a8a;
}

/* Nav */
.lp-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    background: #0f766e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: box-shadow 0.3s ease;
}

.lp-nav.is-scrolled {
    box-shadow: 0 10px 28px rgba(4, 47, 46, 0.35);
}

.lp-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.25rem;
    gap: 1rem;
}

.lp-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #5eead4;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
}

.lp-brand:hover { text-decoration: none; color: #99f6e4; }

.lp-brand__mark {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 0.45rem;
    display: grid;
    place-items: center;
    background: #2dd4bf;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1;
}

.lp-brand__text { color: #5eead4; }

.lp-brand__accent { color: #99f6e4; }

.lp-brand--footer {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: -0.02em;
    color: #fff;
}

.lp-brand--footer .lp-brand__mark {
    width: 1.85rem;
    height: 1.85rem;
    font-size: 0.95rem;
}

.lp-nav__links {
    display: none;
    align-items: center;
    gap: 0.35rem 1.5rem;
}

.lp-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    background: none;
    border: 0;
    padding: 0.35rem 0.15rem;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s ease;
}

.lp-nav__link:hover,
.lp-nav__link.is-active {
    color: #fff;
    text-decoration: none;
    opacity: 0.92;
}

.lp-nav__link i {
    font-size: 0.65rem;
    opacity: 0.9;
}

.lp-nav-drop {
    position: relative;
}

.lp-nav-drop__menu {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    min-width: 12.5rem;
    padding: 0.45rem;
    border-radius: 0.65rem;
    background: #0b5f59;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    z-index: 60;
}

.lp-nav-drop__menu[hidden] {
    display: none !important;
}

.lp-nav-drop__menu--end {
    left: auto;
    right: 0;
}

.lp-nav-currency__btn {
    min-width: 4.5rem;
    justify-content: center;
}

.lp-nav-currency__btn i {
    font-size: 0.65rem;
    opacity: 0.9;
}

.lp-nav-drop__menu a {
    display: block;
    padding: 0.55rem 0.75rem;
    border-radius: 0.45rem;
    color: #e2e8f0;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
}

.lp-nav-drop__menu a:hover,
.lp-nav-drop__menu a.is-active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
}

.lp-nav-drop__empty {
    display: block;
    padding: 0.55rem 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
}

.lp-nav-drop.is-open .lp-nav-drop__btn i {
    transform: rotate(180deg);
}

.lp-nav-drop__btn i {
    transition: transform 0.2s ease;
}

.lp-nav__actions {
    display: none;
    align-items: center;
    gap: 0.65rem;
}

.lp-nav-account {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.95rem;
    border-radius: 0.55rem;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.lp-nav-account:hover,
.lp-nav-account.is-active {
    background: rgba(0, 0, 0, 0.28);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
}

.lp-nav-account i { font-size: 0.95rem; }

.lp-nav-account em {
    font-style: normal;
    opacity: 0.7;
    margin: 0 0.15rem;
}

.lp-nav-account--ghost { background: transparent; }

.lp-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.18);
    color: #fff;
    font-size: 1.15rem;
    cursor: pointer;
}

.lp-nav__toggle:hover { color: #fff; background: rgba(0, 0, 0, 0.28); }

.lp-nav__drawer {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 1rem 1.15rem;
    background: #0b5f59;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-nav__drawer:not([hidden]) { display: flex; }

.lp-nav__drawer a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.7rem 0.55rem;
    border-radius: 0.45rem;
}

.lp-nav__drawer a:hover {
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: #fff;
}

.lp-nav-drawer-group {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.35rem 0 0.55rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0.25rem 0;
}

.lp-nav-drawer-group__label {
    padding: 0.45rem 0.55rem 0.2rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (min-width: 900px) {
    .lp-nav__links,
    .lp-nav__actions { display: flex; }
    .lp-nav__toggle,
    .lp-nav__drawer { display: none !important; }
}

/* Hero */
.lp-hero {
    position: relative;
    z-index: 10;
    padding: 8rem 1rem 5rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .lp-hero { padding: 12rem 1rem 8rem; }
}

.lp-hero__inner { max-width: 56rem; }

.lp-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    backdrop-filter: blur(6px);
}

.lp-hero__title {
    margin: 0 0 1.5rem;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.lp-hero__br { display: none; }

@media (min-width: 768px) {
    .lp-hero__br { display: block; }
}

.lp-hero__lead {
    margin: 0 auto 2.5rem;
    max-width: 48rem;
    color: #94a3b8;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.7;
}

.lp-hero__actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .lp-hero__actions {
        flex-direction: row;
    }
}

/* Sections */
.lp-section {
    position: relative;
    z-index: 10;
    padding: 5rem 0;
}

.lp-section--band {
    background: #080c17;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lp-section__head {
    text-align: center;
    margin-bottom: 4rem;
}

.lp-section__title {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
}

.lp-section__sub {
    margin: 0 auto;
    max-width: 36rem;
    color: #94a3b8;
}

.lp-section__sub--left {
    margin: 0;
}

/* Steps */
.lp-steps {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .lp-steps { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
    .lp-steps { grid-template-columns: repeat(4, 1fr); }
}

.lp-step-line {
    display: none;
    position: absolute;
    top: 2rem;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: linear-gradient(to right, #3b82f6 50%, #1e293b 50%);
    background-size: 20px 100%;
    z-index: 0;
}

@media (min-width: 1024px) {
    .lp-step-line { display: block; }
}

.lp-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lp-step__icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    background: #1e293b;
    border: 1px solid #334155;
    color: #60a5fa;
    font-size: 1.35rem;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.lp-step:hover .lp-step__icon {
    transform: scale(1.08);
    background: #3b82f6;
    color: #fff;
}

.lp-step__badge {
    background: #3b82f6;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.lp-step__title {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
}

.lp-step__text {
    margin: 0;
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.65;
}

/* Systems */
.lp-systems {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .lp-systems {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 3rem;
    }
}

.lp-system-card {
    position: relative;
    overflow: hidden;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

@media (min-width: 1024px) {
    .lp-system-card { padding: 2.5rem; }
}

.lp-system-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.4);
}

.lp-system-card--remote:hover {
    box-shadow: 0 10px 30px -10px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.4);
}

.lp-system-card__glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    border-bottom-left-radius: 999px;
    margin: -1rem -1rem 0 0;
    pointer-events: none;
}

.lp-system-card--login .lp-system-card__glow { background: rgba(59, 130, 246, 0.1); }
.lp-system-card--remote .lp-system-card__glow { background: rgba(139, 92, 246, 0.1); }

.lp-system-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
}

.lp-system-card--login .lp-system-card__icon {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.lp-system-card--remote .lp-system-card__icon {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.lp-system-card__title {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.lp-system-card__lead {
    margin: 0 0 1.5rem;
    color: #94a3b8;
    line-height: 1.7;
}

.lp-system-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lp-system-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #cbd5e1;
}

.lp-system-card__list i {
    margin-top: 0.2rem;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.lp-system-card--login .lp-system-card__list i { color: #4ade80; }
.lp-system-card--remote .lp-system-card__list i { color: #c084fc; }

/* Tools */
.lp-tools-head {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .lp-tools-head {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.lp-tools-head .lp-section__title { margin-bottom: 0.5rem; }

.lp-tools-head__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #60a5fa;
    font-weight: 600;
    text-decoration: none;
}

.lp-tools-head__link:hover {
    color: #93c5fd;
    text-decoration: none;
}

.lp-tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .lp-tools-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
    .lp-tools-grid { grid-template-columns: repeat(3, 1fr); }
}

.lp-tool-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.75rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease;
}

.lp-tool-card--login:hover { border-color: rgba(59, 130, 246, 0.5); }
.lp-tool-card--remote:hover { border-color: rgba(139, 92, 246, 0.5); }

.lp-tool-card__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid #334155;
    background: rgba(30, 41, 59, 0.5);
}

.lp-tool-card__type {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.25rem 0.65rem;
    border-radius: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.lp-tool-card--login .lp-tool-card__type {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.lp-tool-card--remote .lp-tool-card__type {
    background: rgba(139, 92, 246, 0.2);
    color: #c084fc;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.lp-tool-card__name {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}

.lp-tool-card__mark {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    flex-shrink: 0;
    overflow: hidden;
}

.lp-tool-card__mark img,
.lp-cat-item__thumb img,
.lp-detail__mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-tool-card__mark.has-image,
.lp-detail__mark.has-image {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0;
}

.lp-tool-card--login .lp-tool-card__mark {
    background: #2563eb;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}

.lp-tool-card--remote .lp-tool-card__mark {
    background: #7c3aed;
    box-shadow: 0 8px 18px rgba(124, 58, 237, 0.35);
}

.lp-tool-card__body {
    padding: 1.25rem;
    flex: 1;
}

.lp-tool-card__desc {
    margin: 0 0 1rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.lp-tool-card__prices {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #080c17;
    border: 1px solid #334155;
    border-radius: 0.5rem;
}

.lp-price-row__label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.lp-tool-card--login .lp-price-row__label i { color: #60a5fa; width: 1.1rem; }
.lp-tool-card--remote .lp-price-row__label i { color: #c084fc; width: 1.1rem; }

.lp-price-row__value {
    font-weight: 800;
    color: #fff;
}

.lp-tool-card__foot {
    padding: 1.25rem;
    border-top: 1px solid #334155;
}

.lp-empty {
    text-align: center;
    color: #94a3b8;
    padding: 2rem;
}

/* CTA */
.lp-cta {
    position: relative;
    z-index: 10;
    padding: 4rem 0;
}

.lp-cta__box {
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 1.5rem;
    padding: 2rem;
    background: linear-gradient(to right, rgba(30, 58, 138, 0.5), rgba(49, 46, 129, 0.5));
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(6px);
}

@media (min-width: 768px) {
    .lp-cta__box { padding: 3rem; }
}

.lp-cta__texture {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: radial-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px);
    background-size: 18px 18px;
    pointer-events: none;
}

.lp-cta__title,
.lp-cta__text,
.lp-cta__actions {
    position: relative;
    z-index: 1;
}

.lp-cta__title {
    margin: 0 0 1rem;
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
}

.lp-cta__text {
    margin: 0 auto 2rem;
    max-width: 36rem;
    color: #bfdbfe;
}

/* Footer */
.lp-footer {
    position: relative;
    z-index: 10;
    background: #062626;
    border-top: none;
    padding: 0;
    color: #cbd5e1;
}

.lp-footer-features {
    background: #0d9488;
    padding: 1.35rem 0;
}

.lp-footer-features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
}

@media (min-width: 640px) {
    .lp-footer-features__grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .lp-footer-features__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.lp-footer-feature {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: #fff;
}

.lp-footer-feature__icon {
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    line-height: 1;
}

.lp-footer-feature__icon i {
    font-size: 1.55rem;
    line-height: 1;
    width: 1em;
    text-align: center;
}

.lp-footer-feature strong {
    display: block;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.25;
}

.lp-footer-feature > div > span {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.35;
}

.lp-footer__main {
    padding: 2.75rem 0 2rem;
    background: #062626;
}

.lp-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem 1.75rem;
}

@media (min-width: 640px) {
    .lp-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .lp-footer__grid {
        grid-template-columns: 1.3fr 1fr 1fr 1fr 1.15fr;
        gap: 2rem 1.5rem;
    }
}

.lp-footer__heading {
    margin: 0 0 1rem;
    color: #f8fafc;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lp-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    font-size: 0.9rem;
}

.lp-footer__list a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lp-footer__list a:hover {
    color: #5eead4;
    text-decoration: none;
}

.lp-footer__list--contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: #94a3b8;
    line-height: 1.45;
}

.lp-footer__list--contact i {
    width: 1rem;
    margin-top: 0.2rem;
    color: #2dd4bf;
    text-align: center;
}

.lp-footer__list--contact a {
    color: #94a3b8;
}

.lp-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.15rem;
}

.lp-footer__social a {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.45rem;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lp-footer__social a:hover {
    background: #0d9488;
    border-color: #0d9488;
    color: #fff;
}

.lp-footer__app-text {
    margin: 0 0 0.9rem;
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.55;
}

.lp-footer__apps {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.lp-footer-app {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    border-radius: 0.55rem;
    background: #0a1f1f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f8fafc;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.lp-footer-app:hover {
    border-color: #0d9488;
    background: #0c2a2a;
    text-decoration: none;
    color: #fff;
}

.lp-footer-app i {
    font-size: 1.2rem;
    color: #5eead4;
    width: 1.25rem;
    text-align: center;
}

.lp-footer-app small {
    display: block;
    font-size: 0.68rem;
    color: #94a3b8;
    line-height: 1.2;
}

.lp-footer-app b {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.25;
}

.lp-footer__bottom {
    padding: 1rem 0 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #041c1c;
    color: #64748b;
    font-size: 0.82rem;
}

.lp-footer__bottom p {
    margin: 0;
}

.lp-footer__bottom .lp-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Inner public pages */
.lp-main--page {
    padding-top: 4.25rem;
    min-height: 70vh;
}

.lp-main--page::before,
.lp-main--page::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.lp-main--page::before {
    width: 520px;
    height: 520px;
    top: -160px;
    left: -180px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(11, 17, 32, 0) 70%);
}

.lp-main--page::after {
    width: 420px;
    height: 420px;
    bottom: 40px;
    right: -120px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, rgba(11, 17, 32, 0) 70%);
}

.lp-page {
    position: relative;
    z-index: 10;
    padding: 3.5rem 0 4.5rem;
}

.lp-wrap--narrow { max-width: 48rem; }
.lp-wrap--detail { max-width: 72rem; }

.lp-page__hero {
    text-align: center;
    margin-bottom: 2.5rem;
}

.lp-page__title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.lp-page__lead {
    margin: 0 auto;
    max-width: 40rem;
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.7;
}

.lp-page__cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 2.5rem;
}

.lp-steps--page { margin-bottom: 3rem; }

.lp-nav__link.is-active {
    color: #fff;
}

/* Chips */
.lp-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.75rem;
    justify-content: center;
}

.lp-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid #334155;
    background: #1e293b;
    color: #94a3b8;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.lp-chip:hover {
    color: #fff;
    text-decoration: none;
    border-color: #475569;
}

.lp-chip.is-active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
}

.lp-tool-card__stock {
    margin: 0 0 0.85rem;
    font-size: 0.82rem;
    font-weight: 700;
}

.lp-tool-card__stock.is-ok { color: #4ade80; }
.lp-tool-card__stock.is-out { color: #f87171; }

/* Contact */
.lp-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
    .lp-contact-grid { grid-template-columns: repeat(3, 1fr); }
}

.lp-contact-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.35rem;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 1rem;
    text-decoration: none;
    color: #e2e8f0;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-contact-card:hover {
    text-decoration: none;
    color: #fff;
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.45);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.lp-contact-card__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    display: grid;
    place-items: center;
    margin-bottom: 0.5rem;
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    font-size: 1.25rem;
}

.lp-contact-card__icon--wa {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.lp-contact-card strong {
    font-size: 1.05rem;
}

.lp-contact-card span {
    color: #cbd5e1;
    font-size: 0.92rem;
}

.lp-contact-card em {
    font-style: normal;
    color: #64748b;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Panels / legal */
.lp-panel {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 1rem;
    padding: 1.35rem 1.5rem;
}

.lp-panel__title {
    margin: 0 0 0.85rem;
    font-size: 1.1rem;
    font-weight: 800;
}

.lp-panel__text {
    margin: 0 0 1rem;
    color: #94a3b8;
}

.lp-panel__list {
    margin: 0;
    padding-left: 1.15rem;
    color: #cbd5e1;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.lp-legal {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 1rem;
    padding: 1.5rem 1.6rem;
    color: #cbd5e1;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.lp-legal__note {
    color: #64748b;
    font-size: 0.9rem;
    text-align: center;
}

.lp-legal__note a {
    color: #60a5fa;
    text-decoration: none;
}

.lp-legal__note a:hover {
    text-decoration: underline;
}

/* Tool detail */
.lp-back {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #94a3b8;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.lp-back:hover {
    color: #fff;
    text-decoration: none;
}

.lp-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

@media (min-width: 960px) {
    .lp-detail {
        grid-template-columns: 1.5fr 0.9fr;
        gap: 2rem;
    }
}

.lp-detail__head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.lp-detail__mark {
    width: 3.5rem !important;
    height: 3.5rem !important;
    font-size: 1rem;
}

.lp-detail__mark.lp-tool-card--login {
    background: #2563eb;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}

.lp-detail__mark.lp-tool-card--remote {
    background: #7c3aed;
    box-shadow: 0 8px 18px rgba(124, 58, 237, 0.35);
}

.lp-detail__title {
    margin: 0.35rem 0 0.25rem;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    line-height: 1.2;
}

.lp-detail__meta {
    margin: 0;
    color: #94a3b8;
    font-size: 0.9rem;
}

.lp-detail__block {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.8);
}

.lp-detail__block:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.lp-detail__block h2 {
    margin: 0 0 0.55rem;
    font-size: 1.05rem;
    font-weight: 800;
}

.lp-detail__block p {
    margin: 0;
    color: #94a3b8;
    line-height: 1.7;
}

.lp-detail-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 1rem;
    padding: 1.35rem;
    position: sticky;
    top: 6rem;
}

.lp-detail-card__title {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    font-weight: 800;
}

.lp-detail-card__muted {
    color: #94a3b8;
    margin: 0 0 1rem;
}

.lp-detail-card__cta {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp-detail-card__note {
    margin: 0;
    color: #64748b;
    font-size: 0.85rem;
    text-align: center;
}

.lp-alert {
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.lp-alert--warn {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: #fbbf24;
}

/* 404 */
.lp-error {
    text-align: center;
    padding: 2rem 0 1rem;
}

.lp-error__code {
    font-size: clamp(4.5rem, 12vw, 7rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(to right, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.lp-error__title {
    margin: 0 0 0.75rem;
    font-size: 1.75rem;
    font-weight: 800;
}

.lp-error__text {
    margin: 0 auto;
    max-width: 28rem;
    color: #94a3b8;
}

/* Auth pages — light theme (matches home) */
.lp-main--auth {
    display: flex;
    flex-direction: column;
}

.lp-wrap--auth {
    max-width: 28rem;
}

.lp-auth {
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.lp-auth-card {
    width: 100%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.9rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

@media (min-width: 480px) {
    .lp-auth-card { padding: 2.25rem 2rem; }
}

.lp-auth-card--wide {
    max-width: 34rem;
}

.lp-wrap--auth-wide {
    max-width: 34rem;
}

.lp-auth-card__badge {
    width: 3.25rem;
    height: 3.25rem;
    margin: 0 auto 1.1rem;
    border-radius: 0.75rem;
    display: grid;
    place-items: center;
    background: #d5f5f2;
    border: 1px solid #b2e8e2;
    color: #0f766e;
    font-size: 1.35rem;
}

.lp-auth-card__title {
    margin: 0 0 0.45rem;
    text-align: center;
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1f2937;
}

.lp-auth-card__sub {
    margin: 0 0 1.5rem;
    text-align: center;
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.55;
}

.lp-auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lp-auth-form__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .lp-auth-form__grid { grid-template-columns: 1fr 1fr; }
}

.lp-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #374151;
}

.lp-field input,
.lp-field select {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 0.65rem;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    color: #1f2937;
    font: inherit;
    font-size: 0.98rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.lp-field input::placeholder {
    color: #9ca3af;
}

.lp-field input:focus,
.lp-field select:focus {
    border-color: #0d9488;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.lp-field__hint {
    font-weight: 500;
    font-size: 0.78rem;
    color: #6b7280;
}

.lp-currency-field {
    border: 0;
    margin: 0;
    padding: 0;
    min-inline-size: 0;
}
.lp-currency-field legend {
    padding: 0;
    margin-bottom: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #374151;
}
.lp-currency-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}
.lp-currency-chip {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin: 0;
    padding: 0.85rem 0.95rem;
    border-radius: 0.65rem;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    color: #6b7280;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
    user-select: none;
}
.lp-currency-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}
.lp-currency-chip__code {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #1f2937;
}
.lp-currency-chip__name {
    font-size: 0.78rem;
    font-weight: 500;
    color: #6b7280;
}
.lp-currency-chip:hover {
    border-color: #99f6e4;
}
.lp-currency-chip.is-active,
.lp-currency-chip:has(input:checked) {
    border-color: #0d9488;
    background: #d5f5f2;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
    color: #0f766e;
}
.lp-currency-chip.is-active .lp-currency-chip__code,
.lp-currency-chip:has(input:checked) .lp-currency-chip__code {
    color: #0f766e;
}
.lp-currency-chip.is-active .lp-currency-chip__name,
.lp-currency-chip:has(input:checked) .lp-currency-chip__name {
    color: #0d9488;
}

.lp-auth-card__legal {
    margin: 0;
    color: #6b7280;
    font-size: 0.8rem;
    line-height: 1.5;
}

.lp-auth-card__legal a {
    color: #0d9488;
    text-decoration: none;
    font-weight: 600;
}

.lp-auth-card__legal a:hover {
    text-decoration: underline;
}

.lp-auth-card__alt {
    margin: 1.35rem 0 0;
    text-align: center;
    color: #6b7280;
    font-size: 0.92rem;
}

.lp-auth-card__alt a {
    color: #0d9488;
    font-weight: 700;
    text-decoration: none;
}

.lp-auth-card__alt a:hover {
    text-decoration: underline;
}

.lp-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    margin-bottom: 1rem;
    padding: 0.75rem 0.9rem;
    border-radius: 0.55rem;
    font-size: 0.9rem;
}

.lp-alert--ok {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #047857;
    margin-bottom: 1rem;
    padding: 0.75rem 0.9rem;
    border-radius: 0.55rem;
    font-size: 0.9rem;
}

.lp-nav-account.is-active {
    color: #fff;
}

.lp-btn.is-active {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}

/* -------------------------------------------------------------------------
   Home tools catalog — BEST SELLING / RECENT ADDED (login & remote same UI)
   ------------------------------------------------------------------------- */
.page-home .lp-main,
.page-tools .lp-main,
.page-tool .lp-main,
.page-login .lp-main,
.page-register .lp-main,
.page-contact .lp-main,
.page-terms .lp-main,
.page-privacy .lp-main {
    background: #f3f4f6;
    min-height: calc(100vh - 4.25rem);
    padding-top: 4.25rem;
}

.page-home .lp-glow,
.page-tools .lp-glow,
.page-tool .lp-glow,
.page-login .lp-glow,
.page-register .lp-glow {
    display: none;
}

.lp-catalog {
    position: relative;
    z-index: 10;
    padding: 1.5rem 0 3rem;
}

.lp-catalog-panel {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.25rem 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.lp-catalog-panel__title {
    margin: 0 0 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0d9488;
}

.lp-catalog-panel__title::before {
    content: "";
    width: 4px;
    height: 1.15em;
    border-radius: 2px;
    background: #0d9488;
    flex-shrink: 0;
}

.lp-catalog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem 1.5rem;
}

@media (min-width: 768px) {
    .lp-catalog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .lp-catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lp-cat-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    text-decoration: none;
    color: inherit;
    min-width: 0;
    transition: opacity 0.15s ease;
}

.lp-cat-item:hover {
    text-decoration: none;
    opacity: 0.92;
}

.lp-cat-item__thumb {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.45rem;
    flex-shrink: 0;
    overflow: hidden;
    background: #0f766e;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
}

.lp-cat-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-cat-item__thumb.has-image {
    background: transparent;
}

.lp-cat-item__initials {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.lp-cat-item__body {
    min-width: 0;
    flex: 1;
    padding-top: 0.1rem;
}

.lp-cat-item__title {
    margin: 0 0 0.45rem;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
    color: #1f2937;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lp-cat-item__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.lp-cat-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.22rem 0.55rem;
    border-radius: 0.3rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.2;
    white-space: nowrap;
}

.lp-cat-badge--price {
    background: #d5f5f2;
    color: #0f766e;
    border: 1px solid #b2e8e2;
}

.lp-cat-badge--meta {
    background: #fff0d9;
    color: #d97706;
    border: 1px solid #f5d9a8;
}

.lp-catalog-more {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0 0.25rem;
}

.lp-catalog .lp-empty {
    color: #6b7280;
    margin: 0;
}

@media (max-width: 640px) {
    .lp-catalog {
        padding: 1rem 0 2rem;
    }

    .lp-catalog-panel {
        padding: 1rem;
        border-radius: 0.6rem;
    }

    .lp-cat-item__thumb {
        width: 2.85rem;
        height: 2.85rem;
    }
}

/* Tools list + tool detail — home light theme */
.lp-catalog--page {
    padding-top: 1.25rem;
}

.lp-catalog-panel--hero {
    text-align: center;
    padding: 1.5rem 1.25rem 1.25rem;
}

.lp-catalog-hero__title {
    margin: 0 0 0.45rem;
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    font-weight: 800;
    color: #0f766e;
    letter-spacing: -0.02em;
}

.lp-catalog-hero__lead {
    margin: 0 auto 1.1rem;
    max-width: 34rem;
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.55;
}

.lp-chip-row--light {
    justify-content: center;
    margin-bottom: 0;
}

.lp-chip-row--light .lp-chip {
    background: #f8fafc;
    border-color: #e5e7eb;
    color: #64748b;
}

.lp-chip-row--light .lp-chip:hover {
    color: #0f766e;
    border-color: #99f6e4;
}

.lp-chip-row--light .lp-chip.is-active {
    background: #0d9488;
    border-color: #0d9488;
    color: #fff;
}

.lp-cat-back {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    color: #0f766e;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.lp-cat-back:hover {
    color: #0d9488;
    text-decoration: none;
}

.lp-cat-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: start;
}

@media (min-width: 960px) {
    .lp-cat-detail {
        grid-template-columns: 1.55fr 0.9fr;
        gap: 1.35rem;
    }
}

.lp-cat-detail__head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.35rem;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid #e5e7eb;
}

.lp-cat-detail__mark {
    width: 4rem;
    height: 4rem;
    border-radius: 0.65rem;
    flex-shrink: 0;
    overflow: hidden;
    background: #0f766e;
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    display: grid;
    place-items: center;
}

.lp-cat-detail__mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-cat-detail__mark.has-image {
    background: transparent;
}

.lp-cat-detail__title {
    margin: 0.45rem 0 0.2rem;
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
}

.lp-cat-detail__meta {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

.lp-cat-detail__block {
    padding: 1.1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.lp-cat-detail__block:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.lp-cat-detail__block h2 {
    margin: 0 0 0.55rem;
    font-size: 1rem;
    font-weight: 800;
    color: #0f766e;
}

.lp-cat-detail__block p {
    margin: 0;
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.95rem;
}

.lp-cat-detail__list {
    margin: 0;
    padding-left: 1.15rem;
    color: #4b5563;
    line-height: 1.65;
    font-size: 0.95rem;
}

.lp-cat-detail__list li + li {
    margin-top: 0.35rem;
}

.lp-cat-detail__list--check {
    list-style: none;
    padding-left: 0;
}

.lp-cat-detail__list--check li {
    position: relative;
    padding-left: 1.35rem;
}

.lp-cat-detail__list--check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0d9488;
    font-weight: 800;
}

.lp-cat-detail__aside {
    position: sticky;
    top: 5rem;
}

.lp-cat-price-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.15rem;
}

.lp-cat-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0.85rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 0.55rem;
}

.lp-cat-price-row__label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #4b5563;
    font-size: 0.9rem;
    font-weight: 600;
}

.lp-cat-price-row__label i {
    color: #0d9488;
}

.lp-cat-detail__cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp-cat-alert {
    padding: 0.85rem 1rem;
    border-radius: 0.55rem;
    border: 1px solid #fdba74;
    background: #fff7ed;
    color: #c2410c;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.45;
}

.lp-cat-detail__note {
    margin: 0;
    text-align: center;
    color: #6b7280;
    font-size: 0.82rem;
}
