* {
    box-sizing: border-box;
}

:root {
    --page-bg: #EAF2FB;
    --surface: #FFFFFF;
    --surface-soft: #F4F8FF;
    --surface-blue: #EDF5FF;
    --surface-deep: #E1ECF8;
    --blue: #2FA8F7;
    --blue-light: #45C7FF;
    --blue-dark: #137CD8;
    --title: #137CD8;
    --text: #24364F;
    --muted: #5D718A;
    --border: rgba(47,168,247,0.14);
    --footer: #102B46;
    --footer-text: #EAF6FF;
    --shadow: 0 18px 45px rgba(38, 95, 142, 0.12);
    --header-height: 76px;
    --channel-height: 50px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--page-bg);
    color: var(--text);
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

body.drawer-open {
    overflow-y: hidden;
}

a,
button {
    touch-action: manipulation;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

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

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 12000;
    padding: 10px 16px;
    border-radius: 12px;
    background: var(--blue-dark);
    color: #fff;
    transition: top .2s ease;
}

.skip-link:focus {
    top: 12px;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 9000;
    height: var(--header-height);
    background: rgba(255,255,255,.92);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.header-inner {
    width: min(1180px, calc(100% - 40px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand-logo,
.mobile-logo,
.drawer-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand-logo img {
    width: 150px;
    max-height: 48px;
    object-fit: contain;
}

.desktop-nav {
    min-width: 0;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 4px;
    white-space: nowrap;
}

.nav-link {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 17px;
    border-radius: 14px;
    color: var(--muted);
    font-weight: 700;
    transition: background .2s ease, color .2s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 3px;
    width: 0;
    height: 3px;
    border-radius: 99px;
    background: var(--blue);
    transform: translateX(-50%);
    transition: width .2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
    color: var(--blue-dark);
    background: var(--surface-soft);
}

.nav-link.is-active::after {
    width: 28px;
}

.main-btn {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #45C7FF 0%, #2FA8F7 48%, #137CD8 100%);
    color: #FFFFFF;
    box-shadow: 0 12px 26px rgba(19,124,216,0.18);
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.main-btn:hover,
.main-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(19,124,216,0.24);
}

.header-register {
    z-index: 9100;
    flex: 0 0 auto;
}

.channel-bar {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    z-index: 8800;
    height: var(--channel-height);
    display: flex;
    align-items: center;
    background: rgba(244,248,255,.94);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.channel-scroll {
    width: min(1280px, calc(100% - 28px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 5px 2px 7px;
    scrollbar-width: thin;
    overscroll-behavior-inline: contain;
}

.channel-link {
    flex: 0 0 auto;
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 5px 13px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 14px;
    white-space: nowrap;
    transition: color .2s ease, background .2s ease;
}

.channel-link:hover,
.channel-link:focus-visible,
.channel-link.is-active {
    background: var(--surface);
    color: var(--blue-dark);
    box-shadow: 0 5px 18px rgba(47,168,247,.11);
}

.mobile-header,
.mobile-drawer,
.drawer-mask,
.mobile-bottom-nav {
    display: none;
}

.site-main {
    min-height: 70vh;
    padding-top: calc(var(--header-height) + var(--channel-height));
}

.page-shell,
.home-section,
.banner-wrap {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.banner-section {
    padding: 28px 0 0;
    background: linear-gradient(180deg, #E5F0FB 0%, var(--page-bg) 100%);
}

.banner-slider {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 12px solid rgba(255,255,255,.88);
    border-radius: 34px;
    background: #fff;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 6.1;
}

.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s ease, visibility .45s ease;
}

.banner-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 50%;
    background: rgba(16,43,70,.48);
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 18px;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
}

.slider-dot {
    width: 12px;
    height: 12px;
    min-width: 12px;
    min-height: 12px;
    padding: 0;
    border: 2px solid rgba(255,255,255,.95);
    border-radius: 50%;
    background: rgba(16,43,70,.34);
    cursor: pointer;
}

.slider-dot.is-active {
    width: 30px;
    border-radius: 99px;
    background: var(--blue-light);
}

.home-section,
.page-shell {
    padding-block: 68px;
}

.home-section + .home-section,
.page-section + .page-section {
    padding-top: 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .08em;
}

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

h1,
h2,
h3 {
    color: var(--title);
    line-height: 1.35;
}

h1 {
    margin-bottom: 18px;
    font-size: clamp(34px, 4.8vw, 62px);
    letter-spacing: -.035em;
}

h2 {
    margin-bottom: 13px;
    font-size: clamp(26px, 3vw, 40px);
}

h3 {
    margin-bottom: 9px;
    font-size: 21px;
}

.lead,
.section-heading p,
.page-hero p {
    color: var(--muted);
    font-size: 17px;
}

.brand-intro,
.split-card,
.content-card,
.info-card,
.faq-card,
.review-card,
.notice-strip,
.page-hero,
.page-panel,
.contact-panel {
    border: 1px solid var(--border);
    background: rgba(255,255,255,.93);
    box-shadow: 0 14px 40px rgba(44, 91, 128, .08);
}

.brand-intro,
.split-card,
.page-hero,
.page-panel,
.contact-panel {
    border-radius: 28px;
}

.brand-intro {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 44px;
    padding: 32px;
}

.media-frame {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--surface-soft), var(--surface-blue));
}

.media-frame img {
    width: 100%;
    max-height: 440px;
    object-fit: contain;
}

.text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--blue-dark);
    font-weight: 800;
}

.text-link::after {
    content: "→";
    margin-left: 7px;
    transition: transform .2s ease;
}

.text-link:hover::after {
    transform: translateX(4px);
}

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

.quick-card,
.content-card,
.info-card,
.faq-card,
.review-card {
    border-radius: 22px;
}

.quick-card {
    min-height: 195px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid var(--border);
    background: linear-gradient(145deg, #fff 0%, #f7fbff 100%);
    transition: transform .2s ease, box-shadow .2s ease;
}

.quick-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.quick-card p,
.content-card p,
.info-card p,
.review-card p,
.faq-card p,
.page-panel p,
.contact-panel p {
    color: var(--muted);
}

.quick-card .text-link {
    margin-top: auto;
}

.notice-strip {
    padding: 24px 28px;
    border-radius: 20px;
    background: linear-gradient(90deg, #fff, var(--surface-blue));
    color: var(--muted);
}

.info-grid,
.content-grid,
.review-grid,
.faq-grid,
.link-grid,
.guide-grid {
    display: grid;
    gap: 18px;
}

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

.info-card,
.content-card,
.review-card,
.faq-card {
    padding: 24px;
}

.info-card .number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--surface-blue);
    color: var(--blue-dark);
    font-weight: 900;
}

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

.split-card {
    overflow: hidden;
}

.split-card .media-frame {
    min-height: 240px;
    border-radius: 0;
}

.split-card-body {
    padding: 28px;
}

.point-list {
    margin: 16px 0 12px;
    padding-left: 20px;
    color: var(--muted);
}

.point-list li + li {
    margin-top: 6px;
}

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

.content-card .media-frame {
    min-height: 210px;
    margin: -8px -8px 22px;
}

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

.review-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--blue-dark);
}

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

.faq-card h3 {
    font-size: 18px;
}

.responsible-box {
    padding: 30px;
    border-radius: 26px;
    background: linear-gradient(135deg, #102B46, #174d79);
    color: #EAF6FF;
    box-shadow: var(--shadow);
}

.responsible-box h2,
.responsible-box h3 {
    color: #fff;
}

.responsible-box p {
    color: rgba(234,246,255,.85);
}

.page-hero {
    margin-top: 32px;
    padding: 42px;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 42px;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(237,245,255,.95));
}

.page-hero.no-media {
    grid-template-columns: 1fr;
}

.page-hero .media-frame {
    min-height: 300px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.secondary-btn {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    border: 1px solid rgba(47,168,247,.28);
    border-radius: 999px;
    background: #fff;
    color: var(--blue-dark);
    font-weight: 800;
}

.page-section {
    padding-bottom: 56px;
}

.page-panel {
    padding: 32px;
}

.page-panel + .page-panel {
    margin-top: 20px;
}

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

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

.mini-panel {
    padding: 24px;
    border-radius: 20px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
}

.mini-panel p:last-child {
    margin-bottom: 0;
}

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

.link-tile {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: #fff;
}

.link-tile span {
    color: var(--muted);
    font-size: 14px;
}

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

.guide-step {
    position: relative;
    padding: 28px 24px 24px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--border);
}

.guide-step::before {
    counter-increment: guide;
    content: counter(guide, decimal-leading-zero);
    display: block;
    margin-bottom: 12px;
    color: var(--blue-light);
    font-size: 31px;
    font-weight: 900;
}

.contact-panel {
    padding: 32px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.contact-method {
    padding: 24px;
    border-radius: 20px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
}

.site-footer {
    margin-top: 32px;
    background: var(--footer);
    color: var(--footer-text);
}

.footer-grid {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.45fr .7fr .7fr 1.15fr;
    gap: 40px;
    padding: 58px 0 42px;
}

.footer-brand img {
    width: 150px;
    max-height: 48px;
    object-fit: contain;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-note p {
    margin-bottom: 0;
    color: rgba(234,246,255,.72);
}

.site-footer h2 {
    color: #fff;
    font-size: 18px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links a,
.footer-bottom a {
    color: rgba(234,246,255,.78);
}

.footer-links a:hover,
.footer-bottom a:hover {
    color: #fff;
}

.footer-bottom {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding: 19px 0 25px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(234,246,255,.62);
    font-size: 14px;
}

.footer-bottom span {
    margin-right: auto;
}

.floating-service {
    position: fixed;
    z-index: 8000;
    right: 18px;
    top: 50%;
    width: 118px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow);
    transform: translateY(-50%);
    backdrop-filter: blur(12px);
}

.floating-service .main-btn {
    min-height: 42px;
    padding: 8px 14px;
    margin-bottom: 4px;
}

.floating-service > a:not(.main-btn),
.back-to-top {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 8px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--blue-dark);
    font-size: 14px;
    cursor: pointer;
}

.floating-service > a:not(.main-btn):hover,
.back-to-top:hover {
    background: var(--surface-soft);
}

@media (max-width: 1280px) {
    .floating-service {
        right: 8px;
        width: 104px;
    }
}

@media (max-width: 1020px) {
    :root {
        --header-height: 70px;
        --channel-height: 46px;
    }

    .header-inner {
        width: min(960px, calc(100% - 28px));
        gap: 16px;
    }

    .brand-logo img {
        width: 130px;
    }

    .nav-link {
        padding-inline: 11px;
        font-size: 14px;
    }

    .header-register {
        padding-inline: 20px;
    }

    .floating-service {
        display: none;
    }

    .quick-grid,
    .content-grid.three,
    .review-grid,
    .info-grid,
    .panel-grid.three,
    .guide-grid,
    .contact-methods {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1.2fr .8fr .8fr;
    }

    .footer-note {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    :root {
        --mobile-header-height: 64px;
    }

    .site-header,
    .channel-bar,
    .floating-service {
        display: none;
    }

    .mobile-header {
        position: fixed;
        z-index: 9000;
        inset: 0 0 auto 0;
        height: var(--mobile-header-height);
        display: grid;
        grid-template-columns: 54px minmax(0, 1fr) auto;
        align-items: center;
        gap: 8px;
        padding: 7px 12px;
        border-bottom: 1px solid var(--border);
        background: rgba(255,255,255,.95);
        backdrop-filter: blur(15px);
    }

    .mobile-menu-button,
    .drawer-close {
        min-width: 44px;
        min-height: 44px;
        border: 0;
        border-radius: 14px;
        background: var(--surface-soft);
        color: var(--blue-dark);
        cursor: pointer;
    }

    .mobile-menu-button {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .mobile-menu-button span {
        width: 21px;
        height: 2px;
        border-radius: 99px;
        background: var(--blue-dark);
    }

    .mobile-logo {
        justify-content: center;
        min-width: 0;
    }

    .mobile-logo img {
        width: 130px;
        max-height: 44px;
        object-fit: contain;
    }

    .mobile-register {
        position: relative;
        z-index: 9100;
        min-height: 44px;
        padding: 8px 18px;
    }

    .drawer-mask {
        position: fixed;
        z-index: 9990;
        inset: 0;
        display: block;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        background: rgba(7,28,48,.48);
        transition: opacity .25s ease, visibility .25s ease;
    }

    .drawer-mask.is-visible {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .drawer-mask[hidden] {
        display: none !important;
    }

    .mobile-drawer {
        position: fixed;
        z-index: 10000;
        inset: 0 auto 0 0;
        width: min(86vw, 350px);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        background: #fff;
        box-shadow: 20px 0 60px rgba(0,0,0,.18);
        transform: translateX(-105%);
        transition: transform .26s ease;
    }

    .mobile-drawer.is-open {
        transform: translateX(0);
    }

    .drawer-head {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        min-height: 68px;
        padding: 10px 14px;
        border-bottom: 1px solid var(--border);
    }

    .drawer-logo img {
        width: 135px;
        max-height: 45px;
        object-fit: contain;
    }

    .drawer-close {
        font-size: 30px;
        line-height: 1;
    }

    .drawer-nav {
        min-height: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        overflow-y: auto;
        padding: 14px 14px 28px;
        overscroll-behavior: contain;
    }

    .drawer-link {
        min-height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 10px;
        border-radius: 13px;
        background: var(--surface-soft);
        color: var(--muted);
        font-size: 14px;
        font-weight: 700;
    }

    .drawer-link.is-active {
        background: var(--surface-blue);
        color: var(--blue-dark);
    }

    .site-main {
        padding-top: var(--mobile-header-height);
        padding-bottom: 82px;
    }

    .page-shell,
    .home-section,
    .banner-wrap {
        width: min(100% - 24px, 680px);
    }

    .banner-section {
        padding-top: 14px;
    }

    .banner-slider {
        border-width: 7px;
        border-radius: 22px;
        aspect-ratio: 16 / 8.2;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
        font-size: 25px;
    }

    .slider-prev { left: 9px; }
    .slider-next { right: 9px; }
    .slider-dots { bottom: 10px; gap: 6px; }
    .slider-dot { width: 10px; height: 10px; min-width: 10px; min-height: 10px; }
    .slider-dot.is-active { width: 24px; }

    .home-section,
    .page-shell {
        padding-block: 45px;
    }

    .brand-intro,
    .page-hero {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 22px;
        border-radius: 22px;
    }

    .page-hero {
        margin-top: 14px;
    }

    .media-frame,
    .page-hero .media-frame {
        min-height: 210px;
    }

    .quick-grid,
    .info-grid,
    .dual-grid,
    .content-grid.three,
    .review-grid,
    .faq-grid,
    .panel-grid,
    .panel-grid.three,
    .link-grid,
    .guide-grid,
    .contact-methods {
        grid-template-columns: 1fr;
    }

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

    .notice-strip,
    .page-panel,
    .contact-panel,
    .responsible-box {
        padding: 22px;
    }

    .footer-grid {
        width: min(100% - 28px, 680px);
        grid-template-columns: 1fr 1fr;
        gap: 28px 18px;
        padding-top: 42px;
    }

    .footer-brand,
    .footer-note {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        width: min(100% - 28px, 680px);
        padding-bottom: 98px;
    }

    .footer-bottom span {
        width: 100%;
        margin-right: 0;
    }

    .mobile-bottom-nav {
        position: fixed;
        z-index: 8500;
        inset: auto 0 0 0;
        min-height: 66px;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        padding: 5px max(8px, env(safe-area-inset-right)) max(5px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
        border-top: 1px solid var(--border);
        background: rgba(255,255,255,.97);
        box-shadow: 0 -10px 30px rgba(33,75,108,.10);
        backdrop-filter: blur(15px);
    }

    .mobile-bottom-nav a {
        min-width: 44px;
        min-height: 54px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1px;
        border-radius: 13px;
        color: var(--muted);
        font-size: 12px;
        font-weight: 700;
    }

    .mobile-bottom-nav a span {
        color: var(--blue);
        font-size: 21px;
        line-height: 1;
    }

    .mobile-bottom-nav a.is-active {
        color: var(--blue-dark);
        background: var(--surface-soft);
    }
}

@media (max-width: 410px) {
    .mobile-logo img {
        width: 108px;
    }

    .mobile-register {
        padding-inline: 14px;
    }

    h1 {
        font-size: 33px;
    }

    .drawer-nav {
        gap: 6px;
        padding-inline: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
