/* LegalSports Intake & Memberships */

.lsn-overview { margin: 2rem 0; }
.lsn-overview__head { text-align: center; max-width: 720px; margin: 0 auto 2rem; }
.lsn-overview__kicker {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c1183b;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.lsn-overview__head h2 { font-size: 2rem; margin: 0 0 1rem; line-height: 1.15; }
.lsn-overview__head p { color: #444; font-size: 1.05rem; }

.lsn-overview__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}
.lsn-overview__tier {
    position: relative;
    border: 1px solid #e3e3e7;
    border-radius: 8px;
    background: #fff;
    padding: 1.75rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
}
.lsn-overview__tier h3 {
    margin: 0 0 0.3rem;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #15182a;
}
.lsn-overview__price { margin: 0; font-size: 0.95rem; color: #555; }
.lsn-overview__price strong { font-size: 2rem; color: #15182a; }
.lsn-overview__price-alt { margin: 0.2rem 0 1rem; color: #777; font-size: 0.82rem; }
.lsn-overview__price-alt a { color: #c1183b; text-decoration: none; }
.lsn-overview__tier ul { margin: 1rem 0 1.25rem; padding: 0 0 0 1.1rem; color: #333; flex: 1; }
.lsn-overview__tier ul li { margin-bottom: 0.3rem; font-size: 0.9rem; }
.lsn-overview__cta { margin: 0; }
.lsn-overview__btn {
    display: inline-block;
    background: #c1183b;
    color: #fff !important;
    border: 0;
    padding: 0.6rem 0.9rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}
.lsn-overview__btn:hover { background: #9a1330; }
.lsn-overview__btn--ghost { background: transparent; color: #15182a !important; border: 1px solid #d6d6dc; }
.lsn-overview__btn--ghost:hover { background: #fafafb; color: #c1183b !important; }
.lsn-overview__btn--dark { background: #15182a; }
.lsn-overview__btn--dark:hover { background: #0a0d18; }

.lsn-overview__tier.is-featured {
    border-color: #c1183b;
    box-shadow: 0 4px 18px rgba(193,24,59,0.12);
}
.lsn-overview__badge {
    position: absolute;
    top: -0.7rem;
    left: 50%;
    transform: translateX(-50%);
    background: #15182a;
    color: #fff;
    padding: 0.22rem 0.7rem;
    border-radius: 12px;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}
.lsn-overview__badge--student { background: #0a7a2a; }
.lsn-overview__badge--combined { background: #1f3a93; }

.lsn-overview__enterprise {
    margin: 2rem auto 0;
    max-width: 1200px;
    background: linear-gradient(180deg, #15182a 0%, #1f2440 100%);
    color: #fff;
    border-radius: 8px;
    padding: 1.75rem 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.lsn-overview__enterprise h3 { margin: 0 0 0.4rem; color: #fff; }
.lsn-overview__enterprise p { margin: 0; color: rgba(255,255,255,0.85); max-width: 760px; }
.lsn-overview__enterprise .lsn-overview__btn { width: auto; padding: 0.65rem 1.5rem; background: #c1183b; }

.lsn-overview__compare {
    margin: 2.5rem auto 0;
    max-width: 1200px;
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}
.lsn-overview__compare th, .lsn-overview__compare td {
    text-align: center;
    padding: 0.65rem 0.6rem;
    border-bottom: 1px solid #ececf0;
}
.lsn-overview__compare th[scope="row"] { text-align: left; font-weight: 500; color: #333; }
.lsn-overview__compare thead th {
    background: #fafafb;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    color: #555;
}

/* Intake forms */
.lsn-in { max-width: 760px; margin: 2rem auto; }
.lsn-in h2 { margin-top: 0; }
.lsn-in__form fieldset { border: 1px solid #e3e3e7; border-radius: 6px; padding: 1rem 1.25rem; margin: 0 0 1rem; }
.lsn-in__form legend { padding: 0 0.4rem; font-weight: 600; color: #15182a; }
.lsn-in__form label { display: block; margin-bottom: 0.75rem; }
.lsn-in__form label span { display: block; font-size: 0.8rem; color: #555; }
.lsn-in__form input[type=text],
.lsn-in__form input[type=email],
.lsn-in__form input[type=url],
.lsn-in__form input[type=number],
.lsn-in__form input[type=file],
.lsn-in__form textarea,
.lsn-in__form select {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}
.lsn-in__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0 1rem;
}
.lsn-in__check {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    margin-bottom: 0.4rem !important;
}
.lsn-in__check input[type=checkbox] { width: auto; margin: 0; }
.lsn-in__form button {
    background: #c1183b;
    color: #fff;
    border: 0;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}
.lsn-in__form button:hover { background: #9a1330; }
.lsn-in__small { color: #777; font-size: 0.85rem; }
.lsn-in__msg {
    padding: 0.75rem 1rem;
    border-radius: 4px;
    margin: 0 0 1rem;
}
.lsn-in__msg--ok { background: #e6f7e8; border: 1px solid #0a7a2a; }
.lsn-in__msg--err { background: #ffe7eb; border: 1px solid #b00020; }
