.lp-hero { padding: 4rem 0; text-align: center; }
.lp-hero h1 {
    font-weight: 300;
    font-size: clamp(1.9rem, 3.4vw, 3rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.lp-hero h1 i { color: var(--lg-gold); font-style: italic; }
.lp-hero p.lead {
    color: var(--lg-text);
    max-width: 720px;
    margin: 0 auto;
    font-size: 0.9rem;
    font-weight: 300;
}

.lp-section { padding: 4rem 0; position: relative; }

.lp-section-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
    margin-bottom: 2.25rem;
}
.lp-section-head .left { max-width: 720px; }
.lp-section-head .num {
    font-family: var(--lg-font-serif);
    font-size: 64px; line-height: 1;
    color: rgba(212,175,55,0.25);
    font-weight: 300;
    margin-bottom: .25rem;
}
.lp-section-head h2 {
    color: #fff;
    font-weight: 300;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    margin-bottom: .75rem;
}
.lp-section-head h2 i {
    color: var(--lg-gold);
    font-style: italic;
}

.lp-section-head p {
    color: var(--lg-muted);
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 0;
}
.lp-section-head--center {
    justify-content: center;
    text-align: center;
}
.lp-section-head--center .left {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lp-pricetable {
    background: var(--lg-card);
    border-radius: 18px;
    overflow: hidden;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.lp-pt-head,
.lp-pt-row {
    display: grid;
    grid-template-columns: 1fr 160px;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
}
.lp-pt-row {
    grid-template-columns: 44px 1fr;
    transition: background .2s ease;
}
.lp-pt-row + .lp-pt-row { border-top: 1px solid var(--lg-border); }
.lp-pt-row:hover { background: rgba(255,255,255,0.025); }

.lp-pt-row + .lp-pt-subrow { border-top: 0; padding-top: 0; }
.lp-pt-subrow { grid-template-columns: 1fr 120px; padding-left: 4.7rem; }
.lp-pt-subrow .lp-pt-name strong { font-size: 13.5px; }

.lp-pt-head {
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--lg-border);
}
.lp-pt-col-name {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--lg-muted);
    font-weight: 500;
}
.lp-pt-col-price {
    text-align: right;
    display: flex; flex-direction: column;
}
.lp-pt-col-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #fff;
    font-weight: 500;
}
.lp-pt-col-sub {
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--lg-muted);
    margin-top: 2px;
}

.lp-pt-group:not(:first-child) {
    border-top: 5px solid var(--lg-bg);
}
.lp-pt-group:nth-of-type(1), .lp-pt-group:nth-of-type(3) { background: rgba(212, 175, 55, 0.04); }
.lp-pt-group:nth-of-type(2), .lp-pt-group:nth-of-type(4) { background: rgba(99, 179, 237, 0.05); }

.lp-pt-name strong {
    display: inline-flex; align-items: center; gap: .6rem; flex-wrap: wrap;
    color: #fff;
    font-size: 14.5px;
    font-weight: 500;
    margin-bottom: 2px;
}
.lp-pt-name small {
    display: block;
    color: var(--lg-muted);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
}

.lp-pt-price {
    text-align: right;
    color: #fff;
    font-family: var(--lg-font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    display: flex; flex-direction: column; align-items: flex-end;
}

@media (max-width: 767px) {
    .lp-pt-head { display: none; }
    .lp-pt-row {
        grid-template-columns: 1fr;
        gap: .5rem;
    }
    .lp-pt-price {
        text-align: left;
        flex-direction: row;
        align-items: center;
        gap: .6rem;
        font-size: 1.05rem;
    }
}

.lp-pricing-note {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--lg-muted);
    font-size: 14px;
    font-weight: 300;
}
.lp-pricing-note b { color: var(--lg-gold); font-weight: 500; }

.lp-cta {
    margin: 1rem auto;
    background: linear-gradient(135deg, rgba(212,175,55,0.10), rgba(212,175,55,0.02));
    border: 1px solid var(--lg-border-hover);
    border-radius: 18px;
    padding: 2rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; flex-wrap: wrap;
    max-width: 960px;
}
.lp-cta > div { flex: 1 1 320px; min-width: 0; }
.lp-cta .legalito-button { flex: 0 0 auto; white-space: nowrap; }
.lp-cta h3 { color: #fff; font-weight: 400; margin: 0 0 .25rem; }
.lp-cta p { color: var(--lg-muted); margin: 0; font-size: 14px; font-weight: 300; }
@media (max-width: 767px) {
    .lp-section { padding: 3rem 0; }
    .lp-section-head { margin-bottom: 1.5rem; }
    .lp-section-head .num { font-size: 48px; }
}

