:root {
    --teal: #0567b2;
    --teal-dark: #03406f;
    --orange: #ff7600;
    --ink: #172226;
    --muted: #5d6c72;
    --line: #dfe8ea;
    --soft: #f2f7fb;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(3, 64, 111, .14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

.mobile-app-view {
    display: none;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 4vw, 56px);
    color: var(--white);
    transition: background .2s ease, box-shadow .2s ease;
}

.site-header.is-solid {
    background: rgba(0, 63, 74, .96);
    box-shadow: 0 10px 30px rgba(0, 31, 38, .18);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
}

.brand img {
    width: 56px;
    height: 56px;
}

.nav {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2.4vw, 28px);
    font-size: 15px;
    font-weight: 700;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown button {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 6px;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, .06);
    color: inherit;
    font: inherit;
    cursor: pointer;
}

.nav-dropdown button i {
    font-size: 12px;
    transition: transform .18s ease;
}

.nav-dropdown.is-open button {
    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .12);
}

.nav-dropdown.is-open button i {
    transform: rotate(180deg);
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    min-width: 210px;
    overflow: hidden;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(3, 64, 111, .98);
    box-shadow: 0 18px 38px rgba(0, 31, 38, .22);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -8px) scaleY(.86);
    transform-origin: top center;
    transition: opacity .16s ease, transform .18s ease;
}

.nav-dropdown.is-open .nav-dropdown__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0) scaleY(1);
}

.nav-dropdown__menu a {
    display: flex;
    min-height: 42px;
    align-items: center;
    border-radius: 6px;
    padding: 10px 12px;
    white-space: nowrap;
}

.nav-dropdown__menu a:hover {
    background: rgba(255, 255, 255, .12);
}

.nav__button {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 9px 14px;
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(255, 118, 0, .24);
    white-space: nowrap;
}

.hero {
    position: relative;
    min-height: 84vh;
    overflow: hidden;
    color: var(--white);
}

.hero__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 112px clamp(20px, 5vw, 72px) 88px;
    background-position: center;
    background-size: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity .7s ease;
}

.hero__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero__inner {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 780px;
    margin-bottom: 18px;
    font-size: clamp(42px, 6vw, 78px);
    line-height: .98;
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
}

h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.hero__text {
    max-width: 620px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(18px, 2.2vw, 23px);
}

.hero__actions,
.contact__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero__dots {
    position: absolute;
    z-index: 3;
    left: clamp(20px, 5vw, 72px);
    bottom: 34px;
    display: flex;
    gap: 10px;
}

.hero__dots button {
    width: 42px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .46);
    cursor: pointer;
}

.hero__dots button.is-active {
    background: var(--orange);
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 12px 18px;
    font-weight: 900;
}

.button--primary {
    background: var(--orange);
    color: var(--white);
}

.button--light {
    background: var(--white);
    color: var(--teal-dark);
}

.section {
    padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.section--tint {
    background: var(--soft);
}

.section__content,
.section__heading {
    width: min(1060px, 100%);
    margin: 0 auto 32px;
}

.section__content {
    margin-bottom: 0;
}

.about p:not(.eyebrow) {
    max-width: 820px;
    color: var(--muted);
    font-size: 20px;
}

.calendar-section {
    padding-top: clamp(30px, 5vw, 56px);
    padding-bottom: clamp(30px, 5vw, 56px);
    scroll-margin-top: 84px;
}

.enrollment-section {
    scroll-margin-top: 84px;
}

.enrollment-panel {
    width: min(1060px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: clamp(22px, 4vw, 34px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.enrollment-panel__heading {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 12px;
}

.enrollment-panel h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.1;
}

.enrollment-panel__icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #edf6ff;
    color: var(--teal);
    font-size: 24px;
}

.enrollment-prices {
    width: 100%;
    flex: 1;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    background: #f8fbfd;
}

.enrollment-prices > strong {
    display: block;
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 15px;
}

.enrollment-prices__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.enrollment-prices__grid span,
.app-enrollment__prices span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-radius: 8px;
    background: var(--white);
}

.enrollment-prices__grid span {
    padding: 8px 10px;
}

.enrollment-prices small,
.app-enrollment__prices small {
    color: var(--muted);
    font-weight: 800;
}

.enrollment-prices b,
.app-enrollment__prices b {
    color: var(--orange);
    font-size: 13px;
    white-space: nowrap;
}

.enrollment-prices em {
    display: block;
    margin-top: 10px;
    color: var(--teal-dark);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
}

.enrollment-frame {
    width: min(1060px, 100%);
    height: min(760px, 80vh);
    margin: 18px auto 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.enrollment-frame iframe,
.app-enrollment__frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background: var(--white);
}

.calendar-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.calendar-heading h2 {
    margin-bottom: 0;
    font-size: clamp(32px, 4vw, 46px);
}

.calendar-heading > span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px 11px;
    background: var(--white);
    color: var(--teal-dark);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.calendar-list,
.calendar-message {
    width: min(1060px, 100%);
    margin: 0 auto;
}

.calendar-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.calendar-message {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(17, 34, 38, .08);
}

.calendar-message {
    padding: 22px;
    color: var(--muted);
    font-weight: 800;
}

.calendar-item {
    display: flex;
    min-height: 176px;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.calendar-item:hover {
    border-color: rgba(5, 103, 178, .34);
    box-shadow: 0 20px 44px rgba(3, 64, 111, .14);
    transform: translateY(-2px);
}

.calendar-item.is-past,
.calendar-item.is-waiting,
.app-calendar__item.is-past,
.app-calendar__item.is-waiting {
    cursor: default;
}

.calendar-item.is-past:hover {
    border-color: var(--line);
    box-shadow: var(--shadow);
    transform: none;
}

.calendar-item__date,
.calendar-item__body {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.calendar-item__date {
    width: fit-content;
    border-radius: 8px;
    padding: 9px 11px;
    background: #edf6ff;
}

.calendar-item__date strong {
    color: var(--teal);
    font-size: 16px;
    line-height: 1.1;
}

.calendar-item__date small,
.calendar-item__body small {
    color: var(--muted);
    font-size: 12px;
}

.calendar-item__body strong {
    overflow: hidden;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.calendar-item__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.calendar-status {
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.calendar-status.is-open,
.app-calendar__item small.is-open {
    background: #dff8e8;
    color: #126b35;
}

.calendar-status.is-closed,
.app-calendar__item small.is-closed {
    background: #fff1c2;
    color: #7a4e00;
}

.calendar-status.is-done,
.app-calendar__item small.is-done {
    background: #e8edf2;
    color: #43515c;
}

.calendar-status.is-pending,
.app-calendar__item small.is-pending {
    background: #eef3f6;
    color: #667681;
}

.calendar-item__footer > i {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff3e8;
    color: var(--orange);
    font-size: 16px;
}

.calendar-wait,
.event-card__notice {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    border-radius: 999px;
    background: #edf6ff;
    color: var(--teal-dark);
    font-size: 12px;
    font-weight: 900;
}

.calendar-wait {
    padding: 5px 10px;
}

.grid {
    width: min(1160px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.grid--events {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid--partners {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.quick-link,
.partner {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.event-card {
    display: flex;
    min-height: 270px;
    flex-direction: column;
    padding: 24px;
}

.event-card time {
    margin-bottom: 18px;
    color: var(--orange);
    font-weight: 900;
}

.event-card p,
.event-card span,
.partner small,
.quick-link small {
    color: var(--muted);
}

.event-card a {
    margin-top: auto;
    color: var(--teal);
    font-weight: 900;
}

.event-card__notice {
    width: fit-content;
    margin-top: auto;
    padding: 6px 11px;
}

.quick-link {
    min-height: 174px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 22px;
}

.quick-link__icon,
.partner span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    font-weight: 900;
}

.partner {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 24px;
}

.partner img {
    width: 120px;
    height: 58px;
    object-fit: contain;
}

.contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(44px, 7vw, 72px) clamp(20px, 5vw, 72px);
    background: var(--teal-dark);
    color: var(--white);
}

.contact h2 {
    max-width: 680px;
    margin-bottom: 0;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 24px;
    background: #08272f;
    color: var(--white);
    font-weight: 800;
}

.footer a {
    color: rgba(255, 255, 255, .74);
    font-size: 13px;
    font-weight: 700;
}

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

@media (max-width: 860px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .hero {
        min-height: 760px;
    }

    .hero__slide {
        padding-top: 160px;
    }

    .grid--events,
    .grid--links,
    .grid--partners {
        grid-template-columns: 1fr;
    }

    .calendar-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

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

    .enrollment-panel {
        align-items: stretch;
    }

    .enrollment-panel__heading {
        width: 100%;
    }

    .enrollment-prices {
        width: 100%;
    }

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

    .calendar-item__body strong {
        white-space: normal;
    }

    .contact {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .brand img {
        width: 48px;
        height: 48px;
    }

    .brand span {
        font-size: 15px;
    }

    .nav {
        font-size: 14px;
    }

    .nav-dropdown__menu {
        left: 0;
        transform: translate(0, -8px) scaleY(.86);
        transform-origin: top left;
    }

    .nav-dropdown.is-open .nav-dropdown__menu {
        transform: translate(0, 0) scaleY(1);
    }

    .hero {
        min-height: 720px;
    }

    .calendar-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    body {
        background: #f4f7fb;
    }

    .desktop-view {
        display: none;
    }

    .mobile-app-view {
        display: block;
    }

    .app-shell {
        min-height: 100vh;
        padding: 0 16px 104px;
        background: #f4f7fb;
    }

    .app-header {
        position: sticky;
        top: 0;
        z-index: 10;
        margin: 0 -16px;
        padding: 18px 16px 82px;
        border-radius: 0 0 30px 30px;
        background: linear-gradient(145deg, #0567b2 0%, #03406f 100%);
        color: var(--white);
        box-shadow: 0 16px 38px rgba(3, 64, 111, .24);
    }

    .app-header__top,
    .app-user,
    .app-header__icons,
    .app-section__heading {
        display: flex;
        align-items: center;
    }

    .app-header__top {
        justify-content: space-between;
        gap: 10px;
    }

    .app-user {
        flex: 1;
        min-width: 0;
    }

    .app-user__logo {
        width: min(300px, 70vw);
        height: 78px;
        flex-shrink: 0;
        object-fit: contain;
    }

    .app-header__icons {
        flex-shrink: 0;
        gap: 8px;
    }

    .app-header__icons button {
        width: 40px;
        height: 40px;
        border: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, .16);
        color: var(--white);
        font-size: 20px;
    }

    .app-balance-card {
        position: relative;
        z-index: 11;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        margin-top: -58px;
        padding: 22px;
        border: 1px solid rgba(255, 255, 255, .68);
        border-radius: 28px;
        background: var(--white);
        box-shadow: 0 22px 44px rgba(3, 64, 111, .16);
    }

    .app-balance-card span,
    .app-promo__slide span,
    .app-event-card span {
        color: var(--teal);
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .app-balance-card h1 {
        margin: 6px 0 4px;
        color: #111820;
        font-size: 23px;
        line-height: 1.05;
    }

    .app-balance-card p {
        margin-bottom: 16px;
        color: #6a7780;
        font-size: 14px;
    }

    .app-balance-card a,
    .app-event-card a {
        display: inline-flex;
        min-height: 38px;
        align-items: center;
        border-radius: 999px;
        background: var(--teal);
        color: var(--white);
        font-size: 13px;
        font-weight: 800;
        padding: 8px 14px;
    }

    .app-balance-card > i {
        color: var(--teal);
        font-size: 42px;
    }

    .app-quick-actions {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
        margin: 22px 0 18px;
    }

    .app-quick-actions a {
        display: flex;
        min-height: 86px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-radius: 22px;
        background: var(--white);
        box-shadow: 0 12px 28px rgba(17, 24, 32, .08);
        transition: transform .16s ease, box-shadow .16s ease;
    }

    .app-quick-actions a:active,
    .app-service-card:active,
    .app-balance-card a:active,
    .app-event-card a:active,
    .app-calendar__item:active,
    .app-bottom-nav a:active {
        transform: scale(.97);
    }

    .app-quick-actions span {
        display: inline-flex;
        width: 46px;
        height: 46px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #edf6ff;
        color: var(--teal);
        font-size: 22px;
    }

    .app-quick-actions small {
        color: #24313a;
        font-size: 12px;
        font-weight: 800;
        line-height: 1.1;
        overflow-wrap: anywhere;
        text-align: center;
    }

    .app-promo {
        position: relative;
        height: 168px;
        margin-bottom: 26px;
        overflow: hidden;
        border-radius: 28px;
        box-shadow: 0 18px 34px rgba(3, 64, 111, .15);
    }

    .app-promo__slide {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 22px;
        background-position: center;
        background-size: cover;
        color: var(--white);
        opacity: 0;
        transition: opacity .6s ease;
    }

    .app-promo__slide.is-active {
        opacity: 1;
    }

    .app-promo__slide span {
        color: rgba(255, 255, 255, .82);
    }

    .app-promo__slide h2 {
        max-width: 250px;
        margin: 6px 0;
        font-size: 22px;
        line-height: 1.05;
    }

    .app-promo__slide p {
        max-width: 280px;
        margin: 0;
        color: rgba(255, 255, 255, .82);
        font-size: 13px;
    }

    .app-promo__dots {
        position: absolute;
        right: 18px;
        bottom: 16px;
        z-index: 2;
        display: flex;
        gap: 6px;
    }

    .app-promo__dots button {
        width: 7px;
        height: 7px;
        border: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, .48);
    }

    .app-promo__dots button.is-active {
        width: 18px;
        border-radius: 999px;
        background: var(--white);
    }

    .app-section {
        margin-bottom: 24px;
    }

    .app-calendar {
        margin-bottom: 18px;
        scroll-margin-top: 194px;
    }

    .app-enrollment {
        margin-bottom: 18px;
    }

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

    .app-enrollment__prices span {
        min-height: 42px;
        padding: 8px 9px;
        box-shadow: 0 8px 18px rgba(17, 24, 32, .06);
    }

    .app-section__heading {
        justify-content: space-between;
        margin-bottom: 12px;
    }

    .app-section__heading h2 {
        margin: 0;
        color: #111820;
        font-size: 21px;
    }

    .app-section__heading a {
        color: var(--teal);
        font-size: 13px;
        font-weight: 800;
    }

    .app-section__heading span {
        color: #6a7780;
        font-size: 12px;
        font-weight: 800;
    }

    .app-calendar__message,
    .app-calendar__item {
        border-radius: 22px;
        background: var(--white);
        box-shadow: 0 12px 28px rgba(17, 24, 32, .08);
    }

    .app-calendar__message {
        padding: 14px;
        color: #6a7780;
        font-size: 13px;
        font-weight: 800;
    }

    .app-calendar__list {
        display: grid;
        gap: 10px;
    }

    .app-calendar__item {
        display: flex;
        min-height: 138px;
        flex-direction: column;
        justify-content: space-between;
        gap: 12px;
        padding: 14px;
        border: 1px solid #e4ebf1;
        box-shadow: 0 12px 28px rgba(17, 24, 32, .08);
        transition: transform .16s ease;
    }

    .app-calendar__item span,
    .app-calendar__item strong,
    .app-calendar__item small {
        display: block;
        min-width: 0;
    }

    .app-calendar__date {
        width: fit-content;
        border-radius: 16px;
        padding: 8px 10px;
        background: #edf6ff;
    }

    .app-calendar__item strong {
        overflow: hidden;
        color: #111820;
        font-size: 17px;
        line-height: 1.2;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .app-calendar__date strong {
        color: var(--teal);
        font-size: 13px;
    }

    .app-calendar__item small {
        margin-top: 2px;
        color: #6a7780;
        font-size: 11px;
        line-height: 1.2;
    }

    .app-calendar__footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .app-calendar__footer > small {
        display: inline-flex;
        min-height: 21px;
        align-items: center;
        border-radius: 999px;
        padding: 3px 7px;
        margin-top: 0;
        font-weight: 900;
        white-space: nowrap;
    }

    .app-calendar__footer em {
        color: var(--teal);
        font-size: 11px;
        font-style: normal;
        font-weight: 900;
    }

    .app-calendar__item i {
        display: inline-flex;
        width: 28px;
        height: 28px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #fff3e8;
        color: var(--orange);
        font-size: 14px;
    }

    .app-enrollment__frame {
        height: min(700px, 74vh);
        overflow: hidden;
        border: 1px solid #e4ebf1;
        border-radius: 22px;
        background: var(--white);
        box-shadow: 0 12px 28px rgba(17, 24, 32, .08);
    }

    .app-services-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .app-service-card {
        position: relative;
        min-height: 148px;
        padding: 18px;
        border-radius: 24px;
        background: var(--white);
        box-shadow: 0 12px 28px rgba(17, 24, 32, .08);
        transition: transform .16s ease;
    }

    .app-service-card > i {
        display: inline-flex;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        margin-bottom: 14px;
        border-radius: 16px;
        background: #edf6ff;
        color: var(--teal);
        font-size: 22px;
    }

    .app-service-card strong,
    .app-service-card small {
        display: block;
    }

    .app-service-card strong {
        color: #111820;
        font-size: 15px;
        line-height: 1.15;
    }

    .app-service-card small {
        margin-top: 5px;
        color: #6a7780;
        font-size: 12px;
        line-height: 1.25;
    }

    .app-service-card span {
        position: absolute;
        top: 18px;
        right: 16px;
        color: #a4b1ba;
    }

    .app-event-card,
    .app-contact-card {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 16px;
        padding: 20px;
        border-radius: 26px;
        background: var(--white);
        box-shadow: 0 12px 28px rgba(17, 24, 32, .08);
    }

    .app-event-card {
        justify-content: space-between;
        border: 1px solid #dbeafe;
    }

    .app-event-card h2 {
        margin: 5px 0;
        color: #111820;
        font-size: 20px;
    }

    .app-event-card p {
        margin: 0;
        color: #6a7780;
        font-size: 13px;
    }

    .app-event-card a {
        flex-shrink: 0;
    }

    .app-contact-card i {
        display: inline-flex;
        width: 48px;
        height: 48px;
        align-items: center;
        justify-content: center;
        border-radius: 18px;
        background: var(--teal);
        color: var(--white);
        font-size: 24px;
    }

    .app-contact-card strong,
    .app-contact-card span {
        display: block;
    }

    .app-contact-card strong {
        color: #111820;
        font-size: 15px;
    }

    .app-contact-card span {
        color: #6a7780;
        font-size: 13px;
    }

    .app-bottom-nav {
        position: fixed;
        z-index: 30;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        padding: 9px 8px max(9px, env(safe-area-inset-bottom));
        border-top: 1px solid #e4ebf1;
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 -12px 30px rgba(17, 24, 32, .08);
        backdrop-filter: blur(16px);
    }

    .app-bottom-nav a {
        display: flex;
        min-height: 54px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        border-radius: 18px;
        color: #7a8790;
        font-size: 11px;
        font-weight: 800;
    }

    .app-bottom-nav i {
        font-size: 21px;
    }

    .app-bottom-nav span {
        max-width: 100%;
        line-height: 1.05;
        overflow-wrap: anywhere;
        text-align: center;
    }

    .app-bottom-nav a.is-active {
        background: #edf6ff;
        color: var(--teal);
    }
}

@media (min-width: 768px) {
    .desktop-view {
        display: block;
    }

    .mobile-app-view {
        display: none;
    }
}
