@import url("/assets/css/lms/live_session.css");

:root {
    --bg-main: #0b0b0b;
    --bg-section: #111111;
    --bg-card: #181818;
    --text-main: #ffffff;
    --text-muted: #bdbdbd;
    --accent: #f97316;
    --accent-light: #ff9a3d;
    --border-soft: #2a2a2a;
    --bg-cart: #1a1a1a;
}

body {
    background: var(--bg-main);
    color: var(--text-main);
}

.public-crash-page-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.public-crash-page-body .main-content,
.public-crash-page-body .main-footer {
    flex-shrink: 0;
}

.public-crash-page-body .main-content {
    flex: 1 0 auto;
}

.main-content {
    background: var(--bg-main);
}

.student-hero {
    align-items: stretch;
    padding-top: 42px;
}

.student-hero .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.student-hero .hero-copy h1 {
    max-width: 780px;
    font-size: clamp(40px, 5.4vw, 70px);
}

.student-hero .hero-copy p {
    max-width: 760px;
}

.crash-countdown-panel {
    display: grid;
    gap: 14px;
}

.ninety-day-card {
    display: grid;
    place-items: center;
    min-height: 190px;
    padding: 24px;
    text-align: center;
    border-radius: 18px;
    background:
        radial-gradient(circle at top, rgba(249, 115, 22, 0.20), transparent 45%),
        linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.ninety-day-card span {
    color: #f97316;
    font-size: clamp(72px, 8vw, 108px);
    font-weight: 900;
    line-height: 0.88;
}

.ninety-day-card strong {
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
}

.ninety-day-card p {
    margin: 8px 0 0;
    color: #b8b8b8;
    font-weight: 700;
}

.student-subject-card {
    position: relative;
    overflow: hidden;
}

.student-subject-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(249, 115, 22, 0.10), transparent 38%),
        radial-gradient(circle at right top, rgba(249, 115, 22, 0.18), transparent 34%);
}

.student-subject-card > * {
    position: relative;
    z-index: 1;
}

.crash-path-section .process-grid article {
    min-height: 210px;
}

.crash-subject-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.crash-subject-grid div {
    justify-content: center;
    min-height: 86px;
    text-align: center;
    font-size: 16px;
}

.enroll-now-btn {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(249, 115, 22, 0.45);
    background:
        linear-gradient(135deg, #f97316, #ea580c);
    box-shadow:
        0 16px 32px rgba(249, 115, 22, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.enroll-now-btn:hover {
    background: linear-gradient(135deg, #fb923c, #f97316);
    transform: translateY(-2px);
    box-shadow:
        0 20px 40px rgba(249, 115, 22, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.enroll-now-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transform: translateX(-110%);
    transition: transform 0.45s ease;
}

.enroll-now-btn:hover::after {
    transform: translateX(110%);
}

.cart-hero .hero-panel {
    display: grid;
    gap: 14px;
}

.cart-hero .hero-copy h1 {
    max-width: 760px;
}

.cart-hero .hero-copy p {
    max-width: 700px;
}

.ninety-day-card.compact {
    min-height: 150px;
}

.cart-section {
    padding-top: 24px;
    padding-bottom: 34px;
}

.cart-layout {
    width: min(1360px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.cart-panel {
    padding: 24px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(245, 124, 0, 0.08), rgba(255, 255, 255, 0.035)),
        rgba(22, 22, 22, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

.cart-panel .section-intro {
    margin-bottom: 20px;
}

.cart-form,
.checkout-form {
    display: grid;
    gap: 16px;
}

.compact-class-picker {
    margin-bottom: 18px;
}

.course-card-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    max-width: 980px;
    margin: 0 auto;
}

.course-card {
    grid-column: span 2;
    min-height: 198px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
        rgba(24, 24, 24, 0.92);
    color: #ffffff;
    display: grid;
    place-items: center;
    text-align: center;
    gap: 12px;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.course-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.course-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.course-card i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.13);
    font-size: 20px;
}

.course-card strong {
    color: #f8fafc;
    font-size: 17px;
    line-height: 1.15;
}

.course-grade-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.045);
}

.course-grade-actions button {
    min-height: 40px;
    padding: 8px 6px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 0;
    background: transparent;
    color: #e7e2da;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.course-grade-actions button:last-child {
    border-right: 0;
}

.course-card:hover {
    transform: translateY(-2px);
    border-color: rgba(245, 158, 11, 0.34);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.course-grade-actions button:hover {
    background: rgba(255, 255, 255, 0.065);
    color: #ffffff;
}

.course-grade-actions button.is-selected {
    background: #d97706;
    color: #fff7ed;
}

.course-price-preview {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(245, 158, 11, 0.10);
    border: 1px solid rgba(245, 158, 11, 0.18);
    color: #fcd9a0;
    font-size: 13px;
    font-weight: 900;
}

.add-course-cart-btn {
    width: 100%;
    min-height: 42px;
    border: 0;
    border-radius: 10px;
    background: #d97706;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(217, 119, 6, 0.18);
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.add-course-cart-btn:hover {
    transform: translateY(-2px);
    background: #b45309;
    box-shadow: 0 14px 28px rgba(217, 119, 6, 0.24);
}

.add-course-cart-btn.is-added {
    background: #92400e;
    box-shadow: 0 10px 22px rgba(146, 64, 14, 0.22);
}

.fee-range-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.fee-range-grid div {
    padding: 15px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fee-range-grid strong,
.fee-range-grid span {
    display: block;
}

.fee-range-grid strong {
    color: #ffffff;
    margin-bottom: 8px;
}

.fee-range-grid span {
    color: #fed7aa;
    font-size: 18px;
    font-weight: 900;
}

.fee-range-grid p {
    margin: 6px 0 0;
    color: #b8b8b8;
}

.cart-form label,
.checkout-form label {
    display: grid;
    gap: 8px;
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
}

.cart-form select,
.checkout-form input,
.checkout-form select {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    outline: none;
}

.cart-form option,
.checkout-form option {
    background: #111111;
    color: #ffffff;
}

.price-preview {
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(249, 115, 22, 0.10);
    border: 1px solid rgba(249, 115, 22, 0.24);
    color: #fed7aa;
    font-weight: 900;
}

.add-cart-btn,
.checkout-btn {
    width: 100%;
}

.checkout-btn {
    background: #d97706;
    box-shadow: 0 14px 28px rgba(217, 119, 6, 0.18);
}

.cart-summary-panel {
    display: none;
}

.cart-status-inline {
    text-align: center;
}

.cart-items {
    display: grid;
    gap: 12px;
    min-height: 148px;
    align-content: start;
}

.cart-items.empty {
    place-items: center;
    color: #b8b8b8;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    border-radius: 14px;
}

.cart-item {
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item strong {
    color: #ffffff;
    font-size: 17px;
}

.cart-item em {
    width: fit-content;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.12);
    color: #fcd9a0;
    font-style: normal;
    font-size: 12px;
    font-weight: 900;
}

.cart-item span {
    color: #fcd9a0;
    font-weight: 900;
}

.cart-item button {
    width: fit-content;
    min-height: 38px;
    padding: 8px 12px;
    border: 0;
    border-radius: 10px;
    background: rgba(248, 113, 113, 0.14);
    color: #fca5a5;
    font-weight: 800;
    cursor: pointer;
}

.checkout-panel {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.floating-checkout-btn {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 58px;
    height: 58px;
    padding: 0;
    border: 1px solid rgba(245, 158, 11, 0.46);
    border-radius: 18px;
    background: #d97706;
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(217, 119, 6, 0.26);
    justify-content: center;
    font-weight: 900;
    cursor: pointer;
}

.floating-checkout-btn span {
    position: absolute;
    right: -7px;
    top: -7px;
    min-width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #f59e0b;
    color: #ffffff;
    border: 2px solid #101010;
    font-size: 12px;
}

.floating-checkout-btn.has-items {
    animation: checkoutPulse 1.8s ease-in-out infinite;
}

.floating-cart-menu {
    position: fixed;
    right: 22px;
    bottom: 92px;
    z-index: 44;
    width: min(360px, calc(100vw - 28px));
    max-height: min(520px, calc(100vh - 140px));
    display: none;
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(255, 255, 255, 0.04)),
        rgba(18, 18, 18, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(16px);
}

.floating-cart-menu.active {
    display: grid;
}

.floating-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.floating-cart-header strong {
    color: #ffffff;
    font-size: 18px;
}

.floating-cart-header button {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.floating-cart-menu .cart-items {
    max-height: 310px;
    min-height: 112px;
    overflow: auto;
    padding-right: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(217, 119, 6, 0.82) rgba(255, 255, 255, 0.08);
}

.floating-cart-menu .cart-items::-webkit-scrollbar {
    width: 8px;
}

.floating-cart-menu .cart-items::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.floating-cart-menu .cart-items::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: #d97706;
}

.floating-cart-menu .cart-items::-webkit-scrollbar-thumb:hover {
    background: #b45309;
}

.floating-cart-menu .checkout-btn {
    min-height: 46px;
}

.live-hero,
.live-section {
    background: var(--bg-main);
}

.hero-eyebrow,
.subject-grid i,
.process-grid article strong,
.faq-list summary::after,
.ninety-day-card span,
.course-card i,
.form-status {
    color: var(--accent);
}

.hero-copy h1,
.section-intro h2,
.feature-grid h3,
.process-grid h3,
.faq-list summary,
.cart-panel h2,
.cart-item strong,
.floating-cart-header strong,
.course-card strong,
.fee-range-grid strong,
.cart-form label,
.checkout-form label {
    color: var(--text-main);
}

.hero-copy p,
.section-intro p,
.feature-grid p,
.process-grid p,
.faq-list p,
.ninety-day-card p,
.fee-range-grid p,
.cart-items.empty {
    color: var(--text-muted);
}

.hero-eyebrow,
.live-stats,
.course-price-preview,
.price-preview,
.cart-item em,
.cart-item span,
.fee-range-grid span {
    background: var(--bg-section);
    border-color: var(--border-soft);
    color: var(--text-main);
}

.hero-panel,
.feature-grid article,
.process-grid article,
.faq-list details,
.portal-login-section,
.student-subject-card,
.cart-panel,
.course-card,
.cart-item,
.fee-range-grid div,
.floating-cart-menu {
    background: var(--bg-card);
    border-color: var(--border-soft);
}

.cart-section,
.checkout-panel,
.faq-section {
    background: var(--bg-section);
}

.ninety-day-card {
    background:
        radial-gradient(circle at top, rgba(249, 115, 22, 0.18), transparent 48%),
        var(--bg-card);
    border-color: var(--border-soft);
}

.student-subject-card::before {
    background:
        linear-gradient(120deg, rgba(249, 115, 22, 0.14), transparent 38%),
        radial-gradient(circle at right top, rgba(249, 115, 22, 0.16), transparent 34%);
}

.primary-btn,
.enroll-now-btn,
.add-course-cart-btn,
.checkout-btn,
.floating-checkout-btn,
.course-grade-actions button.is-selected {
    background: var(--accent);
    color: var(--text-main);
    border-color: var(--accent);
    box-shadow: none;
}

.primary-btn:hover,
.enroll-now-btn:hover,
.add-course-cart-btn:hover,
.checkout-btn:hover,
.floating-checkout-btn:hover {
    background: #ea580c;
}

.secondary-btn,
.course-grade-actions,
.course-grade-actions button,
.cart-form select,
.checkout-form input,
.checkout-form select,
.floating-cart-header button {
    background: var(--bg-section);
    border-color: var(--border-soft);
    color: var(--text-main);
}

.course-grade-actions button:hover,
.floating-cart-header button:hover {
    background: #222222;
}

.cart-form option,
.checkout-form option {
    background: var(--bg-section);
    color: var(--text-main);
}

.cart-items.empty {
    border-color: var(--border-soft);
}

.cart-item button {
    background: var(--bg-section);
    border: 1px solid var(--border-soft);
    color: var(--text-muted);
}

.floating-checkout-btn span {
    background: var(--bg-main);
    border-color: var(--accent);
    color: var(--accent);
}

.floating-cart-menu .cart-items {
    scrollbar-color: var(--accent) var(--bg-section);
}

.floating-cart-menu .cart-items::-webkit-scrollbar-track {
    background: var(--bg-section);
}

.floating-cart-menu .cart-items::-webkit-scrollbar-thumb,
.floating-cart-menu .cart-items::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

.course-cards-panel,
.floating-cart-menu,
.demo-dialog {
    background: var(--bg-card);
    border-color: var(--border-soft);
}

.course-card {
    background: var(--bg-card);
    box-shadow: none;
}

.course-card i {
    background: var(--bg-section);
    color: var(--text-muted);
}

.course-card:hover {
    border-color: #3a3a3a;
    box-shadow: none;
}

.course-grade-actions button.is-selected {
    color: var(--text-main);
}

.course-price-preview,
.cart-item span {
    color: var(--text-muted);
    font-weight: 800;
}

.cart-item em {
    color: var(--text-main);
}

.cart-item {
    gap: 8px;
    padding: 14px;
}

.floating-cart-menu {
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
    backdrop-filter: none;
}

.checkout-form input,
.checkout-form select,
.cart-form select {
    background: #101010;
}

.form-status {
    color: var(--text-muted);
}

.course-card-grid {
    gap: 25px;
}

.course-card {
    min-height: 224px;
    padding: 25px;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    box-shadow: none;
    gap: 15px;
    align-content: start;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.course-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.15);
}

.course-card i {
    width: 60px;
    height: 60px;
    margin-bottom: 2px;
    border-radius: 12px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent);
    font-size: 24px;
}

.course-card strong {
    color: var(--text-main);
    font-size: 20px;
    font-weight: 700;
}

.course-grade-actions {
    gap: 10px;
    overflow: visible;
    border: 0;
    background: transparent;
}

.course-grade-actions button {
    min-height: 42px;
    padding: 10px 14px;
    border: 2px solid var(--border-soft);
    border-radius: 50px;
    background: transparent;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
    white-space: normal;
}

.course-grade-actions button:last-child {
    border-right: 2px solid var(--border-soft);
}

.course-grade-actions button:hover {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

.course-grade-actions button.is-selected {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-color: transparent;
    color: #ffffff;
    box-shadow: none;
}

.course-price-preview {
    margin-top: 2px;
    padding: 12px 0;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    background: transparent;
    color: var(--accent);
    font-size: 17px;
    font-weight: 800;
}

.add-course-cart-btn {
    min-height: 48px;
    margin-top: auto;
    border: 2px solid var(--accent);
    border-radius: 8px;
    background: transparent;
    color: var(--accent);
    font-weight: 700;
}

.add-course-cart-btn:hover {
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent);
    transform: translateY(-2px);
}

.add-course-cart-btn.is-added {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

.cart-panel,
.floating-cart-menu,
.demo-dialog {
    border-radius: 16px;
    background: var(--bg-cart);
    border: 1px solid var(--border-soft);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.floating-cart-menu {
    padding: 20px;
    gap: 15px;
}

.floating-cart-header {
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-soft);
}

.floating-cart-header strong {
    font-size: 19px;
    font-weight: 700;
}

.floating-cart-header button {
    border-radius: 50%;
    background: transparent;
    color: var(--text-muted);
}

.floating-cart-header button:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent);
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 5px 12px;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-soft);
}

.cart-item strong {
    font-size: 15px;
    font-weight: 700;
}

.cart-item em {
    width: fit-content;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
}

.cart-item span {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
}

.cart-item button {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    min-height: 36px;
    padding: 8px 10px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #ef4444;
    font-size: 13px;
    font-weight: 700;
}

.cart-item button:hover {
    background: rgba(239, 68, 68, 0.1);
}

.checkout-btn {
    min-height: 48px;
    border-radius: 8px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    box-shadow: none;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #22c55e, #0f766e);
}

.floating-checkout-btn {
    background: var(--accent);
    border-color: var(--accent);
    border-radius: 16px;
}

.floating-checkout-btn.has-items {
    animation: none;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.15);
}

.course-cards-panel {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.course-card-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    max-width: 980px;
}

.course-card {
    grid-column: span 2;
}

.course-card:nth-child(4) {
    grid-column: span 2;
}

.course-card:nth-child(5) {
    grid-column: span 2;
}

.course-card:nth-child(6) {
    grid-column: span 2;
}

.course-card:nth-child(7) {
    grid-column: 3 / span 2;
}

@keyframes checkoutPulse {
    0%,
    100% {
        box-shadow: 0 16px 34px rgba(217, 119, 6, 0.26);
    }

    50% {
        box-shadow: 0 18px 38px rgba(217, 119, 6, 0.38);
    }
}

@media (max-width: 1050px) {
    .student-hero {
        padding-top: 30px;
    }

    .cart-hero .hero-panel {
        display: none;
    }

    .cart-hero {
        align-items: center;
    }

    .cart-hero .hero-copy {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        align-items: center;
    }

    .cart-hero .hero-copy h1,
    .cart-hero .hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

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

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .course-card-grid {
        grid-template-columns: repeat(2, minmax(230px, 1fr));
        max-width: 640px;
    }

    .course-card,
    .course-card:nth-child(4),
    .course-card:nth-child(5),
    .course-card:nth-child(6),
    .course-card:nth-child(7) {
        grid-column: auto;
    }

    .cart-summary-panel {
        position: static;
    }

    .fee-range-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .crash-subject-grid {
        grid-template-columns: 1fr;
    }

    .ninety-day-card {
        min-height: 150px;
    }

    .cart-layout,
    .checkout-panel {
        width: min(100% - 28px, 1180px);
    }

    .course-card-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .course-card {
        min-height: 0;
    }

    .cart-hero .hero-copy h1 {
        max-width: 520px;
        font-size: clamp(30px, 9vw, 42px);
    }

    .cart-hero .hero-copy p {
        max-width: 460px;
        font-size: 15px;
        line-height: 1.6;
    }

    .floating-checkout-btn {
        right: 14px;
        bottom: 14px;
    }

    .floating-cart-menu {
        right: 14px;
        bottom: 84px;
    }
}

.public-crash-page-body .course-card-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    max-width: 1280px;
}

.public-crash-page-body .course-card {
    grid-column: span 2;
}

.public-crash-page-body .course-card:nth-child(4) {
    grid-column: span 2;
}

.public-crash-page-body .course-card:nth-child(5) {
    grid-column: 2 / span 2;
}

.public-crash-page-body .course-card:nth-child(6) {
    grid-column: 4 / span 2;
}

.public-crash-page-body .course-card:nth-child(7) {
    grid-column: 6 / span 2;
}

.public-crash-page-body .floating-checkout-btn {
    left: 22px;
    right: auto;
}

.public-crash-page-body .floating-cart-menu {
    left: 22px;
    right: auto;
}

@media (max-width: 1050px) {
    .public-crash-page-body .course-card-grid {
        grid-template-columns: repeat(2, minmax(230px, 1fr));
        max-width: 640px;
    }

    .public-crash-page-body .course-card,
    .public-crash-page-body .course-card:nth-child(4),
    .public-crash-page-body .course-card:nth-child(5),
    .public-crash-page-body .course-card:nth-child(6),
    .public-crash-page-body .course-card:nth-child(7) {
        grid-column: auto;
    }
}

@media (max-width: 760px) {
    .public-crash-page-body .course-card-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .public-crash-page-body .floating-checkout-btn {
        left: 14px;
        right: auto;
    }

    .public-crash-page-body .floating-cart-menu {
        left: 14px;
        right: auto;
    }
}
