/* 鹏城易租 */
:root {
    --bg: #f3f5f8;
    --surface: #fff;
    --surface-muted: #eceff4;
    --text: #3a4a5c;
    --text-muted: #66788f;
    --heading: #132238;
    --primary: #1e5aa8;
    --primary-dark: #174a8c;
    --primary-soft: #e6effa;
    --accent: #148f85;
    --accent-dark: #117a72;
    --accent-soft: #e4f5f3;
    --gold: #b8862b;
    --gold-soft: #faf4e8;
    --border: #d8e0eb;
    --shadow: 0 4px 18px rgba(19, 34, 56, 0.06);
    --shadow-lg: 0 18px 40px rgba(19, 34, 56, 0.12);
    --radius: 14px;
    --radius-lg: 20px;
    --header-h: 72px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    line-height: 1.65;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 8px 22px rgba(26, 86, 219, 0.3);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
}

.btn-white {
    background: #fff;
    color: var(--primary-dark);
    box-shadow: var(--shadow);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 0 rgba(20, 32, 51, 0.04);
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 24px;
}

.header-logo img {
    height: 42px;
    width: auto;
}

.header-nav {
    display: none;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.nav-link {
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 10px;
    transition: color 0.2s, background 0.2s;
}

.nav-link:hover,
body:not(:has(:target)) .nav-link[href="#top"],
body:has(#top:target) .nav-link[href="#top"],
body:has(#about:target) .nav-link[href="#about"],
body:has(#property:target) .nav-link[href="#property"],
body:has(#charging:target) .nav-link[href="#charging"],
body:has(#cooperation:target) .nav-link[href="#cooperation"],
body:has(#contact:target) .nav-link[href="#contact"] {
    color: var(--primary);
    background: var(--primary-soft);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    color: var(--heading);
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
}

.menu-toggle .icon-close {
    display: none;
}

.nav-toggle:checked ~ .header-wrap .menu-toggle .icon-open {
    display: none;
}

.nav-toggle:checked ~ .header-wrap .menu-toggle .icon-close {
    display: block;
}

.mobile-nav {
    display: none;
    padding: 8px 10px 20px;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.nav-toggle:checked ~ .mobile-nav {
    display: grid;
    gap: 4px;
}

.mobile-nav .nav-link {
    display: block;
    padding: 12px 14px;
}

@media (min-width: 1024px) {
    .header-nav {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }
}

@media (max-width: 1023px) {
    .header-actions .btn-primary {
        display: none;
    }

    .header:has(.nav-toggle:checked) {
        height: auto;
        background: var(--surface);
        box-shadow: 0 4px 20px rgba(19, 34, 56, 0.1);
    }
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(150deg, #0d1b2a 0%, #163a5f 48%, #145a68 100%);
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 14% 20%, rgba(56, 132, 220, 0.18), transparent 36%),
    radial-gradient(circle at 86% 12%, rgba(20, 143, 133, 0.12), transparent 32%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    display: grid;
    gap: 48px;
    align-items: center;
    padding-top: 88px;
    padding-bottom: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 10px;
    margin-bottom: 24px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #34d399;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.2);
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero h1 span {
    display: block;
    margin-top: 8px;
    background: linear-gradient(90deg, #fff 0%, #a8c8f5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-desc {
    max-width: 540px;
    margin-bottom: 32px;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-trust span,
.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 999px;
}

.hero-trust span {
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust i {
    color: #8ec0ff;
}

.hero-panel {
    padding: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-panel-head span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7ec8c2;
}

.hero-panel-grid {
    display: grid;
    gap: 12px;
}

.hero-panel-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: transform 0.2s, background 0.2s;
}

.hero-panel-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.hero-panel-item i,
.icon-wrap {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
    flex-shrink: 0;
}

.hero-panel-item i {
    background: rgba(96, 165, 250, 0.18);
    color: #bfdbfe;
}

.hero-panel-item.accent i {
    background: rgba(20, 143, 133, 0.22);
    color: #8ee4dc;
}

.hero-panel-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.hero-panel-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.62);
}

@media (min-width: 992px) {
    .hero-inner {
        grid-template-columns: 1.08fr 0.92fr;
    }
}

@media (max-width: 767px) {
    .hero-inner {
        gap: 32px;
        padding-top: 64px;
        padding-bottom: 56px;
    }

    .hero-panel {
        padding: 20px;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

/* Strip & grids */
.home-strip {
    position: relative;
    z-index: 2;
    margin-top: -28px;
    padding-bottom: 8px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.home-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.home-strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.home-strip-item:hover {
    transform: translateY(-2px);
    border-color: #c5d5ef;
    box-shadow: 0 10px 24px rgba(26, 86, 219, 0.1);
}

.home-strip-item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 10px;
    flex-shrink: 0;
}

/* Sections */
.section {
    padding: 88px 0;
}

.section-muted {
    background: var(--surface-muted);
}

.section-cta {
    padding-bottom: 96px;
}

.section-head {
    max-width: 700px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-kicker {
    display: inline-block;
    padding: 6px 14px;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-dark);
    background: var(--primary-soft);
    border: 1px solid rgba(26, 86, 219, 0.12);
    border-radius: 999px;
}

.section-head h2 {
    font-size: clamp(1.85rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--heading);
    margin-bottom: 16px;
}

.section-head p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Cards */
.surface-card {
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s, box-shadow 0.25s;
}

.surface-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.feature-card .icon-wrap {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 20px;
}

.coop-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    font-size: 22px;
    margin-bottom: 0;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--primary);
}

.coop-icon i,
.icon-wrap i,
.biz-visual-icon i {
    display: block;
    line-height: 1;
}

.feature-card .icon-wrap.accent,
.coop-card.accent .coop-icon {
    background: var(--accent-soft);
    color: var(--accent-dark);
}

.feature-card h3,
.coop-card h3,
.step-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 10px;
}

.coop-card h3 {
    font-size: 20px;
    margin-bottom: 0;
}

.feature-card p,
.step-card p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-muted);
}

.pill {
    font-size: 12px;
    font-weight: 600;
}

.product-tags .pill {
    padding: 5px 10px;
    color: var(--primary);
    background: var(--primary-soft);
}

.biz-tag {
    padding: 6px 12px;
    color: var(--accent-dark);
    background: var(--accent-soft);
}

/* Product cards */
.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.product-card-cover {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    font-size: 42px;
    color: #fff;
    background: linear-gradient(135deg, #1e5aa8, #4a8fd4);
}

.product-card:nth-child(2) .product-card-cover {
    background: linear-gradient(135deg, #174a8c, #3a8fc8);
}

.product-card:nth-child(3) .product-card-cover {
    background: linear-gradient(135deg, #1a4578, #4a9eb8);
}

.product-card:nth-child(4) .product-card-cover {
    background: linear-gradient(135deg, #117a72, #2eb8a8);
}

.product-card-body {
    padding: 24px;
}

.product-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 10px;
}

.product-card-body p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Biz blocks */
.biz-block {
    display: grid;
    gap: 32px;
    align-items: center;
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.biz-block + .biz-block {
    margin-top: 24px;
}

.biz-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-dark);
}

.biz-content h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 14px;
}

.biz-content > p {
    margin-bottom: 20px;
    color: var(--text-muted);
    line-height: 1.8;
}

.biz-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.biz-list {
    display: grid;
    gap: 10px;
}

.biz-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.biz-list i {
    margin-top: 4px;
    color: var(--accent);
    flex-shrink: 0;
}

.biz-visual {
    padding: 32px 28px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: var(--radius);
    color: #fff;
    background: linear-gradient(160deg, rgba(17, 74, 68, 0.72), rgba(17, 74, 68, 0.16)),
    linear-gradient(135deg, #117a72, #2eb8a8);
}

.biz-visual.alt {
    padding: 32px 28px;
    min-height: 260px;
    background: linear-gradient(160deg, rgba(19, 34, 56, 0.72), rgba(19, 34, 56, 0.16)),
    linear-gradient(135deg, #1e5aa8, #5a9ce0);
}

.biz-visual-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    font-size: 24px;
}

.biz-visual h4 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.biz-visual p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

/* Cooperation */
.coop-card.accent {
    border-color: #b5e0db;
    background: linear-gradient(180deg, #fff, #f0f9f7);
}

.coop-contact-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 32px;
    padding: 24px 28px;
    background: linear-gradient(135deg, var(--primary-soft), var(--gold-soft));
    border: 1px solid #c5d8f5;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.coop-contact-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 28px;
}

.coop-contact-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--heading);
}

.coop-contact-label i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    color: var(--primary);
    border-radius: 10px;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(26, 86, 219, 0.12);
}

.coop-contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.coop-contact-phone i {
    font-size: 1.1rem;
    color: var(--gold);
}

.coop-contact-phone:hover {
    color: var(--primary);
}

.coop-contact-hint {
    font-size: 13px;
    color: var(--text-muted);
}

.coop-card-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px dashed var(--border);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.coop-card-phone a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: 700;
    transition: color 0.2s;
}

.coop-card-phone a:hover {
    color: var(--primary);
}

.coop-card-phone i {
    color: var(--gold);
}

.coop-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.coop-card li {
    position: relative;
    padding: 12px 0 12px 18px;
    font-size: 14px;
    border-bottom: 1px solid var(--surface-muted);
    line-height: 1.7;
}

.coop-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.coop-card.accent li::before {
    background: var(--accent);
}

.coop-card li:last-child {
    border-bottom: none;
}

/* Steps */
.step-num {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 6px 16px rgba(26, 86, 219, 0.25);
}

/* CTA */
.cta-card {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
    padding: 40px;
    border-radius: var(--radius-lg);
    color: #fff;
    background: linear-gradient(135deg, #132238, #1e5aa8 55%, #117a72);
    box-shadow: 0 20px 44px rgba(30, 90, 168, 0.22);
}

.cta-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.75;
}

.cta-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 18px;
}

.cta-contact a,
.cta-contact span,
.footer-contact a,
.footer-contact span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.cta-contact a,
.cta-contact span {
    color: rgba(255, 255, 255, 0.92);
}

.cta-contact a:hover {
    color: #fff;
}

/* Footer */
.footer {
    padding: 64px 0 28px;
    color: rgba(255, 255, 255, 0.72);
    background: linear-gradient(180deg, #0d1b2a, #091420);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.footer-brand p {
    max-width: 360px;
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.footer-contact {
    display: grid;
    gap: 10px;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-contact i {
    color: #7ec8c2;
}

.footer-links-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.footer-links-group h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.footer-links-group a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
}

.footer-links-group a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    text-align: center;
}

/* 404 */
.page-empty {
    min-height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.page-empty-code {
    font-size: 80px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1;
}

.page-empty h1 {
    font-size: 1.75rem;
    color: var(--heading);
    margin-bottom: 12px;
}

.page-empty p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Msg */
.page-msg {
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.page-msg-card {
    max-width: 520px;
    margin: 0 auto;
    padding: 48px 40px;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.page-msg-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 36px;
}

.page-msg-icon--ok {
    color: #16a34a;
    background: #dcfce7;
}

.page-msg-icon--err {
    color: #dc2626;
    background: #fee2e2;
}

.page-msg-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 28px;
    line-height: 1.55;
}

.page-msg-hint {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

.page-msg-hint span {
    font-weight: 700;
    color: var(--primary);
}

/* Layui fixbar */
.layui-fixbar li {
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.layui-fixbar li.layui-fixbar-top {
    margin-top: 12px;
}

.footer-icp {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-icp:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive */
@media (min-width: 768px) {
    .cta-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 48px;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 992px) {
    .biz-block {
        grid-template-columns: 1.05fr 0.95fr;
        padding: 36px;
    }

    .biz-block.reverse .biz-visual {
        order: -1;
    }
}

@media (max-width: 1023px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .home-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .section {
        padding: 56px 0;
    }

    .section-cta {
        padding-bottom: 64px;
    }

    .surface-card {
        padding: 22px;
    }

    .footer-grid,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .footer-links-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .coop-contact-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 22px;
    }

    .biz-block {
        padding: 20px;
        gap: 20px;
    }

    .biz-visual,
    .biz-visual.alt {
        padding: 24px 22px;
        min-height: 200px;
        justify-content: flex-start;
    }

    .biz-visual-icon {
        margin-bottom: 14px;
    }

    .cta-card {
        padding: 28px 24px;
    }
}

@media (max-width: 575px) {
    .grid-4,
    .home-strip-grid {
        grid-template-columns: 1fr;
    }
}
