:root {
    --bg: #f6fbf7;
    --surface: #ffffff;
    --surface-soft: #edf8f0;
    --text: #172033;
    --muted: #607086;
    --line: #dceee2;
    --primary: #14914f;
    --primary-dark: #0f6f3d;
    --primary-soft: #dff5e7;
    --accent: #f4b740;
    --shadow: 0 18px 50px rgba(28, 83, 52, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(20, 145, 79, 0.1), transparent 34rem),
        linear-gradient(180deg, #fbfffc 0%, var(--bg) 42%, #ffffff 100%);
}

a {
    color: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(220, 238, 226, 0.9);
    backdrop-filter: blur(18px);
}

.site-nav {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 0.08em;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 15px;
    border-radius: 999px;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 650;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-dark);
    background: var(--primary-soft);
}

.nav-links a:hover {
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    color: var(--primary-dark);
    cursor: pointer;
}

.hero {
    padding: 88px 0 58px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.72fr);
    gap: 56px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.hero h1,
.page-hero h1 {
    max-width: 780px;
    /*color: var(--text);*/
    color: #016d73;
    font-size: clamp(2.3rem, 5vw, 4.7rem);
    line-height: 1.08;
    font-weight: 850;
}

.hero p,
.page-hero p {
    max-width: 660px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), #45bb72);
    box-shadow: 0 14px 26px rgba(20, 145, 79, 0.24);
    color: #ffffff;
    text-decoration: none;
    font-weight: 750;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(20, 145, 79, 0.3);
}

.btn-secondary {
    background: #ffffff;
    color: var(--primary-dark);
    border: 1px solid var(--line);
    box-shadow: none;
}

.hero-panel {
    position: relative;
    min-height: 420px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(235, 250, 240, 0.88)),
        linear-gradient(135deg, rgba(20, 145, 79, 0.18), rgba(244, 183, 64, 0.18));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.04);
}

.hero-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(18, 94, 52, 0.3));
}

.panel-orbit {
    position: absolute;
    inset: 42px;
    z-index: 1;
    border: 1px dashed rgba(20, 145, 79, 0.35);
    border-radius: 50%;
}

.panel-orbit::before,
.panel-orbit::after {
    content: "";
    position: absolute;
    width: 84px;
    height: 84px;
    border-radius: 24px;
    background: rgba(63,189,126,0.77);
	
    box-shadow: 0 14px 30px rgba(28, 83, 52, 0.12);
}

.panel-orbit::before {
    top: 14px;
    right: 20px;
}

.panel-orbit::after {
    left: 10px;
    bottom: 24px;
}

.hero-stat {
    position: relative;
    z-index: 2;
    width: 190px;
    padding: 22px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(28, 83, 52, 0.12);
}

.hero-stat strong {
    display: block;
    color: var(--primary);
    font-size: 4.5rem;
    line-height: 0.9;
}

.hero-stat span {
    color: var(--muted);
    font-weight: 700;
}

.hero-checklist {
    position: absolute;
    right: 28px;
    bottom: 30px;
    z-index: 2;
    width: min(260px, calc(100% - 56px));
    padding: 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 36px rgba(28, 83, 52, 0.12);
}

.hero-checklist p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    color: var(--text);
    font-weight: 700;
}

.hero-checklist i {
    color: var(--primary);
}

.notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 20px 0;
    padding: 18px 20px;
    border: 1px solid rgba(244, 183, 64, 0.4);
    border-radius: 8px;
    background: #fff8e8;
    color: #775719;
}

.notice.compact {
    margin-top: 34px;
}

.notice i {
    margin-top: 5px;
    color: var(--accent);
}

.section {
    padding: 76px 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(237, 248, 240, 0.9), rgba(255, 255, 255, 0.9));
}

.section-title {
    max-width: 680px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-title.align-left {
    margin: 0;
    text-align: left;
}

.section-title h2 {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.18;
}

.section-title p {
    margin-top: 14px;
    color: var(--muted);
}

.about-highlight {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 38px;
    align-items: center;
}

.about-card,
.content-section,
.contact-aside,
.card,
.mini-card,
.knowledge-block {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.about-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
    gap: 34px;
    padding: 28px;
    align-items: stretch;
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 285px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 14px 30px rgba(28, 83, 52, 0.12);
}

.about-card .experience {
    position: absolute;
    left: 52px;
    bottom: 48px;
    padding: 14px 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 34px rgba(28, 83, 52, 0.18);
    backdrop-filter: blur(12px);
}

.about-card > div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 8px 10px 0;
}

.experience {
    color: var(--primary);
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 850;
    line-height: 0.9;
}

.experience-label {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.14em;
}

.about-card h3 {
    margin: 10px 0 12px;
    font-size: 1.4rem;
}

.about-card p,
.card p,
.mini-card p,
.contact-aside p {
    color: var(--muted);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 800;
}

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

.card {
    overflow: hidden;
    padding: 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-media {
    width: calc(100% + 56px);
    height: 150px;
    display: block;
    margin: -28px -28px 24px;
    object-fit: cover;
    border-bottom: 1px solid var(--line);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 54px rgba(28, 83, 52, 0.15);
}

.card-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 8px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 1.55rem;
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.22rem;
}

.page-hero {
    padding: 70px 0 56px;
    background:
        linear-gradient(135deg, rgba(223, 245, 231, 0.9), rgba(255, 255, 255, 0.6)),
        radial-gradient(circle at right, rgba(244, 183, 64, 0.18), transparent 28rem);
    border-bottom: 1px solid var(--line);
}

.content-section {
    padding: clamp(26px, 5vw, 54px);
}

.content-hero-image,
.legal-image {
    width: 100%;
    height: 280px;
    display: block;
    margin-bottom: 30px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 18px 38px rgba(28, 83, 52, 0.12);
}

.legal-image {
    height: 220px;
}

.content-section h1,
.content-section h2,
.content-section h3 {
    color: var(--text);
    line-height: 1.3;
}

.content-section h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px;
    font-size: 1.45rem;
}

.content-section h2:not(:first-child) {
    margin-top: 36px;
}

.content-section h2 i {
    color: var(--primary);
}

.content-section h3 {
    margin: 20px 0 8px;
    font-size: 1.12rem;
}

.content-section p {
    margin-bottom: 16px;
    color: var(--muted);
}

.content-section ul {
    display: grid;
    gap: 12px;
    margin: 16px 0 22px;
    list-style: none;
}

.content-section li {
    position: relative;
    padding-left: 24px;
    color: var(--muted);
}

.content-section li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.content-section strong {
    color: #314256;
}

.content-section a {
    color: var(--primary-dark);
    font-weight: 750;
    text-decoration: none;
}

.content-section a:hover {
    text-decoration: underline;
}

.feature-grid,
.knowledge-grid {
    display: grid;
    gap: 18px;
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 32px;
}

.mini-card {
    padding: 24px;
    box-shadow: none;
}

.mini-card i {
    color: var(--primary);
    font-size: 1.5rem;
}

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

.knowledge-block {
    padding: 28px;
    overflow: hidden;
    box-shadow: none;
}

.knowledge-image {
    width: calc(100% + 56px);
    height: 175px;
    display: block;
    margin: -28px -28px 24px;
    object-fit: cover;
    border-bottom: 1px solid var(--line);
}

.knowledge-block h2:not(:first-child),
.knowledge-block h2 {
    margin-top: 0;
}

.legal {
    max-width: 900px;
    margin: 0 auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 22px;
    align-items: stretch;
}

.contact-card h2 {
    margin-bottom: 26px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 8px;
    background: var(--surface-soft);
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
}

.contact-item i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 8px;
    background: var(--surface);
    color: var(--primary);
}

.contact-aside {
    padding: 30px;
    background: linear-gradient(160deg, var(--primary-dark), #1c9d60);
    color: #ffffff;
    overflow: hidden;
}

.aside-image {
    width: calc(100% + 60px);
    height: 170px;
    display: block;
    margin: -30px -30px 26px;
    object-fit: cover;
    opacity: 0.92;
}

.contact-aside .eyebrow,
.contact-aside p {
    color: rgba(255, 255, 255, 0.78);
}

.contact-aside h3 {
    margin-bottom: 14px;
    font-size: 1.55rem;
    line-height: 1.25;
}

.site-footer {
    padding: 38px 0;
    border-top: 1px solid var(--line);
    background: #ffffff;
    color: var(--muted);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-links a {
    padding: 8px 13px;
    border-radius: 999px;
    color: var(--muted);
    text-decoration: none;
    font-weight: 650;
}

.footer-links a:hover {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.footer-info {
    font-size: 0.92rem;
}

.footer-info p + p {
    margin-top: 4px;
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    padding: 20px max(20px, calc((100% - 960px) / 2));
    border: 1px solid rgba(220, 238, 226, 0.6);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 60px rgba(28, 83, 52, 0.18);
    backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.26s ease, transform 0.26s ease;
}

.cookie-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner__text {
    display: grid;
    gap: 4px;
    max-width: 820px;
    color: var(--muted);
    font-size: 0.94rem;
    text-align: left;
}

.cookie-banner__text strong {
    color: var(--text);
    font-size: 1rem;
}

.cookie-banner__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-banner__link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    color: var(--primary-dark);
    font-weight: 800;
    text-decoration: none;
}

.cookie-banner__link:hover {
    text-decoration: underline;
}

.cookie-banner__button {
    min-width: 108px;
    min-height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), #45bb72);
    color: #ffffff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(20, 145, 79, 0.22);
}

.cookie-banner__button--secondary {
    border: 1px solid var(--line);
    background: #ffffff;
    color: var(--primary-dark);
    box-shadow: none;
}

.cookie-banner__button:hover {
    transform: translateY(-1px);
}

@media (max-width: 960px) {
    .hero-grid,
    .about-highlight,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        min-height: 340px;
    }

    .health-cards,
    .feature-grid,
    .knowledge-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-aside {
        min-height: auto;
    }
}

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

    .site-nav {
        min-height: 66px;
        position: relative;
        justify-content: center;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }

    .mobile-menu-toggle {
        position: absolute;
        left: 0;
        top: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transform: translateY(-50%);
    }

    .nav-links {
        position: absolute;
        top: 66px;
        left: -10px;
        right: -10px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #ffffff;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        justify-content: center;
    }

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

    .hero h1,
    .page-hero h1 {
        font-size: 2.35rem;
    }

    .hero-panel {
        min-height: 310px;
        padding: 20px;
    }

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

    .about-image {
        height: 220px;
        min-height: 0;
    }

    .about-card .experience {
        position: static;
        width: max-content;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .about-card > div:last-child {
        padding: 0;
    }

    .health-cards,
    .feature-grid,
    .knowledge-grid {
        grid-template-columns: 1fr;
    }

    .content-section h2 {
        align-items: flex-start;
    }

    .contact-item {
        align-items: flex-start;
    }

    .content-hero-image,
    .legal-image {
        height: 210px;
    }

    .cookie-banner {
        gap: 14px;
        padding: 16px 14px;
    }

    .cookie-banner__actions {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
    }

    .cookie-banner__link {
        min-height: 34px;
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .cookie-banner__button {
        min-width: 72px;
        min-height: 34px;
        padding: 0 12px;
        font-size: 0.82rem;
    }
}

@media (max-width: 440px) {
    .logo {
        font-size: 1.28rem;
    }

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

    .btn {
        width: 100%;
    }

    .hero-checklist {
        left: 20px;
        right: 20px;
        width: auto;
    }
}
