/* Landing — previous layout, FBR brand colors */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --lp-blue: #1c3269;
    --lp-navy: #122347;
    --lp-dark: #0a152e;
    --lp-yellow: #b8222a;
    --lp-yellow-hover: #961b22;
    --lp-green: #3a9e4a;
    --lp-green-light: #e8f5ea;
    --lp-bg: #f4f6fa;
    --lp-surface: #ffffff;
    --lp-muted: #5c6b82;
    --lp-border: #dde3ed;
    --lp-radius: 16px;
    --lp-mobile-bar-h: calc(64px + env(safe-area-inset-bottom, 0px));
    --lp-shortlist-stack-h: calc(120px + env(safe-area-inset-bottom, 0px));
}

body.landing-page {
    background: var(--lp-bg);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--lp-dark);
}

body.landing-page .site-main {
    padding: 0;
}

body.landing-page .site-header {
    background: linear-gradient(135deg, var(--lp-blue) 0%, var(--lp-navy) 100%);
    color: #fff;
    box-shadow: 0 2px 12px rgba(18, 35, 71, 0.18);
}

body.landing-page .portal-nav a {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

body.landing-page .portal-nav a:hover {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

body.landing-page .portal-nav a.nav-cta {
    background: var(--lp-yellow);
    color: #fff;
    font-weight: 700;
}

body.landing-page .portal-nav a.nav-cta:hover {
    background: var(--lp-yellow-hover);
    color: #fff;
}

@media (min-width: 769px) {
    body.landing-page .header-container-landing {
        flex-wrap: nowrap;
        align-items: center;
        gap: 10px;
    }

    body.landing-page .portal-nav-landing {
        flex: 1;
        justify-content: flex-end;
        gap: 5px;
    }

    body.landing-page .portal-nav-landing a {
        font-size: 12.5px;
        padding: 6px 11px;
        white-space: nowrap;
    }
}

.saas-landing {
    overflow-x: hidden;
}

/* Homepage sections — ordered flow */
.lp-home-block {
    padding: 48px 0;
}

.lp-home-find {
    background: linear-gradient(145deg, var(--lp-blue) 0%, var(--lp-navy) 55%, var(--lp-dark) 100%);
    color: #fff;
    padding: 40px 0 52px;
}

.lp-home-find .lp-section-eyebrow {
    color: rgba(255, 255, 255, 0.85);
}

.lp-home-find .lp-home-lead {
    color: rgba(255, 255, 255, 0.92);
}

.lp-home-find .lp-college-step-text {
    color: rgba(255, 255, 255, 0.9);
}

.lp-home-find .lp-college-step-num {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.lp-home-find .lp-home-note {
    color: rgba(255, 255, 255, 0.8);
}

.lp-home-register {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 50%, #f4f6fa 100%);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}

.lp-home-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--lp-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 10px;
}

.lp-home-find .lp-home-num {
    background: rgba(255, 255, 255, 0.2);
}

.lp-home-title {
    margin: 0 0 12px;
    font-size: clamp(1.6rem, 4vw, 2.1rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--lp-dark);
}

.lp-home-find .lp-home-title {
    color: #fff;
}

.lp-home-title-center {
    text-align: center;
}

.lp-home-lead {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--lp-muted);
    max-width: 560px;
}

.lp-home-lead-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.lp-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.lp-home-note {
    margin: 14px 0 0;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lp-home-checklist {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.lp-home-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--lp-dark);
}

.lp-home-checklist .bi {
    color: var(--lp-green);
    margin-top: 2px;
    flex-shrink: 0;
}

.lp-btn-lg {
    padding: 14px 24px;
    font-size: 16px;
    min-height: 52px;
}

.lp-btn-cta {
    background: var(--lp-yellow);
    border-color: var(--lp-yellow);
}

.lp-btn-cta:hover {
    background: var(--lp-yellow-hover);
    border-color: var(--lp-yellow-hover);
}

.lp-home-more-wrap {
    text-align: center;
    margin-top: 20px;
}

.lp-btn-more {
    min-width: 220px;
    justify-content: center;
}

.lp-login-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.lp-login-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 18px 12px;
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    text-decoration: none;
    color: var(--lp-dark);
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.lp-login-card .bi {
    font-size: 26px;
    color: var(--lp-blue);
}

.lp-login-card strong {
    font-size: 14px;
    font-weight: 800;
}

.lp-login-card span {
    font-size: 12px;
    color: var(--lp-muted);
}

.lp-login-card:hover {
    border-color: var(--lp-blue);
    box-shadow: 0 8px 24px rgba(28, 50, 105, 0.1);
    transform: translateY(-2px);
    color: var(--lp-blue);
}

.lp-login-student {
    background: var(--lp-green-light);
    border-color: rgba(58, 158, 74, 0.35);
}

.lp-login-student .bi {
    color: var(--lp-green);
}

.lp-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.cs-page,
.cl-page,
.su-page,
.pt-page,
.clp-page {
    overflow-x: hidden;
    max-width: 100%;
}

/* ── Hero ── */
.lp-hero {
    position: relative;
    background: linear-gradient(145deg, var(--lp-blue) 0%, var(--lp-navy) 55%, var(--lp-dark) 100%);
    color: #fff;
    padding: 56px 0 88px;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 50% at 12% 25%, rgba(58, 158, 74, 0.16), transparent),
        radial-gradient(ellipse 50% 40% at 88% 75%, rgba(184, 34, 42, 0.12), transparent);
    pointer-events: none;
}

.lp-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 18px;
}

.lp-hero h1 {
    font-size: clamp(30px, 4.2vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.lp-hero h1 em {
    font-style: normal;
    background: linear-gradient(90deg, #8fd49a, #f0a8ae);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lp-hero-lead {
    font-size: 16px;
    line-height: 1.65;
    opacity: 0.92;
    margin: 0 0 26px;
    max-width: 500px;
}

/* Path cards */
.lp-path-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.lp-path-card {
    display: block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--lp-radius);
    padding: 20px 18px;
    text-decoration: none;
    color: #fff;
    backdrop-filter: blur(6px);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
}

.lp-path-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.lp-path-card-primary {
    background: linear-gradient(145deg, var(--lp-yellow), #d63a42);
    border-color: var(--lp-yellow);
    color: #fff;
}

.lp-path-card-primary:hover {
    background: linear-gradient(145deg, var(--lp-yellow-hover), #b8222a);
    border-color: var(--lp-yellow-hover);
    color: #fff;
    box-shadow: 0 12px 32px rgba(184, 34, 42, 0.35);
}

.lp-path-card-student {
    background: rgba(58, 158, 74, 0.22);
    border-color: rgba(58, 158, 74, 0.45);
}

.lp-path-card-student:hover {
    background: rgba(58, 158, 74, 0.32);
    border-color: var(--lp-green);
}

.lp-hero-student-btn {
    display: none;
}

.lp-path-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.15);
}

.lp-path-card-primary .lp-path-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.lp-path-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px;
}

.lp-path-card p {
    font-size: 12px;
    margin: 0 0 10px;
    opacity: 0.88;
    line-height: 1.45;
}

.lp-path-card-primary p {
    opacity: 0.85;
}

.lp-path-arrow {
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lp-path-card-primary .lp-path-arrow {
    color: #fff;
}

.lp-hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 13px;
}

.lp-hero-links a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.lp-hero-links a:hover {
    color: #8fd49a;
}

.lp-hero-trust {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    font-size: 13px;
    opacity: 0.9;
}

.lp-hero-trust li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lp-hero-trust .bi {
    color: #fde68a;
}

/* Start here — dual audience */
.lp-start-here {
    padding: 40px 0 8px;
}

.lp-start-title {
    margin: 0 0 8px;
    font-size: clamp(1.35rem, 3.5vw, 1.75rem);
    font-weight: 800;
    text-align: center;
    color: var(--lp-dark);
}

.lp-start-sub {
    margin: 0 0 20px;
    text-align: center;
    color: var(--lp-muted);
    font-size: 15px;
}

.lp-start-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.lp-start-panel {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 22px 20px;
    box-shadow: 0 8px 28px rgba(18, 35, 71, 0.06);
}

.lp-start-panel-student {
    border-top: 4px solid var(--lp-green);
}

.lp-start-panel-college {
    border-top: 4px solid var(--lp-yellow);
}

.lp-start-panel-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.lp-start-panel-head .bi {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.lp-start-panel-student .lp-start-panel-head .bi {
    background: var(--lp-green-light);
    color: var(--lp-green);
}

.lp-start-panel-college .lp-start-panel-head .bi {
    background: #fde8ea;
    color: var(--lp-yellow);
}

.lp-start-panel-head h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.3;
}

.lp-start-panel-tag {
    margin: 3px 0 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--lp-muted);
}

.lp-start-steps {
    margin: 0 0 16px;
    padding-left: 18px;
    color: var(--lp-muted);
    font-size: 14px;
    line-height: 1.55;
}

.lp-start-steps li {
    margin-bottom: 8px;
}

.lp-start-steps strong {
    color: var(--lp-dark);
}

.lp-start-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.lp-start-actions .lp-btn {
    flex: 1 1 140px;
    justify-content: center;
    text-align: center;
}

.lp-start-note {
    margin: 0;
    font-size: 13px;
    color: var(--lp-muted);
}

.lp-start-note a {
    color: var(--lp-blue);
    font-weight: 700;
    text-decoration: none;
}

.lp-college-cta-row {
    margin-bottom: 16px;
}

.lp-college-card .lp-college-slug {
    display: none;
}

/* Quick portal access */
.lp-quick-access {
    padding: 24px 0 40px;
}

.lp-quick-label {
    margin: 0 0 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--lp-muted);
}

.lp-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.lp-quick-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 14px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-navy);
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.lp-quick-card:hover {
    border-color: var(--lp-blue);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.1);
    transform: translateY(-2px);
    color: var(--lp-blue);
}

.lp-quick-card .bi {
    font-size: 18px;
    color: var(--lp-blue);
}

.lp-quick-card-highlight {
    background: linear-gradient(135deg, #eff6ff, #fff);
    border-color: #bfdbfe;
}

/* Hero visual */
.lp-hero-visual {
    position: relative;
}

.lp-visual-frame {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    transform: perspective(900px) rotateY(-3deg);
    transition: transform 0.35s ease;
}

.lp-hero-visual:hover .lp-visual-frame {
    transform: perspective(900px) rotateY(0);
}

.lp-visual-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--lp-border);
}

.lp-visual-header span {
    font-size: 13px;
    font-weight: 700;
    color: var(--lp-dark);
}

.lp-visual-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #16a34a;
    background: #f0fdf4;
    padding: 4px 10px;
    border-radius: 999px;
}

.lp-visual-live::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
}

.lp-visual-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.lp-metric {
    background: linear-gradient(135deg, #eff6ff, #fff);
    border: 1px solid #dbeafe;
    border-radius: 10px;
    padding: 12px 10px;
}

.lp-metric strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--lp-blue);
    line-height: 1;
}

.lp-metric small {
    display: block;
    font-size: 10px;
    color: var(--lp-muted);
    margin-top: 4px;
}

.lp-visual-rows {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lp-visual-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 10px;
    font-size: 12px;
    border: 1px solid #f1f5f9;
}

.lp-row-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.lp-row-status.new { background: #f59e0b; }
.lp-row-status.active { background: var(--lp-blue); }
.lp-row-status.done { background: #22c55e; }

.lp-visual-row strong {
    font-weight: 700;
    color: var(--lp-dark);
    margin-right: auto;
}

.lp-visual-row em {
    font-style: normal;
    font-size: 10px;
    color: var(--lp-muted);
    background: #fff;
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid var(--lp-border);
}

.lp-float-badge {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    font-size: 12px;
    font-weight: 700;
    color: var(--lp-navy);
    border: 1px solid var(--lp-border);
}

.lp-float-badge.top {
    top: -14px;
    right: -10px;
}

.lp-float-badge.bottom {
    bottom: -18px;
    left: -14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--lp-blue);
}

.lp-float-badge .bi {
    color: var(--lp-green);
    font-size: 16px;
}

/* Stats strip */
.lp-stats-strip {
    margin-top: -48px;
    position: relative;
    z-index: 2;
    padding-bottom: 48px;
}

.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    background: #fff;
    border-radius: var(--lp-radius);
    padding: 20px 16px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
    border: 1px solid var(--lp-border);
}

.lp-stat-item {
    text-align: center;
    padding: 8px;
}

.lp-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--lp-blue);
    line-height: 1.1;
}

.lp-stat-label {
    font-size: 12px;
    color: var(--lp-muted);
    margin-top: 4px;
    font-weight: 500;
}

/* Home quick hub — mirrors top menu order */
.lp-home-hub {
    background: #fff;
    border-bottom: 1px solid var(--lp-border);
    padding: 22px 0 26px;
    margin-top: -36px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(18, 35, 71, 0.06);
}

.lp-home-hub-label {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--lp-muted);
    margin: 0 0 14px;
    letter-spacing: 0.02em;
}

.lp-home-hub-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.lp-home-hub-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 76px;
    padding: 10px 6px;
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--lp-navy);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s, background 0.2s;
}

.lp-home-hub-item .bi {
    font-size: 20px;
    color: var(--lp-blue);
}

.lp-home-hub-item:hover,
.lp-home-hub-item:focus {
    border-color: var(--lp-blue);
    box-shadow: 0 6px 18px rgba(28, 50, 105, 0.12);
    transform: translateY(-2px);
    color: var(--lp-blue);
}

.lp-home-hub-student {
    background: var(--lp-green-light);
    border-color: rgba(58, 158, 74, 0.35);
}

.lp-home-hub-student .bi {
    color: var(--lp-green);
}

.lp-home-hub-register {
    background: #fde8ea;
    border-color: rgba(184, 34, 42, 0.25);
}

.lp-home-hub-register .bi {
    color: var(--lp-yellow);
}

/* Sections */
.lp-section {
    padding: 64px 0;
}

.lp-section-alt {
    background: #fff;
}

.lp-section-eyebrow {
    display: block;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--lp-blue);
    margin-bottom: 8px;
}

.lp-section-title {
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 800;
    text-align: center;
    margin: 0 0 10px;
    color: var(--lp-dark);
}

.lp-section-sub {
    text-align: center;
    color: var(--lp-muted);
    margin: 0 auto 40px;
    font-size: 16px;
    max-width: 540px;
    line-height: 1.55;
}

.lp-section-cta {
    text-align: center;
    margin-top: 32px;
}

/* Features — audience split */
.lp-features-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 8px;
}

.lp-features-audience {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 22px 20px;
}

.lp-features-student {
    border-top: 4px solid var(--lp-green);
}

.lp-features-college {
    border-top: 4px solid var(--lp-yellow);
}

.lp-features-audience h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--lp-dark);
}

.lp-features-audience h3 .bi {
    font-size: 20px;
}

.lp-features-student h3 .bi {
    color: var(--lp-green);
}

.lp-features-college h3 .bi {
    color: var(--lp-yellow);
}

.lp-features-list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

.lp-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.45;
    color: var(--lp-muted);
}

.lp-features-list li .bi {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--lp-blue);
}

.lp-btn-sm {
    padding: 10px 16px;
    font-size: 13px;
    min-height: 42px;
}

/* Features — 3-column cards */
.lp-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lp-feature {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 26px 22px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.lp-section-alt .lp-feature {
    background: var(--lp-bg);
}

.lp-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(13, 110, 253, 0.1);
    border-color: #bfdbfe;
}

.lp-feature:nth-child(6) {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center;
    background: linear-gradient(135deg, #eff6ff, #fff);
    border-color: #bfdbfe;
}

.lp-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    color: var(--lp-blue);
}

.lp-feature:nth-child(6) .lp-feature-icon {
    margin-bottom: 0;
}

.lp-feature h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px;
}

.lp-feature p {
    font-size: 14px;
    color: var(--lp-muted);
    margin: 0;
    line-height: 1.55;
}

.lp-feature code {
    font-size: 12px;
    background: #e8f4fd;
    color: var(--lp-blue);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Steps */
.lp-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.lp-step {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    text-align: center;
    padding: 20px 14px;
    background: var(--lp-bg);
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-border);
}

.lp-step-num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--lp-blue), var(--lp-navy));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    margin: 0 auto 14px;
    box-shadow: 0 4px 14px rgba(13, 110, 253, 0.35);
}

.lp-step h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 8px;
}

.lp-step p {
    font-size: 13px;
    color: var(--lp-muted);
    margin: 0;
    line-height: 1.5;
}

.lp-step-arrow {
    font-size: 22px;
    color: #94a3b8;
    padding-top: 48px;
    font-weight: 300;
}

/* Buttons */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid transparent;
    transition: transform 0.15s, box-shadow 0.15s;
    cursor: pointer;
    font-family: inherit;
}

.lp-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.lp-btn-primary {
    background: var(--lp-yellow);
    color: #fff;
    border-color: var(--lp-yellow);
}

.lp-btn-primary:hover {
    background: var(--lp-yellow-hover);
    color: #fff;
    box-shadow: 0 6px 18px rgba(184, 34, 42, 0.35);
}

.lp-btn-outline {
    background: transparent;
    color: var(--lp-blue);
    border-color: var(--lp-blue);
}

.lp-btn-outline:hover {
    background: #eff6ff;
    color: var(--lp-blue);
}

.lp-btn-outline-dark {
    background: #fff;
    color: var(--lp-navy);
    border-color: var(--lp-border);
}

.lp-btn-outline-dark:hover {
    border-color: var(--lp-blue);
    color: var(--lp-blue);
    background: #f8fbff;
}

.lp-btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.lp-btn-light {
    background: #fff;
    color: var(--lp-navy);
    font-weight: 700;
}

.lp-btn-light:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.lp-btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.45);
}

.lp-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.65);
}

.lp-btn-block {
    width: 100%;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Pricing */
.lp-section-pricing {
    background: linear-gradient(180deg, var(--lp-bg) 0%, #e8f4fd 100%);
}

.lp-annual-billing-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    text-align: center;
    background: #fff;
    border: 1px solid #bfdbfe;
    color: var(--lp-navy);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 12px;
    max-width: 520px;
    margin: 0 auto 32px;
    box-shadow: 0 4px 16px rgba(13, 110, 253, 0.08);
}

.lp-annual-billing-banner .bi {
    color: var(--lp-blue);
    font-size: 18px;
}

.lp-pricing-sync-note {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #166534;
    margin: -16px auto 24px;
}

.lp-pricing-sync-note .bi {
    margin-right: 4px;
}

.lp-plan-desc {
    font-size: 13px;
    color: var(--lp-muted);
    margin: 0 0 12px;
    line-height: 1.45;
}

.lp-plan-billing-annual {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    padding: 10px 12px !important;
    font-size: 13px !important;
    line-height: 1.5;
    margin-bottom: 16px !important;
}

.lp-plan-billing-annual .bi {
    color: var(--lp-blue);
    margin-right: 4px;
}

.lp-plan-savings-inline {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    margin-left: 6px;
}

.lp-plan-price-custom {
    font-size: 28px !important;
    color: var(--lp-navy) !important;
}

.lp-billing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0 auto 36px;
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 999px;
    padding: 5px;
    width: fit-content;
    box-shadow: 0 4px 16px rgba(13, 110, 253, 0.08);
}

.lp-billing-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-muted);
    padding: 10px 20px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    background: transparent;
    font-family: inherit;
}

.lp-billing-label.active {
    background: linear-gradient(135deg, var(--lp-blue), var(--lp-navy));
    color: #fff;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.lp-billing-save-hint {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    font-style: normal;
    margin-left: 4px;
    vertical-align: middle;
}

.lp-billing-label.active .lp-billing-save-hint {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.lp-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    max-width: 960px;
    margin: 0 auto;
    align-items: stretch;
}

.lp-plan {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.lp-plan-trial {
    border: 2px solid var(--lp-blue);
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.1);
}

.lp-plan-featured {
    border: 2px solid var(--lp-blue);
    box-shadow: 0 14px 40px rgba(13, 110, 253, 0.18);
    transform: scale(1.02);
    position: relative;
    z-index: 1;
}

.lp-plan-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: #e8f4fd;
    color: var(--lp-blue);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.lp-plan-tag-hot {
    background: linear-gradient(90deg, #fef3c7, #fde68a);
    color: #92400e;
}

.lp-plan-savings {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    background: #dcfce7;
    color: #166534;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 8px;
}

.lp-plan h3 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
}

.lp-plan-price {
    font-size: 34px;
    font-weight: 800;
    color: var(--lp-blue);
    margin: 10px 0 4px;
    line-height: 1;
}

.lp-plan-price span,
.lp-plan-price [data-price-period] {
    font-size: 14px;
    font-weight: 500;
    color: var(--lp-muted);
}

.lp-plan-billing-note {
    font-size: 13px;
    color: var(--lp-muted);
    margin: 0 0 16px;
    min-height: 20px;
}

.lp-plan ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex-grow: 1;
    font-size: 14px;
    color: #475569;
    text-align: left;
}

.lp-plan ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.lp-plan ul li::before {
    content: "✓ ";
    color: #198754;
    font-weight: 700;
}

.lp-pricing-footnote {
    text-align: center;
    font-size: 13px;
    color: var(--lp-muted);
    margin-top: 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
}

/* Colleges */
.lp-college-intro {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.lp-college-how {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 4px;
    margin-bottom: 20px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
}

.lp-college-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-dark);
}

.lp-college-step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--lp-blue);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

.lp-college-step-arrow {
    color: var(--lp-muted);
    font-size: 12px;
    opacity: 0.6;
}

.lp-college-search-wrap {
    position: relative;
    max-width: 100%;
    margin: 0 auto 8px;
}

.lp-college-search-wrap .bi-search {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lp-muted);
    font-size: 16px;
    pointer-events: none;
}

.lp-college-search {
    width: 100%;
    padding: 14px 14px 14px 44px;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    font-size: 16px;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-height: 52px;
    box-sizing: border-box;
}

.lp-college-search:focus {
    outline: none;
    border-color: var(--lp-blue);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.12);
}

.lp-college-count {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-muted);
    margin: 0 0 16px;
}

.lp-college-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 10px;
}

.lp-college-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 16px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, transform 0.15s, box-shadow 0.15s;
    min-height: 64px;
    -webkit-tap-highlight-color: transparent;
}

.lp-college-card:active {
    transform: scale(0.99);
    background: #f8fafc;
}

.lp-college-card:hover {
    border-color: var(--lp-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 50, 105, 0.1);
    color: inherit;
}

.lp-college-card-body {
    flex: 1;
    min-width: 0;
}

.lp-college-card strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.3;
}

.lp-college-city {
    display: block;
    font-size: 13px;
    color: var(--lp-muted);
}

.lp-college-slug {
    display: inline-block;
    font-size: 11px;
    color: var(--lp-blue);
    font-style: normal;
    margin-top: 4px;
    padding: 2px 8px;
    background: rgba(28, 50, 105, 0.08);
    border-radius: 6px;
    font-weight: 600;
}

.lp-college-arrow {
    flex-shrink: 0;
    font-size: 18px;
    color: var(--lp-blue);
    opacity: 0.7;
}

.lp-college-empty {
    text-align: center;
    color: var(--lp-muted);
    font-size: 14px;
    margin-top: 16px;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px dashed var(--lp-border);
}

/* Student CTA */
.lp-student-cta {
    background: linear-gradient(135deg, var(--lp-navy), var(--lp-blue));
    color: #fff;
    padding: 48px 0;
}

.lp-student-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.lp-student-cta h2 {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 8px;
}

.lp-student-cta p {
    margin: 0;
    opacity: 0.92;
    max-width: 540px;
    font-size: 15px;
    line-height: 1.55;
}

/* FAQ */
.lp-faq-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.lp-faq-item {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
}

.lp-faq-item[open] {
    border-color: var(--lp-blue);
    box-shadow: 0 4px 16px rgba(13, 110, 253, 0.08);
}

.lp-faq-item summary {
    font-weight: 700;
    padding: 16px 18px;
    cursor: pointer;
    font-size: 15px;
    list-style: none;
}

.lp-faq-item summary::-webkit-details-marker {
    display: none;
}

.lp-faq-item p {
    margin: 0;
    padding: 0 18px 16px;
    font-size: 14px;
    color: var(--lp-muted);
    line-height: 1.6;
}

.lp-faq-item a {
    color: var(--lp-blue);
    font-weight: 600;
}

/* Final CTA */
.lp-final-cta {
    background: var(--lp-dark);
    color: #fff;
    padding: 56px 0;
    text-align: center;
}

.lp-final-cta h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 10px;
}

.lp-final-cta p {
    margin: 0 0 28px;
    opacity: 0.85;
    font-size: 16px;
}

.lp-final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.lp-final-cta-actions .lp-btn {
    min-width: 140px;
}

.lp-final-cta .lp-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .lp-login-grid {
        grid-template-columns: 1fr;
    }

    .lp-home-block {
        padding: 40px 0;
    }

    .lp-hero {
        padding: 32px 0 48px;
    }

    .cs-hero,
    .cl-hero,
    .su-hero,
    .clp-hero {
        padding: 24px 0 24px;
    }

    .cl-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lp-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lp-hero-visual {
        order: -1;
        max-width: 100%;
        margin: 0 auto;
    }

    .lp-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-visual-frame {
        transform: none;
    }

    .lp-features {
        grid-template-columns: 1fr;
    }

    .lp-feature:nth-child(6) {
        grid-column: auto;
        display: block;
    }

    .lp-feature:nth-child(6) .lp-feature-icon {
        margin-bottom: 14px;
    }

    .lp-stats-strip {
        margin-top: 0;
    }

    .lp-home-hub {
        margin-top: 0;
        padding: 18px 0 20px;
    }

    .lp-home-hub-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lp-features-split {
        grid-template-columns: 1fr;
    }

    .lp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 16px 12px;
    }

    .lp-steps {
        flex-direction: column;
        align-items: stretch;
    }

    .lp-step {
        max-width: 100%;
    }

    .lp-step-arrow {
        display: none;
    }

    .lp-pricing {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .lp-plan-featured {
        transform: none;
    }

    .lp-float-badge {
        display: none;
    }

    .lp-student-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .lp-student-cta .lp-btn {
        width: 100%;
        max-width: 320px;
    }

    .lp-final-cta .lp-hero-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin: 0 auto;
    }

    .lp-final-cta-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin: 0 auto;
    }

    .lp-final-cta .lp-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    body.landing-page:has(.lp-mobile-bar) {
        padding-bottom: var(--lp-mobile-bar-h);
    }

    .lp-hero {
        padding: 28px 0 36px;
    }

    .lp-hero h1 {
        font-size: clamp(1.45rem, 5vw, 1.85rem);
        line-height: 1.2;
    }

    .lp-hero-lead {
        font-size: 15px;
    }

    /* Sub-page heroes — same rhythm on find / colleges / signup / portals / college profile */
    .cs-hero,
    .cl-hero,
    .su-hero,
    .clp-hero {
        padding: 20px 0 20px;
    }

    .cs-hero--compact {
        padding: 16px 0 16px;
    }

    .cs-back-link,
    .cl-back-link,
    .su-back-link,
    .clp-back-link {
        margin-bottom: 12px;
        font-size: 14px;
    }

    .cs-hero h1,
    .cl-hero h1,
    .su-hero h1,
    .clp-hero-text h1 {
        font-size: 1.25rem;
        line-height: 1.25;
        word-wrap: break-word;
        overflow-wrap: anywhere;
    }

    .cs-hero-lead,
    .cl-hero-lead,
    .su-hero-lead,
    .clp-hero-lead {
        font-size: 14px;
        line-height: 1.5;
    }

    .cs-flow-banner,
    .su-flow-banner,
    .clp-flow-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .cs-flow-arrow,
    .su-flow-arrow,
    .clp-flow-arrow {
        display: none;
    }

    .cs-flow-item,
    .su-flow-item,
    .clp-flow-item {
        width: 100%;
        box-sizing: border-box;
        justify-content: flex-start;
        border-radius: 10px;
    }

    /* Footer — all public portal pages */
    body.landing-page .site-footer-brand {
        padding-top: 20px !important;
        padding-bottom: 16px !important;
        margin-top: 0 !important;
    }

    body.landing-page .site-footer-brand > div {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    body.landing-page .footer-portal-links {
        gap: 6px 10px;
    }

    body.landing-page .footer-portal-links a {
        font-size: 12px;
    }

    .su-card,
    .portal-card {
        padding: 16px 14px;
        border-radius: 12px;
    }

    /* portals.php — single column cards on phones */
    body.portals-page .portals-grid,
    body.portals-page .portals-grid-primary,
    body.portals-page .portals-grid-secondary {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    body.portals-page .pt-main {
        padding: 20px 0 24px;
        scroll-margin-top: 72px;
    }

    body.portals-page .pt-section-label {
        font-size: 12px;
        margin-bottom: 10px;
    }

    body.portals-page .pt-section-label:not(:first-child) {
        margin-top: 24px;
    }

    body.portals-page .portal-card-link {
        text-align: center;
    }

    body.portals-page .portal-card-btn {
        width: 100%;
        max-width: none;
    }

    body.portals-page .portal-card p {
        font-size: 14px;
        line-height: 1.5;
    }

    body.portals-page .su-help {
        margin-top: 24px;
    }

    .lp-section {
        padding: 40px 0;
    }

    .lp-hero-visual {
        display: none;
    }

    .lp-path-cards {
        grid-template-columns: 1fr;
    }

    .lp-start-grid {
        grid-template-columns: 1fr;
    }

    .lp-start-actions .lp-btn {
        flex: 1 1 100%;
    }

    .lp-hero-student-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        min-height: 52px;
        margin-bottom: 16px;
        padding: 14px 20px;
        border-radius: 14px;
        background: var(--lp-green);
        color: #fff;
        font-size: 16px;
        font-weight: 800;
        text-decoration: none;
        box-shadow: 0 10px 28px rgba(58, 158, 74, 0.35);
        -webkit-tap-highlight-color: transparent;
    }

    .lp-hero-student-btn:active {
        transform: scale(0.98);
    }

    .lp-hero-links,
    .lp-hero-trust {
        display: none;
    }

    body.landing-page .site-brand-text p {
        display: none;
    }

    #colleges .lp-college-search-wrap {
        position: static;
        padding: 0;
        margin-bottom: 8px;
    }

    .lp-college-how {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .lp-college-step-arrow {
        display: none;
    }

    .lp-college-step {
        padding: 4px 0;
    }

    .lp-mobile-bar-item.is-active {
        color: var(--lp-blue);
        background: rgba(28, 50, 105, 0.08);
    }

    .lp-mobile-bar-item-student.is-active {
        color: var(--lp-green);
        background: var(--lp-green-light);
    }

    body.landing-page .site-header-landing {
        position: sticky;
        top: 0;
        z-index: 200;
    }

    body.landing-page .header-container-landing {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        gap: 8px;
        padding: 0 16px;
    }

    body.landing-page .site-brand {
        flex-direction: row;
        flex: 1;
        min-width: 0;
        gap: 10px;
    }

    body.landing-page .site-brand img {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }

    body.landing-page .site-brand-text h2 {
        font-size: 15px;
        line-height: 1.25;
    }

    .lp-nav-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border: none;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.18);
        color: #fff;
        font-size: 22px;
        cursor: pointer;
        flex-shrink: 0;
        -webkit-tap-highlight-color: transparent;
    }

    .lp-nav-toggle[aria-expanded="true"] {
        background: rgba(255, 255, 255, 0.28);
    }

    body.landing-page .portal-nav-landing {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 6px;
        padding: 12px 0 8px;
        order: 3;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        margin-top: 4px;
    }

    body.landing-page .portal-nav-landing.is-open {
        display: flex;
    }

    body.landing-page .portal-nav-landing a {
        width: 100%;
        text-align: left;
        padding: 12px 14px;
        min-height: 44px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        font-size: 15px;
        font-weight: 600;
        border-radius: 10px;
    }

    body.landing-page .portal-nav-landing a.nav-cta {
        justify-content: center;
        font-weight: 700;
    }

    body.landing-page .header-container-landing:has(.portal-nav-landing.is-open) {
        padding-bottom: 8px;
    }

    .lp-container {
        padding: 0 16px;
    }

    .lp-section {
        padding: 48px 0;
    }

    .lp-billing-toggle-wrap {
        width: 100%;
        max-width: 340px;
    }

    .lp-billing-label {
        flex: 1;
        padding: 12px 14px;
        font-size: 13px;
        min-height: 44px;
    }

    .lp-billing-save-hint {
        display: block;
        margin: 4px 0 0;
    }

    .lp-mobile-bar {
        display: flex;
    }
}

@media (max-width: 500px) {
    .lp-home-find {
        padding: 32px 0 40px;
    }

    .lp-home-title {
        font-size: 1.45rem;
    }

    .lp-btn-lg {
        width: 100%;
        justify-content: center;
    }

    .lp-hero {
        padding: 24px 0 32px;
    }

    .lp-hero h1 {
        font-size: 1.35rem;
    }

    .lp-hero-lead {
        font-size: 15px;
    }

    .lp-path-cards {
        grid-template-columns: 1fr;
    }

    .lp-home-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .lp-home-hub-item {
        min-height: 68px;
        font-size: 10px;
        padding: 8px 4px;
    }

    .lp-home-hub-item .bi {
        font-size: 18px;
    }

    .lp-path-card {
        padding: 18px 16px;
        min-height: 44px;
    }

    .lp-hero-trust {
        flex-direction: column;
        gap: 8px;
    }

    .lp-hero-links {
        flex-direction: column;
        gap: 10px;
    }

    .lp-hero-links a {
        min-height: 44px;
        align-items: center;
    }

    .lp-quick-grid {
        grid-template-columns: 1fr;
    }

    .lp-quick-card {
        min-height: 48px;
        padding: 14px 16px;
        justify-content: flex-start;
    }

    .lp-stat-value {
        font-size: 24px;
    }

    .lp-plan-price {
        font-size: 30px;
    }

    .lp-college-grid {
        grid-template-columns: 1fr;
    }

    .lp-faq-item summary {
        padding: 14px 16px;
        min-height: 44px;
        font-size: 14px;
    }
}

/* Desktop: hide hamburger. Mobile: show (rules inside @media max-width 768px above). */
@media (min-width: 769px) {
    .lp-nav-toggle {
        display: none !important;
    }
}

.lp-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: #fff;
    border-top: 1px solid var(--lp-border);
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.1);
    padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0px));
    justify-content: space-around;
    gap: 4px;
}

.lp-mobile-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 8px 4px;
    min-height: 52px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--lp-muted);
    font-size: 10px;
    font-weight: 600;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s, color 0.15s;
}

.lp-mobile-bar-item .bi {
    font-size: 20px;
}

.lp-mobile-bar-item:hover,
.lp-mobile-bar-item:focus {
    background: var(--lp-bg);
    color: var(--lp-blue);
}

.lp-mobile-bar-item-primary {
    color: var(--lp-yellow);
}

.lp-mobile-bar-item-student {
    color: var(--lp-green);
}

.lp-mobile-bar-item-student .bi {
    color: var(--lp-green);
}

.lp-mobile-bar-item-primary .bi {
    color: var(--lp-yellow);
}

.lp-mobile-bar-menu {
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
}

.lp-mobile-bar-menu.is-active {
    color: var(--lp-blue);
}

.lp-mobile-bar-menu.is-active .bi {
    color: var(--lp-blue);
}

.lp-page-wrap {
    background: var(--lp-bg, #f4f6fa);
}

body.portals-page .page-container,
body.signup-page .page-container {
    max-width: 720px;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

body.portals-page .portals-grid {
    margin-top: 8px;
}

.footer-portal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
    margin-top: 10px;
}

.footer-portal-links a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-size: 13px;
}

.footer-portal-links a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Touch-friendly targets globally on landing */
@media (hover: none) and (pointer: coarse) {
    .lp-btn {
        min-height: 48px;
        padding: 14px 22px;
    }

    .lp-path-card,
    .lp-quick-card,
    .lp-college-card {
        -webkit-tap-highlight-color: transparent;
    }
}

/* —— Portal sticky social (left) + WhatsApp support FAB (right) —— */
.portal-sticky-social {
    position: fixed;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 280;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.portal-sticky-social__btn {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.portal-sticky-social__btn:hover,
.portal-sticky-social__btn:focus {
    transform: translateY(-2px) scale(1.04);
    color: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
}

.portal-sticky-social__btn .bi {
    font-size: 18px;
}

.portal-sticky-social__fb { background: #1877f2; }
.portal-sticky-social__ig {
    background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af);
}
.portal-sticky-social__yt { background: #ff0000; }

.portal-whatsapp-fab {
    position: fixed;
    right: 16px;
    bottom: 22px;
    z-index: 290;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px 12px 14px;
    border-radius: 999px;
    background: #25d366;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.portal-whatsapp-fab:hover,
.portal-whatsapp-fab:focus {
    transform: translateY(-2px);
    color: #fff !important;
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5);
}

.portal-whatsapp-fab .bi {
    font-size: 22px;
    line-height: 1;
}

.portal-whatsapp-fab__text {
    letter-spacing: 0.01em;
}

.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.footer-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    color: #fff !important;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease;
}

.footer-social-links a:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-1px);
}

.footer-social-links .bi {
    font-size: 16px;
}

@media (max-width: 900px) {
    .portal-sticky-social {
        left: 8px;
    }

    .portal-sticky-social__btn {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 768px) {
    /* Keep WhatsApp above the fixed mobile bottom bar */
    body.landing-page:has(.lp-mobile-bar) .portal-whatsapp-fab {
        bottom: calc(var(--lp-mobile-bar-h) + 12px);
    }

    .portal-whatsapp-fab__text {
        display: none;
    }

    .portal-whatsapp-fab {
        width: 52px;
        height: 52px;
        padding: 0;
        justify-content: center;
        border-radius: 999px;
    }

    .portal-sticky-social {
        top: auto;
        bottom: calc(var(--lp-mobile-bar-h) + 72px);
        transform: none;
        left: 10px;
    }
}

@media (max-width: 480px) {
    .portal-sticky-social {
        gap: 6px;
    }

    .portal-sticky-social__btn {
        width: 36px;
        height: 36px;
    }

    .portal-sticky-social__btn .bi {
        font-size: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .portal-sticky-social__btn,
    .portal-whatsapp-fab,
    .footer-social-links a {
        transition: none;
    }
}
