:root {
    --primary: #0f5fd7;
    --primary-light: #2f7cf6;
    --primary-dark: #0a3d91;
    --accent: #f2c230;
    --accent-light: #ffe07a;
    --white: #ffffff;
    --bg: #f8fafc;
    --surface: #ffffff;
    --surface-2: #f1f5f9;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e2e8f0;
    --shadow-sm: 0 8px 25px rgba(15, 23, 42, .06);
    --shadow: 0 18px 45px rgba(15, 23, 42, .08);
    --shadow-lg: 0 30px 70px rgba(15, 23, 42, .12);
    --radius: 18px;
    --radius-lg: 28px;
    --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(180deg,
            #ffffff,
            #f8fafc);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.container {
    width: min(1200px, 92%);
    margin-inline: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 14px;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg,
            var(--primary),
            var(--primary-light));
    color: white;
    border: none;
    box-shadow: 0 15px 35px rgba(15, 95, 215, .25);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(15, 95, 215, .35);
}

.btn-outline {
    background: rgba(255, 255, 255, .85);
    color: var(--text);
    border: 1px solid rgba(15, 95, 215, .15);
    backdrop-filter: blur(12px);
}

.btn-outline:hover {
    background: white;
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.hero h1,
.section-header h2,
.offer-card h3,
.logo h3 {
    font-family: "Alice", serif;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header span {
    display: inline-block;
    color: var(--primary);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.3rem);
    line-height: 1.2;
    color: var(--text);
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1250px, 95%);
    height: 78px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, .08);
    transition: all .35s ease;
    z-index: 1000;
}

.navbar:hover {
    box-shadow: 0 22px 55px rgba(15, 23, 42, .12);
}

.navbar .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 9px;
}

.logo-mark img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgb(0, 0, 0);
    transition: var(--transition);
}

.logo:hover .logo-mark img {
    transform: rotate(6deg) scale(1.06);
    box-shadow: 0 12px 30px rgba(15, 95, 215, .25);
}

.logo h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
}

.logo:hover h3 {
    color: var(--primary);
}

.nav-panel {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    padding-left: 20px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    position: relative;
    color: var(--text);
    font-weight: 600;
    font-size: .8rem;
    transition: var(--transition);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    border-radius: 50px;
    background: linear-gradient(90deg,
            var(--primary),
            var(--accent));
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-buttons .btn {
    padding: 8px 15px;
    font-size: .9rem;
    margin-right: 10px;
}

.nav-buttons .btn-outline {
    background: transparent;
}

.nav-buttons .btn-outline:hover {
    background: white;
}

.navbar.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 20px 50px rgba(15, 23, 42, .10);
}

.nav-search {
    font-size: 0.8rem;
}

@media (max-width:950px) {
    .navbar {
        width: 95%;
        height: 72px;
    }

    .nav-links,
    .nav-buttons {
        display: none;
    }

    .logo h3 {
        font-size: 1.15rem;
    }

    .logo-mark img {
        width: 46px;
        height: 46px;
    }
}

.hero {
    margin-top: -80px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 0 100px;
    text-align: center;
    background: radial-gradient(circle at top left,
            rgba(47, 124, 246, .10),
            transparent 35%),

        radial-gradient(circle at bottom right,
            rgba(242, 194, 48, .08),
            transparent 30%),

        linear-gradient(180deg,
            #ffffff,
            #f8fafc);
}

#dots-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .45;
    z-index: 0;
}

.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(rgba(47, 124, 246, .18),
            transparent 70%);
    top: -180px;
    right: -120px;
    filter: blur(30px);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(rgba(242, 194, 48, .10),
            transparent 70%);
    bottom: -180px;
    left: -100px;
    filter: blur(30px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: heroReveal .9s ease forwards;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    margin-bottom: 28px;
    border-radius: 999px;
    background: rgba(15, 95, 215, .08);
    border: 1px solid rgba(15, 95, 215, .15);
    color: var(--primary);
    font-size: .9rem;
    font-weight: 650;
    letter-spacing: .5px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 4.2rem;
    line-height: 1.08;
    color: var(--text);
    max-width: 500px;
    margin: 0 auto 28px;
}

.hero h1 span {
    background: linear-gradient(135deg,
            var(--primary),
            var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hero p {
    max-width: 720px;
    margin: 0 auto 42px;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.9;
}

.hero p .h_links {
    text-decoration: underline;
    display: inline-block;
    white-space: nowrap; 
    margin-right: 15px;
    margin-bottom: 5px;
}


/* Buttons */

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    width: 170px;
    font-size: .78rem;
    margin-bottom: -100px;
}

/* Hover */

.hero-buttons .btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
}

.hero-buttons .btn-outline:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Responsive */

@media (max-width:768px) {
    .hero {
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
}

/* =====================================================
   OFFERS SECTION
===================================================== */

.offers-section {
    position: relative;
    padding: 50px 0;
    margin: 40px 15px;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(180deg,
            #ffffff,
            #f8fafc);
    border: 1px solid rgba(15, 95, 215, .08);
}

/* Decorative Background */

.offers-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(rgba(15, 95, 215, .08),
            transparent 70%);
    top: -180px;
    left: -180px;
    pointer-events: none;
}

.offers-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(rgba(242, 194, 48, .08),
            transparent 70%);
    bottom: -120px;
    right: -120px;
    pointer-events: none;
}

/* ======================
      GRID
====================== */

.offer-grid {
    position: relative;
    z-index: 2;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* ======================
      CARD
====================== */

.offer-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, .95),
            rgba(248, 250, 252, .95));
    border: 1px solid rgba(15, 95, 215, .08);
    border-radius: 24px;
    padding: 40px 15px;
    text-align: center;
    transition: all .35s ease;
    box-shadow: var(--shadow-sm);
}

/* top gradient line */

.offer-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,
            var(--primary),
            var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: .4s;
}

/* glow */

.offer-card::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(rgba(47, 124, 246, .10),
            transparent 70%);
    top: -140px;
    right: -120px;
    opacity: 0;
    transition: .4s;
}

.offer-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(15, 95, 215, .18);
}

.offer-card:hover::before {
    transform: scaleX(1);
}

.offer-card:hover::after {
    opacity: 1;
}

.offer-card img {
    display: block;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

/* ======================
      ICON
====================== */

.offer-card i {
    width: 82px;
    height: 82px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    color: white;
    background: linear-gradient(135deg,
            var(--primary),
            var(--primary-light));
    box-shadow: 0 15px 35px rgba(15, 95, 215, .30);
    transition: .35s;
}

.offer-card:hover i {
    transform: rotate(-10deg) scale(1.1);
}

/* ======================
      TITLE
====================== */

.offer-card h3 {
    font-size: 1.45rem;
    margin-bottom: 16px;
    color: var(--text);
}

/* ======================
      DESCRIPTION
====================== */

.offer-card p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

/* ======================
      BUTTON
====================== */

.center {
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.center .btn {
    min-width: 240px;
}

.btn p {
    margin-left: 10px;
}

/* ======================
      RESPONSIVE
====================== */

@media (max-width:768px) {
    .offers-section {
        padding: 80px 0;
        margin: 20px 10px;
        border-radius: 24px;
    }

    .offer-grid {
        gap: 22px;
    }

    .offer-card {
        padding: 35px 25px;
    }

    .offer-card i {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }

    .offer-card h3 {
        font-size: 1.25rem;
    }
}

/* =====================================================
   BNA STATS
===================================================== */

.bna-stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
    padding: 100px 6%;
    margin: 40px 15px;
    overflow: hidden;
    border-radius: 32px;
    background: linear-gradient(135deg,
            var(--primary),
            var(--primary-dark));
    box-shadow: 0 30px 80px rgba(15, 95, 215, .25);
}

/* Decorative Glow */

.bna-stats::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(rgba(255, 255, 255, .12),
            transparent 70%);
    top: -220px;
    left: -220px;
    pointer-events: none;
}

.bna-stats::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(rgba(255, 255, 255, .08),
            transparent 70%);
    bottom: -150px;
    right: -120px;
    pointer-events: none;
}

/* ==========================
      STAT CARD
========================== */

.stat-box {
    position: relative;
    z-index: 2;
    overflow: hidden;
    text-align: center;
    padding: 45px 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .18);
    transition: all .35s ease;
}

/* hover */

.stat-box:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, .18);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .18);
}

/* animated top border */

.stat-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            white,
            var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: .4s;
}

.stat-box:hover::before {
    transform: scaleX(1);
}

/* ==========================
      NUMBER
========================== */

.stat-box h2 {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 12px;
    color: white;
    font-size: 3.3rem;
    font-weight: 800;
    line-height: 1;
}

.counter {
    color: white;
    font-size: inherit;
    font-weight: inherit;
}

/* ==========================
      TEXT
========================== */

.stat-box p {
    color: rgba(255, 255, 255, .85);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: .3px;
}

/* ==========================
      RESPONSIVE
========================== */

@media (max-width:768px) {
    .bna-stats {
        padding: 70px 25px;
        margin: 20px 10px;
        border-radius: 24px;
        gap: 20px;
    }

    .stat-box {
        padding: 35px 20px;
    }

    .stat-box h2 {
        font-size: 2.6rem;
    }

    .stat-box p {
        font-size: .95rem;
    }
}

/* =====================================================
   FOUNDER / DIRECTOR
===================================================== */

.founder-section {
    position: relative;
    padding: 0 0 70px;
    overflow: hidden;
    background: radial-gradient(circle at 12% 18%, rgba(242, 194, 48, .12), transparent 26%),
        radial-gradient(circle at 92% 78%, rgba(15, 95, 215, .09), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.founder-section::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: 44px;
    right: 7%;
    opacity: .28;
    background-image: radial-gradient(circle, rgba(15, 95, 215, .35) 1.5px, transparent 1.5px);
    background-size: 17px 17px;
    pointer-events: none;
}

.founder-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(290px, .82fr) minmax(0, 1.18fr);
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(15, 95, 215, .12);
    border-radius: 34px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 30px 80px rgba(15, 61, 145, .11);
}

.founder-visual {
    position: relative;
    min-height: 500px;
    padding: 34px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(15, 95, 215, .98), rgba(10, 61, 145, .98));
}

.founder-visual::before,
.founder-visual::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.founder-visual::before {
    width: 290px;
    height: 290px;
    top: -120px;
    left: -100px;
    background: rgba(255, 255, 255, .08);
}

.founder-visual::after {
    width: 210px;
    height: 210px;
    right: -74px;
    bottom: -66px;
    background: rgba(242, 194, 48, .18);
}

.founder-photo {
    border-radius: 10%;
}

.founder-visual-mark {
    position: absolute;
    z-index: 3;
    right: 24px;
    bottom: 22px;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--accent);
    color: #17315f;
    box-shadow: 0 14px 32px rgba(5, 38, 92, .22);
    transform: rotate(5deg);
    font-size: 1.35rem;
}

.founder-content {
    padding: clamp(44px, 6vw, 76px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-kicker {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: rgba(15, 95, 215, .08);
    color: var(--primary);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .11em;
}

.founder-content h2 {
    max-width: 650px;
    font-family: "Alice", serif;
    font-size: clamp(2.25rem, 4.3vw, 4.15rem);
    line-height: 1.02;
    letter-spacing: -.025em;
    color: var(--text);
}

.founder-content h2 span {
    color: var(--primary);
}

.founder-lead {
    max-width: 650px;
    margin-top: 25px;
    color: #475569;
    font-size: 1.03rem;
    line-height: 1.85;
}

.founder-identity {
    max-width: 650px;
    margin-top: 32px;
    padding-top: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(15, 95, 215, .12);
}

.founder-identity h3 {
    font-family: "Alice", serif;
    font-size: 1.55rem;
    color: var(--text);
}

.founder-identity p {
    margin-top: 3px;
    color: var(--primary-dark);
    font-size: .84rem;
    font-weight: 600;
}

.founder-identity .founder-location {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 8px;
    color: #64748b;
    font-size: .78rem;
    font-weight: 700;
}

.founder-location i {
    color: #c79212;
    font-size: .76rem;
}

.founder-signature-icon {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: #fff8d8;
    color: #b48200;
    font-size: 1.15rem;
}

.founder-description {
    max-width: 650px;
    margin-top: 16px;
    color: var(--muted);
    line-height: 1.75;
    font-size: .9rem;
}

/* =====================================================
   STUDENT REVIEWS
===================================================== */

.student-reviews-section {
    position: relative;
    padding: 96px 0 110px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.student-reviews-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -230px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 194, 48, .13), transparent 68%);
    pointer-events: none;
}

.student-reviews-section .section-header {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto 52px;
}

.reviews-subtitle {
    max-width: 680px;
    margin: 14px auto 0;
    color: var(--muted);
    line-height: 1.75;
}

.student-reviews-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.student-review-card {
    position: relative;
    min-height: 330px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(15, 95, 215, .11);
    border-radius: 26px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 16px 45px rgba(15, 61, 145, .07);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.student-review-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.student-review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(15, 95, 215, .2);
    box-shadow: 0 28px 60px rgba(15, 61, 145, .12);
}

.student-review-card.featured-review {
    transform: translateY(-12px);
    border-color: rgba(15, 95, 215, .2);
    background: radial-gradient(circle at 100% 0%, rgba(242, 194, 48, .11), transparent 31%),
        #ffffff;
    box-shadow: 0 24px 60px rgba(15, 61, 145, .11);
}

.student-review-card.featured-review:hover {
    transform: translateY(-18px);
}

.review-quote {
    position: absolute;
    top: 24px;
    right: 26px;
    color: rgba(15, 95, 215, .09);
    font-size: 3rem;
    line-height: 1;
}

.student-review-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding-right: 40px;
}

.student-photo-placeholder {
    flex: 0 0 auto;
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 21px;
    border: 1px solid rgba(15, 95, 215, .12);
    background: linear-gradient(145deg, #eef6ff, #ffffff 70%);
    color: var(--primary);
    box-shadow: inset 0 0 0 6px rgba(15, 95, 215, .035);
    font-size: 1.4rem;
}

.student-review-top h3 {
    font-family: "Alice", serif;
    font-size: 1.18rem;
    line-height: 1.2;
    color: var(--text);
}

.student-review-top span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: .78rem;
}

.student-review-card blockquote {
    position: relative;
    z-index: 1;
    margin: 28px 0 24px;
    color: #475569;
    font-family: "Alice", serif;
    font-size: 1.04rem;
    line-height: 1.72;
}

.review-footer {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(15, 95, 215, .09);
    color: var(--muted);
}

.review-footer span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .72rem;
    font-weight: 600;
}

.review-footer span i {
    color: var(--primary);
}

.review-footer > i {
    color: var(--accent);
}

.reviews-note {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 38px auto 0;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 1px solid rgba(15, 95, 215, .09);
    border-radius: 16px;
    background: #f8fbff;
    color: #64748b;
    text-align: center;
    font-size: .78rem;
}

.reviews-note i {
    color: var(--primary);
}

@media (max-width: 980px) {
    .founder-panel {
        grid-template-columns: .9fr 1.1fr;
    }

    .founder-visual {
        min-height: 460px;
        padding: 26px;
    }

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

    .student-review-card.featured-review {
        transform: none;
    }

    .student-review-card.featured-review:hover {
        transform: translateY(-8px);
    }

    .student-review-card:last-child {
        grid-column: 1 / -1;
        max-width: 560px;
        width: 100%;
        justify-self: center;
    }
}

@media (max-width: 760px) {
    .founder-section {
        padding: 78px 0 64px;
    }

    .founder-panel {
        grid-template-columns: 1fr;
        border-radius: 26px;
    }

    .founder-visual {
        min-height: auto;
        padding: 28px;
    }

    .founder-photo-placeholder {
        width: min(100%, 300px);
        aspect-ratio: 4 / 4.7;
    }

    .founder-content {
        padding: 38px 28px 42px;
    }

    .founder-content h2 {
        font-size: clamp(2.25rem, 10vw, 3.15rem);
    }

    .student-reviews-section {
        padding: 74px 0 82px;
    }

    .student-reviews-grid {
        grid-template-columns: 1fr;
    }

    .student-review-card,
    .student-review-card:last-child {
        min-height: auto;
        max-width: none;
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .founder-content {
        padding: 34px 22px 38px;
    }

    .founder-identity {
        align-items: flex-start;
    }

    .founder-signature-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .student-review-card {
        padding: 25px 22px;
        border-radius: 22px;
    }

    .student-photo-placeholder {
        width: 58px;
        height: 58px;
        border-radius: 18px;
    }

    .review-quote {
        right: 20px;
        top: 21px;
        font-size: 2.5rem;
    }

    .reviews-note {
        align-items: flex-start;
        text-align: left;
    }
}

/* =====================================================
   YOUTUBE CTA
===================================================== */

.youtube-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg,
            var(--primary),
            var(--primary-dark));
}

.youtube-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(rgba(255, 255, 255, .12),
            transparent 70%);
    top: -220px;
    right: -160px;
}

.youtube-section::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(rgba(242, 194, 48, .20),
            transparent 70%);
    bottom: -160px;
    left: -140px;
}

.youtube-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
}

.youtube-content {
    color: white;
}

.youtube-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .18);
    margin-bottom: 28px;
    font-weight: 600;
}

.youtube-badge i {
    color: #ff0000;
    font-size: 1.2rem;
}

.youtube-content h2 {
    font-family: "Alice", serif;
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 1.15;
    margin-bottom: 24px;
}

.youtube-content h2 span {
    color: var(--accent-light);
}

.youtube-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .85);
    line-height: 1.9;
    max-width: 620px;
}

.youtube-features {
    list-style: none;
    margin: 35px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 18px;
}

.youtube-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 500;
}

.youtube-features i {
    color: var(--accent);
}

.youtube-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.youtube-buttons .btn-primary {
    background: #ff0000;
    box-shadow: 0 15px 35px rgba(255, 0, 0, .30);
}

.youtube-buttons .btn-primary:hover {
    background: #e60000;
}

.youtube-buttons .btn-outline {
    border: 1px solid rgba(255, 255, 255, .25);
    color: white;
    background: rgba(255, 255, 255, .08);
}

.youtube-buttons .btn-outline:hover {
    background: white;
    color: var(--primary);
}

.youtube-video {
    display: flex;
    justify-content: center;
}

.video-card {
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    border-radius: 26px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .18);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-10px);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.video-card:hover img {
    transform: scale(1.06);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 82px;
    height: 82px;
    border: none;
    border-radius: 50%;
    background: #ff0000;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 20px 45px rgba(255, 0, 0, .35);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.12);
}

.video-info {
    padding: 30px;
}

.video-info span {
    color: var(--accent-light);
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-info h3 {
    margin: 12px 0 14px;
    color: white;
    font-family: "Alice", serif;
    font-size: 1.8rem;
}

.video-info p {
    color: rgba(255, 255, 255, .80);
    line-height: 1.8;
}

@media (max-width:992px) {
    .youtube-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .youtube-content {
        text-align: center;
    }

    .youtube-content p {
        margin: auto;
    }

    .youtube-features {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .youtube-buttons {
        justify-content: center;
    }
}

@media (max-width:768px) {
    .youtube-section {
        padding: 90px 0;
    }

    .video-info {
        padding: 24px;
    }
}

/* Shared footer styles live in styles/professional.css. */

/* =====================================================
   SCROLL REVEAL ANIMATIONS
===================================================== */

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity .8s ease,
        transform .8s cubic-bezier(.22, 1, .36, 1);
    will-change: opacity,
        transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================
      DELAY CLASSES
========================== */

.delay-1 {
    transition-delay: .1s;
}

.delay-2 {
    transition-delay: .2s;
}

.delay-3 {
    transition-delay: .3s;
}

.delay-4 {
    transition-delay: .4s;
}

.delay-5 {
    transition-delay: .5s;
}

.delay-6 {
    transition-delay: .6s;
}

.delay-7 {
    transition-delay: .7s;
}

.delay-8 {
    transition-delay: .8s;
}

.delay-9 {
    transition-delay: .9s;
}

.delay-10 {
    transition-delay: 1s;
}

/* BNA Hall of Fame / Wall of Honour ----------------------------------- */
.achievements-section {
    position: relative;
    padding: clamp(5rem, 9vw, 8rem) 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% -12%, rgba(242, 194, 48, .13), transparent 34%),
        radial-gradient(circle at 4% 80%, rgba(15, 95, 215, .07), transparent 28%),
        linear-gradient(180deg, #f7faff 0%, #ffffff 58%, #fbfcfe 100%);
}
.achievements-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .42;
    background-image:
        linear-gradient(rgba(10, 61, 145, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 61, 145, .035) 1px, transparent 1px);
    background-size: 56px 56px;
}
.achievements-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -210px;
    top: 6%;
    border: 1px solid rgba(242, 194, 48, .22);
    border-radius: 50%;
    box-shadow: 0 0 0 45px rgba(242, 194, 48, .025), 0 0 0 90px rgba(15, 95, 215, .018);
    pointer-events: none;
}
.achievements-heading { position: relative; z-index: 1; }
.achievements-heading h2 span { color: #b88700; }
.achievements-heading p { max-width: 760px; margin: 1rem auto 0; color: var(--muted); }
.achievement-wall {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(15, minmax(0, 1fr));
    gap: clamp(.85rem, 1.7vw, 1.25rem);
    align-items: stretch;
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(1rem, 2vw, 1.45rem);
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(236, 244, 255, .94), rgba(255,255,255,.98) 46%, rgba(255,248,224,.78)),
        #fff;
    border: 1px solid rgba(15, 95, 215, .11);
    box-shadow: inset 0 1px #fff, 0 35px 70px rgba(15, 23, 42, .08);
}
.achievement-frame {
    grid-column: span 3;
    position: relative;
    padding: 7px;
    margin: 0;
    border-radius: 13px;
    background: linear-gradient(145deg, #ffe583 0%, #bd8c12 27%, #f9d85e 55%, #a97609 82%, #f5d76b 100%);
    box-shadow: 0 16px 30px rgba(41, 31, 10, .13), inset 0 0 0 1px rgba(255,255,255,.55);
    transform: translateY(0) rotate(var(--frame-tilt, 0deg));
    transition: transform .38s cubic-bezier(.2,.8,.2,1), box-shadow .38s ease, filter .38s ease;
    will-change: transform;
}
.achievement-frame:nth-child(1),
.achievement-frame:nth-child(2),
.achievement-frame:nth-child(3) { grid-column: span 5; }
.achievement-frame:nth-child(2) { --frame-tilt: .18deg; }
.achievement-frame:nth-child(4), .achievement-frame:nth-child(8), .achievement-frame:nth-child(11) { --frame-tilt: -.25deg; }
.achievement-frame:nth-child(6), .achievement-frame:nth-child(10), .achievement-frame:nth-child(13) { --frame-tilt: .25deg; }
.achievement-frame:hover,
.achievement-frame:focus-within {
    transform: translateY(-12px) scale(1.025) rotate(0deg);
    box-shadow: 0 30px 55px rgba(15, 61, 123, .17), 0 10px 25px rgba(184, 135, 0, .14), inset 0 0 0 1px rgba(255,255,255,.7);
    filter: saturate(1.04);
    z-index: 5;
}
.achievement-frame-inner {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 8px;
    border: 5px solid rgba(255, 252, 239, .98);
    background: #eef3f9;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
.achievement-frame:nth-child(-n+3) .achievement-frame-inner { aspect-ratio: 16 / 10.5; }
.achievement-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.achievement-frame:hover img { transform: scale(1.035); }
.achievement-frame figcaption {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: .62rem .68rem;
    color: #fff;
    text-align: center;
    border-radius: 9px;
    background: linear-gradient(135deg, rgba(10,61,145,.94), rgba(8,47,111,.92));
    border: 1px solid rgba(255,224,122,.18);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 22px rgba(8,47,111,.18);
}
.achievement-frame figcaption strong { display: block; font-family: "Alice", serif; font-size: clamp(.76rem, 1.1vw, .95rem); line-height: 1.15; }
.achievement-frame figcaption small { display: block; margin-top: .2rem; color: rgba(255,255,255,.72); font-size: .62rem; line-height: 1.35; }
.achievement-placeholder {
    width: 100%; height: 100%; display: grid; place-items: center; text-align: center; padding: .8rem;
    background: radial-gradient(circle at 50% 24%, #ffffff, #eef4fb 72%);
    color: #0d3b80;
}
.achievement-placeholder i { display: block; margin-bottom: .55rem; color: #d7a806; font-size: clamp(1.6rem, 2.5vw, 2.25rem); }
.achievement-placeholder span { display: block; max-width: 180px; font-family: "Alice", serif; font-size: clamp(.78rem, 1.2vw, .95rem); line-height: 1.3; }
.achievement-placeholder small { display:block; margin-top:.28rem; color:#8794a7; font-size:.58rem; text-transform:uppercase; letter-spacing:.06em; }
.achievement-wall-loading { grid-column: 1 / -1; padding: 3rem; text-align: center; color: var(--muted); }
@media (max-width: 900px) {
    .achievement-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .achievement-frame,
    .achievement-frame:nth-child(1), .achievement-frame:nth-child(2), .achievement-frame:nth-child(3) { grid-column: span 1; }
    .achievement-frame:nth-child(-n+3) .achievement-frame-inner { aspect-ratio: 4 / 5; }
}
@media (max-width: 560px) {
    .achievement-wall { grid-template-columns: 1fr; padding: .9rem; gap:.85rem; }
    .achievement-frame,
    .achievement-frame:nth-child(1), .achievement-frame:nth-child(2), .achievement-frame:nth-child(3) { grid-column: 1; transform:none; }
    .achievement-frame:hover { transform:translateY(-7px) scale(1.01); }
    .achievement-frame-inner { aspect-ratio: 4 / 4.8; }
}

/* =====================================================
   BNA Hall of Fame — fixed 3 / 5 / 5 wall on every screen
   Desktop composition is preserved on phones; only scale changes.
===================================================== */
@media (max-width: 900px) {
    .achievements-section {
        padding: clamp(3.8rem, 12vw, 5.2rem) 0;
    }

    .achievements-section::after {
        width: 250px;
        height: 250px;
        right: -150px;
        opacity: .55;
    }

    .achievement-wall {
        /* Keep the exact desktop geometry: 15 tracks => 3 large + 5 + 5. */
        grid-template-columns: repeat(15, minmax(0, 1fr));
        gap: clamp(.28rem, 1.25vw, .62rem);
        padding: clamp(.45rem, 1.8vw, .8rem);
        border-radius: clamp(16px, 4vw, 24px);
        width: 100%;
        max-width: 100%;
    }

    .achievement-frame,
    .achievement-frame:nth-child(n+4) {
        grid-column: span 3;
    }

    .achievement-frame:nth-child(1),
    .achievement-frame:nth-child(2),
    .achievement-frame:nth-child(3) {
        grid-column: span 5;
    }

    .achievement-frame {
        padding: clamp(2px, .65vw, 5px);
        border-radius: clamp(5px, 1.8vw, 10px);
        transform: translateY(0) rotate(var(--frame-tilt, 0deg));
        box-shadow: 0 8px 18px rgba(41,31,10,.12), inset 0 0 0 1px rgba(255,255,255,.5);
    }

    .achievement-frame-inner {
        /* Same portrait shape as laptop for rows 2 and 3. */
        aspect-ratio: 4 / 5;
        border-width: clamp(1px, .65vw, 3px);
        border-radius: clamp(3px, 1vw, 7px);
    }

    .achievement-frame:nth-child(-n+3) .achievement-frame-inner {
        /* Same landscape shape as laptop for the first row. */
        aspect-ratio: 16 / 10.5;
    }

    .achievement-frame figcaption {
        left: clamp(3px, .8vw, 7px);
        right: clamp(3px, .8vw, 7px);
        bottom: clamp(3px, .8vw, 7px);
        padding: clamp(.18rem, .8vw, .38rem);
        border-radius: clamp(3px, 1vw, 6px);
    }

    .achievement-frame figcaption strong {
        font-size: clamp(.38rem, 1.55vw, .68rem);
        line-height: 1.05;
    }

    .achievement-frame figcaption small {
        display: none;
    }
}

@media (max-width: 560px) {
    .achievements-heading p {
        max-width: 94%;
    }

    .achievement-wall {
        grid-template-columns: repeat(15, minmax(0, 1fr));
        gap: 4px;
        padding: 6px;
        border-radius: 16px;
    }

    .achievement-frame,
    .achievement-frame:nth-child(n+4) {
        grid-column: span 3;
        transform: translateY(0) rotate(var(--frame-tilt, 0deg));
    }

    .achievement-frame:nth-child(1),
    .achievement-frame:nth-child(2),
    .achievement-frame:nth-child(3) {
        grid-column: span 5;
    }

    .achievement-frame:hover,
    .achievement-frame:focus-within {
        transform: translateY(-4px) scale(1.018) rotate(0deg);
    }

    .achievement-frame-inner {
        aspect-ratio: 4 / 5;
    }

    .achievement-frame:nth-child(-n+3) .achievement-frame-inner {
        aspect-ratio: 16 / 10.5;
    }

    /* On the five-across rows, text would obscure the photograph. Removing
       it keeps the same framed-wall presentation without changing geometry. */
    .achievement-frame:nth-child(n+4) figcaption {
        display: none;
    }

    .achievement-frame:nth-child(-n+3) figcaption {
        left: 3px;
        right: 3px;
        bottom: 3px;
        padding: 3px 4px;
    }

    .achievement-frame:nth-child(-n+3) figcaption strong {
        font-size: clamp(.34rem, 1.8vw, .52rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .achievement-placeholder {
        padding: .2rem;
    }

    .achievement-placeholder i {
        margin-bottom: .12rem;
        font-size: clamp(.72rem, 4vw, 1.15rem);
    }

    .achievement-placeholder span {
        font-size: clamp(.32rem, 1.8vw, .48rem);
    }

    .achievement-placeholder small {
        display: none;
    }
}

/* FINAL — Student Reviews consistency pass */
.student-reviews-grid{grid-auto-rows:1fr}
.student-review-card{min-height:350px;height:100%;padding:28px}
.student-review-card.featured-review,.student-review-card.featured-review:hover{transform:none;background:#fff;border-color:rgba(15,95,215,.11);box-shadow:0 16px 45px rgba(15,61,145,.07)}
.review-rating-top{position:relative;z-index:1;display:flex;align-items:center;gap:9px;margin-top:20px;padding:9px 11px;width:max-content;max-width:100%;border:1px solid rgba(242,194,48,.3);border-radius:999px;background:#fffaf0}
.review-rating-top .review-stars{display:inline-flex;gap:2px;color:#e4aa00;line-height:1}
.review-rating-top .review-rating-value{font-size:.7rem;color:#7d6519}
.student-review-top .review-grade{display:flex;align-items:center;gap:6px;margin-top:6px;color:#657894;font-size:.76rem}
.student-review-top .review-grade i{color:var(--primary);font-size:.7rem}
.review-featured-chip{color:#8a6810!important}
.review-featured-chip i{color:var(--accent)!important}
@media(max-width:980px){.student-review-card:last-child{grid-column:auto;max-width:none;width:auto;justify-self:stretch}}
@media(max-width:760px){.student-review-card{min-height:0}}
