* {
    box-sizing: border-box;
}

:root {
    --page: #E6EBF2;
    --surface: #FFFFFF;
    --surface-soft: #F5F7FB;
    --surface-alt: #EEF2F7;
    --surface-deep: #DDE4EE;
    --primary: #289CFF;
    --primary-dark: #1E90F0;
    --nav: #4E5F7A;
    --text: #243447;
    --muted: #66788A;
    --quiet: #8A9AAF;
    --line: rgba(40, 156, 255, 0.16);
    --shadow: 0 14px 36px rgba(56, 92, 138, 0.12);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

html {
    scroll-behavior: smooth;
    background: var(--page);
}

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

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
}

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

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

button {
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 20000;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--text);
    color: #fff;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(245, 247, 251, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(56, 92, 138, 0.10);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 72px;
}

.logo,
.header-action {
    flex: 0 0 auto;
}

.logo img,
.drawer-logo img,
.footer-logo img {
    display: block;
    width: auto;
    object-fit: contain;
}

.logo img {
    max-height: 50px;
    max-width: 150px;
}

.mobile-logo,
.mobile-menu-button {
    display: none;
}

.nav-wrap {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: center;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    white-space: nowrap;
    flex-wrap: nowrap;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 72px;
    padding: 0 2px;
    border: 0;
    background: transparent;
    color: var(--nav);
    font-size: 15px;
    font-weight: 650;
    cursor: pointer;
    transition: color .2s ease;
}

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

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
    width: 100%;
}

.chevron {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .2s ease;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 8px);
    left: 50%;
    z-index: 10000;
    min-width: 190px;
    padding: 8px;
    border: 1px solid rgba(40, 156, 255, 0.12);
    border-radius: 14px;
    background: #FFFFFF;
    box-shadow: 0 18px 38px rgba(56, 92, 138, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.more-menu {
    left: auto;
    right: 0;
    transform: translate(0, 10px);
}

.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu,
.dropdown.is-open > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.more-dropdown:hover > .more-menu,
.more-dropdown:focus-within > .more-menu,
.more-dropdown.is-open > .more-menu {
    transform: translate(0, 0);
}

.dropdown:hover .chevron,
.dropdown.is-open .chevron {
    transform: rotate(225deg) translate(-1px, -1px);
}

.dropdown-menu a {
    display: block;
    padding: 10px 13px;
    border-radius: 10px;
    color: var(--nav);
    font-size: 14px;
    white-space: nowrap;
    transition: color .18s ease, background .18s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
    color: var(--primary);
    background: rgba(40, 156, 255, 0.08);
}

.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 25px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #32D1F6 0%, #27B9F4 35%, #249BFF 100%);
    box-shadow: 0 10px 24px rgba(36, 155, 255, 0.25);
    color: #FFFFFF;
    font-weight: 750;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.main-btn:hover,
.main-btn:focus-visible {
    background: linear-gradient(180deg, #48D9F7 0%, #1E90F0 100%);
    box-shadow: 0 12px 28px rgba(30, 144, 240, 0.32);
    transform: translateY(-1px);
}

.header-register {
    min-width: 88px;
}

.drawer-overlay,
.mobile-drawer {
    display: none;
}

main {
    min-height: 60vh;
}

.banner-slider {
    position: relative;
    width: min(1200px, calc(100% - 40px));
    height: clamp(240px, 39vw, 520px);
    margin: 28px auto 42px;
    overflow: hidden;
    border: 1px solid rgba(40, 156, 255, 0.10);
    border-radius: 22px;
    background: #FFFFFF;
    box-shadow: 0 18px 40px rgba(56, 92, 138, 0.12);
}

.banner-track,
.banner-slide {
    position: absolute;
    inset: 0;
}

.banner-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity .55s ease, visibility .55s ease;
}

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

.banner-slider img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #FFFFFF;
}

.banner-caption,
.banner-text,
.slide-title,
.slide-desc,
.slide-content,
.slide-card,
.banner-card {
    display: none !important;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 50%;
    background: rgba(36, 52, 71, .42);
    box-shadow: 0 8px 20px rgba(36, 52, 71, .18);
    transform: translateY(-50%);
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
    background: rgba(40, 156, 255, .86);
    transform: translateY(-50%) scale(1.04);
}

.slider-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-top: 3px solid #FFFFFF;
    border-left: 3px solid #FFFFFF;
}

.slider-arrow.prev {
    left: 18px;
}

.slider-arrow.prev::before {
    transform: translate(-36%, -50%) rotate(-45deg);
}

.slider-arrow.next {
    right: 18px;
}

.slider-arrow.next::before {
    transform: translate(-64%, -50%) rotate(135deg);
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 17px;
    z-index: 5;
    display: flex;
    gap: 9px;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(36, 52, 71, .28);
    transform: translateX(-50%);
}

.slider-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .66);
    cursor: pointer;
    transition: width .2s ease, border-radius .2s ease, background .2s ease;
}

.slider-dot.is-active {
    width: 25px;
    border-radius: 999px;
    background: #FFFFFF;
}

.section {
    padding: 72px 0;
}

.section.compact {
    padding: 52px 0;
}

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

.section.alt {
    background: var(--surface-alt);
}

.section-head {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
}

.eyebrow::before,
.eyebrow::after {
    content: "";
    width: 24px;
    height: 1px;
    background: rgba(40, 156, 255, .45);
}

h1,
h2,
h3,
.section-title {
    margin-top: 0;
    color: var(--primary);
    line-height: 1.28;
}

h1 {
    margin-bottom: 18px;
    font-size: clamp(32px, 5vw, 54px);
    letter-spacing: -.03em;
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(25px, 3.5vw, 36px);
}

h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

p {
    margin: 0 0 16px;
    color: var(--muted);
}

.lead {
    color: var(--text);
    font-size: 18px;
    line-height: 1.9;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-weight: 750;
}

.text-link::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .2s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
    transform: translateX(3px) rotate(45deg);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    align-items: center;
    gap: 48px;
}

.split.reverse > :first-child {
    order: 2;
}

.split.reverse > :last-child {
    order: 1;
}

.content-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    border-radius: var(--radius-lg);
    background: #FFFFFF;
    box-shadow: var(--shadow);
}

.hero-inner-img {
    max-height: 460px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-top: 26px;
}

.hero-note {
    color: var(--quiet);
    font-size: 14px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

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

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

.card,
.zone-card,
.info-card,
.review-card,
.notice-card,
.faq-item,
.stat-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 36px rgba(56, 92, 138, 0.10);
}

.card,
.info-card,
.review-card,
.notice-card,
.stat-card {
    padding: 25px;
}

.card {
    position: relative;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 4px;
    border-radius: 0 0 999px 0;
    background: var(--primary);
}

.card:hover {
    box-shadow: 0 18px 42px rgba(56, 92, 138, 0.14);
    transform: translateY(-3px);
}

.card-number {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin-bottom: 16px;
    border-radius: 11px;
    background: rgba(40, 156, 255, .10);
    color: var(--primary);
    font-size: 14px;
    font-weight: 850;
}

.zone-card {
    overflow: hidden;
}

.zone-card img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: contain;
    background: #FFFFFF;
}

.zone-card-body {
    padding: 23px;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.pill-list li {
    padding: 8px 13px;
    border: 1px solid rgba(40, 156, 255, .14);
    border-radius: 999px;
    background: rgba(40, 156, 255, .07);
    color: var(--nav);
    font-size: 14px;
}

.feature-list {
    display: grid;
    gap: 14px;
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    color: var(--muted);
}

.feature-list li::before {
    content: "";
    position: absolute;
    top: .55em;
    left: 2px;
    width: 13px;
    height: 7px;
    border-left: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
    transform: rotate(-45deg);
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    counter-reset: step;
}

.step-card {
    position: relative;
    padding: 28px 23px 24px;
    border-top: 3px solid var(--primary);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 12px 28px rgba(56, 92, 138, .08);
    counter-increment: step;
}

.step-card::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    margin-bottom: 13px;
    color: var(--primary);
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
}

.review-card {
    position: relative;
    padding-top: 42px;
}

.review-card::before {
    content: "“";
    position: absolute;
    top: 8px;
    left: 21px;
    color: rgba(40, 156, 255, .26);
    font-family: Georgia, serif;
    font-size: 56px;
    line-height: 1;
}

.review-card p {
    color: var(--text);
}

.review-card span {
    display: block;
    margin-top: 18px;
    color: var(--quiet);
    font-size: 14px;
}

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

.notice-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 18px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 21px 24px;
    border: 0;
    background: transparent;
    color: var(--text);
    font-weight: 760;
    text-align: left;
    cursor: pointer;
}

.faq-question::after {
    content: "+";
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(40, 156, 255, .10);
    color: var(--primary);
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
}

.faq-item.is-open .faq-question::after {
    content: "−";
}

.faq-answer {
    display: none;
    padding: 0 24px 22px;
}

.faq-item.is-open .faq-answer {
    display: block;
}

.compliance-box {
    padding: 28px;
    border: 1px solid rgba(40, 156, 255, .18);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(238,242,247,.95));
    box-shadow: var(--shadow);
}

.compliance-box h2 {
    font-size: 24px;
}

.page-hero {
    padding: 66px 0 58px;
}

.page-hero .split {
    min-height: 430px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 16px;
    color: var(--quiet);
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--primary);
}

.page-intro {
    max-width: 780px;
}

.info-band {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 24px;
    align-items: stretch;
}

.info-band > * {
    min-width: 0;
}

.stat-stack {
    display: grid;
    gap: 16px;
}

.stat-card strong {
    display: block;
    color: var(--primary);
    font-size: 28px;
    line-height: 1.2;
}

.stat-card span {
    color: var(--muted);
}

.mt-20 {
    margin-top: 20px;
}

.center-actions {
    justify-content: center;
}

.notice-stack {
    grid-template-columns: 1fr;
}

.site-footer {
    padding: 58px 0 24px;
    background: #243447;
    color: #EAF3FF;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 38px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-logo img {
    max-height: 48px;
    max-width: 150px;
}

.footer-brand p,
.site-footer a,
.footer-notice p,
.footer-bottom {
    color: rgba(234, 243, 255, .78);
}

.site-footer h2 {
    margin-bottom: 14px;
    color: #FFFFFF;
    font-size: 17px;
}

.site-footer a {
    display: block;
    width: fit-content;
    margin: 8px 0;
    font-size: 14px;
    transition: color .18s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: #FFFFFF;
}

.footer-notice {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(234, 243, 255, .12);
}

.footer-notice p {
    margin: 0;
    font-size: 13px;
    line-height: 1.9;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(234, 243, 255, .08);
    font-size: 13px;
}

@media (max-width: 1179px) {
    .nav {
        gap: 10px;
    }

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

    .header-inner {
        gap: 15px;
    }
}

@media (max-width: 1079px) {
    .header-inner {
        display: grid;
        grid-template-columns: 88px minmax(0, 1fr) 88px;
        gap: 10px;
        min-height: 66px;
    }

    .desktop-logo,
    .nav-wrap {
        display: none;
    }

    .mobile-logo {
        display: flex;
        justify-self: center;
        min-width: 0;
    }

    .mobile-logo img {
        max-height: 44px;
        max-width: 138px;
    }

    .mobile-menu-button {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        justify-self: start;
        width: 42px;
        height: 42px;
        gap: 5px;
        padding: 0;
        border: 1px solid rgba(40, 156, 255, .15);
        border-radius: 12px;
        background: #FFFFFF;
        cursor: pointer;
    }

    .mobile-menu-button span {
        width: 20px;
        height: 2px;
        border-radius: 999px;
        background: var(--nav);
    }

    .header-action {
        justify-self: end;
    }

    .header-register {
        min-width: 78px;
        padding-inline: 18px;
    }

    .drawer-overlay {
        position: fixed;
        inset: 0;
        z-index: 12000;
        display: block;
        background: rgba(36, 52, 71, .46);
        opacity: 0;
        visibility: hidden;
        transition: opacity .24s ease, visibility .24s ease;
    }

    .drawer-overlay.is-open {
        opacity: 1;
        visibility: visible;
    }

    .mobile-drawer {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 12001;
        display: block;
        width: min(84vw, 320px);
        overflow-y: auto;
        background: #FFFFFF;
        box-shadow: 18px 0 42px rgba(36, 52, 71, .18);
        transform: translateX(-104%);
        transition: transform .28s ease;
    }

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

    .drawer-head {
        position: sticky;
        top: 0;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        min-height: 72px;
        padding: 12px 18px;
        border-bottom: 1px solid rgba(40, 156, 255, .12);
        background: rgba(245, 247, 251, .98);
    }

    .drawer-logo img {
        max-height: 44px;
        max-width: 138px;
    }

    .drawer-close {
        position: relative;
        width: 38px;
        height: 38px;
        padding: 0;
        border: 1px solid rgba(40, 156, 255, .14);
        border-radius: 11px;
        background: #FFFFFF;
        cursor: pointer;
    }

    .drawer-close::before,
    .drawer-close::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 19px;
        height: 2px;
        border-radius: 2px;
        background: var(--nav);
    }

    .drawer-close::before {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .drawer-close::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .drawer-nav {
        padding: 12px 14px 30px;
    }

    .drawer-nav a {
        display: block;
        padding: 12px 14px;
        border-bottom: 1px solid rgba(78, 95, 122, .08);
        border-radius: 10px;
        color: var(--nav);
        font-weight: 650;
    }

    .drawer-nav a:hover,
    .drawer-nav a:focus-visible {
        background: rgba(40, 156, 255, .08);
        color: var(--primary);
    }

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

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

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

@media (max-width: 767px) {
    .container,
    .banner-slider {
        width: min(100% - 28px, 1180px);
    }

    .header-inner {
        width: calc(100% - 20px);
        grid-template-columns: 74px minmax(0, 1fr) 74px;
        min-height: 62px;
    }

    .mobile-menu-button {
        width: 40px;
        height: 40px;
    }

    .mobile-logo img {
        max-height: 40px;
        max-width: 118px;
    }

    .header-register {
        min-width: 70px;
        min-height: 40px;
        padding: 8px 14px;
        font-size: 14px;
    }

    .banner-slider {
        height: clamp(190px, 54vw, 360px);
        margin-top: 18px;
        margin-bottom: 28px;
        border-radius: 16px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }

    .slider-dots {
        bottom: 10px;
    }

    .section,
    .page-hero {
        padding: 48px 0;
    }

    .section.compact {
        padding: 40px 0;
    }

    .section-head {
        margin-bottom: 25px;
        text-align: left;
    }

    .section-head .eyebrow {
        justify-content: flex-start;
    }

    .eyebrow::after {
        display: none;
    }

    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 27px;
    }

    .lead {
        font-size: 17px;
    }

    .split,
    .info-band {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .split.reverse > :first-child,
    .split.reverse > :last-child {
        order: initial;
    }

    .page-hero .split {
        min-height: auto;
    }

    .content-img,
    .hero-inner-img {
        max-height: 380px;
    }

    .card-grid,
    .card-grid.three,
    .card-grid.two,
    .notice-strip,
    .step-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .zone-card img {
        height: auto;
        max-height: 300px;
    }

    .card,
    .info-card,
    .review-card,
    .notice-card,
    .stat-card {
        padding: 22px;
    }

    .faq-question {
        padding: 18px 19px;
    }

    .faq-answer {
        padding: 0 19px 19px;
    }

    .footer-grid {
        gap: 26px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}

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