/* 全站公共样式：变量、基础排版、按钮、头部、底部、弹框和可复用组件 */
:root {
    --color-charcoal: #181b1f;
    --color-ink: #252a31;
    --color-blue: #4d607a;
    --color-moss: #536b50;
    --color-orange: #f6a300;
    --color-orange-dark: #d88900;
    --color-paper: #f4f6f7;
    --color-soft: #e9eef1;
    --color-white: #ffffff;
    --color-line: #dfe4e8;
    --shadow-soft: 0 18px 45px rgba(24, 27, 31, 0.12);
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    color: var(--color-ink);
    font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
    background: #d9dde2;
    letter-spacing: 0;
}

body.gmLoadingOpen {
    overflow: hidden;
}

[v-cloak] {
    display: none;
}

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

input {
    outline: none;
}

.container {
    max-width: 1180px;
    width: 100%;
}

.sectionEyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--color-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.sectionTitle {
    margin: 0 0 18px;
    color: var(--color-charcoal);
    font-size: 36px;
    font-weight: 900;
    line-height: 1.28;
    text-transform: uppercase;
}

.sectionIntroText,
.sectionSubText {
    display: block;
    color: #5f6871;
    font-size: 14px;
    line-height: 1.8;
}

.centerSectionHead {
    max-width: 620px;
    margin: 0 auto 54px;
    text-align: center;
}

.primaryAction,
.ghostAction,
.whiteAction {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 138px;
    height: 42px;
    padding: 0 22px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.primaryAction {
    color: var(--color-charcoal);
    background: var(--color-orange);
    box-shadow: 0 12px 24px rgba(246, 163, 0, 0.26);
}

.primaryAction:hover,
.primaryAction:focus {
    background: #ef9a00;
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(24, 27, 31, 0.18);
}

.ghostAction {
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.08);
}

.ghostAction:hover,
.ghostAction:focus {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.82);
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(24, 27, 31, 0.18);
}

.whiteAction {
    min-width: 124px;
    color: var(--color-charcoal);
    background: var(--color-white);
}

.whiteAction:hover,
.whiteAction:focus {
    color: var(--color-orange-dark);
    background: #fffaf4;
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(24, 27, 31, 0.18);
}

.smallAction {
    min-width: 118px;
    height: 38px;
    padding: 0 18px;
    font-size: 12px;
}

.roundAction {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--color-white);
    background: var(--color-charcoal);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.roundAction:hover,
.roundAction:focus {
    background: var(--color-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(216, 137, 0, 0.28);
}

.gmToastStack {
    position: fixed;
    top: 98px;
    right: 28px;
    z-index: 90;
    display: grid;
    gap: 12px;
    width: min(360px, calc(100vw - 32px));
    pointer-events: none;
}

.gmToast {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) 28px;
    gap: 12px;
    align-items: start;
    padding: 14px 16px;
    color: var(--color-charcoal);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #e3e9ed;
    border-radius: 12px;
    box-shadow: 0 16px 34px rgba(24, 27, 31, 0.14);
    opacity: 0;
    pointer-events: auto;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.gmToast.open {
    opacity: 1;
    transform: translateY(0);
}

.gmToast-success {
    border-color: #d7ead7;
}

.gmToast-error {
    border-color: #f0d7d7;
}

.gmToast-warning {
    border-color: #f2e2c0;
}

.gmToastIcon {
    margin-top: 2px;
    font-size: 18px;
    line-height: 1;
}

.gmToast-success .gmToastIcon {
    color: #3d8b5e;
}

.gmToast-error .gmToastIcon {
    color: #c25a54;
}

.gmToast-warning .gmToastIcon {
    color: #d38a14;
}

.gmToast-info .gmToastIcon {
    color: #5d738d;
}

.gmToastBody {
    display: grid;
    gap: 4px;
}

.gmToastTitle,
.gmToastMessage {
    display: block;
}

.gmToastTitle {
    color: var(--color-charcoal);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
}

.gmToastMessage {
    color: #5d6670;
    font-size: 13px;
    line-height: 1.7;
}

.gmToastClose {
    width: 28px;
    height: 28px;
    padding: 0;
    color: #7f8a94;
    background: transparent;
    border: 0;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.gmLoadingOverlay {
    position: fixed;
    inset: 0;
    z-index: 95;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(24, 27, 31, 0.36);
    backdrop-filter: blur(3px);
}

.gmLoadingOverlay.open {
    display: flex;
}

.gmLoadingPanel {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 62px;
    padding: 0 20px;
    color: var(--color-charcoal);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #e5eaed;
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(24, 27, 31, 0.18);
}

.gmLoadingSpinner {
    width: 18px;
    height: 18px;
    border: 2px solid #d7dee3;
    border-top-color: var(--color-orange);
    border-radius: 50%;
    animation: gmSpin 0.7s linear infinite;
}

.gmLoadingText {
    color: var(--color-charcoal);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.gmStateSection {
    padding: 146px 0 82px;
    background: linear-gradient(180deg, #f7f8f9 0%, #f4f6f8 100%);
}

.gmStatePanel {
    max-width: 760px;
    margin: 0 auto;
    padding: 42px 36px;
    text-align: center;
    background: var(--color-white);
    border: 1px solid #e3e8eb;
    border-radius: 16px;
    box-shadow: 0 18px 38px rgba(24, 27, 31, 0.06);
}

.gmStateCode {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    height: 38px;
    margin-bottom: 20px;
    color: #6b7782;
    background: #f8fafb;
    border: 1px solid #e5eaed;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1px;
}

.gmStateEyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--color-blue);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gmStateTitle {
    margin: 0 0 14px;
    color: var(--color-charcoal);
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
}

.gmStateText {
    max-width: 620px;
    margin: 0 auto;
    color: #5e6770;
    font-size: 15px;
    line-height: 1.9;
}

.gmStateActions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.gmStateLinkGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
    text-align: left;
}

.gmStateLinkCard {
    padding: 18px;
    text-decoration: none;
    background: #f8fafb;
    border: 1px solid #e6ecef;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gmStateLinkCard:hover,
.gmStateLinkCard:focus {
    transform: translateY(-2px);
    border-color: #efd4b5;
    box-shadow: 0 14px 28px rgba(24, 27, 31, 0.08);
    text-decoration: none;
}

.gmStateLinkTitle,
.gmStateLinkText {
    display: block;
}

.gmStateLinkTitle {
    margin-bottom: 8px;
    color: var(--color-charcoal);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
}

.gmStateLinkText {
    color: #62707d;
    font-size: 13px;
    line-height: 1.7;
}

@keyframes gmSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.backToTopButton {
    position: fixed;
    right: 28px;
    bottom: 66px;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--color-white);
    background: rgba(24, 27, 31, 0.92);
    border-radius: 50%;
    box-shadow: 0 14px 28px rgba(24, 27, 31, 0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.22s ease, transform 0.22s ease, background 0.22s ease, visibility 0.22s ease;
}

.backToTopButton .glyphicon {
    font-size: 16px;
    line-height: 1;
}

.backToTopButton:hover,
.backToTopButton:focus {
    background: var(--color-orange);
}

.backToTopButton.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.siteHeader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    width: 100%;
    color: var(--color-white);
}

.siteHeader.scrolled {
    background: rgba(24, 27, 31, 0.88);
    backdrop-filter: blur(12px);
}

.lightHeaderPage .siteHeader {
    color: var(--color-charcoal);
    background: rgba(247, 248, 249, 0.96);
    border-bottom: 1px solid rgba(223, 228, 232, 0.88);
    backdrop-filter: blur(12px);
}

.lightHeaderPage .siteHeader.scrolled {
    background: rgba(247, 248, 249, 0.98);
}

.headerInner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
}

.brandBlock {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.brandCn {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
}

.brandEn {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.navMenu {
    display: flex;
    gap: 34px;
    align-items: center;
}

.navItem {
    position: relative;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.lightHeaderPage .navItem,
.lightHeaderPage .brandCn,
.lightHeaderPage .brandEn {
    color: var(--color-charcoal);
}

.navItem.active::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    background: var(--color-orange);
    content: "";
}

.headerTools {
    display: flex;
    align-items: center;
    gap: 12px;
}

.langBox {
    position: relative;
}

.langToggle,
.inquiryMini,
.mobileMenuIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 44px;
    padding: 0 16px;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(35, 46, 61, 0.94);
    box-shadow: 0 14px 28px rgba(16, 20, 24, 0.16);
    cursor: pointer;
}

.lightHeaderPage .langToggle,
.lightHeaderPage .inquiryMini,
.lightHeaderPage .mobileMenuIcon {
    color: var(--color-charcoal);
    border-color: rgba(216, 223, 228, 0.96);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 24px rgba(24, 27, 31, 0.08);
}

.lightHeaderPage .langToggle:hover,
.lightHeaderPage .langToggle:focus,
.lightHeaderPage .inquiryMini:hover,
.lightHeaderPage .inquiryMini:focus,
.lightHeaderPage .mobileMenuIcon:hover,
.lightHeaderPage .mobileMenuIcon:focus {
    border-color: #d8a558;
    box-shadow: 0 14px 26px rgba(24, 27, 31, 0.12);
}

.langToggle {
    gap: 10px;
    min-width: 184px;
    padding-right: 12px;
    justify-content: flex-start;
}

.inquiryMini {
    gap: 12px;
    min-width: 174px;
    padding-right: 14px;
}

.headerToolIcon {
    font-size: 20px;
    line-height: 1;
}

.langToggleText,
.inquiryMiniText {
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.langToggleText {
    flex: 1;
    white-space: nowrap;
}

.headerCaret {
    font-size: 12px;
    line-height: 1;
}

.inquiryCount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    color: var(--color-charcoal);
    background: var(--color-orange);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
}

.inquiryMiniPulse {
    animation: inquiryMiniPulse 0.6s ease;
}

.inquiryMiniPulse .inquiryCount {
    animation: inquiryCountPulse 0.6s ease;
}

.inquiryFlyer {
    position: fixed;
    z-index: 1200;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 16px 32px rgba(24, 27, 31, 0.18);
    pointer-events: none;
    opacity: 0.96;
    transform: scale(1);
    transform-origin: center center;
    transition:
        left 0.7s cubic-bezier(0.22, 0.8, 0.24, 1),
        top 0.7s cubic-bezier(0.22, 0.8, 0.24, 1),
        width 0.7s cubic-bezier(0.22, 0.8, 0.24, 1),
        height 0.7s cubic-bezier(0.22, 0.8, 0.24, 1),
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.22, 0.8, 0.24, 1),
        border-radius 0.7s ease;
}

.inquiryFlyer.active {
    border-radius: 999px;
}

.inquiryFlyer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inquiryFlyer.iconFlyer {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background: rgba(35, 46, 61, 0.96);
}

.inquiryFlyer.iconFlyer .glyphicon {
    font-size: 20px;
}

@keyframes inquiryMiniPulse {
    0% {
        transform: scale(1);
    }
    45% {
        transform: scale(1.06);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes inquiryCountPulse {
    0% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.25);
    }
    100% {
        transform: scale(1);
    }
}

.mobileMenuIcon {
    display: none;
    font-size: 20px;
    font-weight: 900;
}

.langPanel,
.mobileNavPanel {
    position: absolute;
    top: 78px;
    display: none;
    min-width: 208px;
    padding: 12px 0;
    color: var(--color-charcoal);
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 20px 36px rgba(24, 27, 31, 0.18);
    overflow: hidden;
}

.langPanel {
    top: calc(100% + 10px);
    left: 0;
    right: auto;
}

.mobileNavPanel {
    right: 15px;
}

.langPanel.open,
.mobileNavPanel.open {
    display: block;
}

.langOption,
.mobileNavPanel .navItem {
    display: block;
    color: var(--color-charcoal);
    cursor: pointer;
}

.langOption {
    padding: 12px 20px;
    font-size: 12px;
    line-height: 1.6;
}

.mobileNavPanel .navItem {
    padding: 14px 32px;
    font-size: 16px;
    line-height: 1.55;
}

.langOption:hover,
.langOption:focus {
    background: #f4f7fa;
}

.brandStrip {
    background: var(--color-charcoal);
}

.brandStripInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 124px;
    color: var(--color-white);
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
}

.siteFooter {
    background: var(--color-white);
}

.footerInner {
    padding: 68px 15px 0;
}

.footerNewsletter {
    display: grid;
    grid-template-columns: 1.2fr 1.4fr 1fr;
    gap: 34px;
    align-items: center;
    margin-bottom: 0;
    padding-bottom: 54px;
}

.footerTitle {
    color: var(--color-charcoal);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.28;
    text-transform: uppercase;
}

.footerText {
    color: #4f5962;
    font-size: 14px;
    line-height: 1.85;
}

.newsletterForm {
    display: flex;
    height: 46px;
    background: var(--color-paper);
    border-radius: 4px;
    overflow: hidden;
}

.newsletterInput {
    flex: 1;
    min-width: 0;
    padding: 0 16px;
    border: 0;
    background: transparent;
}

.newsletterSubmit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    color: var(--color-charcoal);
    background: var(--color-orange);
    cursor: pointer;
}

.footerMainDark {
    background: #273240;
}

.footerMainInner {
    padding: 56px 15px 50px;
}

.footerColumns {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr 0.9fr 1.15fr;
    gap: 44px;
    align-items: start;
}

.footerSummary,
.footerLinkColumn {
    display: flex;
    flex-direction: column;
}

.footerColumnTitle {
    color: var(--color-white);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.28;
}

.footerColumnLine {
    width: 28px;
    height: 3px;
    margin: 12px 0 18px;
    background: var(--color-orange);
}

.footerSummaryDesc,
.footerColumnLink,
.footerContactText {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.9;
}

.footerSummaryDesc {
    max-width: 300px;
}

.footerColumnLink {
    margin-bottom: 6px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footerColumnLink:hover,
.footerColumnLink:focus {
    color: var(--color-white);
}

.footerContactIcons {
    display: flex;
    gap: 14px;
    margin-top: 22px;
}

.contactChannel {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.contactChannelIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.contactChannelIcon img {
    width: 22px;
    height: 22px;
}

.contactQrPanel {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 14px);
    z-index: 6;
    display: none;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    width: 168px;
    padding: 14px;
    background: var(--color-white);
    border-radius: 14px;
    box-shadow: 0 18px 34px rgba(24, 27, 31, 0.16);
    transform: translateX(-50%);
}

.contactQrPanel::after {
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 16px;
    height: 16px;
    background: var(--color-white);
    transform: translateX(-50%) rotate(45deg);
    content: "";
}

.contactChannel:hover .contactQrPanel,
.contactChannel:focus .contactQrPanel,
.contactChannel:focus-within .contactQrPanel,
.contactChannel.open .contactQrPanel {
    display: flex;
}

.contactQrTitle {
    color: var(--color-charcoal);
    font-size: 13px;
    font-weight: 800;
}

.contactQrPlaceholder {
    display: block;
    width: 118px;
    height: 118px;
    background-color: #f3f5f7;
    background-image:
        linear-gradient(90deg, transparent 0 12%, rgba(24, 27, 31, 0.96) 12% 18%, transparent 18% 28%, rgba(24, 27, 31, 0.96) 28% 34%, transparent 34% 44%, rgba(24, 27, 31, 0.96) 44% 50%, transparent 50% 60%, rgba(24, 27, 31, 0.96) 60% 66%, transparent 66% 76%, rgba(24, 27, 31, 0.96) 76% 82%, transparent 82%),
        linear-gradient(transparent 0 12%, rgba(24, 27, 31, 0.96) 12% 18%, transparent 18% 28%, rgba(24, 27, 31, 0.96) 28% 34%, transparent 34% 44%, rgba(24, 27, 31, 0.96) 44% 50%, transparent 50% 60%, rgba(24, 27, 31, 0.96) 60% 66%, transparent 66% 76%, rgba(24, 27, 31, 0.96) 76% 82%, transparent 82%),
        linear-gradient(135deg, rgba(24, 27, 31, 0.98) 0 11px, transparent 11px),
        linear-gradient(225deg, rgba(24, 27, 31, 0.98) 0 11px, transparent 11px),
        linear-gradient(45deg, rgba(24, 27, 31, 0.98) 0 11px, transparent 11px);
    background-size: 13px 13px, 13px 13px, 38px 38px, 38px 38px, 38px 38px;
    background-position: 0 0, 0 0, 10px 10px, calc(100% - 10px) 10px, 10px calc(100% - 10px);
    border: 10px solid var(--color-white);
    border-radius: 18px;
    box-shadow: inset 0 0 0 1px #d7dde2, 0 8px 18px rgba(24, 27, 31, 0.1);
}

.qrWechat::after,
.qrWhatsapp::after {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: transparent;
    font-size: 0;
    content: "";
}

.footerContactColumn {
    gap: 0;
}

.footerContactRow {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footerInfoIcon {
    margin-top: 4px;
    color: var(--color-orange);
    font-size: 15px;
}

.footerBottomBar {
    background: #1a2230;
}

.footerBottomInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 56px;
}

.copyright,
.footerBottomNote {
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    line-height: 1.6;
}

.siteModal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.siteModal.open {
    display: flex;
}

.siteModalMask {
    position: absolute;
    inset: 0;
    background: rgba(24, 27, 31, 0.62);
}

.siteModalPanel {
    position: relative;
    z-index: 2;
    width: min(560px, 100%);
    max-height: 82vh;
    padding: 28px;
    overflow-y: auto;
    background: var(--color-white);
    border-radius: 6px;
    box-shadow: var(--shadow-soft);
}

.siteModalHead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.siteModalTitle {
    color: var(--color-charcoal);
    font-size: 20px;
    font-weight: 900;
}

.modalClose {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--color-paper);
    cursor: pointer;
}

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

.contactQuickItem {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 142px;
    padding: 18px;
    background: var(--color-paper);
    border-radius: 6px;
}

.contactQuickLabel {
    color: var(--color-charcoal);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.28;
}

.contactQuickValue {
    color: #5f6871;
    line-height: 1.6;
    word-break: break-word;
}

.qrBox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    color: #7a858f;
    background: var(--color-white);
    border: 1px dashed #b6c0c8;
}

@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }

    .navMenu {
        gap: 40px;
    }

    .brandStripInner {
        min-height: 132px;
        font-size: 30px;
    }

    .footerColumns {
        grid-template-columns: 1.5fr 0.9fr 0.9fr 1.1fr;
    }
}

@media (max-width: 1280px) {
    .container {
        max-width: 1100px;
    }

    .navMenu {
        gap: 24px;
    }

    .langToggle {
        min-width: 172px;
    }

    .inquiryMini {
        min-width: 154px;
    }

    .brandStripInner {
        font-size: 30px;
    }

    .footerColumns {
        gap: 28px;
    }
}

@media (max-width: 1100px) {
    .container {
        width: auto;
        padding-left: 24px;
        padding-right: 24px;
    }

    .headerInner {
        min-height: 74px;
    }

    .navMenu {
        gap: 18px;
    }

    .navItem {
        font-size: 13px;
    }

    .langToggle {
        min-width: 164px;
        padding: 0 14px;
    }

    .inquiryMini {
        min-width: 138px;
        gap: 10px;
        padding-right: 10px;
    }

    .headerToolIcon {
        font-size: 18px;
    }

    .inquiryCount {
        min-width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .footerNewsletter {
        grid-template-columns: 1fr 1.1fr;
    }

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

    .footerColumns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 28px;
    }
}

@media (max-width: 900px) {
    .sectionTitle {
        font-size: 32px;
    }

    .navMenu {
        display: none;
    }

    .inquiryMini {
        display: none;
    }

    .langToggle {
        min-width: auto;
        padding: 0 14px;
    }

    .langToggleText {
        display: none;
    }

    .mobileMenuIcon {
        display: inline-flex;
    }

    .mobileNavPanel {
        left: 24px;
        right: 24px;
    }

    .langPanel {
        left: auto;
        right: 0;
        min-width: 220px;
        max-width: calc(100vw - 48px);
    }

    .brandStripInner {
        flex-wrap: wrap;
        gap: 16px 28px;
        justify-content: center;
        min-height: 104px;
        font-size: 24px;
    }

    .footerNewsletter {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footerBottomInner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 14px 0;
    }

    .backToTopButton {
        right: 24px;
        bottom: 56px;
    }

    .gmToastStack {
        top: 88px;
        right: 16px;
    }

    .gmStateTitle {
        font-size: 32px;
    }

    .gmStateLinkGrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 750px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .sectionTitle {
        font-size: 28px;
    }

    .headerInner {
        align-items: center;
        min-height: 72px;
    }

    .brandBlock {
        align-items: flex-start;
        text-align: left;
    }

    .headerTools {
        margin-left: auto;
        gap: 8px;
        justify-content: flex-end;
    }

    .langToggle {
        padding: 0 12px;
    }

    .mobileMenuIcon {
        min-width: 40px;
        width: 40px;
        height: 40px;
        padding: 0;
    }

    .mobileNavPanel {
        left: 20px;
        right: 20px;
    }

    .langPanel {
        left: auto;
        right: 0;
        min-width: 220px;
        max-width: calc(100vw - 40px);
    }

    .brandStripInner {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: center;
        align-items: center;
        gap: 8px;
        min-height: 112px;
        padding: 14px 0;
        font-size: 16px;
        line-height: 1.25;
        text-align: center;
    }

    .brandStripInner span {
        display: block;
    }

    .footerSummary,
    .footerLinkColumn,
    .footerNewsletter {
        align-items: flex-start;
        text-align: left;
    }

    .footerNewsletter,
    .footerColumns,
    .contactQuickGrid {
        grid-template-columns: 1fr;
    }

    .footerContactIcons {
        flex-wrap: wrap;
    }

    .contactQrPanel {
        position: fixed;
        top: 50%;
        left: 50%;
        bottom: auto;
        width: min(236px, calc(100vw - 40px));
        padding: 18px;
        transform: translate(-50%, -50%);
        z-index: 70;
    }

    .contactQrPanel::after {
        display: none;
    }

    .contactQrPlaceholder {
        width: 140px;
        height: 140px;
    }

    .footerContactRow {
        gap: 18px;
    }

    .footerInfoIcon {
        margin-top: 2px;
    }

    .footerBottomInner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 14px 0;
    }

    .backToTopButton {
        right: 18px;
        bottom: 46px;
        width: 42px;
        height: 42px;
    }

    .gmStateSection {
        padding: 126px 0 68px;
    }

    .gmStatePanel {
        padding: 28px 20px;
    }

    .gmStateTitle {
        font-size: 28px;
    }

    .gmStateText {
        font-size: 14px;
    }

    .gmStateActions {
        flex-direction: column;
    }

    .gmStateActions .primaryAction,
    .gmStateActions .whiteAction {
        width: 100%;
    }

    .gmLoadingPanel {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        text-align: center;
    }
}
