:root {
    --ink: #101828;
    --muted: #5f6b7a;
    --line: #e5e7ef;
    --paper: #ffffff;
    --soft: #f5f7fb;
    --navy: #071a3d;
    --navy-2: #102b63;
    --gold: #c9952e;
    --teal: #0b9a9a;
    --rose: #b5476c;
    --shadow: 0 24px 70px rgba(16, 24, 40, .12);
    --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 32px)); margin-inline: auto; }

.top-strip {
    background: var(--navy);
    color: #e9eef7;
    font-size:14px;
}
.strip-grid {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
    flex-wrap: wrap;
}
.strip-grid span, .strip-grid a { display: inline-flex; gap: 8px; align-items: center; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(229, 231, 239, .8);
}
.nav-shell {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 76px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 260px;
    flex-shrink: 0;
}
.brand-logo-wrap {
    width: 116px;
    height: 46px;
    border-radius: 8px;
    background: #ed1c24;
    display: block;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(237, 28, 36, .18);
    border: 1px solid rgba(7, 26, 61, .08);
}
.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.brand strong { display: block; font-size: 16px; line-height: 1.1; }
.brand small { color: var(--muted); font-size:14px; }
.nav-links {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 700;
    font-size: 14px;
}
.nav-links a { color: #263244; }
.nav-links a:hover { color: var(--teal); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; }

.btn, .icon-btn {
    border: 0;
    border-radius: var(--radius);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 800;
    cursor: pointer;
}
.btn { padding: 12px 18px; }
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 16px 34px rgba(7, 26, 61, .22); }
.btn-secondary { background: #eef6f6; color: var(--teal); }
.icon-btn { width: 44px; color: #fff; background: #21a866; font-size: 18px; }

.hero {
    background:
        linear-gradient(90deg, rgba(7, 26, 61, .98) 0%, rgba(7, 26, 61, .86) 46%, rgba(7, 26, 61, .10) 100%),
        url("../images/zenith-hero.png") center right / cover no-repeat;
    color: #fff;
    min-height: calc(100vh - 112px);
    display: flex;
    align-items: center;
    padding: 54px 0;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 44px;
    align-items: center;
}
.hero-copy { max-width: 650px; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 900;
    color: var(--gold);
    font-size:14px;
}
.hero h1, .page-hero h1 {
    margin: 12px 0 18px;
    font-size: clamp(42px, 7vw, 86px);
    line-height: .96;
    letter-spacing: 0;
}
.hero p { font-size: 20px; max-width: 620px; color: #e6edf8; margin: 0 0 26px; }
.hero-actions, .actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-metrics {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.hero-metrics span {
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 14px;
    color: #dbe6f6;
}
.hero-metrics strong { display: block; color: #fff; font-size: 22px; }
.hero-visual { position: relative; min-height: 420px; }
.hero-visual img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: var(--shadow);
}
.hero-card {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: min(320px, calc(100% - 44px));
    padding: 18px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .94);
    color: var(--ink);
    box-shadow: var(--shadow);
}
.hero-card strong, .hero-card span { display: block; }
.hero-card span { color: var(--muted); margin-top: 4px; }

.notice-band { background: var(--soft); padding: 18px 0; }
.notice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.notice-grid article {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
}
.notice-grid p { margin: 2px 0 0; color: var(--muted); }
.notice-grid a { color: var(--teal); font-weight: 900; white-space: nowrap; }

.section { padding: 82px 0; }
.section-head { max-width: 760px; margin-bottom: 28px; }
.section-head h2, .split-grid h2, .cta-grid h2, .content-block h2 {
    margin: 8px 0 12px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: 0;
}
.section-head p, .split-grid p, .cta-grid p, .content-block p { color: var(--muted); font-size: 17px; }

.course-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.course-card, .blog-card, .testimonial-card, .result-card, .faculty-card, .content-block {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 34px rgba(16, 24, 40, .06);
}
.course-card { padding: 22px; display: flex; flex-direction: column; min-height: 310px; }
.course-card span { color: var(--teal); font-weight: 900; font-size:14px; }
.course-card h3, .course-card h2 { margin: 10px 0; line-height: 1.15; }
.course-card p { color: var(--muted); margin: 0; }
.course-card ul, .check-list { padding-left: 18px; color: var(--muted); }
.course-meta { margin-top: auto; display: flex; justify-content: space-between; gap: 12px; align-items: center; padding-top: 24px; }
.course-meta a { color: var(--navy); font-weight: 900; }
.course-card.feature { min-height: 390px; }

.split-band { background: linear-gradient(180deg, #f7fafc, #eef6f6); }
.split-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr); gap: 34px; align-items: start; }
.feature-list { display: grid; gap: 12px; margin-top: 24px; }
.feature-list span {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line);
}
.feature-list i, .check-list li::marker { color: var(--teal); }
.feature-list.large span { padding: 18px; font-weight: 800; }
.faculty-panel { display: grid; gap: 14px; }
.faculty-panel article {
    display: flex;
    gap: 14px;
    padding: 18px;
    border-radius: var(--radius);
    background: var(--navy);
    color: #fff;
}
.faculty-panel i { color: var(--gold); font-size: 22px; }
.faculty-panel h3, .faculty-panel p { margin: 0; }
.faculty-panel p { color: #cdd8e8; }

.proof-grid, .testimonial-grid, .faculty-grid, .blog-grid, .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.result-card { padding: 24px; background: var(--navy); color: #fff; }
.result-card strong { font-size: 34px; color: var(--gold); }
.result-card h3, .result-card h2 { margin: 8px 0 4px; }
.result-card p, .result-card span { color: #dbe6f6; }
.testimonial-grid { margin-top: 18px; }
.testimonial-card { padding: 22px; }
.testimonial-card p { color: var(--muted); margin-top: 0; }
.testimonial-card strong, .testimonial-card span { display: block; }
.testimonial-card span { color: var(--teal); font-weight: 800; }
.faculty-card { padding: 24px; }
.faculty-card i { color: var(--gold); font-size: 30px; }
.faculty-card strong { color: var(--teal); }
.faculty-card p { color: var(--muted); }

.cta-section { background: var(--navy); color: #fff; }
.cta-section p { color: #dbe6f6; }
.cta-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(340px, .7fr); gap: 34px; align-items: start; }
.enquiry-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    background: #fff;
    color: var(--ink);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
}
.enquiry-form label { display: grid; gap: 7px; font-weight: 800; font-size: 14px; }
.enquiry-form input, .enquiry-form textarea, .enquiry-form select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    font: inherit;
    color: var(--ink);
}
.full { grid-column: 1 / -1; }
.alert { grid-column: 1 / -1; padding: 12px; border-radius: var(--radius); font-weight: 800; }
.alert.success { background: #ecfdf3; color: #027a48; }
.alert.error { background: #fff1f3; color: #b42318; }

.blog-card { padding: 24px; }
.blog-card small { color: var(--rose); font-weight: 900; }
.blog-card h2, .blog-card h3 { margin: 10px 0; line-height: 1.16; }
.blog-card p { color: var(--muted); }
.blog-card a { color: var(--navy); font-weight: 900; }

.page-hero {
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: #fff;
    padding: 88px 0;
}
.page-hero.compact { padding: 72px 0; }
.page-hero p { max-width: 780px; color: #dbe6f6; font-size: 19px; }
.course-detail-hero .split-grid { align-items: center; }
.detail-panel {
    display: grid;
    gap: 10px;
    background: #fff;
    color: var(--ink);
    border-radius: var(--radius);
    padding: 24px;
}
.detail-panel span { color: var(--muted); font-size:14px; font-weight: 900; text-transform: uppercase; }
.detail-panel strong { font-size: 20px; }
.content-block { padding: 28px; }
.content-block.accent { border-top: 4px solid var(--gold); }
.article-page { padding: 74px 0; background: #fff; }
.article-wrap { max-width: 840px; }
.back-link { color: var(--teal); font-weight: 900; }
.article-wrap h1 { font-size: clamp(34px, 5vw, 64px); line-height: 1.04; margin: 12px 0; }
.article-excerpt { font-size: 20px; color: var(--muted); }
.article-body p { font-size: 18px; color: #344054; }

.gallery-grid figure {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 12px 34px rgba(16, 24, 40, .06);
}
.gallery-grid img { height: 260px; width: 100%; object-fit: cover; }
.gallery-grid figcaption { padding: 16px; display: grid; gap: 4px; }
.gallery-grid span { color: var(--muted); }
.contact-grid { display: grid; grid-template-columns: minmax(280px, .7fr) minmax(340px, 1fr); gap: 22px; align-items: start; }
.contact-panel {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
}
.contact-panel a, .contact-panel p { display: flex; gap: 10px; align-items: flex-start; color: #344054; }
.map-wrap iframe { width: 100%; min-height: 360px; border: 0; border-radius: var(--radius); margin-top: 22px; }

.site-footer { background: #071225; color: #dbe6f6; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 28px; }
.footer-grid h3 { color: #fff; margin-top: 0; }
.footer-grid a, .footer-grid p { display: block; color: #b9c6d8; margin: 0 0 9px; }
.footer-brand { margin-bottom: 16px; }
.site-footer .brand-logo-wrap { border-color: rgba(255, 255, 255, .14); }
.site-footer .brand small { color: #9fb0c6; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 32px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: #9fb0c6;
    font-size: 14px;
}
.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #21a866;
    color: #fff;
    font-size: 25px;
    box-shadow: 0 16px 34px rgba(33, 168, 102, .28);
    z-index: 45;
}

@media (max-width: 1060px) {
    .course-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .proof-grid, .testimonial-grid, .faculty-grid, .blog-grid, .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero-grid, .split-grid, .cta-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero-visual { min-height: auto; }
}

@media (max-width: 860px) {
    .nav-toggle {
        margin-left: auto;
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        border: 1px solid var(--line);
        background: #fff;
        border-radius: var(--radius);
    }
    .nav-links {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 76px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }
    .nav-links.is-open { display: flex; }
    .nav-links a { padding: 12px; }
    .nav-actions .btn { display: none; }
    .brand { min-width: auto; gap: 10px; }
    .brand-logo-wrap { width: 96px; height: 38px; }
    .brand small { display: none; }
    .hero { min-height: auto; background-position: center; }
    .hero h1, .page-hero h1 { font-size: 46px; }
    .notice-grid, .course-grid, .proof-grid, .testimonial-grid, .faculty-grid, .blog-grid, .gallery-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .container { width: min(100% - 24px, 1160px); }
    .hero { padding: 40px 0; }
    .hero p { font-size: 17px; }
    .hero-metrics { grid-template-columns: 1fr; }
    .hero-visual img { height: 330px; }
    .section { padding: 56px 0; }
    .brand-copy { display: none; }
    .brand-logo-wrap { width: 118px; height: 46px; }
    .enquiry-form { grid-template-columns: 1fr; padding: 18px; }
    .notice-grid article { align-items: flex-start; flex-direction: column; }
    .strip-grid { display: none; }
}

/* Zenith premium header and slider refresh */
:root {
    --brand-red: #e50914;
    --brand-red-dark: #a90007;
    --brand-yellow: #ffd400;
    --brand-yellow-deep: #f5b700;
}

.top-strip {
    background: linear-gradient(90deg, #b60008 0%, var(--brand-red) 48%, #b80006 100%);
    color: #fff;
    font-size: 15px;
    box-shadow: 0 8px 22px rgba(185, 0, 8, .18);
}
.strip-grid {
    min-height: 52px;
    padding: 0;
    align-items: center;
}
.strip-contact {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    font-weight: 700;
}
.strip-contact a,
.strip-contact span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.strip-contact i,
.admission-pill i { font-size: 18px; }
.strip-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, .65);
}
.admission-pill {
    min-width: 228px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 28px;
    border: 1px solid rgba(255, 212, 0, .34);
    border-radius: 8px;
    color: var(--brand-yellow);
    font-weight: 900;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .06);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}
.site-header {
    top: 0;
    background: rgba(255, 255, 255, .98);
    border-bottom: 0;
    box-shadow: 0 14px 36px rgba(16, 24, 40, .08);
}
.site-header.is-scrolled { box-shadow: 0 16px 42px rgba(16, 24, 40, .14); }
.nav-shell {
    min-height: 92px;
    gap: 26px;
}
.site-header .brand {
    min-width: 255px;
    gap: 0;
}
.site-header .brand-logo-wrap {
    width: 250px;
    height: 76px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}
.site-header .brand-logo { object-fit: contain; }
.nav-links {
    gap: 30px;
    font-size: 16px;
    font-weight: 800;
}
.nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 92px;
    color: #171923;
    transition: color .22s ease, transform .22s ease;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    height: 3px;
    border-radius: 999px;
    background: var(--brand-red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .24s ease;
}
.nav-links a:hover,
.nav-links a.is-active {
    color: var(--brand-red);
    transform: translateY(-1px);
}
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }
.nav-actions { gap: 14px; }
.btn,
.icon-btn { transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease; }
.btn:hover,
.icon-btn:hover { transform: translateY(-2px); }
.btn-primary,
.apply-now {
    background: linear-gradient(135deg, var(--brand-red), #d9000b);
    color: #fff;
    box-shadow: 0 16px 34px rgba(229, 9, 20, .26);
}
.btn-outline {
    min-height: 56px;
    padding: 14px 28px;
    color: var(--brand-red);
    background: #fff;
    border: 2px solid var(--brand-red);
    box-shadow: 0 12px 28px rgba(229, 9, 20, .08);
}
.btn-outline:hover { background: #fff5f5; }
.apply-now { min-height: 56px; padding: 14px 28px; }
.whatsapp-btn {
    width: 56px;
    height: 56px;
    background: #20c65a;
    font-size: 29px;
    box-shadow: 0 14px 28px rgba(32, 198, 90, .28);
}

.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    isolation: isolate;
    background: #be0008;
}
.hero-slider::before,
.hero-slider::after {
    content: "";
    position: absolute;
    z-index: 2;
    pointer-events: none;
}
.hero-slider::before {
    left: -8vw;
    bottom: -130px;
    width: 68vw;
    height: 210px;
    border-radius: 50% 50% 0 0;
    background: var(--brand-yellow);
    transform: rotate(5deg);
}
.hero-slider::after {
    right: -8vw;
    top: -120px;
    width: 42vw;
    height: 230px;
    border-radius: 0 0 50% 50%;
    background: linear-gradient(135deg, var(--brand-yellow), #ffec52);
    transform: rotate(-20deg);
    opacity: .95;
}
.hero-slider-track,
.hero-slide { position: absolute; inset: 0; }
.hero-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity .85s ease, visibility .85s ease;
}
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(173, 0, 8, .92) 0%, rgba(217, 0, 12, .78) 42%, rgba(190, 0, 8, .26) 100%),
        radial-gradient(circle at 20% 20%, rgba(255, 212, 0, .18), transparent 26%),
        var(--slide-image) center right / cover no-repeat;
    transform: scale(1.035);
    transition: transform 5.8s ease;
}
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.34) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    background-position: 24px 72px;
    opacity: .2;
}
.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
.hero-slide.is-active::before { transform: scale(1); }
.hero-slider-inner {
    position: relative;
    z-index: 4;
    height: 600px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 386px;
    gap: 44px;
    align-items: center;
}
.hero-copy {
    max-width: 650px;
    color: #fff;
    padding-bottom: 10px;
}
.hero-slide.is-active .hero-copy > * {
    animation: heroRise .72s ease both;
}
.hero-slide.is-active .hero-copy > *:nth-child(2) { animation-delay: .08s; }
.hero-slide.is-active .hero-copy > *:nth-child(3) { animation-delay: .16s; }
.hero-slide.is-active .hero-copy > *:nth-child(4) { animation-delay: .24s; }
.hero-slide.is-active .hero-copy > *:nth-child(5) { animation-delay: .32s; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 212, 0, .55);
    border-radius: 999px;
    color: var(--brand-yellow);
    background: rgba(111, 0, 5, .42);
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .14);
}
.hero-badge i {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--brand-yellow);
    color: #6c0005;
}
.hero-slider h1 {
    margin: 22px 0 18px;
    max-width: 620px;
    font-size: clamp(46px, 5.1vw, 74px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: 0;
    text-wrap: balance;
}
.hero-slider h1 mark {
    color: var(--brand-yellow);
    background: transparent;
}
.hero-slider p {
    max-width: 570px;
    margin: 0 0 26px;
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.55;
}
.hero-slider .hero-actions { gap: 16px; }
.btn-gold,
.btn-light {
    min-height: 58px;
    padding: 14px 26px;
    font-size: 16px;
    border-radius: 8px;
}
.btn-gold {
    background: linear-gradient(135deg, var(--brand-yellow), var(--brand-yellow-deep));
    color: #171000;
    box-shadow: 0 16px 32px rgba(255, 212, 0, .24);
}
.btn-light {
    background: rgba(255, 255, 255, .96);
    color: var(--brand-red);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .12);
}
.hero-metrics {
    margin-top: 38px;
    width: min(640px, 100%);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(100, 0, 6, .34);
    backdrop-filter: blur(10px);
}
.hero-metrics span {
    min-width: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    align-items: center;
    padding: 14px 18px;
    border: 0;
    border-right: 1px solid rgba(255,255,255,.32);
    border-radius: 0;
    color: #fff;
    background: transparent;
}
.hero-metrics span:last-child { border-right: 0; }
.hero-metrics i {
    grid-row: span 2;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    font-size: 21px;
}
.hero-metrics strong { color: var(--brand-yellow); font-size: 31px; line-height: 1; }
.hero-metrics small { color: #fff; font-weight: 700; line-height: 1.2; }
.hero-lead-card {
    position: absolute;
    z-index: 8;
    top: 50%;
    right: max(24px, calc((100vw - 1160px) / 2));
    width: 368px;
    transform: translateY(-50%);
    padding: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .97);
    color: var(--ink);
    box-shadow: 0 24px 70px rgba(71, 0, 5, .34);
}
.lead-card-head { text-align: center; margin-bottom: 18px; }
.lead-card-head h2 {
    margin: 0 0 6px;
    color: var(--brand-red);
    font-size: 28px;
    line-height: 1.1;
}
.lead-card-head p { margin: 0; color: #5f6368; font-size: 14px; }
.lead-card-head::after {
    content: "";
    width: 44px;
    height: 2px;
    display: block;
    margin: 14px auto 0;
    background: var(--brand-yellow-deep);
}
.material-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
    background: transparent;
    color: var(--ink);
    box-shadow: none;
    border-radius: 0;
}
.field-material {
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 700;
}
.field-material i {
    position: absolute;
    left: 15px;
    top: 15px;
    z-index: 2;
    color: #adb3bd;
    font-size: 18px;
    transition: color .2s ease, transform .2s ease;
}
.field-material input,
.field-material select,
.field-material textarea {
    width: 100%;
    min-height: 48px;
    padding: 16px 14px 8px 48px;
    border: 1px solid #d8dce3;
    border-radius: 6px;
    background: #fff;
    color: #1f2937;
    font: inherit;
    outline: 0;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.field-material textarea {
    min-height: 84px;
    resize: vertical;
    padding-top: 22px;
}
.field-material span {
    position: absolute;
    left: 48px;
    top: 14px;
    z-index: 3;
    color: #6b7280;
    pointer-events: none;
    transform-origin: left top;
    transition: transform .18s ease, color .18s ease, top .18s ease;
}
.field-material input:focus,
.field-material select:focus,
.field-material textarea:focus {
    border-color: var(--brand-red);
    box-shadow: 0 9px 22px rgba(229, 9, 20, .1);
    transform: translateY(-1px);
}
.field-material:focus-within i { color: var(--brand-red); transform: translateY(-1px); }
.field-material input:focus + span,
.field-material input:not(:placeholder-shown) + span,
.field-material textarea:focus + span,
.field-material textarea:not(:placeholder-shown) + span,
.field-material select:focus + span,
.field-material select:not([value=""]) + span {
    top: 7px;
    color: var(--brand-red);
    transform: scale(.78);
}
.select-field span { top: 7px; transform: scale(.78); }
.submit-enquiry {
    min-height: 56px;
    width: 100%;
    border-radius: 6px;
    font-size: 15px;
}
.slider-arrow {
    position: absolute;
    z-index: 9;
    top: 50%;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.38);
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .22s ease, transform .22s ease;
}
.slider-arrow:hover { background: var(--brand-yellow); color: #6c0005; transform: translateY(-50%) scale(1.08); }
.slider-prev { left: max(18px, calc((100vw - 1240px) / 2)); }
.slider-next { right: max(18px, calc((100vw - 1240px) / 2)); }
.slider-dots {
    position: absolute;
    z-index: 9;
    left: 50%;
    bottom: 22px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}
.slider-dots button {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.62);
    cursor: pointer;
    transition: width .24s ease, background .24s ease;
}
.slider-dots button.is-active {
    width: 34px;
    border-radius: 999px;
    background: var(--brand-yellow);
}

@keyframes heroRise {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
    .nav-links { gap: 18px; font-size: 14px; }
    .site-header .brand { min-width: 215px; }
    .site-header .brand-logo-wrap { width: 212px; height: 66px; }
    .btn-outline,
    .apply-now { padding-inline: 18px; }
    .hero-lead-card { right: 20px; width: 350px; }
    .hero-slider-inner { grid-template-columns: minmax(0, 1fr) 360px; }
}

@media (max-width: 980px) {
    .top-strip { font-size:14px; }
    .admission-pill { min-width: 178px; padding-inline: 16px; }
    .nav-toggle { display: grid; }
    .nav-shell { min-height: 82px; }
    .site-header .brand { min-width: 190px; }
    .site-header .brand-logo-wrap { width: 188px; height: 58px; }
    .nav-links {
        top: 82px;
        left: 12px;
        right: 12px;
        gap: 0;
    }
    .nav-links a { min-height: 44px; padding: 10px 12px; }
    .nav-links a::after { bottom: 5px; }
    .nav-actions .call-now,
    .nav-actions .apply-now { display: none; }
    .hero-slider,
    .hero-slider-inner { height: 600px; }
    .hero-slider-inner {
        grid-template-columns: minmax(0, 1fr) minmax(210px, 38vw);
        gap: 18px;
    }
    .hero-copy { max-width: 100%; }
    .hero-slider h1 { font-size: clamp(32px, 5vw, 48px); }
    .hero-slider p { font-size: 15px; max-width: 430px; }
    .hero-lead-card { width: min(38vw, 300px); right: 14px; padding: 18px; }
    .lead-card-head h2 { font-size: 22px; }
    .lead-card-head p { font-size:14px; }
    .field-material input,
    .field-material select { min-height: 42px; padding-left: 40px; }
    .field-material textarea { min-height: 66px; padding-left: 40px; }
    .field-material i { left: 12px; top: 13px; font-size: 15px; }
    .field-material span { left: 40px; font-size:14px; }
    .submit-enquiry { min-height: 44px; font-size:14px; }
    .slider-arrow { display: none; }
}

@media (max-width: 680px) {
    .strip-grid { min-height: 42px; justify-content: center; }
    .strip-contact { gap: 10px; justify-content: center; }
    .strip-contact a:nth-of-type(2),
    .strip-contact span:not(.strip-divider),
    .strip-divider,
    .admission-pill { display: none; }
    .site-header .brand { min-width: 144px; }
    .site-header .brand-logo-wrap { width: 144px; height: 46px; }
    .whatsapp-btn { width: 42px; height: 42px; font-size: 22px; }
    .hero-slider-inner {
        width: min(100% - 18px, 1160px);
        grid-template-columns: minmax(0, 1fr) 146px;
        gap: 8px;
    }
    .hero-slide::before { background-position: 62% center; }
    .hero-badge { padding: 7px 9px; font-size:14px; gap: 6px; }
    .hero-badge i { width: 20px; height: 20px; font-size:14px; }
    .hero-slider h1 { margin: 14px 0 10px; font-size: 27px; line-height: 1.08; }
    .hero-slider p { margin-bottom: 14px; font-size:14px; line-height: 1.45; }
    .hero-slider .hero-actions { gap: 8px; }
    .btn-gold,
    .btn-light { min-height: 38px; padding: 9px 10px; font-size:14px; gap: 6px; }
    .hero-metrics { margin-top: 18px; grid-template-columns: 1fr; width: 150px; }
    .hero-metrics span { padding: 7px 8px; column-gap: 7px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
    .hero-metrics i { width: 26px; height: 26px; font-size:14px; }
    .hero-metrics strong { font-size: 18px; }
    .hero-metrics small { font-size:14px; }
    .hero-lead-card { width: 146px; right: 8px; padding: 10px; }
    .lead-card-head { margin-bottom: 8px; }
    .lead-card-head h2 { font-size: 16px; }
    .lead-card-head p,
    .lead-card-head::after { display: none; }
    .material-form { gap: 7px; }
    .field-material input,
    .field-material select { min-height: 34px; padding: 11px 7px 3px 27px; font-size:14px; border-radius: 5px; }
    .field-material textarea { min-height: 52px; padding: 14px 7px 3px 27px; font-size:14px; border-radius: 5px; }
    .field-material i { left: 8px; top: 10px; font-size:14px; }
    .field-material span { left: 27px; top: 9px; font-size:14px; }
    .field-material input:focus + span,
    .field-material input:not(:placeholder-shown) + span,
    .field-material textarea:focus + span,
    .field-material textarea:not(:placeholder-shown) + span,
    .field-material select:focus + span,
    .field-material select:not([value=""]) + span,
    .select-field span { top: 3px; transform: scale(.68); }
    .submit-enquiry { min-height: 34px; padding: 7px 8px; font-size:14px; gap: 5px; }
    .slider-dots { bottom: 12px; }
}

/* Screenshot polish */
.hero-slider::before {
    bottom: -175px;
    height: 170px;
}
.hero-slider::after { top: -150px; }
.hero-slider .hero-actions { position: relative; z-index: 7; }
.hero-slider .hero-metrics { position: relative; z-index: 7; }

@media (max-width: 680px) {
    html,
    body { overflow-x: hidden; }
    .hero-slider { width: 100%; max-width: 100vw; }
    .hero-slider::before {
        left: -34vw;
        bottom: -118px;
        width: 92vw;
        height: 150px;
    }
    .hero-slider::after {
        right: -24vw;
        top: -92px;
        width: 62vw;
        height: 176px;
    }
    .hero-slider-inner {
        grid-template-columns: minmax(0, 1fr) 128px;
        width: calc(100% - 14px);
        margin-left: 7px;
        margin-right: 7px;
    }
    .hero-copy { max-width: 100%; min-width: 0; }
    .hero-slider h1 { font-size: 25px; max-width: 218px; }
    .hero-slider p { max-width: 224px; }
    .hero-lead-card {
        right: 6px;
        width: 128px;
        max-width: 128px;
        padding: 8px;
    }
    .hero-metrics { width: 142px; }
    .btn-gold,
    .btn-light { max-width: 160px; white-space: normal; text-align: center; }
}

@media (max-width: 420px) {
    .hero-slider-inner { grid-template-columns: minmax(0, 1fr) 118px; }
    .hero-lead-card { width: 118px; max-width: 118px; }
    .hero-slider h1 { font-size: 23px; max-width: 206px; }
    .hero-slider p { max-width: 210px; }
    .field-material input,
    .field-material select { min-height: 31px; padding-left: 24px; font-size:14px; }
    .field-material textarea { min-height: 46px; padding-left: 24px; font-size:14px; }
    .field-material i { left: 7px; font-size:14px; }
    .field-material span { left: 24px; font-size:14px; }
    .submit-enquiry { min-height: 31px; font-size:14px; }
}

/* No-form slider redesign */
.hero-slider {
    height: 600px;
    overflow: visible;
    background: #b90008;
}
.hero-slider-track {
    overflow: hidden;
    border-bottom: 1px solid rgba(111, 0, 5, .28);
}
.hero-slider::before {
    z-index: 4;
    left: -9vw;
    bottom: -132px;
    width: 74vw;
    height: 190px;
    background: linear-gradient(90deg, #ffd400, #ffec4d 70%, #ffc400);
    box-shadow: 0 -22px 44px rgba(111, 0, 5, .16);
}
.hero-slider::after {
    z-index: 4;
    right: -12vw;
    top: -112px;
    width: 48vw;
    height: 210px;
    background: linear-gradient(135deg, #ffeb4a, #ffd000);
    opacity: 1;
}
.hero-slide::before {
    background:
        linear-gradient(90deg, rgba(142, 0, 7, .96) 0%, rgba(208, 0, 11, .84) 36%, rgba(208, 0, 11, .24) 68%, rgba(208, 0, 11, .06) 100%),
        radial-gradient(circle at 15% 18%, rgba(255, 212, 0, .24), transparent 24%),
        radial-gradient(circle at 72% 48%, rgba(255, 255, 255, .08), transparent 24%),
        var(--slide-image) center right / cover no-repeat;
}
.hero-slide::after {
    background-image:
        radial-gradient(rgba(255,255,255,.35) 1.4px, transparent 1.4px),
        linear-gradient(135deg, transparent 0 58%, rgba(95, 0, 5, .16) 58% 62%, transparent 62%);
    background-size: 24px 24px, 100% 100%;
    opacity: .18;
}
.hero-slider-inner {
    height: 600px;
    grid-template-columns: minmax(0, .64fr) minmax(390px, .36fr);
    gap: 32px;
    align-items: center;
}
.hero-copy {
    max-width: 690px;
    padding-bottom: 22px;
}
.hero-slider h1 {
    max-width: 690px;
    font-size: clamp(50px, 5.25vw, 78px);
    line-height: 1.03;
    text-shadow: 0 10px 30px rgba(82, 0, 5, .28);
}
.hero-slider p {
    max-width: 610px;
    font-size: 20px;
    text-shadow: 0 8px 24px rgba(82, 0, 5, .22);
}
.hero-metrics {
    width: min(690px, 100%);
    margin-top: 34px;
    background: linear-gradient(90deg, rgba(116, 0, 7, .58), rgba(229, 9, 20, .22));
}
.hero-form-space,
.hero-lead-card { display: none !important; }
.slider-arrow {
    z-index: 12;
    width: 58px;
    height: 58px;
    border: 2px solid rgba(255, 255, 255, .56);
    background: rgba(133, 0, 7, .52);
    backdrop-filter: blur(8px);
    box-shadow: 0 16px 36px rgba(71, 0, 5, .28);
}
.slider-prev { left: max(18px, calc((100vw - 1360px) / 2)); }
.slider-next { right: max(18px, calc((100vw - 1360px) / 2)); }
.slider-dots {
    bottom: 26px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(97, 0, 6, .28);
    backdrop-filter: blur(8px);
}
.notice-band { position: relative; z-index: 5; }

@media (max-width: 1180px) {
    .hero-slider-inner {
        grid-template-columns: minmax(0, .66fr) minmax(300px, .34fr);
    }
    .hero-slider h1 { font-size: clamp(42px, 5vw, 62px); }
    .hero-slider p { font-size: 17px; }
    .slider-prev { left: 12px; }
    .slider-next { right: 12px; }
}

@media (max-width: 980px) {
    .hero-slider { overflow: hidden; }
    .hero-slider,
    .hero-slider-inner { height: 600px; }
    .hero-slider-inner {
        grid-template-columns: minmax(0, .66fr) minmax(180px, .34fr);
        gap: 12px;
    }
    .hero-slider h1 { font-size: clamp(34px, 5.7vw, 48px); max-width: 500px; }
    .hero-slider p { max-width: 430px; font-size: 15px; }
    .hero-metrics { width: min(520px, 100%); }
    .slider-arrow {
        display: grid;
        width: 42px;
        height: 42px;
    }
    .slider-prev { left: 8px; }
    .slider-next { right: 8px; }
}

@media (max-width: 680px) {
    .hero-slider,
    .hero-slider-inner { height: 600px; }
    .hero-slider::before {
        left: -40vw;
        bottom: -106px;
        width: 104vw;
        height: 150px;
    }
    .hero-slider::after {
        right: -34vw;
        top: -92px;
        width: 72vw;
        height: 170px;
    }
    .hero-slide::before {
        background:
            linear-gradient(90deg, rgba(155, 0, 7, .96) 0%, rgba(220, 0, 12, .72) 55%, rgba(220, 0, 12, .18) 100%),
            var(--slide-image) 62% center / cover no-repeat;
    }
    .hero-slider-inner {
        width: calc(100% - 28px);
        margin-inline: auto;
        grid-template-columns: minmax(0, 1fr) 116px;
        gap: 8px;
    }
    .hero-copy { padding-bottom: 28px; }
    .hero-badge { font-size:14px; }
    .hero-slider h1 { max-width: 255px; font-size: 29px; }
    .hero-slider p { max-width: 250px; font-size:14px; }
    .hero-metrics { width: 185px; grid-template-columns: 1fr; margin-top: 18px; }
    .hero-metrics span { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
    .hero-metrics span:last-child { border-bottom: 0; }
    .slider-arrow {
        width: 34px;
        height: 34px;
        font-size:14px;
    }
    .slider-prev { left: 6px; }
    .slider-next { right: 6px; }
    .slider-dots { bottom: 13px; }
}

@media (max-width: 420px) {
    .hero-slider-inner { grid-template-columns: minmax(0, 1fr) 96px; }
    .hero-slider h1 { max-width: 232px; font-size: 26px; }
    .hero-slider p { max-width: 224px; }
    .hero-metrics { width: 165px; }
}

/* Final clean 550px hero redesign */
html, body { overflow-x: hidden; }
.container, .top-strip .container, .site-header .container { width: min(1480px, calc(100% - 48px)); }
.top-strip .container, .site-header .container { max-width: 1480px; }
.nav-shell { min-height: 96px; gap: 34px; }
.site-header .brand { min-width: 270px; }
.site-header .brand-logo-wrap { width: 270px; height: 82px; }
.nav-links { gap: 34px; }
.nav-actions { gap: 16px; }
.hero-slider { height: 550px !important; max-width: 100vw; overflow: hidden !important; position: relative; background: #b90008; }
.hero-slider::before, .hero-slider::after { display: none !important; }
.hero-slider-track, .hero-slide { position: absolute; inset: 0; overflow: hidden; }
.hero-slide::before { background: linear-gradient(90deg, rgba(128, 0, 8, .97) 0%, rgba(185, 0, 12, .86) 34%, rgba(206, 0, 13, .38) 58%, rgba(206, 0, 13, .08) 100%), radial-gradient(circle at 12% 20%, rgba(255, 211, 0, .14), transparent 28%), var(--slide-image) center right / cover no-repeat !important; transform: scale(1.015); }
.hero-slide.is-active::before { transform: scale(1.01); }
.hero-slide::after { background-image: radial-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(115deg, transparent 0 64%, rgba(255, 211, 0, .12) 64% 65%, transparent 65%); background-size: 26px 26px, 100% 100%; opacity: .22; }
.hero-slider-inner { width: min(1320px, calc(100% - 128px)); height: 550px !important; margin-inline: auto; display: flex !important; align-items: center; justify-content: flex-start; padding: 0; }
.hero-copy { width: min(620px, 48vw); max-width: 620px; padding: 0 0 18px; position: relative; z-index: 5; }
.hero-badge { padding: 9px 16px; font-size: 14px; line-height: 1.2; background: rgba(92, 0, 6, .5); border-color: rgba(255, 211, 0, .64); }
.hero-badge i { width: 24px; height: 24px; font-size:14px; }
.hero-slider h1 { max-width: 610px; margin: 18px 0 16px; font-size: clamp(44px, 4.35vw, 66px); line-height: 1.04; letter-spacing: 0; text-shadow: 0 12px 34px rgba(64, 0, 5, .34); }
.hero-slider p { max-width: 560px; margin: 0 0 22px; font-size: 18px; line-height: 1.55; font-weight: 650; color: #fff; }
.hero-slider .hero-actions { gap: 14px; margin-bottom: 0; }
.hero-slider .btn-gold, .hero-slider .btn-light { min-height: 52px; padding: 12px 22px; font-size: 15px; white-space: nowrap; }
.hero-metrics { width: min(600px, 100%); margin-top: 28px; grid-template-columns: repeat(3, minmax(0, 1fr)); background: rgba(86, 0, 7, .42); border-color: rgba(255, 255, 255, .24); backdrop-filter: blur(8px); }
.hero-metrics span { padding: 12px 14px; }
.hero-metrics i { width: 40px; height: 40px; font-size: 17px; }
.hero-metrics strong { font-size: 25px; }
.hero-metrics small { font-size:14px; }
.hero-form-space, .hero-lead-card { display: none !important; }
.slider-arrow { width: 52px; height: 52px; top: 50%; border: 2px solid rgba(255,255,255,.62); background: rgba(120, 0, 7, .44); color: #fff; backdrop-filter: blur(10px); box-shadow: 0 16px 36px rgba(60, 0, 5, .28); }
.slider-arrow:hover { background: #ffd400; color: #6a0006; transform: translateY(-50%) scale(1.08); }
.slider-prev { left: max(28px, calc((100vw - 1540px) / 2)); }
.slider-next { right: max(28px, calc((100vw - 1540px) / 2)); }
.slider-dots { bottom: 18px; padding: 7px 11px; background: rgba(66, 0, 5, .34); }
.notice-band { position: relative; z-index: 2; }
@media (max-width: 1280px) { .container, .top-strip .container, .site-header .container { width: min(1200px, calc(100% - 36px)); } .site-header .brand { min-width: 228px; } .site-header .brand-logo-wrap { width: 228px; height: 70px; } .nav-shell { gap: 22px; } .nav-links { gap: 22px; font-size: 15px; } .hero-slider-inner { width: min(1120px, calc(100% - 96px)); } .hero-copy { width: min(570px, 50vw); } }
@media (max-width: 980px) { .container, .top-strip .container, .site-header .container { width: min(100% - 28px, 1160px); } .nav-shell { min-height: 82px; } .site-header .brand { min-width: 184px; } .site-header .brand-logo-wrap { width: 184px; height: 58px; } .hero-slider, .hero-slider-inner { height: 550px !important; } .hero-slider-inner { width: calc(100% - 72px); } .hero-copy { width: min(500px, 62vw); } .hero-slider h1 { font-size: clamp(34px, 6vw, 48px); } .hero-slider p { font-size: 15px; max-width: 420px; } .hero-metrics { width: min(500px, 100%); } .slider-arrow { display: grid; width: 40px; height: 40px; } .slider-prev { left: 14px; } .slider-next { right: 14px; } }
@media (max-width: 680px) { .hero-slider, .hero-slider-inner { height: 550px !important; } .hero-slide::before { background: linear-gradient(90deg, rgba(128,0,8,.98) 0%, rgba(188,0,12,.82) 58%, rgba(188,0,12,.18) 100%), var(--slide-image) 64% center / cover no-repeat !important; } .hero-slider-inner { width: calc(100% - 48px); align-items: center; } .hero-copy { width: min(275px, 72vw); padding-bottom: 12px; } .hero-badge { font-size:14px; padding: 7px 9px; max-width: 250px; } .hero-badge i { width: 19px; height: 19px; } .hero-slider h1 { font-size: 30px; margin: 14px 0 10px; max-width: 270px; } .hero-slider p { font-size:14px; max-width: 260px; margin-bottom: 14px; } .hero-slider .hero-actions { gap: 8px; } .hero-slider .btn-gold, .hero-slider .btn-light { min-height: 38px; padding: 8px 10px; font-size:14px; white-space: normal; max-width: 150px; text-align: center; } .hero-metrics { width: 176px; grid-template-columns: 1fr; margin-top: 16px; } .hero-metrics span { padding: 7px 9px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); } .hero-metrics span:last-child { border-bottom: 0; } .hero-metrics i { width: 27px; height: 27px; font-size:14px; } .hero-metrics strong { font-size: 18px; } .hero-metrics small { font-size:14px; } .slider-arrow { width: 32px; height: 32px; font-size:14px; } .slider-prev { left: 7px; } .slider-next { right: 7px; } .slider-dots { bottom: 11px; } }
/* Header proportion polish */
.top-strip { overflow: visible; }
.strip-grid {
    min-height: 46px !important;
    align-items: center;
}
.admission-pill {
    min-height: 38px !important;
    min-width: 190px !important;
    padding: 0 22px !important;
    border-radius: 7px !important;
    line-height: 1 !important;
    align-self: center;
    font-size: 14px;
}
.admission-pill i { font-size: 15px; }
.nav-shell { min-height: 86px; }
.whatsapp-btn,
.icon-btn.whatsapp-btn {
    width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    font-size: 23px !important;
    border-radius: 8px;
}
.btn-outline.call-now,
.btn-primary.apply-now {
    min-height: 44px !important;
    padding: 10px 18px !important;
    font-size: 15px !important;
    line-height: 1.15;
    border-radius: 8px;
}
.btn-outline.call-now { border-width: 1.5px; }
.nav-actions { gap: 10px !important; }
.nav-links { font-size: 16px; }
.nav-links a { min-height: 86px; }
.nav-links a::after { bottom: 14px; }
@media (max-width: 1280px) {
    .btn-outline.call-now,
    .btn-primary.apply-now { padding-inline: 14px !important; font-size: 14px !important; }
    .whatsapp-btn,
    .icon-btn.whatsapp-btn { width: 42px !important; height: 42px !important; min-height: 42px !important; font-size: 21px !important; }
    .admission-pill { min-width: 176px !important; font-size:14px; }
}
/* Header logo and badge fit polish */
.site-header .brand-logo-wrap {
    width: 285px !important;
    height: 70px !important;
    background: #ed1c24 !important;
    border-radius: 0 !important;
    overflow: hidden !important;
}
.site-header .brand-logo {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
}
.site-header .brand { min-width: 285px !important; }
.nav-shell { min-height: 88px !important; }
.hero-slider { padding-top: 0 !important; }
.hero-slider-track,
.hero-slide { overflow: hidden !important; }
.hero-slider-inner {
    align-items: center !important;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
}
.hero-copy { padding-top: 10px !important; }
.hero-badge {
    margin-top: 0 !important;
    transform: translateY(0) !important;
    line-height: 1.25 !important;
}
@media (max-width: 1280px) {
    .site-header .brand,
    .site-header .brand-logo-wrap { width: 238px !important; min-width: 238px !important; }
    .site-header .brand-logo-wrap { height: 60px !important; }
}
@media (max-width: 680px) {
    .site-header .brand,
    .site-header .brand-logo-wrap { width: 150px !important; min-width: 150px !important; }
    .site-header .brand-logo-wrap { height: 46px !important; }
    .hero-slider-inner { padding-top: 14px !important; padding-bottom: 14px !important; }
}
/* Natural logo rendering */
.site-header .brand-logo-wrap,
.footer-brand .brand-logo-wrap {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
}
.site-header .brand-logo,
.footer-brand .brand-logo {
    object-fit: contain !important;
    object-position: center !important;
}
.site-header .brand-logo-wrap {
    width: 292px !important;
    height: 78px !important;
}
.site-header .brand { min-width: 292px !important; }
.footer-brand .brand-logo-wrap {
    width: 178px !important;
    height: 70px !important;
}
@media (max-width: 1280px) {
    .site-header .brand,
    .site-header .brand-logo-wrap { width: 238px !important; min-width: 238px !important; }
    .site-header .brand-logo-wrap { height: 64px !important; }
}
@media (max-width: 680px) {
    .site-header .brand,
    .site-header .brand-logo-wrap { width: 156px !important; min-width: 156px !important; }
    .site-header .brand-logo-wrap { height: 48px !important; }
}
/* Alignment and slider typography consistency */
:root { --site-gutter: 88px; }
.top-strip .container,
.site-header .container,
.hero-slider-inner,
.notice-band .container,
.section > .container,
.site-footer .container {
    width: min(1720px, calc(100% - (var(--site-gutter) * 2))) !important;
    max-width: 1720px !important;
}
.strip-grid,
.nav-shell { margin-inline: auto; }
.site-header .brand-logo-wrap,
.footer-brand .brand-logo-wrap {
    border-radius: 8px !important;
    overflow: hidden !important;
}
.site-header .brand-logo-wrap {
    width: 248px !important;
    height: 96px !important;
}
.site-header .brand { min-width: 248px !important; }
.site-header .brand-logo { display: block; }
.hero-slider-inner {
    height: 550px !important;
    align-items: center !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.hero-copy {
    width: min(650px, 45vw) !important;
    max-width: 650px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    transform: translateY(-8px);
}
.hero-badge {
    margin: 0 0 22px 0 !important;
    padding: 10px 18px !important;
    min-height: 46px;
    display: inline-flex !important;
    align-items: center !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    white-space: normal;
}
.hero-badge i {
    flex: 0 0 auto;
    width: 26px !important;
    height: 26px !important;
}
.hero-slider h1 {
    margin: 0 0 22px !important;
    max-width: 650px !important;
    font-size: clamp(52px, 4.65vw, 78px) !important;
    line-height: 1.08 !important;
    font-weight: 900 !important;
}
.hero-slider p {
    max-width: 650px !important;
    margin-bottom: 26px !important;
    font-size: 20px !important;
    line-height: 1.48 !important;
    font-weight: 700 !important;
}
.hero-slider .hero-actions { margin-top: 0 !important; }
.hero-metrics { margin-top: 34px !important; }
@media (max-width: 1280px) {
    :root { --site-gutter: 36px; }
    .site-header .brand-logo-wrap { width: 220px !important; height: 84px !important; }
    .site-header .brand { min-width: 220px !important; }
    .hero-copy { width: min(570px, 50vw) !important; }
    .hero-slider h1 { font-size: clamp(42px, 5vw, 62px) !important; }
    .hero-slider p { font-size: 17px !important; }
}
@media (max-width: 680px) {
    :root { --site-gutter: 14px; }
    .site-header .brand-logo-wrap { width: 156px !important; height: 60px !important; }
    .site-header .brand { min-width: 156px !important; }
    .hero-slider-inner { width: calc(100% - 48px) !important; }
    .hero-copy { width: min(280px, 72vw) !important; transform: none; }
    .hero-badge { min-height: 34px; margin-bottom: 12px !important; font-size:14px !important; padding: 7px 9px !important; }
    .hero-slider h1 { font-size: 30px !important; margin-bottom: 10px !important; }
    .hero-slider p { font-size:14px !important; margin-bottom: 14px !important; }
}
/* Logo clipping and slider fit correction */
.site-header .brand-logo-wrap,
.footer-brand .brand-logo-wrap {
    border-radius: 8px !important;
    overflow: hidden !important;
    background: transparent !important;
    display: block !important;
    line-height: 0 !important;
    isolation: isolate;
}
.site-header .brand-logo-wrap {
    width: 305px !important;
    height: 120px !important;
}
.site-header .brand { min-width: 305px !important; }
.site-header .brand-logo,
.footer-brand .brand-logo {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 8px !important;
}
.nav-shell { min-height: 122px !important; align-items: center !important; }
.hero-slider { height: 550px !important; }
.hero-slider-inner {
    height: 550px !important;
    width: min(1700px, calc(100% - 220px)) !important;
    align-items: center !important;
}
.hero-slide::before {
    background:
        linear-gradient(90deg, rgba(128, 0, 8, .97) 0%, rgba(185, 0, 12, .86) 35%, rgba(206, 0, 13, .32) 57%, rgba(206, 0, 13, .08) 100%),
        radial-gradient(circle at 12% 20%, rgba(255, 211, 0, .13), transparent 28%),
        var(--slide-image) 78% center / contain no-repeat !important;
    background-color: #b90008 !important;
}
.hero-copy {
    width: min(720px, 43vw) !important;
    max-width: 720px !important;
    transform: translateY(-2px) !important;
}
.hero-slider h1 {
    font-size: clamp(46px, 4.1vw, 70px) !important;
    max-width: 720px !important;
}
.hero-slider p { max-width: 650px !important; }
.hero-metrics { width: min(650px, 100%) !important; }
.slider-prev { left: 32px !important; }
.slider-next { right: 32px !important; }
@media (max-width: 1280px) {
    .site-header .brand-logo-wrap { width: 245px !important; height: 96px !important; }
    .site-header .brand { min-width: 245px !important; }
    .nav-shell { min-height: 100px !important; }
    .hero-slider-inner { width: min(1120px, calc(100% - 96px)) !important; }
    .hero-slide::before { background-size: cover !important; background-position: 70% center !important; }
    .hero-copy { width: min(570px, 50vw) !important; }
}
@media (max-width: 680px) {
    .site-header .brand-logo-wrap { width: 158px !important; height: 62px !important; }
    .site-header .brand { min-width: 158px !important; }
    .nav-shell { min-height: 78px !important; }
    .hero-slider-inner { width: calc(100% - 48px) !important; }
    .hero-slide::before { background-size: cover !important; background-position: 64% center !important; }
    .hero-copy { width: min(280px, 72vw) !important; }
}
/* Compact header logo */
.site-header .brand-logo-wrap {
    width: 235px !important;
    height: 92px !important;
}
.site-header .brand { min-width: 235px !important; }
.nav-shell { min-height: 100px !important; }
@media (max-width: 1280px) {
    .site-header .brand-logo-wrap { width: 205px !important; height: 80px !important; }
    .site-header .brand { min-width: 205px !important; }
    .nav-shell { min-height: 88px !important; }
}
@media (max-width: 680px) {
    .site-header .brand-logo-wrap { width: 142px !important; height: 56px !important; }
    .site-header .brand { min-width: 142px !important; }
    .nav-shell { min-height: 74px !important; }
}
/* Slider viewport fit correction */
.site-header { margin-bottom: 0 !important; }
main { overflow-x: hidden !important; }
.hero-slider {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    margin-top: 0 !important;
    height: 550px !important;
    overflow: hidden !important;
}
.hero-slider-track,
.hero-slide { width: 100% !important; height: 100% !important; }
.hero-slide::before {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
}
.hero-slider-inner {
    width: min(1640px, calc(100% - 180px)) !important;
    height: 550px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.hero-copy {
    width: min(630px, 42vw) !important;
    max-width: 630px !important;
    transform: translateY(4px) !important;
}
.hero-badge {
    margin-bottom: 16px !important;
    min-height: 40px !important;
    padding: 8px 16px !important;
}
.hero-slider h1 {
    font-size: clamp(42px, 3.85vw, 62px) !important;
    line-height: 1.08 !important;
    margin-bottom: 16px !important;
    max-width: 630px !important;
}
.hero-slider p {
    font-size: 17px !important;
    line-height: 1.5 !important;
    max-width: 600px !important;
    margin-bottom: 20px !important;
}
.hero-metrics { display: none !important; }
.slider-prev { left: 34px !important; }
.slider-next { right: 34px !important; }
@media (max-width: 1280px) {
    .hero-slider-inner { width: min(1120px, calc(100% - 96px)) !important; }
    .hero-copy { width: min(540px, 50vw) !important; }
}
@media (max-width: 680px) {
    .hero-slider-inner { width: calc(100% - 48px) !important; }
    .hero-copy { width: min(270px, 72vw) !important; transform: none !important; }
    .hero-slider h1 { font-size: 28px !important; }
    .hero-slider p { font-size:14px !important; }
    .hero-slide::before { background-position: 63% center !important; }
}
/* Smaller final logo size */
.site-header .brand-logo-wrap {
    width: 205px !important;
    height: 80px !important;
}
.site-header .brand { min-width: 205px !important; }
.nav-shell { min-height: 88px !important; }
@media (max-width: 1280px) {
    .site-header .brand-logo-wrap { width: 185px !important; height: 72px !important; }
    .site-header .brand { min-width: 185px !important; }
    .nav-shell { min-height: 82px !important; }
}
@media (max-width: 680px) {
    .site-header .brand-logo-wrap { width: 128px !important; height: 50px !important; }
    .site-header .brand { min-width: 128px !important; }
    .nav-shell { min-height: 68px !important; }
}
/* Premium footer redesign */
.premium-footer {
    position: relative;
    padding: 34px 0 0 !important;
    color: #fff;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 212, 0, .12), transparent 26%),
        linear-gradient(135deg, #5d0005 0%, #8d0008 42%, #4a0004 100%) !important;
    overflow: hidden;
}
.premium-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: .2;
    pointer-events: none;
}
.premium-footer .container { position: relative; z-index: 1; }
.footer-cta {
    display: grid;
    grid-template-columns: .9fr 1.15fr .75fr;
    gap: 34px;
    align-items: center;
    min-height: 230px;
    padding: 34px 44px;
    border: 1px solid rgba(255, 212, 0, .48);
    border-bottom: 3px solid #ffd400;
    border-radius: 8px;
    background:
        radial-gradient(circle at 0 0, rgba(255, 212, 0, .95) 0 18%, transparent 19%),
        linear-gradient(135deg, #bc000a 0%, #970007 64%, #c9000d 100%);
    box-shadow: 0 26px 70px rgba(33, 0, 3, .28);
}
.footer-cta-copy h2 {
    margin: 0 0 14px;
    font-size: clamp(34px, 3.5vw, 54px);
    line-height: 1.02;
    letter-spacing: 0;
}
.footer-cta-copy mark { color: #ffd400; background: transparent; }
.footer-cta-copy p { margin: 0; max-width: 330px; color: #fff; font-size: 19px; }
.footer-cta-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}
.footer-cta-features span {
    display: grid;
    place-items: center;
    gap: 7px;
    min-height: 128px;
    padding: 0 22px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.24);
}
.footer-cta-features span:last-child { border-right: 0; }
.footer-cta-features i {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(255,255,255,.34);
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
}
.footer-cta-features strong { color: #ffd400; font-size: 16px; }
.footer-cta-features small { color: #fff; font-size: 14px; line-height: 1.35; }
.footer-cta-actions { display: grid; gap: 16px; }
.footer-apply,
.footer-counselling {
    min-height: 58px;
    border-radius: 8px;
    font-size: 17px;
}
.footer-apply { background: linear-gradient(135deg, #ffd400, #ffba00); color: #671000; }
.footer-counselling { background: #fff; color: #c3000a; box-shadow: 0 18px 34px rgba(0,0,0,.16); }
.footer-cta-actions small { color: #fff; font-size: 14px; }
.footer-cta-actions small i { color: #28d160; margin-right: 7px; }
.footer-main-grid {
    display: grid;
    grid-template-columns: 1.15fr .7fr .85fr 1fr .95fr;
    gap: 34px;
    padding: 56px 0 42px;
}
.footer-about,
.footer-links,
.footer-contact { border-right: 1px solid rgba(255,255,255,.18); padding-right: 28px; }
.footer-about .footer-brand { margin: 0 0 20px; }
.footer-about .brand-logo-wrap { width: 270px !important; height: 106px !important; }
.footer-about p { max-width: 320px; color: #ffe9e9; font-size: 17px; }
.footer-socials { display: flex; gap: 14px; margin-top: 28px; }
.footer-socials a {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 61, 61, .75);
    border-radius: 50%;
    color: #fff;
    background: rgba(255,255,255,.05);
    font-size: 21px;
    transition: transform .2s ease, background .2s ease;
}
.footer-socials a:hover { transform: translateY(-2px); background: #e50914; }
.footer-main-grid h3 {
    margin: 0 0 22px;
    color: #ffd400;
    font-size: 22px;
}
.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 13px;
    color: #fff;
    font-size: 16px;
}
.footer-links a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ffd400;
}
.footer-contact p {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: start;
    margin: 0 0 22px;
    color: #fff;
    font-size: 16px;
}
.footer-contact i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #e50914, #ad0008);
}
.footer-whatsapp-card {
    padding: 30px 24px;
    text-align: center;
    border: 1px solid rgba(229, 9, 20, .75);
    border-radius: 8px;
    background: rgba(94, 0, 7, .62);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), 0 20px 46px rgba(33,0,3,.22);
}
.footer-whatsapp-card > i {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    color: #fff;
    background: #25d366;
    font-size: 54px;
    box-shadow: 0 0 0 10px #fff;
}
.footer-whatsapp-card strong { display: block; color: #fff; }
.footer-whatsapp-card h3 { margin: 6px 0 14px; color: #ffd400; font-size: 26px; }
.footer-whatsapp-card p { color: #fff; margin-bottom: 22px; }
.footer-whatsapp-card .btn { width: 100%; background: #fff; color: #0b8e35; min-height: 52px; }
.footer-bottom-bar { border-top: 1px solid rgba(255,255,255,.14); background: rgba(67,0,5,.36); }
.footer-bottom-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #fff;
}
.footer-bottom-inner > span:first-child { display: inline-flex; gap: 12px; align-items: center; }
.footer-bottom-inner > span:first-child i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffd400;
    background: rgba(255,255,255,.1);
}
.footer-bottom-inner a { margin-left: 34px; color: #fff; }
@media (max-width: 1100px) {
    .footer-cta { grid-template-columns: 1fr; }
    .footer-main-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-whatsapp-card { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
    .premium-footer { padding-top: 20px !important; }
    .footer-cta { padding: 24px; gap: 22px; }
    .footer-cta-features { grid-template-columns: 1fr; }
    .footer-cta-features span { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
    .footer-main-grid { grid-template-columns: 1fr; padding-top: 34px; }
    .footer-about,
    .footer-links,
    .footer-contact { border-right: 0; padding-right: 0; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; padding: 18px 0; }
    .footer-bottom-inner a { margin-left: 0; margin-right: 20px; }
}
/* Footer column and credit update */
.footer-main-grid {
    grid-template-columns: 1.2fr .75fr .9fr 1.1fr !important;
}
.footer-contact { border-right: 0 !important; }
.footer-bottom-inner > span:last-child a {
    margin-left: 6px !important;
    color: #ffd400 !important;
    font-weight: 800;
}
@media (max-width: 1100px) {
    .footer-main-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 680px) {
    .footer-main-grid { grid-template-columns: 1fr !important; }
}
/* Reference-style footer final polish */
.premium-footer {
    width: min(1720px, calc(100% - 52px)) !important;
    margin: 44px auto 28px !important;
    padding: 0 !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at 18% 78%, rgba(255,255,255,.08), transparent 30%),
        radial-gradient(circle at 74% 36%, rgba(255, 212, 0, .08), transparent 26%),
        linear-gradient(145deg, #530003 0%, #8e0008 46%, #4b0004 100%) !important;
    box-shadow: 0 18px 44px rgba(54, 0, 4, .22) !important;
}
.premium-footer::before {
    background-image: radial-gradient(rgba(255,255,255,.16) 1px, transparent 1px) !important;
    background-size: 20px 20px !important;
    opacity: .16 !important;
}
.premium-footer .container {
    width: calc(100% - 110px) !important;
    max-width: none !important;
}
.footer-cta {
    width: 100% !important;
    min-height: 292px !important;
    margin: 0 !important;
    padding: 44px 70px 42px 225px !important;
    grid-template-columns: .88fr 1.15fr .78fr !important;
    gap: 42px !important;
    border: 0 !important;
    border-bottom: 3px solid #ffd400 !important;
    border-radius: 0 0 22px 0 !important;
    background:
        radial-gradient(ellipse at -8% -8%, #ffc414 0 21%, transparent 21.4%),
        radial-gradient(ellipse at -4% 8%, #ffcb16 0 25%, transparent 25.4%),
        linear-gradient(132deg, rgba(255,255,255,.9) 0 1px, transparent 1px 100%),
        linear-gradient(134deg, #b50008 0%, #760004 58%, #d5000d 100%) !important;
    background-size: auto, auto, 100% 100%, auto !important;
    box-shadow: none !important;
    position: relative;
}
.footer-cta::before,
.footer-cta::after {
    content: "";
    position: absolute;
    pointer-events: none;
}
.footer-cta::before {
    left: -18px;
    top: -60px;
    width: 370px;
    height: 350px;
    border: 3px solid rgba(255,255,255,.7);
    border-left: 0;
    border-top: 0;
    border-radius: 0 0 100% 0;
    transform: rotate(7deg);
    opacity: .85;
}
.footer-cta::after {
    right: 30px;
    top: 40px;
    width: 88px;
    height: 150px;
    background-image: radial-gradient(rgba(255,255,255,.42) 1.4px, transparent 1.4px);
    background-size: 16px 16px;
    opacity: .55;
}
.footer-cta-copy h2 {
    font-size: clamp(42px, 3.15vw, 58px) !important;
    line-height: 1.05 !important;
    margin-bottom: 20px !important;
}
.footer-cta-copy h2::after {
    content: "";
    display: block;
    width: 112px;
    height: 3px;
    margin-top: 16px;
    background: linear-gradient(90deg, #ffd400 0 64px, transparent 64px 75px, #ffd400 75px 100%);
}
.footer-cta-copy p {
    max-width: 330px !important;
    font-size: 20px !important;
    line-height: 1.42 !important;
}
.footer-cta-copy mark { color: #ffd400 !important; }
.footer-cta-features span {
    min-height: 156px !important;
    padding: 0 26px !important;
    border-right: 1px solid rgba(255,255,255,.26) !important;
}
.footer-cta-features i {
    width: 66px !important;
    height: 66px !important;
    border-color: rgba(255, 91, 91, .78) !important;
    background: rgba(126, 0, 8, .24) !important;
}
.footer-cta-actions { gap: 20px !important; }
.footer-apply,
.footer-counselling {
    min-height: 68px !important;
    border-radius: 8px !important;
    font-size: 20px !important;
    font-weight: 900 !important;
}
.footer-cta-actions small { font-size: 16px !important; }
.footer-main-grid {
    grid-template-columns: 1.22fr .72fr .84fr 1.18fr !important;
    gap: 42px !important;
    padding: 72px 0 58px !important;
}
.footer-about,
.footer-links,
.footer-contact {
    border-right: 1px solid rgba(255,255,255,.18) !important;
    padding-right: 34px !important;
}
.footer-contact { border-right: 0 !important; }
.footer-about .footer-brand { margin-bottom: 4px !important; }
.footer-about .brand-logo-wrap {
    width: 320px !important;
    height: 126px !important;
    border-radius: 0 !important;
    overflow: visible !important;
}
.footer-about .brand-logo {
    object-fit: contain !important;
    border-radius: 0 !important;
}
.footer-tagline {
    display: block;
    width: 320px;
    margin: -10px 0 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 80, 80, .55);
    color: #ffd400;
    font-size: 22px;
    font-weight: 900;
    text-align: center;
}
.footer-about p {
    max-width: 330px !important;
    margin-top: 0 !important;
    color: #fff !important;
    font-size: 18px !important;
    line-height: 1.75 !important;
}
.footer-socials { gap: 16px !important; margin-top: 32px !important; }
.footer-socials a {
    width: 56px !important;
    height: 56px !important;
    border: 2px solid rgba(239, 34, 34, .9) !important;
    background: rgba(81, 0, 5, .34) !important;
    font-size: 23px !important;
}
.footer-socials a:nth-child(1) { color: #2388ff !important; }
.footer-socials a:nth-child(2) { color: #ff4dac !important; }
.footer-socials a:nth-child(3) { color: #ff3030 !important; }
.footer-socials a:nth-child(4) { color: #20d866 !important; }
.footer-main-grid h3 {
    margin-bottom: 26px !important;
    color: #ffd400 !important;
    font-size: 24px !important;
}
.footer-links a {
    margin-bottom: 16px !important;
    gap: 13px !important;
    font-size: 17px !important;
}
.footer-links a::before { color: #ffd400 !important; font-size: 18px !important; }
.footer-contact p {
    grid-template-columns: 50px 1fr !important;
    gap: 15px !important;
    margin-bottom: 26px !important;
    font-size: 17px !important;
    line-height: 1.48 !important;
}
.footer-contact i {
    width: 46px !important;
    height: 46px !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.16) !important;
}
.footer-bottom-bar {
    background: rgba(84, 0, 5, .52) !important;
    border-top: 1px solid rgba(255,255,255,.16) !important;
}
.footer-bottom-inner { min-height: 84px !important; }
.footer-bottom-inner > span:first-child i {
    background: linear-gradient(135deg, #8c4d00, #d59b18) !important;
    color: #fff !important;
}
.footer-bottom-inner > span:last-child a {
    margin-left: 6px !important;
    color: #ffd400 !important;
}
@media (max-width: 1180px) {
    .premium-footer { width: min(100% - 28px, 1720px) !important; }
    .premium-footer .container { width: calc(100% - 44px) !important; }
    .footer-cta { grid-template-columns: 1fr !important; padding: 34px !important; }
    .footer-main-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .footer-about .brand-logo-wrap, .footer-tagline { width: 270px !important; }
}
@media (max-width: 680px) {
    .premium-footer { width: calc(100% - 20px) !important; margin-top: 28px !important; border-radius: 16px !important; }
    .premium-footer .container { width: calc(100% - 28px) !important; }
    .footer-cta { min-height: auto !important; padding: 28px 20px !important; border-radius: 0 0 16px 0 !important; }
    .footer-cta-features { grid-template-columns: 1fr !important; }
    .footer-cta-features span { border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,.22) !important; }
    .footer-main-grid { grid-template-columns: 1fr !important; gap: 28px !important; padding: 38px 0 !important; }
    .footer-about, .footer-links, .footer-contact { border-right: 0 !important; padding-right: 0 !important; }
    .footer-about .brand-logo-wrap, .footer-tagline { width: 230px !important; }
    .footer-about .brand-logo-wrap { height: 92px !important; }
    .footer-bottom-inner { align-items: flex-start !important; }
}
/* Footer tagline removed */
.footer-tagline { display: none !important; }
.footer-about .footer-brand { margin-bottom: 20px !important; }
/* Footer CTA compact reference correction */
.premium-footer {
    width: min(1820px, calc(100% - 48px)) !important;
    border-radius: 22px !important;
}
.premium-footer > .footer-cta.container {
    width: 100% !important;
    max-width: none !important;
}
.footer-cta {
    min-height: 200px !important;
    padding: 26px 76px 26px 150px !important;
    grid-template-columns: .94fr 1.23fr .86fr !important;
    gap: 34px !important;
    align-items: center !important;
    border-radius: 0 0 18px 0 !important;
    background:
        radial-gradient(ellipse at -10% -12%, #ffc414 0 24%, transparent 24.5%),
        radial-gradient(ellipse at -7% 12%, #ffd21a 0 26%, transparent 26.5%),
        linear-gradient(134deg, #af0008 0%, #780004 58%, #d5000d 100%) !important;
}
.footer-cta::before {
    left: -28px !important;
    top: -72px !important;
    width: 330px !important;
    height: 290px !important;
    border-width: 2px !important;
    opacity: .7 !important;
}
.footer-cta::after {
    right: 42px !important;
    top: 28px !important;
    width: 72px !important;
    height: 116px !important;
    background-size: 14px 14px !important;
}
.footer-cta-copy h2 {
    font-size: clamp(28px, 2.2vw, 42px) !important;
    line-height: 1.08 !important;
    margin-bottom: 12px !important;
}
.footer-cta-copy h2::after {
    width: 86px !important;
    height: 2px !important;
    margin-top: 10px !important;
    background: linear-gradient(90deg, #ffd400 0 54px, transparent 54px 64px, #ffd400 64px 100%) !important;
}
.footer-cta-copy p {
    max-width: 270px !important;
    font-size: 15px !important;
    line-height: 1.42 !important;
}
.footer-cta-features span {
    min-height: 116px !important;
    padding: 0 18px !important;
    gap: 6px !important;
}
.footer-cta-features i {
    width: 54px !important;
    height: 54px !important;
    font-size: 20px !important;
}
.footer-cta-features strong {
    font-size:14px !important;
    line-height: 1.2 !important;
}
.footer-cta-features small {
    font-size:14px !important;
    line-height: 1.32 !important;
}
.footer-cta-actions {
    gap: 12px !important;
    max-width: 300px !important;
}
.footer-apply,
.footer-counselling {
    min-height: 50px !important;
    padding: 11px 20px !important;
    border-radius: 7px !important;
    font-size: 15px !important;
}
.footer-cta-actions small {
    font-size:14px !important;
    line-height: 1.35 !important;
}
.footer-main-grid {
    grid-template-columns: 1.22fr .78fr .94fr 1.18fr !important;
    gap: 34px !important;
    padding: 52px 0 42px !important;
}
.footer-about,
.footer-links,
.footer-contact {
    padding-right: 28px !important;
}
.footer-about .brand-logo-wrap {
    width: 285px !important;
    height: 112px !important;
}
.footer-about p {
    max-width: 300px !important;
    font-size: 15px !important;
    line-height: 1.62 !important;
}
.footer-socials {
    gap: 12px !important;
    margin-top: 24px !important;
}
.footer-socials a {
    width: 46px !important;
    height: 46px !important;
    font-size: 19px !important;
}
.footer-main-grid h3 {
    margin-bottom: 20px !important;
    font-size: 19px !important;
}
.footer-links a {
    margin-bottom: 12px !important;
    gap: 10px !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
}
.footer-links a::before {
    font-size: 14px !important;
}
.footer-contact p {
    grid-template-columns: 40px 1fr !important;
    gap: 12px !important;
    margin-bottom: 18px !important;
    font-size: 14px !important;
    line-height: 1.48 !important;
}
.footer-contact i {
    width: 38px !important;
    height: 38px !important;
    font-size: 14px !important;
}
.footer-bottom-inner {
    min-height: 66px !important;
    font-size:14px !important;
}
.footer-bottom-inner > span:first-child i {
    width: 32px !important;
    height: 32px !important;
    font-size:14px !important;
}
@media (max-width: 1180px) {
    .footer-cta { padding: 30px !important; }
    .footer-cta-actions { max-width: 100% !important; }
}
@media (max-width: 680px) {
    .premium-footer { width: calc(100% - 20px) !important; }
    .footer-cta { padding: 26px 18px !important; }
    .footer-cta-copy h2 { font-size: 30px !important; }
    .footer-main-grid { padding: 34px 0 !important; }
    .footer-about .brand-logo-wrap { width: 220px !important; height: 86px !important; }
}
/* Footer logo natural no-box render */
.footer-about .footer-brand,
.footer-brand .brand-logo-wrap,
.footer-about .brand-logo-wrap {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
    overflow: visible !important;
}
.footer-about .brand-logo {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    object-fit: contain !important;
}
/* Exact ZCA footer CTA from supplied reference */
.premium-footer .zca-cta-box.container,
.premium-footer > .zca-cta-box.container {
    width: calc(100% - 48px) !important;
    max-width: 1320px !important;
}
.premium-footer .zca-cta-box {
    margin: 24px auto 0 !important;
    min-height: 355px !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 22px !important;
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.10), transparent 25%),
        linear-gradient(135deg, #8e0000 0%, #c60000 45%, #e60000 100%) !important;
    box-shadow: 0 22px 45px rgba(153, 0, 0, 0.24) !important;
    display: grid !important;
    grid-template-columns: 1.1fr 1.45fr 0.95fr !important;
    align-items: center !important;
    gap: 30px !important;
    padding: 58px 58px 58px 135px !important;
    border: 0 !important;
}
.premium-footer .zca-cta-box::before { display: none !important; }
.premium-footer .zca-cta-box::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    right: 48px !important;
    top: 42px !important;
    width: 110px !important;
    height: 110px !important;
    background-image: radial-gradient(rgba(255,255,255,0.48) 1.4px, transparent 1.4px) !important;
    background-size: 16px 16px !important;
    opacity: 0.8 !important;
    pointer-events: none !important;
}
.premium-footer .zca-cta-shape {
    position: absolute !important;
    left: -125px !important;
    top: -80px !important;
    width: 430px !important;
    height: 430px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #ffc400 0%, #ffdd22 60%, #ffb000 100%) !important;
    z-index: 1 !important;
}
.premium-footer .zca-cta-shape::before {
    content: "" !important;
    position: absolute !important;
    right: -38px !important;
    top: 35px !important;
    width: 390px !important;
    height: 390px !important;
    border-radius: 50% !important;
    border: 3px solid rgba(255,255,255,0.85) !important;
}
.premium-footer .zca-cta-left,
.premium-footer .zca-cta-features,
.premium-footer .zca-cta-actions {
    position: relative !important;
    z-index: 3 !important;
}
.premium-footer .zca-cta-left h2 {
    color: #fff !important;
    font-size: 44px !important;
    line-height: 1.18 !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    margin: 0 !important;
}
.premium-footer .zca-cta-left h2 span {
    color: #ffe600 !important;
    font-size: 58px !important;
}
.premium-footer .zca-title-line {
    width: 205px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #ffe600, rgba(255,230,0,0.15)) !important;
    margin: 20px 0 !important;
    position: relative !important;
}
.premium-footer .zca-title-line::after {
    content: "" !important;
    position: absolute !important;
    left: 115px !important;
    top: -5px !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: #ffe600 !important;
}
.premium-footer .zca-cta-left p {
    color: #fff !important;
    font-size: 21px !important;
    line-height: 1.55 !important;
    margin: 0 !important;
    font-weight: 400 !important;
}
.premium-footer .zca-cta-left p strong {
    color: #ffe600 !important;
    font-weight: 800 !important;
}
.premium-footer .zca-cta-features {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0 !important;
}
.premium-footer .zca-feature-item {
    text-align: center !important;
    padding: 5px 26px !important;
    min-height: 190px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    border-left: 1px solid rgba(255,255,255,0.25) !important;
}
.premium-footer .zca-feature-item:last-child {
    border-right: 1px solid rgba(255,255,255,0.25) !important;
}
.premium-footer .zca-feature-icon {
    width: 82px !important;
    height: 82px !important;
    margin: 0 auto 18px !important;
    border-radius: 50% !important;
    border: 2px solid rgba(255,255,255,0.25) !important;
    background: rgba(255,255,255,0.06) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.premium-footer .zca-feature-icon i {
    font-size: 34px !important;
    color: #fff !important;
}
.premium-footer .zca-feature-item h4 {
    color: #ffe600 !important;
    font-size: 18px !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;
    margin: 0 0 10px !important;
}
.premium-footer .zca-feature-item p {
    color: #fff !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}
.premium-footer .zca-cta-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    max-width: none !important;
}
.premium-footer .zca-apply-btn,
.premium-footer .zca-counselling-btn {
    min-height: 72px !important;
    border-radius: 9px !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    transition: 0.3s ease !important;
    padding: 0 18px !important;
}
.premium-footer .zca-apply-btn {
    background: linear-gradient(135deg, #ffea00 0%, #ffc400 100%) !important;
    color: #7b0000 !important;
    box-shadow: 0 12px 24px rgba(255, 204, 0, 0.28) !important;
}
.premium-footer .zca-counselling-btn {
    background: #fff !important;
    color: #c60000 !important;
    box-shadow: 0 12px 24px rgba(0,0,0,0.12) !important;
}
.premium-footer .zca-counselling-btn i { font-size: 30px !important; }
.premium-footer .zca-secure-text {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 13px !important;
    color: #fff !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
}
.premium-footer .zca-secure-text i {
    color: #00d23b !important;
    font-size: 27px !important;
}
@media (max-width: 1100px) {
    .premium-footer .zca-cta-box {
        grid-template-columns: 1fr !important;
        padding: 55px 35px !important;
        text-align: center !important;
    }
    .premium-footer .zca-cta-left p { margin: 0 auto !important; }
    .premium-footer .zca-title-line { margin-left: auto !important; margin-right: auto !important; }
    .premium-footer .zca-cta-features { grid-template-columns: repeat(3, 1fr) !important; }
    .premium-footer .zca-cta-shape { opacity: .55 !important; }
}
@media (max-width: 768px) {
    .premium-footer .zca-cta-box.container { width: calc(100% - 28px) !important; }
    .premium-footer .zca-cta-box {
        border-radius: 18px !important;
        padding: 45px 22px !important;
    }
    .premium-footer .zca-cta-left h2 { font-size: 34px !important; }
    .premium-footer .zca-cta-left h2 span { font-size: 46px !important; }
    .premium-footer .zca-cta-left p { font-size: 16px !important; }
    .premium-footer .zca-cta-features { grid-template-columns: 1fr !important; }
    .premium-footer .zca-feature-item {
        min-height: auto !important;
        padding: 24px 10px !important;
        border-left: 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.2) !important;
    }
    .premium-footer .zca-feature-item:last-child { border-right: 0 !important; }
    .premium-footer .zca-apply-btn,
    .premium-footer .zca-counselling-btn { min-height: 58px !important; font-size: 16px !important; }
    .premium-footer .zca-secure-text { font-size:14px !important; }
}
/* Footer CTA remove left yellow shape and curve bottom line */
.footer-cta {
    background:
        radial-gradient(circle at 11% 28%, rgba(255,255,255,.08), transparent 22%),
        radial-gradient(circle at 78% 18%, rgba(255,255,255,.10), transparent 25%),
        linear-gradient(135deg, #8e0000 0%, #bd0009 50%, #e60000 100%) !important;
    border-bottom: 0 !important;
    position: relative !important;
}
.footer-cta::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 34px !important;
    top: 42px !important;
    width: 120px !important;
    height: 150px !important;
    border: 0 !important;
    border-radius: 0 !important;
    transform: none !important;
    background-image: radial-gradient(rgba(255,255,255,.28) 1.35px, transparent 1.35px) !important;
    background-size: 16px 16px !important;
    opacity: .65 !important;
    pointer-events: none !important;
}
.footer-cta::after {
    right: 44px !important;
    top: 40px !important;
    width: 110px !important;
    height: 126px !important;
    background-image: radial-gradient(rgba(255,255,255,.38) 1.35px, transparent 1.35px) !important;
    background-size: 16px 16px !important;
    opacity: .7 !important;
}
.footer-cta .footer-cta-copy::before {
    content: "";
    position: absolute;
    left: -180px;
    bottom: -47px;
    width: calc(100vw + 260px);
    max-width: 1740px;
    height: 28px;
    border-top: 3px solid #ffd400;
    border-radius: 0 0 22px 22px;
    pointer-events: none;
}
.footer-cta-copy { position: relative !important; }
.footer-cta-copy h2,
.footer-cta-copy p,
.footer-cta-features,
.footer-cta-actions { position: relative !important; z-index: 2 !important; }
@media (max-width: 1180px) {
    .footer-cta .footer-cta-copy::before { display: none; }
    .footer-cta { border-bottom: 3px solid #ffd400 !important; border-radius: 0 0 18px 18px !important; }
}
/* Final footer CTA cleanup: no clipping, no yellow blob */
.premium-footer .footer-cta {
    display: grid !important;
    grid-template-columns: .95fr 1.15fr .82fr !important;
    align-items: center !important;
    gap: 34px !important;
    min-height: 255px !important;
    padding: 42px 72px !important;
    margin: 0 !important;
    overflow: hidden !important;
    border: 0 !important;
    border-bottom: 3px solid #ffd400 !important;
    border-radius: 0 0 22px 22px !important;
    background:
        radial-gradient(rgba(255,255,255,.25) 1.25px, transparent 1.25px) 42px 34px / 18px 18px no-repeat,
        radial-gradient(rgba(255,255,255,.36) 1.25px, transparent 1.25px) calc(100% - 142px) 34px / 18px 18px no-repeat,
        radial-gradient(circle at 18% 22%, rgba(255,255,255,.08), transparent 24%),
        linear-gradient(135deg, #8e0000 0%, #bc0009 48%, #e0000d 100%) !important;
}
.premium-footer .footer-cta::before,
.premium-footer .footer-cta::after,
.premium-footer .footer-cta .footer-cta-copy::before {
    display: none !important;
    content: none !important;
}
.premium-footer .footer-cta-copy,
.premium-footer .footer-cta-features,
.premium-footer .footer-cta-actions {
    position: relative !important;
    z-index: 2 !important;
    transform: none !important;
}
.premium-footer .footer-cta-copy h2 {
    margin: 0 0 14px !important;
    font-size: clamp(30px, 2.5vw, 44px) !important;
    line-height: 1.08 !important;
}
.premium-footer .footer-cta-copy h2::after {
    width: 98px !important;
    height: 3px !important;
    margin-top: 14px !important;
}
.premium-footer .footer-cta-copy p {
    max-width: 360px !important;
    margin: 0 !important;
    font-size: 17px !important;
    line-height: 1.48 !important;
}
.premium-footer .footer-cta-features {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-items: center !important;
    gap: 0 !important;
}
.premium-footer .footer-cta-features span {
    min-height: 132px !important;
    padding: 0 20px !important;
    gap: 7px !important;
    border-right: 1px solid rgba(255,255,255,.24) !important;
}
.premium-footer .footer-cta-features i {
    width: 58px !important;
    height: 58px !important;
    font-size: 22px !important;
}
.premium-footer .footer-cta-features strong {
    font-size: 15px !important;
    line-height: 1.2 !important;
}
.premium-footer .footer-cta-features small {
    font-size:14px !important;
    line-height: 1.35 !important;
}
.premium-footer .footer-cta-actions {
    display: grid !important;
    gap: 14px !important;
    max-width: 360px !important;
    justify-self: end !important;
}
.premium-footer .footer-apply,
.premium-footer .footer-counselling {
    min-height: 58px !important;
    padding: 12px 24px !important;
    font-size: 17px !important;
    border-radius: 8px !important;
}
.premium-footer .footer-cta-actions small {
    font-size: 14px !important;
    line-height: 1.35 !important;
}
@media (max-width: 1180px) {
    .premium-footer .footer-cta {
        grid-template-columns: 1fr !important;
        padding: 34px 28px !important;
        text-align: center !important;
    }
    .premium-footer .footer-cta-copy p { margin: 0 auto !important; }
    .premium-footer .footer-cta-actions { justify-self: center !important; width: min(360px, 100%) !important; }
}
@media (max-width: 680px) {
    .premium-footer .footer-cta { padding: 28px 18px !important; }
    .premium-footer .footer-cta-features { grid-template-columns: 1fr !important; }
    .premium-footer .footer-cta-features span { border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,.22) !important; }
}
/* Footer CTA visible dotted texture blocks */
.premium-footer .footer-cta {
    position: relative !important;
    isolation: isolate !important;
    background: linear-gradient(135deg, #8e0000 0%, #bd0009 48%, #e0000d 100%) !important;
}
.premium-footer .footer-cta::before,
.premium-footer .footer-cta::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    z-index: 1 !important;
    width: 150px !important;
    height: 176px !important;
    top: 38px !important;
    border: 0 !important;
    border-radius: 0 !important;
    transform: none !important;
    background-image: radial-gradient(circle, rgba(255,255,255,.42) 1.6px, transparent 1.8px) !important;
    background-size: 18px 18px !important;
    background-repeat: repeat !important;
    opacity: .55 !important;
    pointer-events: none !important;
}
.premium-footer .footer-cta::before { left: 48px !important; }
.premium-footer .footer-cta::after { right: 48px !important; }
.premium-footer .footer-cta-copy,
.premium-footer .footer-cta-features,
.premium-footer .footer-cta-actions {
    position: relative !important;
    z-index: 2 !important;
}
/* SEO homepage sections */
.zca-seo-intro,
.zca-programs-section,
.zca-why-section,
.zca-proof-section,
.zca-local-section,
.zca-faq-section {
    background: #fff;
}
.zca-intro-grid,
.zca-why-grid,
.zca-process-grid,
.zca-local-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 42px;
    align-items: center;
}
.zca-intro-copy h2,
.zca-why-grid h2,
.zca-process-grid h2,
.zca-local-grid h2 {
    margin: 12px 0 18px;
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.14;
    color: #171923;
}
.zca-intro-copy p,
.zca-why-grid p,
.zca-process-grid p,
.zca-local-grid p {
    color: #535766;
    font-size: 17px;
    line-height: 1.75;
}
.zca-search-tags,
.zca-popular-searches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.zca-search-tags span,
.zca-popular-searches span {
    padding: 10px 14px;
    border: 1px solid rgba(229, 9, 20, .16);
    border-radius: 8px;
    color: #b8000a;
    background: #fff5f5;
    font-size: 14px;
    font-weight: 700;
}
.zca-trust-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.zca-trust-panel article,
.zca-program-card,
.zca-why-cards article,
.zca-steps article,
.zca-faq-grid article {
    border: 1px solid rgba(229, 9, 20, .12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(122, 0, 8, .08);
}
.zca-trust-panel article {
    min-height: 142px;
    padding: 24px;
    display: grid;
    align-content: center;
    gap: 6px;
}
.zca-trust-panel strong {
    color: #e50914;
    font-size: 34px;
    line-height: 1;
}
.zca-trust-panel span { color: #252936; font-weight: 800; }
.zca-program-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.zca-program-card {
    padding: 26px;
    transition: transform .22s ease, box-shadow .22s ease;
}
.zca-program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(122, 0, 8, .14);
}
.zca-program-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, #e50914, #a90008);
}
.zca-program-card > span {
    color: #d2a600;
    font-size:14px;
    font-weight: 900;
    text-transform: uppercase;
}
.zca-program-card h3 {
    margin: 10px 0 12px;
    color: #171923;
    font-size: 21px;
    line-height: 1.25;
}
.zca-program-card p { color: #5d6170; line-height: 1.62; }
.zca-subject-band {
    padding: 76px 0;
    color: #fff;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 212, 0, .16), transparent 25%),
        linear-gradient(135deg, #830006 0%, #d5000d 100%);
}
.light-head h2,
.light-head p { color: #fff !important; }
.zca-subject-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.zca-subject-grid article {
    padding: 26px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
}
.zca-subject-grid i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    color: #7b0000;
    background: #ffd400;
}
.zca-subject-grid strong {
    display: block;
    margin-bottom: 10px;
    color: #ffd400;
    font-size: 20px;
}
.zca-subject-grid span { color: #fff; line-height: 1.58; }
.zca-why-cards,
.zca-steps {
    display: grid;
    gap: 16px;
}
.zca-why-cards article,
.zca-steps article {
    padding: 24px;
}
.zca-why-cards i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 8px;
    color: #fff;
    background: #e50914;
}
.zca-why-cards h3,
.zca-steps h3,
.zca-faq-grid h3 {
    margin: 0 0 8px;
    color: #171923;
    font-size: 19px;
}
.zca-admission-process {
    background: #fff7f7;
}
.zca-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.zca-steps strong {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: 50%;
    color: #7b0000;
    background: #ffd400;
}
.zca-local-grid {
    padding: 42px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, #850006, #d4000d);
}
.zca-local-grid h2,
.zca-local-grid p { color: #fff; }
.zca-local-grid .eyebrow { color: #ffd400; }
.zca-popular-searches {
    padding: 28px;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
}
.zca-popular-searches h3 {
    width: 100%;
    margin: 0 0 8px;
    color: #ffd400;
    font-size: 22px;
}
.zca-popular-searches span {
    color: #fff;
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.18);
}
.zca-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.zca-faq-grid article { padding: 24px; }
.zca-faq-grid p { margin: 0; color: #5d6170; line-height: 1.65; }
@media (max-width: 1100px) {
    .zca-intro-grid,
    .zca-why-grid,
    .zca-process-grid,
    .zca-local-grid { grid-template-columns: 1fr; }
    .zca-program-grid,
    .zca-subject-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .zca-steps { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
    .zca-trust-panel,
    .zca-program-grid,
    .zca-subject-grid,
    .zca-faq-grid { grid-template-columns: 1fr; }
    .zca-local-grid { padding: 26px; }
    .zca-intro-copy h2,
    .zca-why-grid h2,
    .zca-process-grid h2,
    .zca-local-grid h2 { font-size: 28px; }
}
/* Hero after intro section */
.zca-hero-after {
    position: relative;
    overflow: hidden;
    padding: 88px 0 96px !important;
    background:
        linear-gradient(180deg, #f8fff9 0%, #f5fbf6 100%) !important;
}
.zca-hero-after::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 28px;
    background: linear-gradient(90deg, rgba(255,212,0,.2), rgba(229,9,20,.08), rgba(13,148,63,.12));
    opacity: .55;
}
.zca-hero-after-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 68px;
    align-items: center;
}
.zca-after-copy,
.zca-after-visual {
    animation: zcaFadeUp .75s ease both;
}
.zca-after-visual { animation-delay: .12s; }
.zca-choice-badge {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 999px;
    color: #3f2cff;
    background: #e8eeff;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0;
}
.zca-after-copy h2 {
    max-width: 860px;
    margin: 18px 0 16px;
    color: #05070d;
    font-size: clamp(34px, 3vw, 52px);
    line-height: 1.22;
    font-weight: 900;
}
.zca-after-copy p {
    max-width: 850px;
    margin: 0 0 16px;
    color: #151923;
    font-size: 18px;
    line-height: 1.72;
}
.zca-after-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 28px 0 16px;
}
.zca-after-stats article {
    display: grid;
    gap: 8px;
}
.zca-after-stats strong {
    color: #4a35ff;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
}
.zca-after-stats span {
    color: #5a6270;
    font-size: 15px;
    font-weight: 700;
}
.zca-after-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 12px;
}
.zca-callback-btn,
.zca-outline-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 900;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.zca-callback-btn {
    color: #fff;
    background: #269a3d;
    box-shadow: 0 16px 28px rgba(38,154,61,.24);
}
.zca-outline-btn {
    color: #08368b;
    background: #fff;
    border: 1.5px solid #08368b;
}
.zca-callback-btn:hover,
.zca-outline-btn:hover {
    transform: translateY(-3px);
}
.zca-after-visual {
    position: relative;
}
.zca-promo-card {
    position: relative;
    min-height: 478px;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(14, 44, 78, .13);
}
.zca-promo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 18%, rgba(255,212,0,.2), transparent 20%),
        linear-gradient(135deg, rgba(255,255,255,.96) 0 42%, rgba(255,255,255,.25) 62%, transparent 100%);
    z-index: 1;
}
.zca-promo-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -85px;
    width: 340px;
    height: 260px;
    border-radius: 50%;
    border: 2px solid rgba(0, 158, 208, .22);
    box-shadow: -24px -24px 0 rgba(0, 158, 208, .08), -48px -48px 0 rgba(0, 158, 208, .06);
    z-index: 1;
}
.zca-promo-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 64% center;
    transform: scale(1.02);
    transition: transform .45s ease;
}
.zca-promo-card:hover img { transform: scale(1.06); }
.zca-promo-text {
    position: relative;
    z-index: 2;
    max-width: 410px;
    padding: 34px 34px 30px;
}
.zca-promo-text h3 {
    margin: 0 0 6px;
    color: #06080d;
    font-size: clamp(30px, 2.2vw, 42px);
    line-height: 1.08;
    font-weight: 900;
}
.zca-promo-text p {
    margin: 0 0 16px;
    color: #0a223a;
    font-weight: 800;
}
.zca-promo-text strong {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 12px 18px;
    color: #ffd400;
    background: #0075ad;
    font-size: 18px;
}
.zca-promo-text ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #171923;
    font-size: 19px;
    font-weight: 800;
}
.zca-promo-text li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.zca-promo-text i { color: #0f72b8; }
.zca-sticky-tabs {
    position: absolute;
    right: 28px;
    top: 50%;
    z-index: 4;
    display: grid;
    gap: 16px;
    transform: translateY(-50%);
}
.zca-sticky-tabs a {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    min-height: 170px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 10px;
    color: #fff;
    background: linear-gradient(180deg, #7431ce, #d61a8c);
    font-size: 17px;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(116,49,206,.22);
}
.zca-sticky-tabs a:nth-child(2) {
    background: linear-gradient(180deg, #6632c8, #7b2ad0);
}
@keyframes zcaFadeUp {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 1280px) {
    .zca-hero-after-grid { gap: 42px; }
    .zca-sticky-tabs { display: none; }
}
@media (max-width: 980px) {
    .zca-hero-after-grid { grid-template-columns: 1fr; }
    .zca-promo-card { min-height: 410px; }
}
@media (max-width: 680px) {
    .zca-hero-after { padding: 56px 0 64px !important; }
    .zca-after-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
    .zca-after-copy p { font-size: 15px; }
    .zca-choice-badge { font-size:14px; min-height: 40px; padding: 10px 14px; }
    .zca-after-actions { gap: 10px; }
    .zca-callback-btn,
    .zca-outline-btn { width: 100%; padding-inline: 18px; font-size: 14px; }
    .zca-promo-card { min-height: 380px; }
    .zca-promo-text { padding: 24px; max-width: 310px; }
    .zca-promo-text h3 { font-size: 28px; }
    .zca-promo-text ul { font-size: 14px; }
}
/* Global typography scale and refined hero-after section */
:root {
    --fs-xs: 12px;
    --fs-sm: 14px;
    --fs-base: 16px;
    --fs-md: 17px;
    --fs-lg: 20px;
    --fs-xl: 26px;
    --fs-h2: clamp(28px, 2.45vw, 42px);
    --fs-h3: clamp(20px, 1.45vw, 26px);
    --lh-body: 1.65;
}
body { font-size: var(--fs-base); }
.section-head h2,
.zca-intro-copy h2,
.zca-why-grid h2,
.zca-process-grid h2,
.zca-local-grid h2,
.zca-after-copy h2 {
    font-size: var(--fs-h2) !important;
    line-height: 1.18 !important;
}
.section-head p,
.zca-intro-copy p,
.zca-why-grid p,
.zca-process-grid p,
.zca-local-grid p,
.zca-after-copy p {
    font-size: var(--fs-base) !important;
    line-height: var(--lh-body) !important;
}
.zca-hero-after {
    padding: 72px 0 82px !important;
}
.zca-hero-after-grid {
    grid-template-columns: 1.08fr .92fr !important;
    gap: 54px !important;
}
.zca-choice-badge {
    min-height: 42px !important;
    padding: 10px 20px !important;
    font-size: var(--fs-sm) !important;
}
.zca-after-copy h2 {
    max-width: 760px !important;
    margin: 16px 0 14px !important;
}
.zca-after-copy p {
    max-width: 760px !important;
    margin-bottom: 12px !important;
}
.zca-after-stats {
    max-width: 680px !important;
    gap: 20px !important;
    margin: 24px 0 14px !important;
}
.zca-after-stats strong {
    font-size: clamp(25px, 2vw, 32px) !important;
}
.zca-after-stats span {
    font-size:14px !important;
}
.zca-after-actions { gap: 14px !important; }
.zca-callback-btn,
.zca-outline-btn {
    min-height: 48px !important;
    padding: 12px 26px !important;
    font-size: 15px !important;
}
.zca-promo-card {
    min-height: 430px !important;
    border: 1px solid rgba(229, 9, 20, .1) !important;
    background:
        radial-gradient(circle at 12% 18%, rgba(255,212,0,.28), transparent 23%),
        linear-gradient(135deg, #fff 0%, #fff6f6 48%, #ffe9e9 100%) !important;
}
.zca-promo-card::before {
    background:
        linear-gradient(90deg, rgba(255,255,255,.97) 0 42%, rgba(255,255,255,.72) 56%, rgba(255,255,255,.16) 100%),
        radial-gradient(circle at 82% 16%, rgba(255,212,0,.18), transparent 23%) !important;
}
.zca-promo-card::after {
    right: -88px !important;
    bottom: -94px !important;
    width: 380px !important;
    height: 280px !important;
    border-color: rgba(229, 9, 20, .16) !important;
    box-shadow: -24px -24px 0 rgba(255, 212, 0, .12), -48px -48px 0 rgba(229, 9, 20, .07) !important;
}
.zca-promo-card img {
    object-position: 72% center !important;
    filter: saturate(1.05) contrast(1.03);
}
.zca-promo-text {
    max-width: 360px !important;
    padding: 30px !important;
}
.zca-promo-text h3 {
    font-size: clamp(24px, 1.95vw, 34px) !important;
    line-height: 1.12 !important;
}
.zca-promo-text p {
    font-size: 14px !important;
    line-height: 1.45 !important;
}
.zca-promo-text strong {
    padding: 10px 14px !important;
    font-size: 15px !important;
    border-radius: 6px;
    background: linear-gradient(135deg, #e50914, #a90008) !important;
    color: #ffd400 !important;
}
.zca-promo-text ul {
    gap: 8px !important;
    font-size: 15px !important;
}
.zca-sticky-tabs a {
    min-height: 146px !important;
    font-size: 14px !important;
}
@media (max-width: 980px) {
    .zca-hero-after-grid { grid-template-columns: 1fr !important; }
    .zca-promo-card { min-height: 390px !important; }
}
@media (max-width: 680px) {
    :root { --fs-h2: 27px; --fs-base: 15px; }
    .zca-after-stats { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .zca-promo-card { min-height: 360px !important; }
    .zca-promo-text { max-width: 280px !important; padding: 22px !important; }
}
/* Hide hero-after vertical tabs and tune original content */
.zca-sticky-tabs { display: none !important; }
.zca-after-stats strong {
    font-size: clamp(20px, 1.55vw, 28px) !important;
    letter-spacing: 0 !important;
}
.zca-after-stats article {
    padding: 10px 0;
}
.zca-promo-text h3 {
    max-width: 320px;
}
.zca-promo-text ul {
    max-width: 330px;
}
/* Brand theme alignment for hero-after intro */
.zca-hero-after {
    background:
        radial-gradient(circle at 8% 12%, rgba(255,212,0,.13), transparent 22%),
        linear-gradient(180deg, #fff8f8 0%, #fff 56%, #fff9ec 100%) !important;
}
.zca-choice-badge {
    color: #9b0008 !important;
    background: linear-gradient(135deg, #fff1cc, #ffe680) !important;
    border: 1px solid rgba(255, 212, 0, .7) !important;
}
.zca-after-copy h2 mark,
.zca-after-copy h2 strong { color: #e50914; }
.zca-after-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 760px;
    margin: 24px 0 16px;
}
.zca-after-points article {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px 14px;
    border: 1px solid rgba(229,9,20,.12);
    border-radius: 8px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 12px 28px rgba(122,0,8,.06);
}
.zca-after-points strong {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #750006;
    background: #ffd400;
    font-size: 14px;
    font-weight: 900;
}
.zca-after-points span {
    color: #292d38;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
}
.zca-callback-btn {
    background: linear-gradient(135deg, #e50914, #a80008) !important;
    box-shadow: 0 16px 28px rgba(229,9,20,.24) !important;
}
.zca-outline-btn {
    color: #a80008 !important;
    border-color: #e50914 !important;
}
.zca-promo-card {
    background:
        radial-gradient(circle at 12% 18%, rgba(255,212,0,.3), transparent 23%),
        linear-gradient(135deg, #fff 0%, #fff3f3 48%, #ffeec4 100%) !important;
}
.zca-promo-card::before {
    background:
        linear-gradient(90deg, rgba(255,255,255,.97) 0 42%, rgba(255,255,255,.66) 58%, rgba(255,244,218,.12) 100%),
        radial-gradient(circle at 82% 16%, rgba(255,212,0,.2), transparent 23%) !important;
}
.zca-promo-text strong {
    background: linear-gradient(135deg, #e50914, #a80008) !important;
    color: #ffd400 !important;
}
.zca-promo-text i { color: #e50914 !important; }
@media (max-width: 680px) {
    .zca-after-points { grid-template-columns: 1fr; }
}
/* Hero-after stats in reference style */
.zca-after-stats {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 28px !important;
    max-width: 760px !important;
    margin: 28px 0 16px !important;
}
.zca-after-stats article {
    display: block !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}
.zca-after-stats strong {
    display: block !important;
    color: #e50914 !important;
    font-size: clamp(28px, 2.35vw, 38px) !important;
    line-height: 1 !important;
    font-weight: 900 !important;
}
.zca-after-stats span {
    display: block !important;
    margin-top: 10px !important;
    color: #4c5564 !important;
    font-size: 15px !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
}
@media (max-width: 680px) {
    .zca-after-stats { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 18px !important; }
}
/* Premium rich post-hero section polish */
.zca-hero-after {
    padding: 88px 0 96px !important;
    background:
        radial-gradient(circle at 9% 18%, rgba(255,212,0,.18), transparent 24%),
        radial-gradient(circle at 92% 20%, rgba(229,9,20,.09), transparent 24%),
        linear-gradient(180deg, #fffaf0 0%, #fff 48%, #fff6f6 100%) !important;
}
.zca-hero-after::after {
    content: "";
    position: absolute;
    inset: 42px auto auto 42px;
    width: 190px;
    height: 150px;
    background-image: radial-gradient(rgba(229,9,20,.14) 1.2px, transparent 1.2px);
    background-size: 16px 16px;
    pointer-events: none;
}
.zca-hero-after-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr) !important;
    gap: 64px !important;
}
.zca-after-copy {
    position: relative;
    z-index: 2;
    padding: 18px 0 18px 18px;
}
.zca-after-copy::before {
    content: "";
    position: absolute;
    left: 0;
    top: 28px;
    bottom: 28px;
    width: 5px;
    border-radius: 999px;
    background: linear-gradient(180deg, #e50914, #ffd400);
}
.zca-choice-badge {
    gap: 8px;
    box-shadow: 0 14px 30px rgba(255, 212, 0, .22);
}
.zca-choice-badge::before {
    content: "\f005";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #e50914;
}
.zca-after-copy h2 {
    max-width: 820px !important;
    color: #11131a !important;
    letter-spacing: 0 !important;
}
.zca-after-copy h2::after {
    content: "";
    display: block;
    width: 108px;
    height: 4px;
    margin-top: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #e50914, #ffd400);
}
.zca-after-copy p {
    color: #303542 !important;
}
.zca-after-stats {
    padding: 20px 22px !important;
    border: 1px solid rgba(229,9,20,.12);
    border-radius: 8px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 18px 44px rgba(122, 0, 8, .08);
    backdrop-filter: blur(10px);
}
.zca-after-stats article {
    position: relative;
}
.zca-after-stats article:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 4px;
    right: -14px;
    width: 1px;
    height: 48px;
    background: rgba(229,9,20,.14);
}
.zca-after-stats strong {
    color: #d90012 !important;
    text-shadow: 0 8px 18px rgba(229,9,20,.12);
}
.zca-after-actions {
    margin-top: 20px !important;
}
.zca-callback-btn,
.zca-outline-btn {
    border-radius: 7px !important;
}
.zca-callback-btn {
    position: relative;
    overflow: hidden;
}
.zca-callback-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-110%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
    transition: transform .5s ease;
}
.zca-callback-btn:hover::after { transform: translateX(110%); }
.zca-outline-btn:hover {
    background: #fff5f5 !important;
    box-shadow: 0 14px 26px rgba(229,9,20,.12);
}
.zca-after-visual {
    isolation: isolate;
}
.zca-after-visual::before {
    content: "";
    position: absolute;
    inset: -22px 26px 26px -22px;
    border-radius: 28px;
    background: linear-gradient(135deg, #ffd400, #e50914);
    opacity: .16;
    z-index: -1;
}
.zca-after-visual::after {
    content: "";
    position: absolute;
    right: -22px;
    top: -22px;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: #ffd400;
    opacity: .42;
    filter: blur(.2px);
    z-index: -1;
}
.zca-promo-card {
    min-height: 460px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(229,9,20,.12) !important;
    box-shadow: 0 30px 80px rgba(122,0,8,.16), 0 0 0 8px rgba(255,255,255,.85) !important;
}
.zca-promo-card::before {
    background:
        linear-gradient(90deg, rgba(255,255,255,.98) 0 43%, rgba(255,255,255,.7) 57%, rgba(255,244,218,.08) 100%),
        radial-gradient(circle at 18% 18%, rgba(255,212,0,.24), transparent 26%),
        radial-gradient(circle at 88% 16%, rgba(229,9,20,.15), transparent 28%) !important;
}
.zca-promo-card img {
    object-position: 74% center !important;
}
.zca-promo-text {
    max-width: 365px !important;
    padding: 34px !important;
}
.zca-promo-text::before {
    content: "ZENITH COMMERCE ACADEMY";
    display: inline-flex;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #8c0007;
    background: #fff0be;
    font-size:14px;
    font-weight: 900;
    letter-spacing: .5px;
}
.zca-promo-text h3 {
    color: #11131a !important;
}
.zca-promo-text p {
    color: #384050 !important;
    font-weight: 700 !important;
}
.zca-promo-text strong {
    box-shadow: 0 14px 30px rgba(229,9,20,.22);
}
.zca-promo-text ul {
    padding: 14px !important;
    border: 1px solid rgba(229,9,20,.11);
    border-radius: 8px;
    background: rgba(255,255,255,.72);
    box-shadow: 0 18px 34px rgba(122,0,8,.08);
}
.zca-promo-text li {
    color: #252b37;
}
@media (max-width: 1100px) {
    .zca-hero-after-grid { grid-template-columns: 1fr !important; }
    .zca-after-copy { padding-left: 14px; }
}
@media (max-width: 680px) {
    .zca-hero-after { padding: 58px 0 68px !important; }
    .zca-after-copy::before { display: none; }
    .zca-after-copy { padding-left: 0; }
    .zca-after-stats { padding: 18px !important; }
    .zca-after-stats article:not(:last-child)::after { display: none; }
    .zca-promo-card { min-height: 390px !important; }
}
/* Hero-after stats removed spacing */
.zca-after-stats { display: none !important; }
.zca-after-actions { margin-top: 24px !important; }
.zca-after-copy p:last-of-type { margin-bottom: 0 !important; }
/* About + Zenith Advantage premium section */
.zca-about-advantage {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 18%, rgba(255,212,0,.14), transparent 22%),
        radial-gradient(circle at 8% 76%, rgba(229,9,20,.08), transparent 24%),
        #fff !important;
}
.zca-about-advantage::before,
.zca-about-advantage::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(rgba(229,9,20,.18) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    pointer-events: none;
}
.zca-about-advantage::before { left: 18px; bottom: 130px; }
.zca-about-advantage::after { right: 70px; top: 290px; background-image: radial-gradient(rgba(255,185,0,.5) 1.5px, transparent 1.5px); }
.zca-about-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.zca-about-copy h2 {
    margin: 12px 0 18px;
    color: #11131a;
    font-size: var(--fs-h2);
    line-height: 1.15;
    font-weight: 900;
}
.zca-about-copy h2 mark {
    display: block;
    color: #e50914;
    background: transparent;
}
.zca-about-copy p {
    max-width: 640px;
    color: #4d5563;
    font-size: var(--fs-base);
    line-height: var(--lh-body);
}
.zca-about-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 30px;
    max-width: 680px;
}
.zca-about-stats article {
    padding: 0 18px;
    text-align: center;
    border-right: 1px solid rgba(17,19,26,.12);
}
.zca-about-stats article:first-child { padding-left: 0; }
.zca-about-stats article:last-child { border-right: 0; padding-right: 0; }
.zca-about-stats i {
    display: block;
    margin-bottom: 10px;
    color: #e50914;
    font-size: 27px;
}
.zca-about-stats article:nth-child(1) i,
.zca-about-stats article:nth-child(3) i { color: #ffb700; }
.zca-about-stats strong {
    display: block;
    color: #e50914;
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
}
.zca-about-stats span {
    display: block;
    margin-top: 8px;
    color: #3f4652;
    font-size:14px;
    line-height: 1.35;
    font-weight: 700;
}
.zca-director-card {
    position: relative;
    min-height: 415px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(75,35,0,.16);
    isolation: isolate;
}
.zca-director-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(70,0,5,.05), transparent 52%, rgba(255,255,255,.28));
    z-index: 1;
}
.zca-director-card img {
    width: 100%;
    height: 100%;
    min-height: 415px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .55s ease;
}
.zca-director-card:hover img { transform: scale(1.045); }
.zca-quote-card {
    position: absolute;
    z-index: 2;
    top: 48px;
    right: 48px;
    width: min(275px, calc(100% - 70px));
    padding: 28px;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 8px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 20px 48px rgba(42, 18, 0, .18);
    backdrop-filter: blur(12px);
}
.zca-quote-card i {
    color: #ffbf00;
    font-size: 32px;
    margin-bottom: 16px;
}
.zca-quote-card p {
    margin: 0 0 22px;
    color: #293040;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 800;
}
.zca-quote-card span {
    display: block;
    padding-top: 16px;
    border-top: 1px solid rgba(17,19,26,.12);
    color: #555d6c;
    font-size:14px;
    line-height: 1.45;
    font-weight: 800;
}
.zca-advantage-head {
    position: relative;
    z-index: 1;
    margin-top: 68px;
    text-align: center;
}
.zca-advantage-head h2 {
    margin: 10px 0 0;
    color: #11131a;
    font-size: var(--fs-h2);
    line-height: 1.15;
    font-weight: 900;
}
.zca-advantage-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin-top: 30px;
}
.zca-advantage-grid article {
    --angle: 0deg;
    position: relative;
    overflow: hidden;
    min-height: 230px;
    padding: 32px 24px 26px;
    text-align: center;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 20px 46px rgba(20, 24, 35, .09);
    transition: transform .25s ease, box-shadow .25s ease;
}
.zca-advantage-grid article::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background: conic-gradient(from var(--angle), transparent 0 22%, #ffd400 30%, #e50914 42%, transparent 56% 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: zcaBorderSpin 3.8s linear infinite;
    opacity: .95;
    pointer-events: none;
}
.zca-advantage-grid article::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: 46px;
    height: 3px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: #ffd400;
}
.zca-advantage-grid article:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 64px rgba(122,0,8,.14);
}
.zca-advantage-grid i {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #e50914, #af0009);
    box-shadow: 0 16px 30px rgba(229,9,20,.22);
    font-size: 25px;
}
.zca-advantage-grid h3 {
    margin: 0 0 12px;
    color: #171923;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 900;
}
.zca-advantage-grid p {
    margin: 0;
    color: #5d6674;
    font-size: 14px;
    line-height: 1.62;
}
@property --angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}
@keyframes zcaBorderSpin { to { --angle: 360deg; } }
@media (max-width: 1180px) {
    .zca-about-top { grid-template-columns: 1fr; }
    .zca-advantage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
    .zca-about-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
    .zca-about-stats article { border-right: 0; padding: 0; }
    .zca-director-card, .zca-director-card img { min-height: 360px; }
    .zca-quote-card { right: 20px; top: 20px; padding: 20px; }
    .zca-advantage-grid { grid-template-columns: 1fr; }
}
/* Director real portrait fit correction */
.zca-director-card {
    min-height: 470px !important;
    background: linear-gradient(135deg, #fff7ec, #fff) !important;
}
.zca-director-card img[src*="director-pic"] {
    width: 100% !important;
    height: 470px !important;
    min-height: 470px !important;
    object-fit: cover !important;
    object-position: center 32% !important;
}
.zca-director-card::before {
    background: linear-gradient(90deg, rgba(70,0,5,.04), rgba(255,255,255,.05) 54%, rgba(255,255,255,.38)) !important;
}
.zca-quote-card {
    top: 34px !important;
    right: 34px !important;
    width: 250px !important;
}
@media (max-width: 680px) {
    .zca-director-card { min-height: 390px !important; }
    .zca-director-card img[src*="director-pic"] { height: 390px !important; min-height: 390px !important; object-position: center 26% !important; }
    .zca-quote-card { width: calc(100% - 40px) !important; }
}
/* Premium checked texture for admission process */
.zca-admission-process {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(45deg, rgba(229,9,20,.035) 25%, transparent 25%, transparent 75%, rgba(229,9,20,.035) 75%),
        linear-gradient(45deg, rgba(255,212,0,.055) 25%, transparent 25%, transparent 75%, rgba(255,212,0,.055) 75%),
        radial-gradient(circle at 78% 18%, rgba(255,212,0,.12), transparent 24%),
        linear-gradient(135deg, #fff8f8 0%, #fff1f1 100%) !important;
    background-position: 0 0, 18px 18px, center, center !important;
    background-size: 36px 36px, 36px 36px, auto, auto !important;
}
.zca-admission-process::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.9), rgba(255,255,255,.48), rgba(255,255,255,.84)),
        radial-gradient(circle at 12% 75%, rgba(229,9,20,.08), transparent 22%);
    pointer-events: none;
}
.zca-admission-process .container {
    position: relative;
    z-index: 1;
}
.zca-steps article {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(45deg, rgba(229,9,20,.03) 25%, transparent 25%, transparent 75%, rgba(229,9,20,.03) 75%),
        linear-gradient(45deg, rgba(255,212,0,.04) 25%, transparent 25%, transparent 75%, rgba(255,212,0,.04) 75%),
        rgba(255,255,255,.92) !important;
    background-position: 0 0, 12px 12px, center !important;
    background-size: 24px 24px, 24px 24px, auto !important;
    backdrop-filter: blur(10px);
}
.zca-steps article::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.9), transparent 54%, rgba(255,212,0,.08));
    pointer-events: none;
}
.zca-steps article > * {
    position: relative;
    z-index: 1;
}
/* Clean grid premium advantage cards - reference style */
.zca-advantage-grid {
    gap: 32px !important;
}
.zca-advantage-grid article {
    min-height: 300px !important;
    padding: 46px 34px 34px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    border: 1px solid #dfe9f6 !important;
    border-radius: 22px !important;
    background:
        linear-gradient(rgba(8,84,178,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8,84,178,.055) 1px, transparent 1px),
        #fff !important;
    background-size: 40px 40px, 40px 40px, auto !important;
    box-shadow: 0 18px 34px rgba(16, 31, 56, .07) !important;
    text-align: center !important;
    overflow: hidden !important;
}
.zca-advantage-grid article::before,
.zca-advantage-grid article::after {
    display: none !important;
    content: none !important;
}
.zca-advantage-grid article:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 24px 46px rgba(16, 31, 56, .11) !important;
    border-color: rgba(229, 9, 20, .22) !important;
}
.zca-advantage-grid i {
    width: auto !important;
    height: auto !important;
    margin: 0 0 28px !important;
    border-radius: 0 !important;
    color: #0756b8 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 56px !important;
}
.zca-advantage-grid h3 {
    margin: 0 0 18px !important;
    color: #323438 !important;
    font-size: 25px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
}
.zca-advantage-grid p {
    max-width: 290px !important;
    margin: 0 auto 28px !important;
    color: #6a6d72 !important;
    font-size: 17px !important;
    line-height: 1.55 !important;
    font-weight: 500 !important;
}
.zca-advantage-grid article p::after {
    content: "Commerce Focus";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 24px;
    padding: 0 24px;
    border-radius: 999px;
    color: #0b65d8;
    background: #edf3fb;
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
}
.zca-advantage-grid article:nth-child(1) p::after { content: "Expert Faculty"; }
.zca-advantage-grid article:nth-child(2) p::after { content: "Test Series"; }
.zca-advantage-grid article:nth-child(3) p::after { content: "Small Batches"; }
.zca-advantage-grid article:nth-child(4) p::after { content: "Career Support"; }
@media (max-width: 1180px) {
    .zca-advantage-grid article { min-height: 270px !important; }
}
@media (max-width: 680px) {
    .zca-advantage-grid article { padding: 36px 24px !important; }
    .zca-advantage-grid i { font-size: 48px !important; }
    .zca-advantage-grid h3 { font-size: 22px !important; }
    .zca-advantage-grid p { font-size: 15px !important; }
}
/* Revert advantage cards from grid reference style */
.zca-advantage-grid article {
    min-height: 230px !important;
    padding: 32px 24px 26px !important;
    display: block !important;
    border-radius: 8px !important;
    border: 1px solid rgba(229, 9, 20, .12) !important;
    background: #fff !important;
    box-shadow: 0 20px 46px rgba(20, 24, 35, .09) !important;
    text-align: center !important;
}
.zca-advantage-grid article::before {
    display: block !important;
    content: "" !important;
}
.zca-advantage-grid article::after {
    display: block !important;
    content: "" !important;
}
.zca-advantage-grid i {
    width: 66px !important;
    height: 66px !important;
    display: grid !important;
    place-items: center !important;
    margin: 0 auto 20px !important;
    border-radius: 50% !important;
    color: #fff !important;
    background: linear-gradient(135deg, #e50914, #af0009) !important;
    box-shadow: 0 16px 30px rgba(229,9,20,.22) !important;
    font-size: 25px !important;
}
.zca-advantage-grid h3 {
    margin: 0 0 12px !important;
    color: #171923 !important;
    font-size: 18px !important;
    line-height: 1.3 !important;
}
.zca-advantage-grid p {
    max-width: none !important;
    margin: 0 !important;
    color: #5d6674 !important;
    font-size: 14px !important;
    line-height: 1.62 !important;
}
.zca-advantage-grid article p::after { display: none !important; content: none !important; }

/* Admission process clean grid-card texture style */
.zca-admission-process {
    background:
        linear-gradient(45deg, rgba(229,9,20,.026) 25%, transparent 25%, transparent 75%, rgba(229,9,20,.026) 75%),
        linear-gradient(45deg, rgba(255,212,0,.04) 25%, transparent 25%, transparent 75%, rgba(255,212,0,.04) 75%),
        linear-gradient(135deg, #fffdf8 0%, #fff6f6 100%) !important;
    background-position: 0 0, 18px 18px, center !important;
    background-size: 36px 36px, 36px 36px, auto !important;
}
.zca-admission-process::before {
    background: linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.62), rgba(255,255,255,.88)) !important;
}
.zca-steps article {
    min-height: 260px !important;
    padding: 34px 30px !important;
    border: 1px solid #f0d6d4 !important;
    border-radius: 8px !important;
    background:
        linear-gradient(rgba(229,9,20,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(229,9,20,.035) 1px, transparent 1px),
        #fff !important;
    background-size: 34px 34px, 34px 34px, auto !important;
    box-shadow: 0 18px 42px rgba(122, 0, 8, .08) !important;
}
.zca-steps article::after {
    background: linear-gradient(135deg, rgba(255,255,255,.76), transparent 58%, rgba(255,212,0,.08)) !important;
}
.zca-steps strong {
    width: 58px !important;
    height: 58px !important;
    margin-bottom: 26px !important;
    color: #8a0007 !important;
    background: #ffd400 !important;
    font-size: 19px !important;
}
.zca-steps h3 {
    font-size: 24px !important;
    line-height: 1.35 !important;
    margin-bottom: 18px !important;
}
.zca-steps p {
    color: #4f5868 !important;
    font-size: 17px !important;
    line-height: 1.55 !important;
}
/* Admission process: texture only on full background, solid cards */
.zca-steps article {
    background: #fff !important;
    background-image: none !important;
}
.zca-steps article::after {
    display: none !important;
    content: none !important;
}
.zca-admission-process {
    background:
        linear-gradient(45deg, rgba(229,9,20,.035) 25%, transparent 25%, transparent 75%, rgba(229,9,20,.035) 75%),
        linear-gradient(45deg, rgba(255,212,0,.055) 25%, transparent 25%, transparent 75%, rgba(255,212,0,.055) 75%),
        radial-gradient(circle at 80% 25%, rgba(255,212,0,.1), transparent 24%),
        linear-gradient(135deg, #fffdf9 0%, #fff6f6 100%) !important;
    background-position: 0 0, 18px 18px, center, center !important;
    background-size: 36px 36px, 36px 36px, auto, auto !important;
}
.zca-admission-process::before {
    background: linear-gradient(90deg, rgba(255,255,255,.82), rgba(255,255,255,.46), rgba(255,255,255,.78)) !important;
}
/* FINAL admission process checker texture: section only, cards solid */
body .zca-admission-process {
    position: relative !important;
    overflow: hidden !important;
    background:
        linear-gradient(rgba(255,255,255,.76), rgba(255,255,255,.76)),
        repeating-conic-gradient(from 45deg, rgba(229,9,20,.07) 0deg 90deg, rgba(255,212,0,.07) 90deg 180deg, rgba(229,9,20,.025) 180deg 270deg, rgba(255,255,255,.55) 270deg 360deg),
        linear-gradient(135deg, #fffdf8 0%, #fff2f2 100%) !important;
    background-size: auto, 42px 42px, auto !important;
    background-position: center !important;
}
body .zca-admission-process::before,
body .zca-admission-process::after {
    display: none !important;
    content: none !important;
    background: none !important;
}
body .zca-admission-process .zca-steps article {
    background: #ffffff !important;
    background-image: none !important;
    background-color: #ffffff !important;
    border: 1px solid rgba(229, 9, 20, .16) !important;
    box-shadow: 0 20px 46px rgba(122, 0, 8, .09) !important;
}
body .zca-admission-process .zca-steps article::before,
body .zca-admission-process .zca-steps article::after {
    display: none !important;
    content: none !important;
    background: none !important;
}
body .zca-admission-process .zca-steps article > * {
    position: relative !important;
    z-index: 1 !important;
}
/* FINAL admission process simple grid lines */
body .zca-admission-process {
    background:
        linear-gradient(rgba(255,255,255,.82), rgba(255,255,255,.82)),
        linear-gradient(rgba(12, 86, 184, .075) 1px, transparent 1px),
        linear-gradient(90deg, rgba(12, 86, 184, .075) 1px, transparent 1px),
        #fffafa !important;
    background-size: auto, 38px 38px, 38px 38px, auto !important;
    background-position: center, 0 0, 0 0, center !important;
}
body .zca-admission-process .zca-steps article {
    background: #fff !important;
    background-image: none !important;
}
/* FINAL equal square grid for admission process */
body .zca-admission-process {
    background-color: #fffdfd !important;
    background-image:
        linear-gradient(to right, rgba(13, 82, 171, .075) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(13, 82, 171, .075) 1px, transparent 1px) !important;
    background-size: 48px 48px !important;
    background-position: 0 0 !important;
}
body .zca-admission-process::before,
body .zca-admission-process::after {
    display: none !important;
    content: none !important;
}
/* Premium preparation course grid */
:root {
    --zca-course-sprite: url('../images/zenith-course-prep-sprite.png');
}

.zca-prep-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 15%, rgba(255, 203, 5, .18), transparent 28%),
        radial-gradient(circle at 88% 6%, rgba(227, 6, 19, .12), transparent 26%),
        linear-gradient(180deg, #fffdf8 0%, #ffffff 58%, #fff6f6 100%);
}

.zca-prep-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .55;
    background-image:
        linear-gradient(to right, rgba(227, 6, 19, .045) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(227, 6, 19, .04) 1px, transparent 1px);
    background-size: 44px 44px;
}

.zca-prep-section > .container {
    position: relative;
    z-index: 1;
}

.zca-prep-head {
    max-width: 860px;
}

.zca-prep-head h2 {
    max-width: 820px;
    margin-inline: auto;
}

.zca-prep-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
}

.zca-prep-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark);
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(227, 6, 19, .13);
    box-shadow: 0 20px 45px rgba(100, 0, 0, .09);
    isolation: isolate;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.zca-prep-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    padding: 1px;
    opacity: 0;
    background: linear-gradient(135deg, rgba(255, 203, 5, .95), rgba(227, 6, 19, .9), rgba(255, 203, 5, .75));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: opacity .28s ease;
}

.zca-prep-card:hover {
    transform: translateY(-8px);
    border-color: rgba(227, 6, 19, .28);
    box-shadow: 0 28px 70px rgba(100, 0, 0, .16);
}

.zca-prep-card:hover::before {
    opacity: 1;
}

.zca-prep-shine {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 0%, transparent 35%, rgba(255, 255, 255, .42) 46%, transparent 58%, transparent 100%);
    transform: translateX(-120%);
    transition: transform .7s ease;
}

.zca-prep-card:hover .zca-prep-shine {
    transform: translateX(120%);
}

.zca-prep-media {
    position: relative;
    min-height: 178px;
    background-image: var(--zca-course-sprite);
    background-size: 500% 200%;
    background-repeat: no-repeat;
    background-color: #b4000c;
}

.zca-prep-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(80, 0, 0, .04), rgba(80, 0, 0, .24));
}

.prep-card-0 .zca-prep-media { background-position: 0% 0%; }
.prep-card-1 .zca-prep-media { background-position: 25% 0%; }
.prep-card-2 .zca-prep-media { background-position: 50% 0%; }
.prep-card-3 .zca-prep-media { background-position: 75% 0%; }
.prep-card-4 .zca-prep-media { background-position: 100% 0%; }
.prep-card-5 .zca-prep-media { background-position: 0% 100%; }
.prep-card-6 .zca-prep-media { background-position: 25% 100%; }
.prep-card-7 .zca-prep-media { background-position: 50% 100%; }
.prep-card-8 .zca-prep-media { background-position: 75% 100%; }
.prep-card-9 .zca-prep-media { background-position: 100% 100%; }

.zca-prep-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px 20px 18px;
}

.zca-prep-body > span {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    min-height: 28px;
    padding: 6px 11px;
    border-radius: 999px;
    color: #8b0009;
    font-size:14px;
    font-weight: 900;
    line-height: 1;
    background: rgba(255, 203, 5, .2);
    border: 1px solid rgba(255, 203, 5, .55);
}

.zca-prep-body h3 {
    margin: 14px 0 10px;
    color: #0b1020;
    font-size: clamp(21px, 1.55vw, 26px);
    line-height: 1.15;
}

.zca-prep-body p {
    margin: 0;
    color: #526070;
    font-size: 15px;
    line-height: 1.65;
}

.zca-prep-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 18px;
}

.zca-prep-meta small {
    color: #7a0a12;
    font-weight: 800;
    white-space: nowrap;
}

.zca-prep-meta b {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e30613;
    font-size: 14px;
    white-space: nowrap;
}

.zca-course-detail-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 12%, rgba(255, 203, 5, .18), transparent 30%),
        linear-gradient(135deg, #fff8ec 0%, #fff 46%, #fff2f2 100%);
}

.zca-course-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 470px;
    gap: 42px;
    align-items: center;
}

.zca-course-detail-copy h1 {
    max-width: 850px;
}

.zca-course-hero-card {
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(227, 6, 19, .14);
    box-shadow: 0 26px 75px rgba(100, 0, 0, .16);
}

.zca-course-hero-card .zca-prep-media {
    min-height: 250px;
}

.zca-course-hero-card .detail-panel {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    border: 0;
    background: #fff;
}

.zca-course-overview-section {
    background: linear-gradient(180deg, #fff, #fffafa);
}

.zca-course-overview-card,
.zca-course-outcome-card {
    border-radius: 8px;
    border-color: rgba(227, 6, 19, .12);
}

@media (max-width: 1180px) {
    .zca-prep-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .zca-course-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .zca-prep-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .zca-prep-card {
        min-height: 390px;
    }

    .zca-prep-media {
        min-height: 150px;
    }

    .zca-prep-body {
        padding: 16px;
    }

    .zca-prep-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 540px) {
    .zca-prep-grid {
        grid-template-columns: 1fr;
    }

    .zca-course-hero-card .zca-prep-media {
        min-height: 210px;
    }
}
/* Wow redesign for preparation courses */
@keyframes zcaCourseGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

body .zca-prep-section {
    padding-top: clamp(72px, 7vw, 108px);
    padding-bottom: clamp(78px, 7vw, 116px);
    color: #fff;
    background:
        radial-gradient(circle at 15% 8%, rgba(255, 203, 5, .34), transparent 24%),
        radial-gradient(circle at 84% 12%, rgba(255, 255, 255, .13), transparent 22%),
        linear-gradient(135deg, #470006 0%, #87000a 38%, #d90010 100%) !important;
}

body .zca-prep-section::before {
    opacity: .42;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, .28) 1.4px, transparent 1.6px),
        linear-gradient(115deg, rgba(255, 203, 5, .16), transparent 34%, rgba(255, 255, 255, .08) 68%, transparent);
    background-size: 22px 22px, 100% 100%;
}

body .zca-prep-section::after {
    content: "";
    position: absolute;
    left: -8%;
    right: -8%;
    bottom: -95px;
    height: 190px;
    pointer-events: none;
    background: rgba(255, 203, 5, .95);
    border-radius: 50% 50% 0 0;
    filter: blur(.2px);
    opacity: .9;
}

body .zca-prep-head {
    max-width: 980px;
    margin-bottom: 34px;
}

body .zca-prep-head .eyebrow {
    color: #7a050b;
    background: #ffcb05;
    box-shadow: 0 12px 28px rgba(255, 203, 5, .24);
}

body .zca-prep-head h2 {
    max-width: 920px;
    color: #fff;
    text-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}

body .zca-prep-head p {
    max-width: 760px;
    margin-inline: auto;
    color: rgba(255, 255, 255, .82);
}

body .zca-prep-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(238px, auto);
    gap: 20px;
}

body .zca-prep-card {
    min-height: 0;
    border: 1px solid rgba(255, 255, 255, .42);
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 26px 70px rgba(34, 0, 0, .25);
    transform: translateZ(0);
}

body .zca-prep-card::before {
    inset: -70%;
    z-index: 0;
    padding: 0;
    opacity: .14;
    border-radius: 0;
    background: conic-gradient(from 0deg, transparent 0 20%, #ffcb05 31%, #e30613 44%, transparent 58% 100%);
    -webkit-mask: none;
    mask: none;
    animation: zcaCourseGlow 5.5s linear infinite;
}

body .zca-prep-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: 1;
    border-radius: 7px;
    background: #fff;
}

body .zca-prep-card:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: rgba(255, 203, 5, .72);
    box-shadow: 0 34px 90px rgba(34, 0, 0, .34);
}

body .zca-prep-card:hover::before {
    opacity: .34;
}

body .zca-prep-shine,
body .zca-prep-media,
body .zca-prep-body {
    position: relative;
    z-index: 2;
}

body .zca-prep-media {
    min-height: 132px;
    border-radius: 7px 7px 0 0;
}

body .zca-prep-body {
    min-height: 246px;
    padding: 18px 18px 16px;
}

body .zca-prep-body h3 {
    margin-top: 12px;
    font-size: clamp(20px, 1.35vw, 24px);
}

body .zca-prep-body p {
    font-size: 14px;
    line-height: 1.55;
}

body .zca-prep-meta {
    padding-top: 14px;
}

body .zca-prep-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 496px;
    color: #fff;
    background: #650006;
}

body .zca-prep-card:nth-child(1)::after {
    background: linear-gradient(180deg, rgba(40, 0, 4, .02), rgba(64, 0, 5, .9));
}

body .zca-prep-card:nth-child(1) .zca-prep-media {
    position: absolute;
    inset: 1px;
    min-height: 100%;
    border-radius: 7px;
    opacity: .9;
}

body .zca-prep-card:nth-child(1) .zca-prep-media::after {
    background:
        linear-gradient(90deg, rgba(45, 0, 4, .9) 0%, rgba(91, 0, 7, .54) 48%, rgba(91, 0, 7, .18) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .64));
}

body .zca-prep-card:nth-child(1) .zca-prep-body {
    min-height: 496px;
    justify-content: flex-end;
    padding: 34px;
}

body .zca-prep-card:nth-child(1) .zca-prep-body > span {
    color: #6c0007;
    background: #ffcb05;
    border-color: #ffcb05;
}

body .zca-prep-card:nth-child(1) .zca-prep-body h3 {
    max-width: 520px;
    color: #fff;
    font-size: clamp(34px, 3.35vw, 54px);
    line-height: 1.02;
    letter-spacing: 0;
}

body .zca-prep-card:nth-child(1) .zca-prep-body p {
    max-width: 520px;
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
}

body .zca-prep-card:nth-child(1) .zca-prep-meta {
    justify-content: flex-start;
    gap: 24px;
}

body .zca-prep-card:nth-child(1) .zca-prep-meta small,
body .zca-prep-card:nth-child(1) .zca-prep-meta b {
    color: #ffcb05;
}

body .zca-prep-card:nth-child(2),
body .zca-prep-card:nth-child(3) {
    min-height: 238px;
}

body .zca-prep-card:nth-child(2) .zca-prep-media,
body .zca-prep-card:nth-child(3) .zca-prep-media {
    min-height: 116px;
}

body .zca-prep-card:nth-child(2) .zca-prep-body,
body .zca-prep-card:nth-child(3) .zca-prep-body {
    min-height: 122px;
}

body .zca-prep-card:nth-child(2) .zca-prep-body p,
body .zca-prep-card:nth-child(3) .zca-prep-body p {
    display: none;
}

body .zca-prep-card:nth-child(4),
body .zca-prep-card:nth-child(5) {
    grid-column: span 2;
    min-height: 238px;
    display: grid;
    grid-template-columns: 42% 1fr;
}

body .zca-prep-card:nth-child(4) .zca-prep-media,
body .zca-prep-card:nth-child(5) .zca-prep-media {
    min-height: 100%;
    border-radius: 7px 0 0 7px;
}

body .zca-prep-card:nth-child(4) .zca-prep-body,
body .zca-prep-card:nth-child(5) .zca-prep-body {
    min-height: 238px;
}

body .zca-prep-card:nth-child(n+6) {
    min-height: 328px;
}

body .zca-prep-card:nth-child(n+6) .zca-prep-body {
    min-height: 196px;
}

@media (max-width: 1180px) {
    body .zca-prep-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: auto;
    }

    body .zca-prep-card:nth-child(1),
    body .zca-prep-card:nth-child(4),
    body .zca-prep-card:nth-child(5) {
        grid-column: span 2;
    }
}

@media (max-width: 680px) {
    body .zca-prep-section {
        padding-top: 58px;
        padding-bottom: 72px;
    }

    body .zca-prep-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    body .zca-prep-card,
    body .zca-prep-card:nth-child(1),
    body .zca-prep-card:nth-child(4),
    body .zca-prep-card:nth-child(5),
    body .zca-prep-card:nth-child(n+6) {
        grid-column: auto;
        grid-row: auto;
        display: flex;
        min-height: 0;
    }

    body .zca-prep-card:nth-child(1) .zca-prep-media {
        position: relative;
        inset: auto;
        min-height: 220px;
        border-radius: 7px 7px 0 0;
    }

    body .zca-prep-card:nth-child(1)::after {
        background: #fff;
    }

    body .zca-prep-card:nth-child(1) .zca-prep-body,
    body .zca-prep-card:nth-child(4) .zca-prep-body,
    body .zca-prep-card:nth-child(5) .zca-prep-body,
    body .zca-prep-card:nth-child(n+6) .zca-prep-body {
        min-height: 0;
        padding: 18px;
    }

    body .zca-prep-card:nth-child(1) .zca-prep-body h3,
    body .zca-prep-card:nth-child(1) .zca-prep-body p {
        color: inherit;
    }

    body .zca-prep-card:nth-child(1) .zca-prep-body h3 {
        color: #0b1020;
        font-size: 26px;
    }

    body .zca-prep-card:nth-child(1) .zca-prep-body p {
        color: #526070;
    }

    body .zca-prep-card:nth-child(1) .zca-prep-meta small,
    body .zca-prep-card:nth-child(1) .zca-prep-meta b {
        color: #e30613;
    }

    body .zca-prep-card:nth-child(4) .zca-prep-media,
    body .zca-prep-card:nth-child(5) .zca-prep-media,
    body .zca-prep-media {
        min-height: 165px;
        border-radius: 7px 7px 0 0;
    }
}
/* Uniform professional course section override */
body .zca-prep-section {
    padding-top: clamp(70px, 6vw, 96px) !important;
    padding-bottom: clamp(76px, 6vw, 104px) !important;
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 203, 5, .26), transparent 27%),
        radial-gradient(circle at 92% 12%, rgba(255, 255, 255, .12), transparent 24%),
        linear-gradient(135deg, #680007 0%, #b6000d 54%, #e30613 100%) !important;
}

body .zca-prep-section::after {
    display: none !important;
}

body .zca-prep-head {
    max-width: 900px !important;
    margin-bottom: 38px !important;
    text-align: center !important;
}

body .zca-prep-head .eyebrow {
    margin-bottom: 14px !important;
    padding: 8px 16px !important;
    color: #6f0007 !important;
    font-size:14px !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
    background: linear-gradient(135deg, #ffdf39, #ffbd00) !important;
    border: 1px solid rgba(255, 255, 255, .38) !important;
}

body .zca-prep-head h2 {
    max-width: 880px !important;
    margin: 0 auto 14px !important;
    color: #fff !important;
    font-size: clamp(32px, 3.15vw, 52px) !important;
    font-weight: 900 !important;
    line-height: 1.08 !important;
    text-shadow: 0 18px 42px rgba(0, 0, 0, .2) !important;
}

body .zca-prep-head p {
    max-width: 690px !important;
    margin: 0 auto !important;
    color: rgba(255, 255, 255, .84) !important;
    font-size: clamp(15px, 1.05vw, 17px) !important;
    line-height: 1.7 !important;
}

body .zca-prep-grid {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    grid-auto-rows: auto !important;
    gap: 18px !important;
}

body .zca-prep-card,
body .zca-prep-card:nth-child(1),
body .zca-prep-card:nth-child(2),
body .zca-prep-card:nth-child(3),
body .zca-prep-card:nth-child(4),
body .zca-prep-card:nth-child(5),
body .zca-prep-card:nth-child(n+6) {
    display: flex !important;
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 430px !important;
    color: #111827 !important;
    background: rgba(255, 255, 255, .98) !important;
    border: 1px solid rgba(255, 255, 255, .5) !important;
    border-radius: 8px !important;
    box-shadow: 0 20px 55px rgba(45, 0, 0, .22) !important;
}

body .zca-prep-card::after,
body .zca-prep-card:nth-child(1)::after {
    inset: 1px !important;
    z-index: 1 !important;
    display: block !important;
    border-radius: 7px !important;
    background: #fff !important;
}

body .zca-prep-card::before,
body .zca-prep-card:nth-child(1)::before {
    inset: -70% !important;
    z-index: 0 !important;
    opacity: .12 !important;
    background: conic-gradient(from 0deg, transparent 0 22%, #ffcb05 35%, #e30613 48%, transparent 62% 100%) !important;
    animation: zcaCourseGlow 6s linear infinite !important;
}

body .zca-prep-card:hover::before {
    opacity: .32 !important;
}

body .zca-prep-card:hover {
    transform: translateY(-9px) !important;
    border-color: rgba(255, 203, 5, .85) !important;
    box-shadow: 0 30px 75px rgba(45, 0, 0, .32) !important;
}

body .zca-prep-card .zca-prep-media,
body .zca-prep-card:nth-child(1) .zca-prep-media,
body .zca-prep-card:nth-child(2) .zca-prep-media,
body .zca-prep-card:nth-child(3) .zca-prep-media,
body .zca-prep-card:nth-child(4) .zca-prep-media,
body .zca-prep-card:nth-child(5) .zca-prep-media,
body .zca-prep-card:nth-child(n+6) .zca-prep-media {
    position: relative !important;
    inset: auto !important;
    min-height: 178px !important;
    height: 178px !important;
    width: 100% !important;
    border-radius: 7px 7px 0 0 !important;
    opacity: 1 !important;
    background-size: 500% 200% !important;
}

body .zca-prep-card .zca-prep-media::after,
body .zca-prep-card:nth-child(1) .zca-prep-media::after {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(80, 0, 0, .24)),
        linear-gradient(135deg, rgba(227, 6, 19, .04), rgba(255, 203, 5, .08)) !important;
}

body .zca-prep-card .zca-prep-body,
body .zca-prep-card:nth-child(1) .zca-prep-body,
body .zca-prep-card:nth-child(2) .zca-prep-body,
body .zca-prep-card:nth-child(3) .zca-prep-body,
body .zca-prep-card:nth-child(4) .zca-prep-body,
body .zca-prep-card:nth-child(5) .zca-prep-body,
body .zca-prep-card:nth-child(n+6) .zca-prep-body {
    min-height: 252px !important;
    justify-content: flex-start !important;
    padding: 18px 18px 16px !important;
}

body .zca-prep-card .zca-prep-body > span,
body .zca-prep-card:nth-child(1) .zca-prep-body > span {
    min-height: 27px !important;
    padding: 6px 10px !important;
    color: #8b0009 !important;
    font-size:14px !important;
    font-weight: 900 !important;
    background: rgba(255, 203, 5, .22) !important;
    border: 1px solid rgba(255, 203, 5, .62) !important;
}

body .zca-prep-card .zca-prep-body h3,
body .zca-prep-card:nth-child(1) .zca-prep-body h3 {
    max-width: none !important;
    margin: 12px 0 9px !important;
    color: #101522 !important;
    font-size: clamp(20px, 1.3vw, 23px) !important;
    font-weight: 900 !important;
    line-height: 1.16 !important;
    text-shadow: none !important;
}

body .zca-prep-card .zca-prep-body p,
body .zca-prep-card:nth-child(1) .zca-prep-body p,
body .zca-prep-card:nth-child(2) .zca-prep-body p,
body .zca-prep-card:nth-child(3) .zca-prep-body p {
    display: block !important;
    max-width: none !important;
    color: #596579 !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
}

body .zca-prep-card .zca-prep-meta,
body .zca-prep-card:nth-child(1) .zca-prep-meta {
    justify-content: space-between !important;
    gap: 10px !important;
    margin-top: auto !important;
    padding-top: 14px !important;
}

body .zca-prep-card .zca-prep-meta small,
body .zca-prep-card .zca-prep-meta b,
body .zca-prep-card:nth-child(1) .zca-prep-meta small,
body .zca-prep-card:nth-child(1) .zca-prep-meta b {
    color: #e30613 !important;
    font-size:14px !important;
}

body .zca-prep-card .zca-prep-meta small {
    color: #7a0a12 !important;
}

@media (max-width: 1280px) {
    body .zca-prep-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 1024px) {
    body .zca-prep-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 760px) {
    body .zca-prep-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px !important;
    }

    body .zca-prep-card,
    body .zca-prep-card:nth-child(1),
    body .zca-prep-card:nth-child(n+6) {
        min-height: 0 !important;
    }

    body .zca-prep-card .zca-prep-media,
    body .zca-prep-card:nth-child(1) .zca-prep-media {
        min-height: 155px !important;
        height: 155px !important;
    }

    body .zca-prep-card .zca-prep-body,
    body .zca-prep-card:nth-child(1) .zca-prep-body {
        min-height: 230px !important;
    }
}

@media (max-width: 540px) {
    body .zca-prep-grid {
        grid-template-columns: 1fr !important;
    }

    body .zca-prep-card .zca-prep-body,
    body .zca-prep-card:nth-child(1) .zca-prep-body {
        min-height: 0 !important;
    }
}
/* Poster-style course cards with real cropped images */
body .prep-card-0 .zca-prep-media { background-image: url('../images/zenith-course-1.png') !important; }
body .prep-card-1 .zca-prep-media { background-image: url('../images/zenith-course-2.png') !important; }
body .prep-card-2 .zca-prep-media { background-image: url('../images/zenith-course-3.png') !important; }
body .prep-card-3 .zca-prep-media { background-image: url('../images/zenith-course-4.png') !important; }
body .prep-card-4 .zca-prep-media { background-image: url('../images/zenith-course-5.png') !important; }
body .prep-card-5 .zca-prep-media { background-image: url('../images/zenith-course-6.png') !important; }
body .prep-card-6 .zca-prep-media { background-image: url('../images/zenith-course-7.png') !important; }
body .prep-card-7 .zca-prep-media { background-image: url('../images/zenith-course-8.png') !important; }
body .prep-card-8 .zca-prep-media { background-image: url('../images/zenith-course-9.png') !important; }
body .prep-card-9 .zca-prep-media { background-image: url('../images/zenith-course-10.png') !important; }

body .zca-prep-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 20px !important;
}

body .zca-prep-card,
body .zca-prep-card:nth-child(1),
body .zca-prep-card:nth-child(n+2) {
    min-height: 410px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, .58) !important;
    background: linear-gradient(180deg, #ffffff 0%, #fff9f0 100%) !important;
    box-shadow: 0 18px 48px rgba(35, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .8) !important;
}

body .zca-prep-card::after,
body .zca-prep-card:nth-child(1)::after {
    background: linear-gradient(180deg, #ffffff 0%, #fff9f0 100%) !important;
}

body .zca-prep-card .zca-prep-media,
body .zca-prep-card:nth-child(1) .zca-prep-media,
body .zca-prep-card:nth-child(n+2) .zca-prep-media {
    height: 236px !important;
    min-height: 236px !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 7px 7px 0 0 !important;
    transform: translateZ(0) !important;
    transition: transform .45s ease, filter .45s ease !important;
}

body .zca-prep-card:hover .zca-prep-media {
    transform: scale(1.045) !important;
    filter: saturate(1.08) contrast(1.03) !important;
}

body .zca-prep-card .zca-prep-media::after,
body .zca-prep-card:nth-child(1) .zca-prep-media::after {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .18) 34%, rgba(76, 0, 6, .82) 100%),
        linear-gradient(135deg, rgba(227, 6, 19, .18), rgba(255, 203, 5, .1)) !important;
}

body .zca-prep-overlay {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

body .zca-prep-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #7a050b;
    font-size:14px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #ffdf3a, #ffbf00);
    border: 1px solid rgba(255, 255, 255, .5);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

body .zca-prep-overlay h3 {
    max-width: 96%;
    margin: 0 !important;
    color: #fff !important;
    font-size: clamp(22px, 1.35vw, 28px) !important;
    font-weight: 900 !important;
    line-height: 1.08 !important;
    text-shadow: 0 12px 26px rgba(0, 0, 0, .42) !important;
}

body .zca-prep-card .zca-prep-body,
body .zca-prep-card:nth-child(1) .zca-prep-body,
body .zca-prep-card:nth-child(n+2) .zca-prep-body {
    min-height: 174px !important;
    padding: 18px 18px 16px !important;
    background:
        radial-gradient(circle at 95% 0%, rgba(255, 203, 5, .18), transparent 35%),
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 249, 240, .98)) !important;
}

body .zca-prep-card .zca-prep-body p,
body .zca-prep-card:nth-child(1) .zca-prep-body p,
body .zca-prep-card:nth-child(n+2) .zca-prep-body p {
    display: -webkit-box !important;
    min-height: 66px;
    margin: 0 !important;
    overflow: hidden !important;
    color: #4f5b6c !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

body .zca-prep-meta {
    border-top: 1px solid rgba(227, 6, 19, .1);
}

body .zca-prep-meta b {
    padding: 8px 10px;
    border-radius: 999px;
    color: #fff !important;
    background: linear-gradient(135deg, #e30613, #9f0009);
    box-shadow: 0 10px 24px rgba(227, 6, 19, .2);
}

body .zca-prep-meta small {
    color: #7a0a12 !important;
}

@media (max-width: 1280px) {
    body .zca-prep-grid { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
}

@media (max-width: 1024px) {
    body .zca-prep-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}

@media (max-width: 760px) {
    body .zca-prep-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    body .zca-prep-card .zca-prep-media,
    body .zca-prep-card:nth-child(1) .zca-prep-media { height: 210px !important; min-height: 210px !important; }
}

@media (max-width: 540px) {
    body .zca-prep-grid { grid-template-columns: 1fr !important; }
    body .zca-prep-card .zca-prep-media,
    body .zca-prep-card:nth-child(1) .zca-prep-media { height: 235px !important; min-height: 235px !important; }
}
/* Final ultra-premium course section polish */
body .zca-prep-section {
    isolation: isolate !important;
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 203, 5, .36), transparent 24%),
        radial-gradient(circle at 86% 8%, rgba(255, 255, 255, .16), transparent 22%),
        radial-gradient(circle at 50% 108%, rgba(255, 203, 5, .16), transparent 36%),
        linear-gradient(135deg, #330004 0%, #780008 38%, #d90010 100%) !important;
}

body .zca-prep-section::before {
    opacity: .42 !important;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, .32) 1px, transparent 1.5px),
        linear-gradient(to right, rgba(255, 255, 255, .055) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, .045) 1px, transparent 1px) !important;
    background-size: 20px 20px, 70px 70px, 70px 70px !important;
}

body .zca-prep-head {
    position: relative !important;
    padding-bottom: 8px !important;
}

body .zca-prep-head::after {
    content: "";
    display: block;
    width: 118px;
    height: 4px;
    margin: 20px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, #ffcb05 18%, #fff 50%, #ffcb05 82%, transparent);
    box-shadow: 0 0 24px rgba(255, 203, 5, .45);
}

body .zca-prep-grid {
    gap: 24px !important;
    align-items: stretch !important;
}

body .zca-prep-card,
body .zca-prep-card:nth-child(1),
body .zca-prep-card:nth-child(n+2) {
    min-height: 438px !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, .92) !important;
    border: 1px solid rgba(255, 255, 255, .62) !important;
    box-shadow:
        0 30px 80px rgba(20, 0, 0, .28),
        0 2px 0 rgba(255, 255, 255, .8) inset !important;
    backdrop-filter: blur(10px);
}

body .zca-prep-card::before,
body .zca-prep-card:nth-child(1)::before {
    inset: -55% !important;
    opacity: .18 !important;
    background: conic-gradient(from 160deg, transparent 0 24%, rgba(255, 203, 5, .95) 34%, rgba(255, 255, 255, .92) 42%, rgba(227, 6, 19, .9) 52%, transparent 64% 100%) !important;
}

body .zca-prep-card::after,
body .zca-prep-card:nth-child(1)::after {
    inset: 2px !important;
    border-radius: 6px !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .99) 0%, rgba(255, 249, 239, .98) 100%) !important;
}

body .zca-prep-card:hover {
    transform: translateY(-12px) !important;
    box-shadow:
        0 40px 95px rgba(20, 0, 0, .38),
        0 0 0 1px rgba(255, 203, 5, .4) inset !important;
}

body .zca-prep-card:hover::before {
    opacity: .5 !important;
}

body .zca-prep-shine {
    z-index: 6 !important;
    background: linear-gradient(112deg, transparent 0%, transparent 38%, rgba(255, 255, 255, .55) 48%, transparent 58%, transparent 100%) !important;
}

body .zca-prep-card .zca-prep-media,
body .zca-prep-card:nth-child(1) .zca-prep-media,
body .zca-prep-card:nth-child(n+2) .zca-prep-media {
    height: 248px !important;
    min-height: 248px !important;
    margin: 8px 8px 0 !important;
    width: calc(100% - 16px) !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    box-shadow: 0 18px 35px rgba(80, 0, 0, .18) !important;
}

body .zca-prep-card .zca-prep-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 203, 5, .72) 0 5px, transparent 5px calc(100% - 5px), rgba(255, 203, 5, .72) calc(100% - 5px) 100%),
        linear-gradient(180deg, rgba(255, 203, 5, .72) 0 5px, transparent 5px calc(100% - 5px), rgba(255, 203, 5, .72) calc(100% - 5px) 100%);
    opacity: .92;
}

body .zca-prep-card .zca-prep-media::after,
body .zca-prep-card:nth-child(1) .zca-prep-media::after {
    z-index: 1 !important;
    background:
        linear-gradient(180deg, rgba(15, 0, 0, 0) 0%, rgba(15, 0, 0, .12) 32%, rgba(40, 0, 4, .9) 100%),
        radial-gradient(circle at 18% 15%, rgba(255, 203, 5, .2), transparent 38%) !important;
}

body .zca-prep-overlay {
    left: 22px !important;
    right: 22px !important;
    bottom: 20px !important;
    z-index: 4 !important;
}

body .zca-prep-badge {
    min-height: 30px !important;
    padding: 7px 13px !important;
    color: #5f0007 !important;
    font-size:14px !important;
    letter-spacing: .02em !important;
    background: linear-gradient(135deg, #fff1a6 0%, #ffcb05 48%, #ffb800 100%) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22) !important;
}

body .zca-prep-overlay h3 {
    max-width: 100% !important;
    font-size: clamp(23px, 1.5vw, 30px) !important;
    line-height: 1.05 !important;
}

body .zca-prep-card .zca-prep-body,
body .zca-prep-card:nth-child(1) .zca-prep-body,
body .zca-prep-card:nth-child(n+2) .zca-prep-body {
    min-height: 174px !important;
    padding: 18px 20px 18px !important;
    background: transparent !important;
}

body .zca-prep-card .zca-prep-body p,
body .zca-prep-card:nth-child(1) .zca-prep-body p,
body .zca-prep-card:nth-child(n+2) .zca-prep-body p {
    min-height: 64px !important;
    color: #465466 !important;
    font-size: 14px !important;
    line-height: 1.52 !important;
}

body .zca-prep-meta {
    min-height: 48px !important;
    margin-top: 14px !important;
    padding-top: 14px !important;
    border-top: 1px solid rgba(122, 10, 18, .11) !important;
}

body .zca-prep-meta small {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #7b1a20 !important;
    font-size:14px !important;
    font-weight: 900 !important;
}

body .zca-prep-meta b {
    min-height: 36px;
    padding: 9px 12px !important;
    color: #fff !important;
    font-size:14px !important;
    font-weight: 900 !important;
    border: 1px solid rgba(255, 255, 255, .45);
    background: linear-gradient(135deg, #e30613 0%, #a8000b 100%) !important;
}

body .zca-prep-card:hover .zca-prep-meta b {
    background: linear-gradient(135deg, #ffcb05 0%, #ffb300 100%) !important;
    color: #650006 !important;
}

@media (max-width: 1280px) {
    body .zca-prep-grid { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
}

@media (max-width: 1080px) {
    body .zca-prep-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}

@media (max-width: 780px) {
    body .zca-prep-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 18px !important; }
    body .zca-prep-card .zca-prep-media,
    body .zca-prep-card:nth-child(1) .zca-prep-media { height: 225px !important; min-height: 225px !important; }
}

@media (max-width: 560px) {
    body .zca-prep-grid { grid-template-columns: 1fr !important; }
    body .zca-prep-card .zca-prep-media,
    body .zca-prep-card:nth-child(1) .zca-prep-media { height: 245px !important; min-height: 245px !important; }
}
/* Course card duration overlay + premium CTA button */
body .zca-prep-chip-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

body .zca-prep-duration {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #fff;
    font-size:14px;
    font-weight: 900;
    line-height: 1;
    background: rgba(122, 0, 9, .82);
    border: 1px solid rgba(255, 255, 255, .42);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .24);
    backdrop-filter: blur(8px);
}

body .zca-prep-card .zca-prep-body,
body .zca-prep-card:nth-child(1) .zca-prep-body,
body .zca-prep-card:nth-child(n+2) .zca-prep-body {
    min-height: 152px !important;
    padding: 18px 20px 20px !important;
}

body .zca-prep-card .zca-prep-body p,
body .zca-prep-card:nth-child(1) .zca-prep-body p,
body .zca-prep-card:nth-child(n+2) .zca-prep-body p {
    min-height: 62px !important;
    -webkit-line-clamp: 3 !important;
}

body .zca-prep-meta {
    justify-content: flex-start !important;
    border-top: 0 !important;
    margin-top: 15px !important;
    padding-top: 0 !important;
}

body .zca-prep-meta small {
    display: none !important;
}

body .zca-prep-meta b {
    position: relative;
    width: 100%;
    min-height: 44px;
    justify-content: center;
    padding: 12px 16px !important;
    overflow: hidden;
    color: #fff !important;
    font-size:14px !important;
    letter-spacing: .01em;
    border-radius: 999px;
    border: 1px solid rgba(255, 203, 5, .5);
    background:
        linear-gradient(135deg, #e30613 0%, #b5000c 45%, #730006 100%) !important;
    box-shadow: 0 14px 30px rgba(227, 6, 19, .24), inset 0 1px 0 rgba(255, 255, 255, .22);
    transition: transform .25s ease, color .25s ease, background .25s ease, box-shadow .25s ease;
}

body .zca-prep-meta b::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, transparent 35%, rgba(255, 255, 255, .38) 48%, transparent 62%, transparent 100%);
    transform: translateX(-110%);
    transition: transform .55s ease;
}

body .zca-prep-meta b i,
body .zca-prep-meta b span {
    position: relative;
    z-index: 1;
}

body .zca-prep-card:hover .zca-prep-duration {
    color: #650006;
    background: linear-gradient(135deg, #fff1a6, #ffcb05);
    border-color: rgba(255, 255, 255, .76);
}

body .zca-prep-card:hover .zca-prep-meta b {
    color: #5f0007 !important;
    background: linear-gradient(135deg, #ffe66c 0%, #ffcb05 48%, #ffb400 100%) !important;
    box-shadow: 0 16px 34px rgba(255, 203, 5, .28), inset 0 1px 0 rgba(255, 255, 255, .55);
    transform: translateY(-2px);
}

body .zca-prep-card:hover .zca-prep-meta b::before {
    transform: translateX(115%);
}

body .zca-prep-card:hover .zca-prep-meta b i {
    transform: translateX(3px);
}

@media (max-width: 760px) {
    body .zca-prep-card .zca-prep-body,
    body .zca-prep-card:nth-child(1) .zca-prep-body,
    body .zca-prep-card:nth-child(n+2) .zca-prep-body {
        min-height: 146px !important;
    }
}