/* ======================================================
   About / Trust page
   Prefix: lp- (landing page)
   ====================================================== */

.lp {
    --lp-text: #0A2540;
    --lp-body: #374151;
    --lp-dim: #6b7280;
    --lp-border: #e5e7eb;
    --lp-surface: #f9fafb;
    --lp-accent: #0E9F6E;
    --lp-link: #2563eb;
    --lp-radius: 16px;
    --lp-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-family: var(--lp-font);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
    color: var(--lp-text);
}
.lp *, .lp *::before, .lp *::after { box-sizing: border-box; }

/* ── Breadcrumbs ── */
.lp-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--lp-dim);
    padding: 2rem 0 0;
}
.lp-breadcrumbs a { color: var(--lp-dim); text-decoration: none; }
.lp-breadcrumbs a:hover { color: var(--lp-accent); }
.lp-breadcrumbs span { color: #d1d5db; }

/* ── Hero ── */
.lp-hero {
    padding: 3.5rem 0 4rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}
.lp-hero-text h1 {
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 0 0 1.5rem;
    color: var(--lp-text);
}
.lp-lead {
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.75;
    color: var(--lp-body);
    margin: 0;
    max-width: 580px;
}

/* ── Hero photo ── */
.lp-hero-photo {
    border-radius: var(--lp-radius);
    overflow: hidden;
    line-height: 0;
}
.lp-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--lp-radius);
}

/* ── Stats bar (right column of hero) ── */
.lp-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--lp-radius);
    overflow: hidden;
    min-width: 320px;
}
.lp-stat {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(170deg, #0c1220 0%, #1a2744 100%);
}
.lp-stat-value {
    display: block;
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.lp-stat-label {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* ── Sections ── */
.lp-section {
    padding: 4.5rem 0;
    border-top: 1px solid var(--lp-border);
}
.lp-section--last { border-bottom: none; }
.lp-section h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin: 0 0 1.25rem;
    color: var(--lp-text);
}
.lp-section > p {
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.75;
    color: var(--lp-body);
    margin: 0 0 2.5rem;
}
.lp-section > p:last-child { margin-bottom: 0; }
.lp-section > p a {
    color: var(--lp-accent);
    font-weight: 600;
    text-decoration: none;
}
.lp-section > p a:hover { text-decoration: underline; }

/* ── Trust banner (visual break between story + credentials) ── */
.lp-trust-banner {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #ecfdf5 100%);
    border: 1px solid #a7f3d0;
    border-radius: var(--lp-radius);
    padding: 3rem 3rem;
    margin: -1rem 0 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.lp-trust-banner-text {
    flex: 1;
}
.lp-trust-banner-text h2 {
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 800;
    color: #065f46;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}
.lp-trust-banner-text p {
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.7;
    color: #374151;
    margin: 0;
}
.lp-trust-count {
    flex-shrink: 0;
    text-align: center;
    padding: 0 1.5rem;
}
.lp-trust-count-value {
    display: block;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    color: #059669;
    line-height: 1;
    letter-spacing: -0.03em;
}
.lp-trust-count-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #065f46;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 6px;
}

/* ── Sub heading (e.g. "States where licensing is not required") ── */
.lp-sub-heading {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
    color: var(--lp-text);
    margin: 3rem 0 1.5rem;
}

/* ── License card grid ── */
.lp-license-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.lp-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    padding: 1.75rem 2rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.lp-card:hover {
    border-color: var(--lp-accent);
    box-shadow: 0 2px 12px rgba(14, 159, 110, 0.08);
}
.lp-card h3 {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 800;
    color: var(--lp-text);
    margin: 0 0 2px;
    letter-spacing: -0.01em;
}
.lp-card-sub {
    font-size: 14px;
    color: var(--lp-dim);
    margin: 0 0 1.25rem;
}
.lp-card--muted {
    background: var(--lp-surface);
    border-color: #e2e5ea;
}
.lp-card--muted:hover { border-color: #d1d5db; box-shadow: none; }
.lp-card--muted h3 { color: var(--lp-dim); }
.lp-card--muted .lp-card-sub { margin-bottom: 0; }

/* ── Definition lists ── */
.lp-dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0;
    margin: 0;
}
.lp-dl dt {
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-dim);
    padding: 10px 20px 10px 0;
    border-top: 1px solid #f3f4f6;
    white-space: nowrap;
}
.lp-dl dd {
    font-size: 15px;
    font-weight: 700;
    color: var(--lp-text);
    padding: 10px 0;
    margin: 0;
    border-top: 1px solid #f3f4f6;
    text-align: right;
}
.lp-dl dt:first-of-type,
.lp-dl dd:first-of-type { border-top: none; }
.lp-dl dd a {
    color: var(--lp-link);
    font-weight: 600;
    text-decoration: none;
}
.lp-dl dd a:hover { text-decoration: underline; }

/* Wide variant for legal entity */
.lp-dl--wide { max-width: 560px; }
.lp-dl--wide dt { font-size: 17px; padding: 16px 32px 16px 0; }
.lp-dl--wide dd { font-size: 18px; padding: 16px 0; }

/* ── Badge ── */
.lp-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 12px;
    border-radius: 100px;
}
.lp-badge--active { background: #ecfdf5; color: #047857; }

/* ── Source / info cards ── */
.lp-source-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.lp-source-grid--two {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}
.lp-source-grid--three {
    grid-template-columns: 1fr 1fr 1fr;
}
.lp-source.lp-source--image {
    padding: 0;
    border: none;
    background: none;
    overflow: hidden;
    border-radius: var(--lp-radius);
    display: flex;
}
.lp-source.lp-source--image img {
    width: 100%;
    object-fit: cover;
}
.lp-source {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 2rem 2.25rem;
}
.lp-source h3 {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 800;
    color: var(--lp-text);
    margin: 0 0 0.75rem;
}
.lp-source p {
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.7;
    color: var(--lp-body);
    margin: 0;
}

/* ── Steps ── */
.lp-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: lp-step;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.lp-steps li {
    counter-increment: lp-step;
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 2rem 2.25rem;
}
.lp-steps li::before {
    content: counter(lp-step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--lp-text);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 1.25rem;
}
.lp-steps li h3 {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 800;
    color: var(--lp-text);
    margin: 0 0 0.75rem;
}
.lp-steps li p {
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.7;
    color: var(--lp-body);
    margin: 0;
}
.lp-steps li p a {
    color: var(--lp-accent);
    font-weight: 600;
    text-decoration: none;
}
.lp-steps li p a:hover { text-decoration: underline; }

/* ── Legal entity card ── */
.lp-entity {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 2.5rem;
}
.lp-entity a {
    color: var(--lp-accent);
    font-weight: 600;
    text-decoration: none;
}
.lp-entity a:hover { text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 960px) {
    .lp-hero { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2.5rem; }
    .lp-hero-photo { max-height: 360px; }
    .lp-license-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-trust-banner { flex-direction: column; text-align: center; padding: 2.5rem 2rem; }
    .lp-trust-count { padding: 0; }
}
@media (max-width: 768px) {
    .lp { padding: 0 20px 4rem; }
    .lp-hero { padding-top: 2rem; }
    .lp-stats { grid-template-columns: 1fr 1fr; gap: 1px; padding: 0; background: rgba(255,255,255,0.06); }
    .lp-stat { background: linear-gradient(170deg, #0c1220 0%, #1a2744 100%); padding: 1.5rem 1rem; }
    .lp-license-grid { grid-template-columns: 1fr; }
    .lp-section { padding: 3rem 0; }
    .lp-card { padding: 1.5rem 1.75rem; }
    .lp-source { padding: 1.5rem 1.75rem; }
    .lp-steps li { padding: 1.5rem 1.75rem; }
    .lp-entity { padding: 1.75rem; }
    .lp-dl--wide dt { padding-right: 20px; }
    .lp-trust-banner { padding: 2rem 1.5rem; gap: 1.5rem; }
}
@media (max-width: 480px) {
    .lp { padding: 0 16px 3rem; }
    .lp-hero-text h1 { font-size: 32px; }
    .lp-source-grid { grid-template-columns: 1fr; }
    .lp-source-grid--two { grid-template-columns: 1fr; }
    .lp-source-grid--three { grid-template-columns: 1fr; }
    .lp-source--image { max-height: 300px; }
    .lp-steps { grid-template-columns: 1fr; }
}
