/* ==================== 全局变量与基础样式 ==================== */
.google-brand-page {
    --blue: #2d82bd;
    --dark-blue: #073875;
    --gold: #cc8d2c;
    --light: #f4f7fb;
    --line: #d9e0e6;
}

.google-brand-page, .google-brand-page * {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    background: #fff;
}

.google-brand-page img {
    display: block;
    max-width: 100%;
}

.google-brand-page a {
    color: inherit;
    text-decoration: none;
}

.google-brand-page {
    width: 100%;
    color: #222;
    background: #fff;
    font-size: 18px;
    font-family: Tahoma, "Noto Sans Thai", Arial, sans-serif;
}

.google-brand-page .container {
    width: min(1480px, calc(100% - 64px));
    margin: 0 auto;
}

/* ==================== 页面加载动画 ==================== */
.google-brand-page .page-loader {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
    background: #fff;
    animation: googleBrandLoaderFade .35s ease .65s forwards;
}

.google-brand-page .page-loader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(45, 130, 189, .2);
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: googleBrandLoaderSpin .75s linear infinite;
}

@keyframes googleBrandLoaderSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes googleBrandLoaderFade {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* ==================== 模块一：顶部品牌与联系方式 ==================== */
.google-brand-page .topbar {
    height: 72px;
    color: #fff;
    background: var(--blue);
}

.google-brand-page .topbar-inner {
    width: min(1480px, calc(100% - 64px));
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.google-brand-page .logo {
    width: 295px;
}

.google-brand-page .top-contact {
    display: flex;
    gap: 54px;
    font-size: 17px;
    font-weight: 700;
}

.google-brand-page .top-contact a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.google-brand-page .top-contact a img {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.google-brand-page .top-contact a:hover {
    opacity: .82;
}

/* ==================== 模块二：首屏 Banner ==================== */
.google-brand-page .banner {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 3840/994;
    overflow: hidden;
}

.google-brand-page .banner picture, .google-brand-page .banner img {
    width: 100%;
    height: 100%;
}

.google-brand-page .banner img {
    object-fit: cover;
    object-position: center;
}

.google-brand-page .banner-link {
    position: absolute;
    left: 9.5%;
    top: 58%;
    width: 37%;
    height: 18%;
    border-radius: 16px;
}

.google-brand-page .banner-link:focus-visible {
    outline: 4px solid #fff;
    outline-offset: -5px;
}

/* ==================== 模块三：信任数据条 ==================== */
.google-brand-page .trust {
    color: #fff;
    background: var(--blue);
    overflow: hidden;
}

.google-brand-page .trust-track {
    width: min(1700px, calc(100% - 48px));
    min-height: 126px;
    margin: auto;
    display: flex;
}

.google-brand-page .trust-item {
    position: relative;
    min-width: 0;
    flex: 1;
    padding: 23px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.google-brand-page .trust-item + .trust-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 28px;
    bottom: 28px;
    width: 1px;
    background: rgba(255, 255, 255, .7);
}

.google-brand-page .trust-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.google-brand-page .trust-item:first-child img {
    width: 57px;
    height: 57px;
    filter: none;
}

.google-brand-page .trust-item span {
    display: grid;
    gap: 3px;
}

.google-brand-page .trust-item strong {
    font-size: 23px;
    white-space: nowrap;
}

.google-brand-page .trust-item small {
    font-size: 13px;
    line-height: 1.25;
}

/* ==================== 通用区块、标题与正文 ==================== */
.google-brand-page .section {
    padding: 90px 0;
}

.google-brand-page .title-box {
    width: 1400px;
    max-width: 100%;
    margin: 0 auto 38px;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.google-brand-page .title-text {
    width: 100%;
    color: #171717;
    font-size: 36px;
    line-height: 1.35;
    font-weight: 700;
    text-align: center;
}

.google-brand-page .section-lead {
    margin: 0 0 28px;
    color: #737a80;
    font-size: 18px;
    line-height: 1.75;
}

/* ==================== 模块四：曼谷国际服务中心与地图 ==================== */
.google-brand-page .location-card {
    min-height: 410px;
    display: grid;
    grid-template-columns:1.22fr 1fr;
    overflow: hidden;
    border: 1px solid #d8dde1;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(29, 47, 64, .15);
}

.google-brand-page .location-info {
    padding: 43px 40px 32px;
    display: flex;
    flex-direction: column;
}

.google-brand-page .location-info p {
    margin: 0 0 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 18px;
    line-height: 1.55;
}

.google-brand-page .location-info p img {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
}

.google-brand-page .map {
    width: 100%;
    height: 100%;
    min-height: 410px;
    border: 0;
}

.google-brand-page .cta {
    min-height: 58px;
    padding: 12px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
}

.google-brand-page .cta.gold {
    margin-top: auto;
    background: var(--gold);
}

/* ==================== 模块五：微创肿瘤治疗技术 ==================== */
.google-brand-page .technology-section, .google-brand-page .services-section {
    background: var(--light);
}

.google-brand-page .technology-grid {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.google-brand-page .benefits {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
}

.google-brand-page .benefits ul {
    margin: 0 0 35px;
    padding: 0;
    list-style: none;
}

.google-brand-page .benefits li {
    position: relative;
    margin: 0 0 22px;
    padding-left: 30px;
    color: #124b80;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
}

.google-brand-page .benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .58em;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--blue);
}

.google-brand-page .technology-cards {
    display: contents;
}

.google-brand-page .tech-card, .google-brand-page .doctor-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #d7dde3;
    border-radius: 6px;
    box-shadow: 0 2px 7px rgba(25, 50, 72, .08);
    animation: googleBrandCardEnter .6s ease both;
    transition: transform .3s ease, box-shadow .3s ease;
}

.google-brand-page .tech-card:nth-child(2), .google-brand-page .doctor-card:nth-child(2) {
    animation-delay: .08s;
}

.google-brand-page .tech-card:nth-child(3), .google-brand-page .doctor-card:nth-child(3) {
    animation-delay: .16s;
}

.google-brand-page .tech-card:nth-child(4) {
    animation-delay: .24s;
}

.google-brand-page .tech-card:nth-child(5) {
    animation-delay: .32s;
}

.google-brand-page .tech-card > img {
    width: 100%;
    aspect-ratio: 1.77;
    object-fit: cover;
}

.google-brand-page .tech-card > img, .google-brand-page .doctor-card > img {
    transition: transform .4s ease;
}

.google-brand-page .card-content {
    min-height: 210px;
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
}

.google-brand-page .card-content h3 {
    margin: 0 0 9px;
    font-size: 20px;
    line-height: 1.35;
}

.google-brand-page .card-content p {
    margin: 0;
    color: #50575d;
    font-size: 18px;
    line-height: 1.62;
}

.google-brand-page .card-more {
    margin-top: auto;
    padding-top: 14px;
    align-self: flex-end;
    color: #2a78ba;
    font-size: 18px;
    font-weight: 700;
}

.google-brand-page .card-more:hover {
    text-decoration: underline;
}

.google-brand-page .mobile-section-more {
    display: none;
}

@keyframes googleBrandCardEnter {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== 模块六：MDT 医生团队 ==================== */
.google-brand-page .team-image {
    width: 100%;
    margin-bottom: 34px;
}

.google-brand-page .doctor-cards {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.google-brand-page .doctor-card {
    background: var(--light);
}

.google-brand-page .doctor-card > img {
    width: 100%;
    aspect-ratio: 1/.98;
    object-fit: contain;
    object-position: center bottom;
    background: #fff;
}

.google-brand-page .doctor-card .card-content {
    min-height: 345px;
    padding: 24px;
}

.google-brand-page .doctor-card h3 {
    font-size: 25px;
}

.google-brand-page .doctor-role {
    margin-bottom: 14px !important;
    color: #1981c6 !important;
    font-size: 18px !important;
    font-weight: 700;
}

.google-brand-page .section-more {
    width: min(470px, 100%);
    min-height: 58px;
    margin: 38px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--blue);
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
}

/* ==================== 模块七：国际患者全程服务 ==================== */
.google-brand-page .services-section {
    padding-bottom: 145px;
}

.google-brand-page .services-flow {
    position: relative;
    display: grid;
    grid-template-columns:repeat(7, 1fr);
}

/* 流程图左侧入口线：PC 端连接到第 1 个图标中心 */
.google-brand-page .services-flow::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: 31px;
    width: calc(100% / 14);
    height: 2px;
    background: var(--gold);
}

.google-brand-page .service-item {
    position: relative;
    padding: 0 8px;
    text-align: center;
}

.google-brand-page .service-item:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 31px;
    left: calc(50% + 32px);
    width: calc(100% - 64px);
    height: 2px;
    background: var(--gold);
}

.google-brand-page .service-item:not(:last-child)::before {
    content: "";
    position: absolute;
    z-index: 1;
    right: 0;
    top: 27px;
    border-left: 7px solid var(--gold);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.google-brand-page .service-item > span {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--light);
}

/* 流程图去掉 CSS 外圈，span 与图标保持完全相同的宽高 */
.google-brand-page .service-item img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.google-brand-page .service-item p {
    max-width: 180px;
    margin: auto;
    font-size: 18px;
    line-height: 1.45;
}

/* ==================== 模块八：底部咨询转化区 ==================== */
.google-brand-page .contact-section {
    height: 300px;
    color: #fff;
    background: var(--blue);
}

.google-brand-page .contact-inner {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.google-brand-page .contact-copy {
    width: 62%;
    padding-left: 130px;
}

.google-brand-page .contact-copy h2 {
    margin: 0 0 24px;
    font-size: 36px;
}

.google-brand-page .contact-button, .google-brand-page .contact-phone {
    width: min(560px, 100%);
    min-height: 54px;
    padding: 11px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
}

.google-brand-page .contact-button img, .google-brand-page .contact-phone img {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.google-brand-page .contact-button {
    margin-bottom: 12px;
    color: #1671ae;
    background: #fff;
}

.google-brand-page .contact-phone {
    border: 1px solid rgba(255, 255, 255, .8);
}

.google-brand-page .contact-inner > img {
    position: absolute;
    right: 70px;
    bottom: 0;
    width: auto;
    height: 390px;
}

/* ==================== 模块九：页脚与免责声明 ==================== */
.google-brand-page footer {
    padding: 34px 24px 38px;
    text-align: center;
    color: #777;
    background: #e8e8e8;
}

.google-brand-page footer p {
    max-width: 1450px;
    margin: 0 auto 10px;
    font-size: 12px;
    line-height: 1.45;
}

/* 仅在支持悬停的设备上启用按钮 Hover 效果 */
@media (any-hover: hover) {
    .google-brand-page .cta:hover, .google-brand-page .section-more:hover, .google-brand-page .contact-button:hover, .google-brand-page .contact-phone:hover {
        filter: brightness(1.05);
        transform: translateY(-1px);
    }

    .google-brand-page .tech-card:hover, .google-brand-page .doctor-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 14px 30px rgba(25, 50, 72, .18);
    }

    .google-brand-page .tech-card:hover > img, .google-brand-page .doctor-card:hover > img {
        transform: scale(1.035);
    }
}

/* 尊重系统的减少动态效果设置 */
@media (prefers-reduced-motion: reduce) {
    .google-brand-page .page-loader {
        display: none;
    }

    .google-brand-page .page-loader-spinner, .google-brand-page .tech-card, .google-brand-page .doctor-card {
        animation: none;
    }

    .google-brand-page .tech-card, .google-brand-page .doctor-card, .google-brand-page .tech-card > img, .google-brand-page .doctor-card > img {
        transition: none;
    }
}

/* ==================== 移动端适配：768px 及以下 ==================== */
@media screen and (max-width: 768px) {
    .google-brand-page {
        font-size: 16px;
    }

    /* 移动端通用内容边距：左右各 15px */
    .google-brand-page .container {
        width: calc(100% - 30px);
    }

    .google-brand-page .topbar {
        min-height: 108px;
        height: auto;
    }

    .google-brand-page .topbar-inner {
        width: calc(100% - 34px);
        padding: 12px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 9px;
    }

    .google-brand-page .logo {
        width: 245px;
        max-width: 72vw;
    }

    .google-brand-page .top-contact {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        font-size: 13px;
    }

    .google-brand-page .top-contact a {
        width: 100%;
        min-height: 24px;
        justify-content: center;
        text-align: center;
        font-size: 16px;
        padding: 5px 0;
    }

    .google-brand-page .top-contact a:first-child {
        order: 2;
    }

    .google-brand-page .top-contact a:last-child {
        position: static;
        order: 1;
    }

    .google-brand-page .banner {
        width: 100%;
        height: auto;
        aspect-ratio: 790/989;
    }

    .google-brand-page .banner picture, .google-brand-page .banner img {
        width: 100%;
        height: 100%;
    }

    .google-brand-page .banner img {
        object-fit: contain;
    }

    .google-brand-page .banner-link {
        inset: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .google-brand-page .trust {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .google-brand-page .trust::-webkit-scrollbar, .google-brand-page .technology-cards::-webkit-scrollbar, .google-brand-page .doctor-cards::-webkit-scrollbar {
        display: none;
    }

    .google-brand-page .trust-track {
        width: max-content;
        min-width: 100%;
        min-height: 92px;
    }

    .google-brand-page .trust-item {
        flex: 0 0 195px;
        padding: 10px 15px;
    }

    /* Banner 下方五个信任图标统一尺寸 */
    .google-brand-page .trust-item img, .google-brand-page .trust-item:first-child img {
        width: 30px;
        height: 30px;
    }

    .google-brand-page .trust-item strong {
        font-size: 20px;
    }

    .google-brand-page .trust-item small {
        font-size: 12px;
    }

    /* 移动端各内容模块上下间距统一收紧 */
    .google-brand-page .section {
        padding: 20px 0;
    }

    .google-brand-page .title-box {
        width: 100%;
        margin-bottom: 14px;
        padding: 5px 15px;
    }

    /* 移动端字号：一级标题 25px */
    .google-brand-page .title-text {
        font-size: 25px;
        line-height: 1.32;
    }

    .google-brand-page .cta {
        min-height: 48px;
        box-sizing: border-box;
    }

    .google-brand-page .section-lead {
        margin-bottom: 18px;
        font-size: 16px;
        line-height: 1.6;
    }

    .google-brand-page .location-card {
        display: flex;
        flex-direction: column;
    }

    .google-brand-page .location-info {
        padding: 15px 15px 15px;
    }

    .google-brand-page .location-info p {
        gap: 12px;
        margin-bottom: 14px;
        font-size: 16px;
    }

    .google-brand-page .location-info p img {
        flex-basis: 26px;
        width: 26px;
        height: 26px;
    }

    .google-brand-page .location-info .cta {
        margin-top: 4px;
        padding: 5px 20px;
    }

    .google-brand-page .map {
        min-height: 0;
        height: auto;
        aspect-ratio: 1.58;
    }

    .google-brand-page .technology-section .title-box {
        max-width: 560px;
    }

    .google-brand-page .technology-grid {
        display: block;
    }

    .google-brand-page .benefits {
        padding: 0;
    }

    .google-brand-page .benefits ul {
        margin: 0 0 15px
    }

    .google-brand-page .benefits li {
        margin-bottom: 12px;
        font-size: 16px;
    }

    .google-brand-page .benefits .cta {
        display: none;
    }

    .google-brand-page .technology-cards, .google-brand-page .doctor-cards {
        display: flex;
        gap: 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding: 2px 2px 8px;
    }

    .google-brand-page .tech-card {
        flex: 0 0 74%;
        scroll-snap-align: start;
    }

    .google-brand-page .tech-card .card-content {
        min-height: 220px;
        padding: 15px;
    }

    .google-brand-page .card-content h3 {
        font-size: 18px;
    }

    .google-brand-page .card-content p {
        font-size: 16px;
    }

    .google-brand-page .card-more {
        font-size: 16px;
    }

    .google-brand-page .mobile-section-more {
        min-height: 52px;
        margin-top: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        background: var(--blue);
        border-radius: 5px;
        font-weight: 700;
    }

    .google-brand-page .team-image {
        display: none;
    }

    .google-brand-page .doctor-card {
        flex: 0 0 74%;
        scroll-snap-align: start;
    }

    .google-brand-page .doctor-card .card-content {
        min-height: 330px;
        padding: 15px;
    }

    .google-brand-page .doctor-card h3 {
        font-size: 20px;
    }

    .google-brand-page .doctor-role {
        font-size: 16px !important;
    }

    .google-brand-page .section-more {
        margin-top: 16px;
    }

    .google-brand-page .cta, .google-brand-page .section-more, .google-brand-page .mobile-section-more {
        font-size: 16px;
    }

    .google-brand-page .services-section {
        padding-top: 20px;
        padding-bottom: 90px;
    }

    .google-brand-page .services-section .container {
        width: 100%;
    }

    .google-brand-page .services-section .title-box {
        width: calc(100% - 30px);
        margin-bottom: 20px;
    }

    .google-brand-page .services-section .title-text {
        font-size: 25px;
        line-height: 1.35;
    }

    /* 模块七：移动端 1→7 蛇形串联流程 */
    .google-brand-page .services-flow {
        --service-icon-size: 56px;
        --service-icon-center: 28px;
        --service-row-gap: 26px;
        width: calc(100% - 30px);
        margin: 0 auto;
        grid-template-columns:repeat(3, 1fr);
        gap: var(--service-row-gap) 0;
    }

    /* 移动端左侧入口线连接第 1 项 */
    .google-brand-page .services-flow::before {
        top: calc(var(--service-icon-center) - 1px);
        width: calc(100% / 6);
    }

    .google-brand-page .service-item:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .google-brand-page .service-item:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .google-brand-page .service-item:nth-child(3) {
        grid-column: 3;
        grid-row: 1;
    }

    .google-brand-page .service-item:nth-child(4) {
        grid-column: 3;
        grid-row: 2;
    }

    .google-brand-page .service-item:nth-child(5) {
        grid-column: 2;
        grid-row: 2;
    }

    .google-brand-page .service-item:nth-child(6) {
        grid-column: 1;
        grid-row: 2;
    }

    .google-brand-page .service-item:nth-child(7) {
        grid-column: 1;
        grid-row: 3;
    }

    .google-brand-page .service-item {
        padding: 0 5px;
    }

    .google-brand-page .service-item > span {
        width: var(--service-icon-size);
        height: var(--service-icon-size);
        margin-bottom: 12px;
        border-width: 2px;
    }

    .google-brand-page .service-item img {
        width: 100%;
        height: 100%;
    }

    .google-brand-page .service-item p {
        max-width: 180px;
        font-size: 16px;
        line-height: 1.4;
    }

    /* 清除桌面端默认连接线，移动端逐段绘制连续路线 */
    .google-brand-page .service-item::after, .google-brand-page .service-item::before {
        content: "";
        position: absolute;
        z-index: 0;
        display: none;
    }

    /* 第 1、2 项：向右连接 */
    .google-brand-page .service-item:nth-child(1)::after, .google-brand-page .service-item:nth-child(2)::after {
        display: block;
        top: calc(var(--service-icon-center) - 1px);
        left: 50%;
        width: 100%;
        height: 2px;
        background: var(--gold);
    }

    .google-brand-page .service-item:nth-child(1)::before, .google-brand-page .service-item:nth-child(2)::before {
        display: block;
        top: calc(var(--service-icon-center) - 5px);
        right: -3px;
        border-left: 8px solid var(--gold);
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
    }

    /* 第 3 项：从右侧折向下一行 */
    .google-brand-page .service-item:nth-child(3)::after {
        display: block;
        top: calc(var(--service-icon-center) - 1px);
        left: 50%;
        width: 50%;
        height: calc(100% + var(--service-row-gap) - 2px);
        background: none;
        border-top: 2px solid var(--gold);
        border-right: 2px solid var(--gold);
        border-bottom: 2px solid var(--gold);
    }

    /* 第 3 项折线底部增加指向第 4 项的左箭头 */
    .google-brand-page .service-item:nth-child(3)::before {
        display: block;
        z-index: 1;
        top: calc(100% + var(--service-row-gap) + var(--service-icon-center) - 5px);
        left: calc(75% + var(--service-icon-center) / 2);
        right: auto;
        width: 0;
        height: 0;
        border-right: 8px solid var(--gold);
        border-left: 0;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        background: transparent;
        transform: none;
    }

    /* 第 4、5 项：从右向左连接 */
    .google-brand-page .service-item:nth-child(4)::after, .google-brand-page .service-item:nth-child(5)::after {
        display: block;
        top: calc(var(--service-icon-center) - 1px);
        right: 50%;
        left: auto;
        width: 100%;
        height: 2px;
        background: var(--gold);
    }

    .google-brand-page .service-item:nth-child(4)::before, .google-brand-page .service-item:nth-child(5)::before {
        display: block;
        top: calc(var(--service-icon-center) - 5px);
        left: -3px;
        right: auto;
        border-right: 8px solid var(--gold);
        border-left: 0;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
    }

    /* 第 6 项：从左侧折向第 7 项 */
    .google-brand-page .service-item:nth-child(6)::after {
        display: block;
        top: calc(var(--service-icon-center) - 1px);
        right: 50%;
        left: auto;
        width: 50%;
        height: calc(100% + var(--service-row-gap));
        background: none;
        border-top: 2px solid var(--gold);
        border-left: 2px solid var(--gold);
        border-bottom: 2px solid var(--gold);
    }

    /* 第 7 项：向右收尾 */
    .google-brand-page .service-item:nth-child(7)::after {
        display: block;
        top: calc(var(--service-icon-center) - 1px);
        left: 50%;
        width: 50%;
        height: 2px;
        background: var(--gold);
    }

    .google-brand-page .service-item:nth-child(7)::before {
        display: block;
        top: calc(var(--service-icon-center) - 5px);
        right: -3px;
        border-left: 8px solid var(--gold);
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
    }

    /* 模块八：移动端咨询区，人物上移、标题避让、按钮占满内容宽度 */
    .google-brand-page .contact-section {
        height: 380px;
        overflow: visible;
    }

    .google-brand-page .contact-inner {
        width: calc(100% - 30px);
        padding: 56px 0 0;
        align-items: flex-start;
        overflow: visible;
    }

    .google-brand-page .contact-copy {
        z-index: 2;
        width: 100%;
        padding: 0;
    }

    .google-brand-page .contact-copy h2 {
        position: relative;
        z-index: 2;
        width: 56%;
        margin-bottom: 18px;
        font-size: 25px;
        line-height: 1.28;
    }

    .google-brand-page .contact-button, .google-brand-page .contact-phone {
        position: relative;
        z-index: 3;
        width: 100%;
        max-width: none;
        min-height: 56px;
        padding: 10px 14px;
        gap: 10px;
        font-size: 16px;
    }

    .google-brand-page .contact-button img, .google-brand-page .contact-phone img {
        width: 20px;
        height: 20px;
    }

    .google-brand-page .contact-inner > img {
        z-index: 1;
        right: 8px;
        bottom: 221px;
        height: 270px;
    }

    .google-brand-page footer {
        padding: 28px 18px;
    }

    .google-brand-page footer p {
        font-size: 10px;
    }
}

/* ==================== 小屏移动端补充适配：480px 及以下 ==================== */
@media screen and (max-width: 480px) {
    .google-brand-page .top-contact {
        font-size: 11px;
    }

    .google-brand-page .trust-item {
        flex-basis: 178px;
    }

    .google-brand-page .services-section .title-text {
        font-size: 25px;
    }

    .google-brand-page .services-flow {
        --service-icon-size: 48px;
        --service-icon-center: 24px;
        --service-row-gap: 28px;
        width: calc(100% - 20px);
    }

    .google-brand-page .service-item p {
        font-size: 16px;
    }

    .google-brand-page .service-item > span {
        width: var(--service-icon-size);
        height: var(--service-icon-size);
    }

    .google-brand-page .service-item img {
        width: 100%;
        height: 100%;
    }

    .google-brand-page .contact-copy {
        width: 100%;
    }

    .google-brand-page .contact-copy h2 {
        width: 54%;
        font-size: 25px;
    }

    .google-brand-page .contact-button, .google-brand-page .contact-phone {
        font-size: 16px;
    }

    .google-brand-page .contact-inner > img {
        right: 0;
        bottom: 240px;
        height: 245px;
    }
}
