/* XCZ_Wkt 首页样式 */
:root {
    --ink: #1f2a24;
    --muted: #5e6e64;
    --brand: #145c28;
    --brand-dark: #073b1b;
    --brand-soft: #e7f4e8;
    --brand-soft-2: #f2f8ef;
    --line: #d7e4d5;
    --paper: #ffffff;
    --warm: #f4f7f2;
    --warm-2: #fbfcf7;
    --blue: #2b6fbd;
    --blue-soft: #e8f2ff;
    --amber: #a96d1b;
    --amber-soft: #fff1da;
    --purple: #6f5ab8;
    --purple-soft: #f0ecff;
    --radius: 8px;
    --shadow: 0 14px 36px rgba(31, 42, 36, .08);
    --font: "HarmonyOS Sans SC", "MiSans", "Alibaba PuHuiTi", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--warm);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

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

svg {
    display: block;
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

h1,
h2,
h3,
p,
ol,
ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

.section-container {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid rgba(221, 231, 225, .85);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    width: min(1120px, calc(100% - 48px));
    min-height: 72px;
    margin: 0 auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.brand-text {
    display: grid;
    line-height: 1.25;
}

.brand-text strong {
    color: var(--brand-dark);
    font-size: 20px;
    font-weight: 800;
}

.brand-text em {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.main-nav a,
.nav-dropdown-toggle {
    padding: 8px 13px;
    border-radius: 999px;
    color: #334139;
    font-size: 14px;
    font-weight: 700;
    transition: background .2s ease, color .2s ease;
}

.main-nav a:hover,
.main-nav a:focus,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus,
.nav-dropdown.is-open .nav-dropdown-toggle {
    color: var(--brand-dark);
    background: var(--brand-soft);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown::before {
    content: "";
    position: absolute;
    top: 100%;
    left: -8px;
    right: -8px;
    height: 16px;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
}

.nav-dropdown-toggle::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    z-index: 80;
    display: none;
    min-width: 190px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 38px rgba(20, 92, 40, .15);
    transform: translateX(-50%);
}

.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
    transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    color: #263d2e;
    white-space: nowrap;
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
}

.header-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 18px;
    color: #fff;
    background: var(--brand);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--brand-dark);
    border-radius: 2px;
}

.hero-section {
    background: var(--warm-2);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    gap: 56px;
    align-items: center;
    min-height: 430px;
    padding: 56px 0 48px;
}

.eyebrow,
.section-heading span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    color: var(--brand);
    font-size: 13px;
    font-weight: 800;
}

.hero-copy h1 {
    margin: 8px 0 18px;
    font-size: 46px;
    line-height: 1.15;
    letter-spacing: 0;
}

.hero-copy p {
    max-width: 640px;
    color: #4f5d55;
    font-size: 17px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover,
.btn:focus {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(31, 42, 36, .08);
}

.btn-primary {
    color: #fff;
    background: var(--brand);
    border-color: var(--brand);
}

.btn-plain {
    color: var(--brand-dark);
    background: #fff;
}

.hero-service-list {
    display: grid;
    gap: 16px;
}

.hero-service-card {
    display: grid;
    grid-template-columns: 42px 1fr 24px;
    gap: 14px;
    align-items: center;
    min-height: 86px;
    padding: 16px 18px;
    background: #f0eee7;
    border: 1px solid #ddd8cc;
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(31, 42, 36, .05);
    transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.hero-service-card:hover,
.hero-service-card:focus {
    background: #fff;
    border-color: rgba(15, 107, 85, .32);
    transform: translateY(-2px);
}

.mini-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--brand);
    background: #fff;
    border-radius: 8px;
}

.hero-service-card strong,
.hero-service-card em {
    display: block;
}

.hero-service-card strong {
    font-size: 15px;
    line-height: 1.35;
}

.hero-service-card em {
    color: var(--muted);
    font-size: 12.5px;
    font-style: normal;
}

.hero-service-card i {
    color: var(--brand-dark);
    font-style: normal;
    font-weight: 900;
    text-align: right;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: var(--brand-dark);
    color: #fff;
}

.hero-stats div {
    display: grid;
    place-items: center;
    align-content: center;
    min-height: 86px;
    border-right: 1px solid rgba(255, 255, 255, .12);
    text-align: center;
}

.hero-stats div:last-child {
    border-right: 0;
}

.hero-stats strong {
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
}

.hero-stats span {
    color: rgba(255, 255, 255, .72);
    font-size: 12.5px;
}

/* 恢复原主横幅显示区域 */
.hero-section#top {
    position: relative;
    padding: 160px 0 0;
    background: linear-gradient(135deg, #c8e6c9, #66bb6a, #1b5e20, #051f0a);
    overflow: hidden;
    color: #1a1a2e;
}

.hero-section#top::before {
    content: "";
    position: absolute;
    top: -60%;
    right: -20%;
    width: 800px;
    height: 800px;
    border: 2px solid rgba(255, 255, 255, .06);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section#top::after {
    content: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding-bottom: 60px;
}

.hero-inner::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(27, 94, 32, .15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content,
.hero-visual {
    animation: fadeInUp .8s ease both;
}

.hero-visual {
    position: relative;
    animation-delay: .15s;
}

.hero-badge {
    display: inline-block;
    padding: 5px 16px;
    color: #1b5e20;
    background: rgba(200, 230, 201, .35);
    border: 1px solid rgba(27, 94, 32, .25);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    margin-bottom: 22px;
}

.hero-content h1 {
    margin-bottom: 22px;
    font-size: clamp(40px, 5.5vw, 60px);
    font-weight: 700;
    line-height: 1.15;
    color: #f4f3ad;
    text-shadow: none;
    filter:
        drop-shadow(1px 1px 0 #0d3d1a)
        drop-shadow(2px 2px 0 #0a3315)
        drop-shadow(4px 5px 8px rgba(0, 0, 0, .28));
    letter-spacing: 0;
}

.hero-content h1 span {
    display: block;
    width: max-content;
    max-width: 100%;
    color: #f4f3ad;
    background: linear-gradient(105deg, #fff4a8 0%, #fff0a6 58%, #d8ec9c 82%, #a5d6a7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    max-width: 580px;
    margin-bottom: 34px;
    color: #fff;
    font-size: 17px;
    line-height: 1.82;
}

.btn-gold {
    color: #fff;
    background: #c8963e;
    border-color: #c8963e;
    box-shadow: 0 8px 28px rgba(200, 150, 62, .3);
}

.btn-gold:hover,
.btn-gold:focus {
    background: #b3852e;
    border-color: #b3852e;
    box-shadow: 0 12px 32px rgba(200, 150, 62, .4);
}

.btn-outline {
    color: #0d3d1a;
    border: 2px solid rgba(10, 46, 18, .45);
    background: rgba(255, 255, 255, .35);
}

.btn-outline:hover,
.btn-outline:focus {
    border-color: rgba(10, 46, 18, .7);
    background: rgba(255, 255, 255, .6);
}

.float-card {
    display: grid;
    grid-template-columns: 46px 1fr 24px;
    gap: 14px;
    align-items: center;
    padding: 18px 22px;
    background: rgba(255, 255, 255, .55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 12px;
    transition: transform .3s ease, background .3s ease;
}

.float-card:hover,
.float-card:focus {
    transform: translateX(4px);
    background: rgba(255, 255, 255, .75);
}

.float-card + .float-card {
    margin-top: 16px;
}

.fc-1,
.fc-3 {
    margin-left: 20px;
}

.fc-2 {
    margin-left: 48px;
}

.fc-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 10px;
}

.fc-icon-blue {
    color: #5b9cf5;
    background: rgba(91, 156, 245, .14);
}

.fc-icon-green {
    color: #3db89a;
    background: rgba(61, 184, 154, .14);
}

.fc-icon-amber {
    color: #e0a84c;
    background: rgba(224, 168, 76, .14);
}

.fc-text strong,
.fc-text em {
    display: block;
}

.fc-text strong {
    margin-bottom: 3px;
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.3;
    color: #0d3d1a;
}

.fc-text em {
    color: rgba(10, 46, 18, .6);
    font-size: 13px;
    font-style: normal;
    line-height: 1.3;
}

.float-card i {
    color: #0d3d1a;
    font-style: normal;
    font-weight: 900;
    text-align: right;
}

.hero-wave {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(180deg, transparent 0%, #051f0a 100%);
}

.hero-wave::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, .04) 0%, transparent 70%);
    pointer-events: none;
}

.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23ffffff" fill-opacity="0.03"/></svg>') repeat-x;
    background-size: 50% 100%;
}

.wave1 {
    opacity: .7;
    animation: waveMove 15s linear infinite;
    bottom: 0;
    height: 120px;
}

.wave2 {
    opacity: .5;
    animation: waveMove 20s linear infinite reverse;
    bottom: 10px;
    height: 100px;
}

.wave3 {
    opacity: .3;
    animation: waveMove 25s linear infinite;
    bottom: 20px;
    height: 80px;
}

.hero-section#top .hero-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .25);
    background: rgba(0, 0, 0, .1);
}

.hero-section#top .hero-stats div {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 4px;
    min-height: 90px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .06);
}

.hero-section#top .hero-stats div:last-child {
    border-right: none;
}

.hero-section#top .hero-stats strong {
    color: #c8963e;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-section#top .hero-stats span {
    color: rgba(255, 255, 255, .55);
    font-size: 13.5px;
    line-height: 1.35;
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

.section-block {
    padding: 72px 0;
    background:
        linear-gradient(180deg, rgba(231, 244, 232, .42), rgba(255, 255, 255, 0) 160px),
        #fff;
    border-bottom: 1px solid var(--line);
}

.section-muted {
    background:
        linear-gradient(135deg, rgba(231, 244, 232, .72), rgba(251, 252, 247, .92)),
        var(--warm-2);
}

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

.section-heading h2 {
    margin: 4px 0 8px;
    color: #163221;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 750;
}

.section-heading p {
    color: #627365;
    font-size: 15px;
}

.section-heading-left {
    margin-bottom: 24px;
}

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

.feature-card,
.service-card,
.process-card,
.case-card,
.promise-box,
.seo-note,
.contact-card-grid a {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdf9 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.feature-card {
    min-height: 214px;
    padding: 28px;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.feature-card:hover {
    border-color: rgba(20, 92, 40, .42);
    box-shadow: 0 16px 36px rgba(20, 92, 40, .1);
    transform: translateY(-2px);
}

.feature-card-main {
    background: linear-gradient(180deg, #f7fcf6 0%, #ffffff 100%);
    border-color: rgba(20, 92, 40, .58);
    box-shadow: inset 4px 0 0 rgba(20, 92, 40, .76), 0 14px 30px rgba(20, 92, 40, .08);
}

.card-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 8px;
}

.icon-cloud { color: var(--brand); background: var(--brand-soft); }
.icon-doc { color: #27775f; background: #eaf5ee; }
.icon-paper { color: #9b6a16; background: #fff4dc; }
.icon-ai { color: #2b6f54; background: #edf6ef; }

.feature-card h3,
.service-card h3,
.process-card h3,
.case-card h3 {
    margin-bottom: 8px;
    color: #173520;
    font-size: 18px;
    line-height: 1.35;
}

.feature-card p,
.service-card p,
.case-card p {
    color: #5f6f64;
    font-size: 14px;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.chip-row span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    color: #245435;
    background: #eef7ed;
    border: 1px solid #d8ead5;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
}

.service-board {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(320px, 1fr);
    gap: 28px;
    align-items: start;
}

.service-column {
    display: grid;
    gap: 16px;
}

.service-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 22px;
}

.service-dynamic-card {
    display: block;
    padding: 0;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.service-dynamic-card:hover,
.service-dynamic-card.is-open {
    border-color: rgba(20, 92, 40, .38);
    box-shadow: 0 16px 36px rgba(20, 92, 40, .1);
}

.service-title-btn {
    display: grid;
    grid-template-columns: 48px 1fr 22px;
    gap: 16px;
    align-items: start;
    width: 100%;
    padding: 22px;
    border: 0;
    color: inherit;
    background: transparent;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.service-title-btn:focus {
    outline: 2px solid rgba(20, 92, 40, .32);
    outline-offset: -2px;
}

.service-card-copy {
    display: block;
    min-width: 0;
}

.service-card-title {
    display: block;
    margin-bottom: 8px;
    color: #173520;
    font-size: 18px;
    font-weight: 750;
    line-height: 1.35;
}

.service-card-desc {
    display: block;
    color: #5f6f64;
    font-size: 14px;
    line-height: 1.7;
}

.service-toggle-mark {
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    margin-top: 8px;
    border: 1px solid #cfe1cc;
    border-radius: 50%;
    background: #f6fbf4;
}

.service-toggle-mark::before,
.service-toggle-mark::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 2px;
    background: var(--brand);
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform .2s ease, opacity .2s ease;
}

.service-toggle-mark::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.service-dynamic-card.is-open .service-toggle-mark::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0);
}

.service-detail {
    display: none;
    padding: 0 22px 22px 86px;
    color: #4e6155;
    font-size: 14px;
    line-height: 1.8;
}

.service-detail > * + * {
    margin-top: 10px;
}

.service-detail img {
    height: auto;
    border-radius: 8px;
}

.service-loading,
.service-detail-loading,
.service-empty {
    padding: 20px 22px;
    color: #68766c;
    background: rgba(255, 255, 255, .64);
    border: 1px dashed #cfe1cc;
    border-radius: var(--radius);
    font-size: 14px;
}

.service-detail-loading,
.service-detail .service-empty {
    padding: 12px 14px;
}

.service-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: #fff;
    background: linear-gradient(135deg, #1f7a3a, var(--brand-dark));
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
}

.process-card {
    padding: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .76), rgba(241, 248, 239, .92)),
        #f1f7ee;
    border-color: rgba(20, 92, 40, .18);
}

.process-card ol {
    counter-reset: flow;
}

.process-card li {
    position: relative;
    min-height: 62px;
    padding-left: 52px;
    counter-increment: flow;
}

.process-card li::before {
    content: counter(flow);
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #fff;
    background: var(--brand);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
}

.process-card li::after {
    content: "";
    position: absolute;
    left: 16px;
    top: 38px;
    width: 1px;
    height: 22px;
    background: rgba(15, 107, 85, .22);
}

.process-card li:last-child::after {
    display: none;
}

.process-card li strong,
.process-card li span {
    display: block;
}

.process-card li strong {
    color: #173520;
    font-size: 15px;
}

.process-card li span {
    color: var(--muted);
    font-size: 13px;
}

.local-note {
    margin-top: 18px;
    padding: 16px;
    background: #fbfff9;
    border: 1px solid rgba(20, 92, 40, .28);
    border-radius: var(--radius);
}

.local-note strong {
    color: var(--brand);
}

.local-note p {
    color: var(--muted);
    font-size: 13.5px;
}

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

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

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

.case-visual {
    display: grid;
    place-items: center;
    height: 128px;
}

.case-visual svg {
    width: 34px;
    height: 34px;
}

.case-green {
    color: #145c28;
    background: linear-gradient(135deg, #dff3df, #edf8e9);
}

.case-blue {
    color: #27775f;
    background: linear-gradient(135deg, #e1f2e9, #eef8ef);
}

.case-warm {
    color: #946512;
    background: linear-gradient(135deg, #fff0d6, #f4f7e9);
}

.case-body {
    padding: 22px;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(320px, .88fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.timeline {
    display: grid;
    gap: 18px;
}

.timeline li {
    position: relative;
    padding-left: 30px;
}

.timeline li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 13px;
    height: 13px;
    border: 3px solid var(--brand);
    border-radius: 999px;
    background: #fff;
}

.timeline strong,
.timeline span {
    display: block;
}

.timeline strong {
    color: var(--brand);
    font-size: 15px;
}

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

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 28px;
}

.tech-grid span {
    display: grid;
    place-items: center;
    min-height: 62px;
    padding: 8px;
    background: #fbfff9;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: #245435;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.about-copy {
    padding-top: 38px;
}

.about-copy p {
    color: #425149;
}

.about-copy p + p {
    margin-top: 16px;
}

.promise-box {
    display: grid;
    gap: 7px;
    margin-top: 26px;
    padding: 20px 22px;
    border-left: 4px solid var(--brand);
    background: linear-gradient(180deg, #fbfff9, #f2f8ef);
}

.promise-box strong {
    margin-bottom: 4px;
}

.promise-box span {
    position: relative;
    padding-left: 20px;
    color: var(--muted);
    font-size: 14px;
}

.promise-box span::before {
    content: "";
    position: absolute;
    left: 1px;
    top: 10px;
    width: 8px;
    height: 4px;
    border-left: 2px solid var(--brand);
    border-bottom: 2px solid var(--brand);
    transform: rotate(-45deg);
}

.contact-section {
    background:
        linear-gradient(135deg, rgba(231, 244, 232, .78), rgba(246, 244, 235, .94)),
        #f3f5ed;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
    gap: 56px;
    align-items: start;
}

.contact-list {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
}

.contact-list p {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 12px;
}

.contact-list strong {
    color: var(--brand);
}

.contact-list span {
    color: var(--muted);
}

.seo-note {
    max-width: 580px;
    padding: 18px;
    background: #fbfff9;
}

.seo-note strong,
.seo-note span {
    display: block;
}

.seo-note span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 14px;
}

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

.contact-card-grid a {
    display: grid;
    place-items: center;
    align-content: center;
    min-height: 150px;
    padding: 18px;
    text-align: center;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact-card-grid a:hover {
    transform: translateY(-2px);
    border-color: rgba(20, 92, 40, .38);
    box-shadow: 0 16px 36px rgba(20, 92, 40, .1);
}

.qr-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
    color: #3f7250;
    background: #eef7ed;
    border-radius: var(--radius);
}

.contact-card-grid strong,
.contact-card-grid em {
    display: block;
}

.contact-card-grid strong {
    font-size: 15px;
}

.contact-card-grid em {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.contact-highlight {
    background: linear-gradient(180deg, #e7f4e8, #fbfff9) !important;
    border-color: rgba(20, 92, 40, .34) !important;
}

.contact-highlight .qr-icon {
    color: var(--brand);
    background: #fff;
}

.site-footer {
    color: #d3dfd5;
    width: 100%;
    background: #062613;
    border-top: 1px solid rgba(200, 150, 62, .28);
}

.footer-container {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

.footer-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 64px;
    font-size: 13px;
    text-align: center;
}

.footer-bottom p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, .84);
    transition: color .2s ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus {
    color: #c8963e;
}

.police-record {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.police-record img {
    width: 20px;
    height: 20px;
}

.gotop {
    position: absolute;
    right: 0;
    top: 50%;
    display: none;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .08);
    transform: translateY(-50%);
}

.gotop::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 13px;
    width: 10px;
    height: 10px;
    border-left: 2px solid #c8963e;
    border-top: 2px solid #c8963e;
    transform: rotate(45deg);
}

@media (max-width: 980px) {
    .header-action {
        display: none;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .main-nav {
        position: absolute;
        left: 24px;
        right: 24px;
        top: 76px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        margin: 0;
        padding: 12px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a,
    .nav-dropdown-toggle {
        border-radius: var(--radius);
    }

    .nav-dropdown,
    .nav-dropdown-toggle {
        width: 100%;
    }

    .nav-dropdown-toggle {
        justify-content: space-between;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        margin: 4px 0 0;
        padding: 6px;
        box-shadow: none;
        transform: none;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .hero-grid,
    .hero-inner,
    .service-board,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-grid,
    .hero-inner {
        min-height: 0;
        padding-top: 40px;
    }

    .hero-visual {
        order: -1;
    }

    .float-card {
        margin-left: 0 !important;
    }

    .about-copy {
        padding-top: 0;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 720px) {
    .section-container,
    .header-inner {
        width: min(100% - 28px, 1120px);
    }

    .header-inner {
        min-height: 64px;
    }

    .brand-logo {
        width: 36px;
        height: 36px;
    }

    .brand-text strong {
        font-size: 17px;
    }

    .brand-text em {
        max-width: 150px;
        white-space: normal;
    }

    .main-nav {
        left: 14px;
        right: 14px;
        top: 68px;
    }

    .hero-copy h1,
    .hero-content h1 {
        font-size: 34px;
    }

    .hero-copy p,
    .hero-lead {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-service-card {
        grid-template-columns: 38px 1fr 18px;
        padding: 14px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats div {
        min-height: 78px;
    }

    .section-block {
        padding: 52px 0;
    }

    .section-heading h2 {
        font-size: 25px;
    }

    .feature-grid,
    .contact-card-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .process-card,
    .case-body {
        padding: 20px;
    }

    .service-card {
        grid-template-columns: 1fr;
    }

    .service-title-btn {
        grid-template-columns: 40px 1fr 22px;
        gap: 12px;
        padding: 18px;
    }

    .service-detail {
        padding: 0 18px 18px;
    }

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

    .contact-list p {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }

    .footer-container {
        width: min(100% - 28px, 1120px);
    }

    .footer-bottom {
        padding: 14px 0;
    }

    .gotop {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
    }
}
