/* Campus Oraa — Learners mockup (pixel-matched) */
:root {
    --navy: #1B2B5E;
    --navy-dark: #0F1F45;
    --blue-soft: #B8D4EA;
    --blue-mid: #8BB8D9;
    --blue-pale: #E4F0F8;
    --blue-cta: #A8CCE4;
    --gray-bg: #F0F3F7;
    --gray-panel: #E8EDF3;
    --text: #1A2744;
    --muted: #6B7A90;
    --white: #FFFFFF;
    --radius: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --shadow: 0 10px 40px rgba(27, 43, 94, 0.09);
    --shadow-sm: 0 4px 20px rgba(27, 43, 94, 0.07);
    --font: 'Poppins', sans-serif;
    --body: 'Inter', sans-serif;
    --max: 1180px;
}

html {
    scroll-behavior: smooth;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.lr-body {
    font-family: var(--body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.lr-container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* Buttons */
.lr-btn-navy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 26px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}
.lr-btn-navy:hover { background: var(--navy-dark); transform: translateY(-1px); }
.lr-btn-lg { padding: 13px 32px; font-size: 14px; }
.lr-btn-sm { padding: 8px 18px; font-size: 12px; }

/* ── Header ── */
.lr-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    padding: 18px 0;
    transition: background .3s, box-shadow .3s, padding .3s;
}
.lr-header--solid {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 24px rgba(27,43,94,.07);
    padding: 12px 0;
}
.lr-header-bar {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}
.lr-logo {
    font-family: var(--font);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    justify-self: start;
}
/* Desktop nav — static HTML (no React/Vite dependency) */
.lr-desktop-nav {
    display: none;
    justify-self: center;
    max-width: 100%;
}
@media (min-width: 900px) {
    .lr-desktop-nav { display: block; }
}
.lr-desktop-nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 4px 6px;
    background: #0D1B3E;
    border-radius: 100vw;
    box-shadow: 0 4px 20px rgba(13, 27, 62, 0.2);
}
.lr-nav-link {
    display: inline-block;
    padding: 0.5em 0.75em;
    border-radius: 100vw;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}
.lr-nav-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}
.lr-nav-link.is-active {
    background: #ffffff;
    color: #0D1B3E;
}

.lr-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
}
.lr-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--navy);
    cursor: pointer;
    padding: 6px;
    opacity: .75;
    transition: opacity .2s, transform .15s;
}
.lr-search-btn:hover { opacity: 1; transform: scale(1.05); }
.lr-btn-signin {
    display: inline-flex;
    padding: 9px 22px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font);
    transition: background .2s;
}
.lr-btn-signin:hover { background: var(--navy-dark); }
.lr-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
@media (min-width: 900px) { .lr-mobile-toggle { display: none; } }
.lr-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    transition: transform .25s, opacity .2s;
}
.lr-mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lr-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.lr-mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.lr-mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 20px 20px;
    background: var(--white);
    border-top: 1px solid #E5EAF0;
}
.lr-mobile-menu[hidden] { display: none; }
.lr-mobile-menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    padding: 8px 0;
    text-decoration: none;
}
.lr-mobile-menu a.is-active {
    color: #F26522;
    font-weight: 600;
}

/* ── HERO ── */
.lr-hero {
    background: linear-gradient(180deg, #A4C8E2 0%, #C8DFF0 38%, #EAF4FA 72%, #FFFFFF 100%);
    padding: 110px 0 0;
    overflow: hidden;
}
.lr-hero-text {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 36px;
}
.lr-hero-text h1 {
    font-family: var(--font);
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.18;
    margin-bottom: 14px;
    letter-spacing: -.02em;
}
.lr-hero-text p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 26px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.lr-hero-gallery {
    position: relative;
    height: 400px;
    max-width: 820px;
    margin: 0 auto;
    padding-bottom: 50px;
}
.lr-hero-frame {
    position: absolute;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
}
.lr-hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lr-hero-frame--main {
    width: 52%;
    height: 310px;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 3;
    border: 4px solid rgba(255,255,255,.5);
}
.lr-hero-frame--back-left {
    width: 30%;
    height: 210px;
    left: 2%;
    bottom: 70px;
    z-index: 1;
    opacity: .55;
    filter: brightness(.88) saturate(.9);
    transform: rotate(-2deg);
}
.lr-hero-frame--back-right {
    width: 30%;
    height: 210px;
    right: 2%;
    bottom: 70px;
    z-index: 1;
    opacity: .55;
    filter: brightness(.88) saturate(.9);
    transform: rotate(2deg);
}
@media (max-width: 640px) {
    .lr-hero-gallery { height: 300px; }
    .lr-hero-frame--main { width: 78%; height: 250px; }
    .lr-hero-frame--back-left, .lr-hero-frame--back-right { display: none; }
}

/* ── SECTIONS ── */
.lr-section { padding: 72px 0; }
#courses { scroll-margin-top: 88px; }
.lr-heading-center {
    font-family: var(--font);
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 44px;
}
.lr-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.lr-section-head h2 {
    font-family: var(--font);
    font-size: clamp(1.3rem, 2.8vw, 1.85rem);
    font-weight: 700;
    color: var(--navy);
}

/* ── LEARNING THAT WORKS ── */
.lr-learning-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
@media (max-width: 768px) { .lr-learning-grid { grid-template-columns: 1fr; } }
.lr-learning-left h2 {
    font-family: var(--font);
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
}
.lr-learning-left p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 22px;
}
.lr-social-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
}
.lr-avatars { display: flex; }
.lr-avatars img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -9px;
    object-fit: cover;
}
.lr-avatars img:first-child { margin-left: 0; }
.lr-social-proof span { font-size: 13px; color: var(--muted); }
.lr-social-proof strong { color: var(--navy); font-weight: 700; }

/* Learning visual — overlapping cards */
.lr-learning-visual {
    position: relative;
    min-height: 340px;
}
.lr-study-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 320px;
}
.lr-study-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lr-study-label {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(6px);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}
.lr-study-label strong { display: block; font-size: 13px; color: var(--navy); font-family: var(--font); }
.lr-study-label span { font-size: 11px; color: var(--muted); }
.lr-float-card {
    position: absolute;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: var(--shadow);
    max-width: 230px;
    z-index: 5;
}
.lr-float-card--1 { top: -10px; left: -20px; }
.lr-float-card--2 { top: 80px; right: -16px; }
@media (max-width: 768px) {
    .lr-float-card--1 { left: 0; top: -20px; }
    .lr-float-card--2 { right: 0; }
}
.lr-float-icon {
    width: 36px;
    height: 36px;
    background: var(--blue-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
}
.lr-float-card strong { font-size: 12px; color: var(--navy); display: block; font-family: var(--font); }
.lr-float-card p { font-size: 11px; color: var(--muted); margin-top: 2px; }
.lr-mentor-row { display: flex; margin-top: 5px; }
.lr-mentor-row img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -7px;
    object-fit: cover;
}
.lr-mentor-row img:first-child { margin-left: 0; }

/* ── COURSES ── */
.lr-courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
@media (max-width: 900px) { .lr-courses-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .lr-courses-grid { grid-template-columns: 1fr; } }
.lr-course-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #EEF1F5;
    transition: transform .2s, box-shadow .2s;
}
.lr-course-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.lr-course-img {
    position: relative;
    height: 170px;
    overflow: hidden;
}
.lr-course-img img { width: 100%; height: 100%; object-fit: cover; }
.lr-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,.92);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--muted);
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.lr-wishlist:hover { color: #EF4444; }
.lr-course-body { padding: 16px 18px 18px; }
.lr-course-body h3 {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.4;
}
.lr-course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 12px;
}
.lr-meta-rating { color: var(--navy) !important; font-weight: 600; display: inline-flex; align-items: center; gap: 3px; }
.lr-course-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 12px;
    border-top: 1px solid #EEF1F5;
}
.lr-price {
    font-family: var(--font);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
}
.lr-price--white { color: var(--white); }
.lr-view-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    opacity: .8;
}
.lr-view-link:hover { opacity: 1; text-decoration: underline; }

/* ── WHY CHOOSE ── */
.lr-why-wrap { padding: 32px 0 72px; }
.lr-why-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
    background: var(--gray-panel);
    border-radius: 30px;
    padding: 44px;
}
@media (max-width: 768px) {
    .lr-why-box { grid-template-columns: 1fr; padding: 28px 20px; }
}
.lr-why-collage {
    position: relative;
    height: 340px;
}
.lr-collage-img {
    position: absolute;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}
.lr-collage-img--1 { width: 54%; height: 190px; top: 0; left: 0; z-index: 3; }
.lr-collage-img--2 { width: 48%; height: 170px; top: 90px; right: 0; z-index: 2; }
.lr-collage-img--3 { width: 58%; height: 150px; bottom: 0; left: 12%; z-index: 1; }
.lr-why-text h2 {
    font-family: var(--font);
    font-size: clamp(1.3rem, 2.8vw, 1.8rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}
.lr-why-text > p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 22px;
}
.lr-why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}
.lr-why-list li { display: flex; align-items: flex-start; gap: 12px; }
.lr-why-ico {
    width: 40px;
    height: 40px;
    background: var(--blue-pale);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
}
.lr-why-list strong { display: block; font-size: 13px; color: var(--navy); font-family: var(--font); }
.lr-why-list span { font-size: 12px; color: var(--muted); }

/* ── POPULAR COURSE ── */
.lr-popular-layout {
    display: grid;
    grid-template-columns: 1fr 1.35fr 1fr;
    gap: 18px;
    align-items: stretch;
}
@media (max-width: 900px) { .lr-popular-layout { grid-template-columns: 1fr; } }
.lr-pop-tall {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    min-height: 360px;
}
.lr-pop-tall img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.lr-pop-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(15,31,69,.78) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    color: var(--white);
}
.lr-pop-overlay--sm {
    background: linear-gradient(180deg, transparent 25%, rgba(15,31,69,.82) 100%);
}
.lr-pop-overlay h3 {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}
.lr-pop-mid { display: flex; flex-direction: column; gap: 18px; }
.lr-pop-wide {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.lr-pop-wide--text {
    background: var(--white);
    border: 1px solid #EEF1F5;
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.lr-pop-wide--text h3 {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}
.lr-pop-wide--text p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 14px;
    flex: 1;
}
.lr-pop-wide-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.lr-pop-mentors {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid #EEF1F5;
}
.lr-pop-mentors img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}
.lr-pop-mentors span { font-size: 11px; color: var(--muted); font-weight: 500; }
.lr-pop-wide--photo { position: relative; min-height: 160px; }
.lr-pop-wide--photo img { width: 100%; height: 100%; object-fit: cover; min-height: 160px; }

/* ── TESTIMONIALS (scattered cloud) ── */
.lr-reviews { background: var(--white); }
.lr-reviews-cloud {
    position: relative;
    min-height: 520px;
    max-width: 1000px;
    margin: 0 auto;
}
.lr-review-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #EEF1F5;
    width: 280px;
}
.lr-review-card--1 { top: 0; left: 2%; transform: rotate(-1.5deg); }
.lr-review-card--2 { top: 20px; left: 34%; transform: rotate(1deg); }
.lr-review-card--3 { top: 0; right: 2%; transform: rotate(-.5deg); }
.lr-review-card--4 { top: 200px; left: 8%; transform: rotate(1.2deg); }
.lr-review-card--5 { top: 210px; left: 38%; transform: rotate(-1deg); }
.lr-review-card--6 { top: 195px; right: 4%; transform: rotate(.8deg); }
@media (max-width: 900px) {
    .lr-reviews-cloud {
        position: static;
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .lr-review-card {
        position: static;
        width: auto;
        transform: none !important;
    }
}
@media (max-width: 520px) {
    .lr-reviews-cloud { grid-template-columns: 1fr; }
}
.lr-review-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.lr-review-head img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.lr-review-head strong { display: block; font-size: 13px; color: var(--navy); }
.lr-review-head span { font-size: 11px; color: var(--muted); }
.lr-review-stars { display: flex; gap: 2px; margin-bottom: 8px; }
.lr-review-card p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.65;
    font-style: italic;
}

/* ── BLOG ── */
.lr-blog-wrap { padding: 32px 0 72px; }
.lr-blog-panel {
    background: var(--gray-panel);
    border-radius: 30px;
    padding: 44px;
}
@media (max-width: 768px) { .lr-blog-panel { padding: 28px 20px; } }
.lr-blog-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 28px;
    margin-top: 36px;
}
@media (max-width: 768px) { .lr-blog-layout { grid-template-columns: 1fr; } }
.lr-blog-main {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.lr-blog-main > img { width: 100%; height: 220px; object-fit: cover; }
.lr-blog-main-body { padding: 22px; }
.lr-blog-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--navy);
    background: var(--blue-pale);
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
}
.lr-blog-main-body h3 {
    font-family: var(--font);
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.35;
}
.lr-blog-main-body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 14px;
}
.lr-blog-side { display: flex; flex-direction: column; gap: 14px; }
.lr-blog-row {
    display: flex;
    gap: 14px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px;
    box-shadow: 0 2px 12px rgba(27,43,94,.04);
}
.lr-blog-row img {
    width: 76px;
    height: 76px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}
.lr-blog-row h4 {
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin: 4px 0 6px;
    line-height: 1.35;
}
.lr-blog-row a {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    opacity: .75;
}
.lr-blog-row a:hover { opacity: 1; }

/* ── CTA BANNER ── */
.lr-cta-wrap { padding: 0 0 72px; }
.lr-cta-box {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    background: var(--blue-cta);
    border-radius: 28px;
    overflow: visible;
    position: relative;
    min-height: 260px;
    align-items: center;
}
@media (max-width: 768px) {
    .lr-cta-box { grid-template-columns: 1fr; overflow: hidden; }
}
.lr-cta-copy { padding: 44px; }
@media (max-width: 768px) { .lr-cta-copy { padding: 28px 22px; } }
.lr-cta-copy h2 {
    font-family: var(--font);
    font-size: clamp(1.2rem, 2.8vw, 1.7rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.lr-cta-copy p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 380px;
}
.lr-cta-photo {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    padding-right: 20px;
}
.lr-cta-photo img {
    width: 260px;
    height: auto;
    object-fit: contain;
    margin-top: -70px;
    margin-bottom: -10px;
    border-radius: var(--radius);
    filter: drop-shadow(0 12px 24px rgba(27,43,94,.15));
}
@media (max-width: 768px) {
    .lr-cta-photo img { margin-top: 0; width: 200px; }
}

/* ── FOOTER ── */
.lr-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,.72);
    padding: 56px 0 0;
}
.lr-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.4fr;
    gap: 28px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 900px) { .lr-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .lr-footer-grid { grid-template-columns: 1fr; } }
.lr-footer-logo {
    font-family: var(--font);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 12px;
}
.lr-footer-brand p {
    font-size: 12px;
    line-height: 1.75;
    margin-bottom: 18px;
}
.lr-social { display: flex; gap: 8px; }
.lr-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background .2s;
}
.lr-social a:hover { background: rgba(255,255,255,.2); }
.lr-footer-col h4 {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
}
.lr-footer-col ul { list-style: none; }
.lr-footer-col li {
    font-size: 12px;
    margin-bottom: 9px;
    line-height: 1.5;
}
.lr-footer-col a { color: rgba(255,255,255,.65); transition: color .2s; }
.lr-footer-col a:hover { color: var(--white); }
.lr-footer-newsletter p {
    font-size: 12px;
    margin-bottom: 12px;
    line-height: 1.6;
}
.lr-newsletter-form { display: flex; gap: 6px; flex-wrap: wrap; }
.lr-newsletter-form input {
    flex: 1;
    min-width: 140px;
    padding: 9px 14px;
    border: none;
    border-radius: 50px;
    font-size: 12px;
    font-family: var(--body);
    background: rgba(255,255,255,.1);
    color: var(--white);
    outline: none;
}
.lr-newsletter-form input::placeholder { color: rgba(255,255,255,.45); }
.lr-newsletter-form .lr-btn-navy {
    background: var(--white);
    color: var(--navy);
    padding: 9px 18px;
}
.lr-newsletter-form .lr-btn-navy:hover { background: var(--blue-pale); }

.lr-newsletter-msg {
    font-size: 12px;
    margin: 0 0 10px;
    padding: 8px 10px;
    border-radius: 8px;
    line-height: 1.45;
}

.lr-newsletter-msg--success {
    background: rgba(34, 197, 94, 0.15);
    color: #bbf7d0;
}

.lr-newsletter-msg--error {
    background: rgba(239, 68, 68, 0.15);
    color: #fecaca;
}

.lr-footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 12px;
    color: rgba(255,255,255,.45);
}

/* Site search modal */
body.lr-search-open {
    overflow: hidden;
}

.lr-search-modal {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 6rem 1rem 1.5rem;
}

.lr-search-modal[hidden] {
    display: none;
}

.lr-search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 31, 69, 0.55);
    backdrop-filter: blur(4px);
}

.lr-search-dialog {
    position: relative;
    width: 100%;
    max-width: 560px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(27, 43, 94, 0.22);
    padding: 1.25rem 1.25rem 1rem;
    z-index: 1;
}

.lr-search-dialog-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(27, 43, 94, 0.12);
    border-radius: 14px;
    padding: 0.65rem 0.85rem;
    margin-bottom: 0.85rem;
}

.lr-search-dialog-head svg {
    color: var(--navy);
    flex-shrink: 0;
    opacity: 0.7;
}

.lr-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--body);
    font-size: 1rem;
    color: var(--text);
    background: transparent;
}

.lr-search-input::placeholder {
    color: var(--muted);
}

.lr-search-close {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #E4F0F8;
    color: var(--navy);
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
}

.lr-search-close:hover {
    background: #d4e6f4;
}

.lr-search-hint {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0 0 0.75rem 0.35rem;
}

.lr-search-results {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 320px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.lr-search-result {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background .15s, border-color .15s;
}

.lr-search-result strong {
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--navy);
}

.lr-search-result span {
    font-size: 0.82rem;
    color: var(--muted);
}

.lr-search-result:hover,
.lr-search-result.is-active {
    background: #E4F0F8;
    border-color: rgba(27, 43, 94, 0.1);
}

.lr-search-empty {
    font-size: 0.9rem;
    color: var(--muted);
    text-align: center;
    padding: 1.5rem 0.5rem;
    margin: 0;
}

/* Enrollment modal */
body.lr-enroll-open {
    overflow: hidden;
}

.lr-enroll-modal {
    position: fixed;
    inset: 0;
    z-index: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.lr-enroll-modal[hidden] {
    display: none;
}

.lr-enroll-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 31, 69, 0.6);
    backdrop-filter: blur(4px);
}

.lr-enroll-dialog {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(27, 43, 94, 0.25);
    padding: 2rem 1.75rem 1.75rem;
    z-index: 1;
}

.lr-enroll-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #E4F0F8;
    color: var(--navy);
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.lr-enroll-close:hover {
    background: #d4e6f3;
}

.lr-enroll-dialog h2 {
    font-family: var(--heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.35rem;
}

.lr-enroll-sub {
    font-size: 0.92rem;
    color: var(--muted);
    margin: 0 0 1.25rem;
    line-height: 1.5;
}

.lr-enroll-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 599px) {
    .lr-enroll-grid {
        grid-template-columns: 1fr;
    }
}

.lr-enroll-field {
    margin-bottom: 1rem;
}

.lr-enroll-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.lr-enroll-field input,
.lr-enroll-field select,
.lr-enroll-field textarea {
    width: 100%;
    border: 1px solid rgba(27, 43, 94, 0.15);
    border-radius: 12px;
    padding: 0.65rem 0.85rem;
    font-family: var(--body);
    font-size: 0.95rem;
    color: var(--text);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lr-enroll-field input:focus,
.lr-enroll-field select:focus,
.lr-enroll-field textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27, 43, 94, 0.1);
}

.lr-enroll-field input.is-error,
.lr-enroll-field select.is-error {
    border-color: #e53e3e;
}

.lr-enroll-error {
    display: block;
    font-size: 0.78rem;
    color: #e53e3e;
    margin-top: 0.25rem;
}

.lr-enroll-submit {
    width: 100%;
    margin-top: 0.25rem;
    border: none;
    cursor: pointer;
}

.lr-enroll-success {
    text-align: center;
    padding: 1rem 0.5rem;
}

.lr-enroll-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #E8F8EF;
    color: #22a06b;
    margin-bottom: 1rem;
}

.lr-enroll-success p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.lr-enroll-success .lr-btn-navy {
    border: none;
    cursor: pointer;
}

