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

:root {
    --bg: #faf8f5;
    --card: #ffffff;
    --text: #111111;
    --muted: #71706e;
    --border: #e8e4de;
    --accent: #ff6b35;
    --accent-light: #fff4ef;
    --yellow: #facc15;
    --yellow-soft: #fef9c3;
    --yellow-bg: #fffdf5;
    --purple: #7c5cfc;
    --purple-light: #f3f0ff;
    --green: #22c55e;
    --green-light: #f0fdf4;
    --dark: #18181b;
    --dark-card: #27272a;
    --r: 16px;
    --r-lg: 24px;
    --font: 'Work Sans', -apple-system, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAV
   ============================================ */
nav {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: calc(100% - 32px);
    max-width: 760px;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
    padding: 0 8px 0 16px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 100px;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}

.logo-img {
    height: 32px;
    width: auto;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--yellow) !important;
    color: var(--text) !important;
    padding: 8px 20px !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    transition: all 0.2s !important;
    box-shadow: 0 1px 3px rgba(250, 204, 21, 0.4) !important;
}

.nav-cta:hover {
    background: #eab308 !important;
    transform: translateY(-1px) !important;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.mobile-menu span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}

/* ============================================
   HERO BENTO
   ============================================ */
.hero {
    padding: 96px 0 32px;
}

.bento-hero {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px;
    grid-template-areas:
        "main   main   hero-img"
        "s1     s2     s3"
        "levels levels trust";
}

.bento-main {
    grid-area: main;
    background: var(--dark);
    color: #fff;
    border-radius: var(--r-lg);
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
}

.bento-main::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.08;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 28px;
}

.bento-main h1 {
    font-size: clamp(3rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 8px;
}

.bento-main h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--yellow);
}

.hero-tagline {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    max-width: 460px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: var(--yellow);
    color: var(--dark);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    font-family: var(--font);
    box-shadow: 0 2px 12px rgba(250, 204, 21, 0.3);
}

.btn-hero:hover {
    background: #eab308;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(250, 204, 21, 0.4);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-family: var(--font);
}

.btn-hero-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

/* Stats */
.bento-stat {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.2s;
}

.bento-stat:hover {
    border-color: var(--yellow);
    box-shadow: 0 4px 16px rgba(250, 204, 21, 0.1);
}

.bento-stat-1 { grid-area: s1; }
.bento-stat-2 { grid-area: s2; }
.bento-stat-3 { grid-area: s3; }

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 500;
}

/* Levels hero card */
.bento-levels {
    grid-area: levels;
    background: var(--yellow-soft);
    border: 1px solid #fde68a;
    border-radius: var(--r);
    padding: 28px 24px;
}

.bento-levels-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #92400e;
    margin-bottom: 14px;
}

.level-pills {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.level-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #fde68a;
    border-radius: 12px;
}

.lp-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.level-pill strong {
    font-size: 0.85rem;
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

.level-pill small {
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 500;
}

/* Trust / testimonial */
.bento-trust {
    grid-area: trust;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-text {
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 12px;
}

.trust-author {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 600;
}

/* ============================================
   HERO IMAGE CARD
   ============================================ */
.bento-img {
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
}

.bento-img-hero {
    grid-area: hero-img;
    min-height: 300px;
}

.bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bento-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.bento-img-overlay span {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
}

/* ============================================
   PHOTO STRIP
   ============================================ */
.photo-strip {
    padding: 0;
    overflow: hidden;
}

.photo-strip-track {
    display: flex;
    gap: 12px;
    padding: 12px 0;
}

.photo-strip-item {
    flex-shrink: 0;
    width: 240px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
}

.photo-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.photo-strip-item:hover img {
    transform: scale(1.05);
}

/* ============================================
   SECTION SHARED
   ============================================ */
.section-padded {
    padding: 88px 0;
}

.section-header {
    margin-bottom: 48px;
}

.section-label {
    display: inline-block;
    padding: 5px 14px;
    background: var(--yellow-soft);
    border: 1px solid #fde68a;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #92400e;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.section-header h2 em {
    font-style: italic;
    font-weight: 400;
}

.section-desc {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 520px;
    line-height: 1.7;
}

.section-yellow {
    background: var(--yellow-bg);
}

.section-dark {
    background: var(--dark);
}

.section-header-light .section-label {
    background: rgba(250, 204, 21, 0.15);
    border-color: rgba(250, 204, 21, 0.3);
    color: var(--yellow);
}

.section-header-light h2 {
    color: #fff;
}

.section-header-light .section-desc {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   SERVICES
   ============================================ */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.svc-card {
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 32px 28px;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
}

.svc-card:hover {
    border-color: var(--text);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

.svc-featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--dark) 0%, #2d2d30 100%);
    border-color: transparent;
    color: #fff;
}

.svc-featured:hover {
    border-color: var(--yellow);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.svc-featured .svc-desc { color: rgba(255, 255, 255, 0.6); }
.svc-featured .svc-features li { color: rgba(255, 255, 255, 0.75); }
.svc-featured .svc-features svg { color: var(--yellow); }

.svc-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.svc-badge {
    padding: 4px 12px;
    background: var(--yellow);
    color: var(--dark);
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.svc-emoji {
    font-size: 2rem;
    margin-bottom: 16px;
    line-height: 1;
}

.svc-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.svc-desc {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.svc-features {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
}

.svc-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 0.82rem;
    color: var(--text);
}

.svc-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--yellow);
    flex-shrink: 0;
}

.svc-featured .svc-features li::before {
    background: var(--yellow);
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.svc-tags span {
    padding: 5px 12px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--muted);
    background: var(--bg);
}

.svc-featured .svc-tags span {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   STUDENT LEVELS
   ============================================ */
.levels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.level-card {
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 32px 28px;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
}

.level-card:hover {
    border-color: var(--text);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

.level-card-highlight {
    border-color: var(--yellow);
    background: #fffef8;
    position: relative;
}

.level-card-highlight::before {
    content: 'Most Popular';
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 3px 12px;
    background: var(--yellow);
    color: var(--dark);
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.level-card-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    line-height: 1;
}

.level-card-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--yellow-soft);
    border: 1px solid #fde68a;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #92400e;
    margin-bottom: 14px;
    align-self: flex-start;
}

.level-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.level-card p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.level-card-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.level-card-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text);
    font-weight: 500;
}

.level-card-item svg {
    color: var(--green);
    flex-shrink: 0;
}

.level-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.level-card-tags span {
    padding: 4px 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--muted);
}

/* ============================================
   FIELDS
   ============================================ */
.fields-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.field-card {
    border-radius: var(--r);
    padding: 32px 28px;
    border: 1.5px solid;
    transition: all 0.25s;
}

.field-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.field-biz  { background: var(--accent-light); border-color: #ffd6c4; }
.field-beauty { background: var(--purple-light); border-color: #e0d8ff; }
.field-trade { background: var(--yellow-soft); border-color: #fde68a; }
.field-cook { background: var(--green-light); border-color: #bbf7d0; }

.field-img {
    height: 160px;
    margin: -32px -28px 20px -28px;
    overflow: hidden;
    border-radius: var(--r) var(--r) 0 0;
}

.field-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.field-card:hover .field-img img {
    transform: scale(1.05);
}

.field-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.field-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.field-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
}

.field-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.field-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.field-tags span {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text);
    backdrop-filter: blur(4px);
}

/* ============================================
   SCHOOLS
   ============================================ */
.schools-section {
    margin-bottom: 40px;
}

.schools-section:last-child {
    margin-bottom: 0;
}

.schools-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.school-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px 20px;
    text-decoration: none;
    transition: all 0.25s;
}

.school-card:hover {
    border-color: var(--yellow);
    background: #333338;
    transform: translateY(-2px);
}

.school-card h5 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.school-card p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}

/* ============================================
   PROCESS / STEPS
   ============================================ */
.steps-grid {
    display: flex;
    align-items: stretch;
}

.step-card {
    flex: 1;
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.2s;
    position: relative;
}

.step-card:hover {
    border-color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(250, 204, 21, 0.1);
}

.step-num {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
}

.step-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
    margin-top: 8px;
    line-height: 1;
}

.step-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    flex-shrink: 0;
}

.step-connector span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
}

/* ============================================
   WHY US
   ============================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.why-card {
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 32px 28px;
    transition: all 0.25s;
}

.why-card:hover {
    border-color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(250, 204, 21, 0.1);
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    line-height: 1;
}

.why-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ============================================
   CTA
   ============================================ */
/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.testimonial-card {
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 28px 24px;
    transition: all 0.25s;
}

.testimonial-card:hover {
    border-color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(250, 204, 21, 0.1);
}

.testimonial-stars {
    font-size: 0.9rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 500;
}

/* ============================================
   CTA
   ============================================ */
#cta {
    padding: 0 0 80px;
}

.cta-box {
    background: var(--dark);
    border-radius: var(--r-lg);
    display: flex;
    overflow: hidden;
    position: relative;
}

.cta-img {
    width: 360px;
    flex-shrink: 0;
}

.cta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-content {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.06;
    pointer-events: none;
}

.cta-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(250, 204, 21, 0.15);
    border: 1px solid rgba(250, 204, 21, 0.25);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 24px;
}

.cta-box h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta-box h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--yellow);
}

.cta-box p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.95rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    background: var(--yellow);
    color: var(--dark);
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    font-family: var(--font);
    box-shadow: 0 2px 16px rgba(250, 204, 21, 0.3);
}

.btn-cta:hover {
    background: #eab308;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(250, 204, 21, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 32px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.footer-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-copy {
    color: var(--muted);
    font-size: 0.75rem;
}

.footer-fb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--muted);
    transition: all 0.2s;
}

.footer-fb:hover {
    background: var(--text);
    border-color: var(--text);
    color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .levels-grid {
        grid-template-columns: 1fr;
    }

    .level-card-highlight::before {
        top: -10px;
    }
}

@media (max-width: 900px) {
    .bento-hero {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "main     main"
            "hero-img hero-img"
            "s1       s2"
            "s3       levels"
            "trust    trust";
    }

    .bento-img-hero { min-height: 200px; }

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

    .fields-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        flex-wrap: wrap;
        gap: 12px;
    }

    .step-connector { display: none; }

    .step-card {
        flex: 1 1 calc(50% - 6px);
        min-width: calc(50% - 6px);
    }

    .cta-box {
        flex-direction: column;
    }

    .cta-img {
        width: 100%;
        height: 240px;
    }

    .cta-content {
        padding: 40px 32px;
        text-align: center;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .photo-strip-item {
        width: 180px;
        height: 120px;
    }
}

@media (max-width: 640px) {
    nav { top: 8px; width: calc(100% - 16px); }
    .nav-links { display: none; }
    .mobile-menu { display: flex; }

    .hero { padding: 80px 0 24px; }

    .bento-hero {
        grid-template-columns: 1fr;
        grid-template-areas:
            "main"
            "hero-img"
            "levels"
            "s1"
            "s2"
            "s3"
            "trust";
    }

    .bento-img-hero { min-height: 200px; border-radius: var(--r); }

    .bento-main {
        padding: 36px 24px;
        border-radius: var(--r);
    }

    .bento-main h1 { font-size: 2.6rem; }

    .section-padded { padding: 56px 0; }

    .svc-grid {
        grid-template-columns: 1fr;
    }

    .svc-featured {
        grid-column: auto;
    }

    .levels-grid {
        grid-template-columns: 1fr;
    }

    .schools-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .cta-box {
        flex-direction: column;
        border-radius: var(--r);
    }

    .cta-img {
        width: 100%;
        height: 200px;
    }

    .cta-content {
        padding: 32px 24px;
        text-align: center;
    }

    .field-img {
        height: 140px;
        margin: -32px -28px 16px -28px;
    }

    .photo-strip-item {
        width: 150px;
        height: 100px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links { justify-content: center; }
}
