:root {
    --brand: #5BA8D5;
    --brand-hover: #4899C4;
    --brand-dark: #357FA3;
    --brand-light: #8EC5E3;
    --brand-pale: #F4FAFD;
    --accent-line: #5BA8D5;
    --text: #1C2429;
    --text-secondary: #4A555C;
    --text-muted: #8A9499;
    --bg: #FFFFFF;
    --header-bg: #F6F4EF;
    --bg-subtle: #FAFCFD;
    --line: #E8EEF2;
    --line-strong: #D2DEE6;
    --footer-bg: #1A2830;
    --footer-text: rgba(255, 255, 255, 0.7);
    --page-width: 1200px;
    --read-width: 680px;
    --gutter: 40px;
    --header-h: 88px;
    --ease: 0.2s ease;
    --font: "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans SC", sans-serif;
    --font-serif: "Noto Serif SC", "Songti SC", "STSong", "SimSun", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.page-body,
.content-width {
    max-width: var(--read-width);
}

/* 内页正文占满内容区宽度，避免右侧大片留白 */
.page-inner .page-body {
    max-width: none;
    width: 100%;
}

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--header-bg);
}

.logo_nav {
    background: var(--header-bg);
    transition: box-shadow var(--ease);
}

.logo_nav.header-scrolled {
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.logo_nav .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: var(--header-h);
    gap: 48px;
}

.logo {
    flex-shrink: 0;
}

.logo_nav nav {
    flex-shrink: 0;
}

.logo .logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo .logo-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.logo .logo-text {
    display: block;
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.logo .logo-en,
.site-header .logo-tagline {
    display: block;
    font-family: var(--font);
    font-style: normal;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 5px;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0 36px;
    margin: 0;
    padding: 0;
    list-style: none;
}

nav ul li a {
    display: block;
    padding: 8px 0 10px;
    font-size: 15px;
    color: var(--text);
    transition: color var(--ease);
    position: relative;
}

nav ul li a:hover { color: var(--brand-dark); }

nav ul li.active a {
    color: var(--text);
    font-weight: 500;
}

nav ul li.active a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    background: var(--accent-line);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    margin-left: auto;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--text);
    transition: transform var(--ease), opacity var(--ease);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== Banner ===== */
.banner {
    position: relative;
    background: #1a2830;
    margin-top: 0;
}

.banner .bigimg .item { position: relative; }

.banner .bigimg .item img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    opacity: 0.92;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 25, 32, 0.75) 0%, rgba(15, 25, 32, 0.15) 55%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.bigimgText {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding-bottom: 56px;
    color: #fff;
}

.bigimgText h1 {
    margin: 0 0 10px;
    font-size: clamp(1.5rem, 3.2vw, 2rem);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.02em;
}

.bigimgText p {
    margin: 0;
    max-width: 440px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.banner .slick-prev,
.banner .slick-next { display: none !important; }

.banner .slick-dots {
    bottom: 22px;
    z-index: 3;
    left: 0;
    right: 0;
    width: 100%;
    text-align: left;
    padding-left: max(var(--gutter), calc((100% - var(--page-width)) / 2 + var(--gutter)));
}

.banner .slick-dots li button:before {
    font-size: 8px;
    color: #fff;
    opacity: 0.4;
}

.banner .slick-dots li.slick-active button:before {
    opacity: 1;
}

/* ===== 区块背景图（图片层，可后台更换） ===== */
.section-has-bg {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.section-bg-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.section-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.section-has-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* 浅色遮罩：保留背景图可见度，同时保证文字可读 */
.section-has-bg--light::before {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.78) 0%,
        rgba(255, 255, 255, 0.88) 100%
    );
}

/* 深色遮罩：内页标题区 */
.section-has-bg--dark::before {
    background: linear-gradient(
        105deg,
        rgba(18, 30, 38, 0.68) 0%,
        rgba(18, 30, 38, 0.48) 100%
    );
}

.section-has-bg--none::before {
    display: none;
}

.section-has-bg > .container {
    position: relative;
    z-index: 2;
}

.page-head.section-has-bg {
    min-height: 200px;
    padding: 72px 0 56px;
    border-bottom: none;
    display: flex;
    align-items: center;
}

.page-head.section-has-bg .container {
    width: 100%;
}

.page-head.section-has-bg h1 {
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

/* ===== Home ===== */
.home-main {
    padding-bottom: 96px;
}

.home-intro-section {
    padding: 72px 0 64px;
    border-bottom: 1px solid var(--line);
}

.home-intro-text {
    margin: 0;
    max-width: var(--read-width);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 2;
    color: var(--text);
    letter-spacing: 0.01em;
}

.home-sections {
    padding-top: 64px;
}

.home-block {
    padding-bottom: 64px;
    margin-bottom: 64px;
    border-bottom: 1px solid var(--line);
}

.home-block:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.section-title {
    margin: 0 0 36px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-dark);
}

/* 五大理由 */
.info-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0;
}

.info-list li {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px 40px;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.info-list li:last-child {
    border-bottom: 1px solid var(--line);
}

.info-list strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
}

.info-list span { display: block; }

/* 服务流程 */
.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border: 1px solid var(--line);
}

.process-list li {
    counter-increment: step;
    position: relative;
    padding: 28px 20px 24px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    border-right: 1px solid var(--line);
}

.process-list li:last-child { border-right: none; }

.process-list li::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--brand);
}

.process-list li strong {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

.process-list li span { display: block; }

/* FAQ */
.faq-list { margin: 0; }

.faq-item {
    padding: 28px 0;
    border-top: 1px solid var(--line);
}

.faq-item:last-child {
    border-bottom: 1px solid var(--line);
}

.faq-question {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
}

.faq-answer p {
    margin: 0;
    max-width: 720px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.85;
}

/* ===== Inner pages ===== */
.page-head {
    padding: 48px 0 40px;
    border-bottom: 1px solid var(--line);
}

.page-head h1 {
    margin: 0;
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.page-main {
    padding: 56px 0 96px;
}

.page-inner .page-main .prose-block {
    max-width: 820px;
}

.page-inner .info-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 48px;
}

.page-inner .info-list li {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
}

.page-inner .info-list li:nth-child(odd):last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 24px);
}

.page-inner .process-list {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.page-inner .faq-answer p {
    max-width: none;
}

.page-leads { margin-bottom: 16px; }

.page-lead-line {
    margin: 0 0 4px;
    font-size: 14px;
    color: var(--brand-dark);
    line-height: 1.6;
}

.page-subtitle {
    margin: 0 0 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.prose-block p {
    margin: 0 0 16px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.9;
}

.prose-block p:last-child { margin-bottom: 0; }

.page-closing {
    margin: 0;
    padding: 20px 0 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.85;
    font-style: italic;
    border-top: 1px solid var(--line);
}

.page-block {
    margin-bottom: 56px;
}

.page-block:last-child { margin-bottom: 0; }

.page-block + .page-block {
    padding-top: 56px;
    border-top: 1px solid var(--line);
}

#about-content + .page-block {
    padding-top: 56px;
    border-top: 1px solid var(--line);
}

.page-block p {
    margin: 0 0 16px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.9;
}

.page-block p:last-child { margin-bottom: 0; }

.lead {
    font-size: 15px !important;
    color: var(--text) !important;
    line-height: 1.95 !important;
}

.tag-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.tag-list li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 6px 0;
    line-height: 1.5;
}

.tag-list li:not(:last-child)::after {
    content: "·";
    margin-left: 12px;
    color: var(--line-strong);
}

.service-nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-nav-list li {
    border-top: 1px solid var(--line);
}

.service-nav-list li:last-child {
    border-bottom: 1px solid var(--line);
}

.service-nav-list a {
    display: block;
    padding: 20px 0;
    transition: color var(--ease);
}

.service-nav-list a:hover strong {
    color: var(--brand-dark);
}

.service-nav-list strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    transition: color var(--ease);
}

.service-nav-list span {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.meta-list {
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
}

.meta-list li {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.meta-list li span {
    display: inline-block;
    min-width: 4.5em;
    margin-right: 12px;
    color: var(--text);
    font-weight: 500;
}

.page-action { margin: 0 !important; }

.text-link {
    font-size: 14px;
    color: var(--brand-dark);
    border-bottom: 1px solid var(--brand-light);
    transition: color var(--ease), border-color var(--ease);
}

.text-link:hover {
    color: var(--brand-hover);
    border-color: var(--brand);
}

/* ===== Contact ===== */
.about-contact-panel { display: block; }

.about-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-contact-list li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-contact-wechat {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 32px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.about-contact-label {
    color: var(--text);
    margin-right: 8px;
    font-weight: 500;
}

.about-contact-value { color: var(--text-secondary); }

.about-qrcode-img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    pointer-events: none;
}

.about-contact-qrcode-btn {
    display: block;
    padding: 0;
    border: 1px solid var(--line);
    background: var(--bg);
    cursor: zoom-in;
    transition: border-color var(--ease);
}

.about-contact-qrcode-btn:hover { border-color: var(--brand-light); }

.about-contact-qrcode-btn:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

.about-contact-qrcode-placeholder {
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-subtle);
    font-size: 11px;
    color: var(--text-muted);
}

.about-contact-qrcode > p {
    margin: 6px 0 0;
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
}

/* ===== Footer ===== */
footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer_main {
    padding: 56px 0 48px;
}

.footer_inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}

.footer_column h3 {
    margin: 0 0 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.footer_logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #fff;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.footer_logo_text strong {
    font-size: 15px;
    font-weight: 600;
}

.footer_logo_text em {
    display: block;
    margin-top: 2px;
    font-style: normal;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.footer_desc {
    margin: 0;
    max-width: 280px;
    font-size: 13px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.45);
}

.footer_nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer_nav ul li { margin-bottom: 10px; }

.footer_nav ul li a {
    font-size: 13px;
    color: var(--footer-text);
    transition: color var(--ease);
}

.footer_nav ul li a:hover { color: #fff; }

.footer_contact_list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer_contact_list li { margin-bottom: 14px; }

.footer_contact_label {
    display: block;
    margin-bottom: 2px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
}

.footer_contact_value {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.footer_bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer_bottom p {
    margin: 0;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-icp-link { color: rgba(255, 255, 255, 0.3); }
.footer-icp-link:hover { color: rgba(255, 255, 255, 0.55); }

/* ===== Fixed WeChat ===== */
.fixed-contact-bar {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 200;
}

.fixed-contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 48px;
    height: 52px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--bg);
    color: var(--brand-dark);
    cursor: pointer;
    transition: border-color var(--ease), color var(--ease);
}

.fixed-contact-btn:hover,
.fixed-contact-item.is-open .fixed-contact-btn,
.fixed-contact-item:hover .fixed-contact-btn {
    border-color: var(--brand);
    color: var(--brand);
}

.fixed-contact-icon svg { width: 20px; height: 20px; }
.fixed-contact-label { font-size: 9px; letter-spacing: 0.02em; }

.fixed-contact-item {
    position: relative;
}

.fixed-contact-popup {
    position: absolute;
    right: calc(100% + 10px);
    bottom: 0;
    width: 148px;
    padding: 12px;
    background: var(--bg);
    border: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--ease), visibility var(--ease);
    text-align: center;
    z-index: 2;
}

/* 悬停桥接：鼠标从按钮移到二维码时不断开 */
.fixed-contact-popup::before {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    width: 14px;
}

.fixed-contact-qrcode-btn {
    display: block;
    margin: 0 auto;
    padding: 0;
    border: none;
    background: none;
    cursor: zoom-in;
}

.fixed-contact-qrcode-btn img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    pointer-events: none;
}

.fixed-contact-qrcode-btn:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

.fixed-contact-qrcode-placeholder {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-subtle);
    font-size: 11px;
    color: var(--text-muted);
}

.fixed-contact-wechat-id {
    margin: 8px 0 0;
    font-size: 11px;
    color: var(--text-muted);
    word-break: break-all;
}

.fixed-contact-item.is-open .fixed-contact-popup,
.fixed-contact-item:hover .fixed-contact-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ===== QR Lightbox ===== */
body.qrcode-lightbox-open { overflow: hidden; }

.qrcode-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--ease), visibility var(--ease);
}

.qrcode-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.qrcode-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 25, 32, 0.7);
}

.qrcode-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(300px, 100%);
    padding: 32px 28px 24px;
    background: var(--bg);
    text-align: center;
}

.qrcode-lightbox-close {
    position: absolute;
    top: 8px;
    right: 12px;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: none;
    font-size: 22px;
    color: var(--text-muted);
    cursor: pointer;
}

.qrcode-lightbox-close:hover { color: var(--text); }

.qrcode-lightbox-img {
    width: min(240px, 100%);
    aspect-ratio: 1;
    object-fit: cover;
    margin: 0 auto;
}

.qrcode-lightbox-caption {
    margin: 16px 0 0;
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .page-inner .info-list {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .page-inner .info-list li:nth-child(odd):last-child {
        max-width: none;
    }
}

@media (max-width: 960px) {
    .process-list {
        grid-template-columns: 1fr;
        border: none;
    }

    .process-list li {
        padding: 24px 0;
        border-right: none;
        border-top: 1px solid var(--line);
    }

    .process-list li:last-child {
        border-bottom: 1px solid var(--line);
    }

    .footer_inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer_brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    :root {
        --gutter: 20px;
        --header-h: 72px;
    }

    .logo_nav .container {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

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

    .logo .logo-text { font-size: 17px; }

    .nav-toggle { display: flex; }

    .logo_nav nav {
        display: none;
        width: 100%;
        margin-left: 0;
        padding: 12px 0 16px;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    nav.nav-open { display: block; }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
    }

    nav ul li a {
        padding: 10px 0;
        font-size: 15px;
    }

    nav ul li.active a::after { display: none; }

    .banner .bigimg .item img { height: 280px; }

    .bigimgText { padding-bottom: 40px; }

    .home-intro-section {
        padding: 48px 0 40px;
    }

    .home-sections { padding-top: 48px; }

    .home-block {
        padding-bottom: 48px;
        margin-bottom: 48px;
    }

    .page-head.section-has-bg {
        padding: 48px 0 40px;
    }

    .page-head { padding: 36px 0 28px; }

    .info-list li {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 20px 0;
    }

    .page-main { padding: 40px 0 64px; }

    .footer_inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer_desc { max-width: none; }

    .fixed-contact-bar { right: 16px; bottom: 16px; }

    .fixed-contact-popup {
        right: 0;
        bottom: calc(100% + 10px);
    }

    .fixed-contact-popup::before {
        left: 0;
        right: 0;
        top: 100%;
        bottom: auto;
        width: auto;
        height: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; }
}
