/* ========================================================
   Rideence Africa — v2 Tech-Blue Business Minimal
   国内车企对公业务官网调性：扁平、克制、商务、轻量
   适配非洲低速网络：少动画、轻图片
   ======================================================== */

:root {
    /* Brand Palette — Logo Green + Tech NEV Vibe */
    --brand: #3EA237;            /* Logo exact green */
    --brand-dark: #2D7A28;
    --brand-darker: #1F5520;
    --brand-light: #E8F5E8;
    --brand-glow: #4ADE80;       /* Electric glow green */
    --cyan: #06B6D4;             /* Tech cyan accent */
    --ink: #0F1F12;              /* Near-black green */
    --ink-2: #1F2937;
    --muted: #4B5563;
    --muted-2: #6B7280;
    --line: #E5E7EB;
    --line-soft: #F3F4F6;
    --paper: #FFFFFF;
    --paper-2: #F9FAFB;
    --dark-bg: #0A1F0D;          /* Deep forest hero bg */
    --dark-bg-2: #0D2818;
    --shadow-sm: 0 1px 2px rgba(15,23,42,0.04), 0 1px 3px rgba(15,23,42,0.06);
    --shadow-md: 0 4px 6px rgba(15,23,42,0.04), 0 10px 15px rgba(15,23,42,0.05);
    --shadow-lg: 0 10px 25px rgba(15,23,42,0.08);
    --shadow-green: 0 8px 24px rgba(62,162,55,0.25);
    --radius: 8px;
    --radius-lg: 12px;

    /* Legacy aliases */
    --forest: #0A1F0D;
    --forest-2: #0D2818;
    --electric: #3EA237;
    --sun: #3EA237;
    --sky: #06B6D4;
    --grape: #3EA237;

    --font-display: 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-size: 15px;
    line-height: 1.6;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }

/* ===================== NAV ===================== */
#navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all 0.25s;
}
#navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
#navbar.nav-transparent {
    background: transparent;
    border-bottom: 1px solid transparent;
}
#navbar.nav-transparent .logo-text,
#navbar.nav-transparent .nav-links a {
    color: #fff;
}
#navbar.nav-transparent .nav-links a:hover,
#navbar.nav-transparent .nav-links a.active {
    color: #4ADE80;
}
#navbar.nav-transparent .menu-toggle span {
    background: #fff;
}
#navbar.nav-transparent.scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
}
#navbar.nav-transparent.scrolled .logo-text,
#navbar.nav-transparent.scrolled .nav-links a {
    color: var(--ink);
}
#navbar.nav-transparent.scrolled .nav-links a:hover,
#navbar.nav-transparent.scrolled .nav-links a.active {
    color: var(--brand);
}
#navbar.nav-transparent.scrolled .menu-toggle span {
    background: var(--ink);
}
.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink);
}
.logo-img {
    height: 72px;
    width: auto;
    display: block;
    object-fit: contain;
}
.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--ink);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 22px;
    margin: 0;
    padding: 0;
}
.nav-links a {
    text-decoration: none;
    color: var(--ink-2);
    font-size: 13.5px;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--brand);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
/* Language switcher — current language shown; click to reveal the other */
.lang-switcher {
    display: flex;
    align-items: center;
}
.lang-dropdown { position: relative; }
.lang-current {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: var(--brand);
    border-radius: 999px;
    user-select: none;
    transition: filter 0.2s;
}
.lang-current:hover { filter: brightness(1.06); }
.lang-current::-webkit-details-marker { display: none; }
.lang-current .caret {
    font-size: 8px;
    line-height: 1;
    opacity: 0.85;
    transition: transform 0.2s;
}
.lang-dropdown[open] .caret { transform: rotate(180deg); }
.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 116px;
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.16);
    padding: 6px;
    z-index: 60;
}
.lang-item {
    display: block;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    border-radius: 8px;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}
.lang-item:hover { background: var(--line-soft); color: var(--brand); }
.nav-cta {
    background: var(--brand);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}
.nav-cta:hover {
    background: var(--brand-dark);
    color: #fff;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 6px;
}
.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: 0.25s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 30% 40%, #0D2818 0%, #0A1F0D 60%, #06140A 100%);
    padding: 120px 0 60px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    mix-blend-mode: luminosity;
}
/* Tech grid overlay */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(62,162,55,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(62,162,55,0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}
/* Green glow orbs */
.hero-bg::after {
    content: '';
    position: absolute;
    top: -10%; right: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(62,162,55,0.35) 0%, transparent 60%);
    filter: blur(40px);
    pointer-events: none;
}
.hero-glow-orb {
    position: absolute;
    bottom: -15%; left: 10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(6,182,212,0.18) 0%, transparent 60%);
    filter: blur(50px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-text { max-width: 580px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(62,162,55,0.15);
    border: 1px solid rgba(74,222,128,0.3);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    color: #4ADE80;
    margin-bottom: 22px;
    backdrop-filter: blur(10px);
}
.pulse-dot {
    width: 7px; height: 7px;
    background: #4ADE80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ADE80;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    color: #fff;
}
.gradient-text {
    background: linear-gradient(90deg, #4ADE80 0%, #3EA237 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-tagline {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.8);
    margin: 0 0 14px;
    font-weight: 400;
}
.hero-tagline strong { color: #4ADE80; font-weight: 600; }
.hero-motto {
    font-family: var(--font-display);
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    margin: 0 0 20px;
    padding-left: 12px;
    border-left: 3px solid #4ADE80;
}
.hero-motto em { font-style: italic; }
.hero-sub {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.7);
    margin: 0 0 28px;
}
.hero-sub strong { color: #fff; font-weight: 600; }

.hero-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4ADE80 0%, #3EA237 100%);
    color: #fff;
    padding: 12px 22px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 14px rgba(62,162,55,0.3);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #3EA237 0%, #2D7A28 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(62,162,55,0.45);
}
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    padding: 12px 22px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.2s;
    backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    border-color: #4ADE80;
    color: #4ADE80;
    background: rgba(74,222,128,0.1);
}
.btn-green {
    background: var(--green);
    color: #fff;
}
.btn-green:hover { background: #059669; color: #fff; }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat .stat-num {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #4ADE80;
    line-height: 1;
}
.hero-stat .stat-label {
    font-size: 12.5px;
    color: rgba(255,255,255,0.6);
    margin-top: 6px;
}

.hero-visual {
    position: relative;
    height: 460px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #0D2818 0%, #1F5520 100%);
    box-shadow: 0 20px 60px rgba(62,162,55,0.2), 0 0 0 1px rgba(74,222,128,0.2);
    border: 1px solid rgba(74,222,128,0.25);
}
.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}
.hero-visual-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(10,31,13,0.92);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(74,222,128,0.2);
}
.hero-visual-overlay strong {
    display: block;
    color: #4ADE80;
    font-size: 14px;
    font-family: var(--font-display);
}
.hero-visual-overlay span {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

/* ===================== SECTIONS ===================== */
.section {
    padding: 90px 0;
    position: relative;
}
.section-alt { background: linear-gradient(180deg, #F0FDF4 0%, #FFFFFF 100%); }
.section-header {
    max-width: 720px;
    margin-bottom: 48px;
}
.section-header.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand);
    font-weight: 600;
    margin-bottom: 14px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
    color: var(--ink);
}
.section-sub {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--muted);
    max-width: 620px;
}
.section-header.center .section-sub { margin-left: auto; margin-right: auto; }

/* ===================== PAGE HEADER (子页面用) ===================== */
.page-header {
    background: radial-gradient(ellipse at 30% 40%, #0D2818 0%, #0A1F0D 70%, #06140A 100%);
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(62,162,55,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(62,162,55,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}
.page-header::after {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(62,162,55,0.2) 0%, transparent 60%);
    filter: blur(40px);
}
.page-header .container { position: relative; z-index: 1; }
.page-header .eyebrow { color: #4ADE80; }
.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin: 0 0 16px;
    color: #fff;
    letter-spacing: -0.02em;
}
.page-header p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 640px;
    margin: 0 auto;
}
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: #4ADE80; }

/* ===================== SOLUTION CARDS (三大业务入口) ===================== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.solution-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}
.solution-card.featured {
    background: linear-gradient(135deg, #3EA237 0%, #2D7A28 100%);
    color: #fff;
    border-color: #4ADE80;
    box-shadow: 0 8px 32px rgba(62,162,55,0.3);
}
.solution-card.featured .sc-title,
.solution-card.featured .sc-desc,
.solution-card.featured .sc-list li,
.solution-card.featured .sc-tag {
    color: #fff;
}
.solution-card.featured .sc-list li::before { background: var(--green-light); }
.solution-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand);
}
.sc-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
    background: var(--brand-light);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.solution-card.featured .sc-tag {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.sc-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius);
    background: var(--brand-light);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.solution-card.featured .sc-icon {
    background: rgba(255,255,255,0.15);
    color: #fff;
}
.sc-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--ink);
}
.sc-desc {
    font-size: 0.93rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 18px;
}
.sc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}
.sc-list li {
    font-size: 0.88rem;
    color: var(--ink-2);
    padding: 6px 0;
    padding-left: 18px;
    position: relative;
}
.sc-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 13px;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--brand);
}
.sc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--brand);
    text-decoration: none;
}
.solution-card.featured .sc-link { color: #fff; }
.sc-link:hover { gap: 10px; }

/* ===================== PILLARS (五位一体 - 兼容旧组件) ===================== */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.pillar {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    position: relative;
    transition: all 0.25s;
    overflow: hidden;
}
.pillar::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}
.pillar:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand);
}
.pillar:hover::before { transform: scaleX(1); }
.pillar-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius);
    background: var(--brand-light);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.pillar-num {
    position: absolute;
    top: 20px; right: 22px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--brand);
    opacity: 0.5;
}
.pillar h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin: 0 0 10px;
    color: var(--ink);
    font-weight: 600;
}
.pillar p {
    font-size: 0.86rem;
    line-height: 1.55;
    color: var(--muted);
    margin: 0 0 14px;
}
.pillar p strong { color: var(--ink); }
.pillar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--line);
    padding-top: 12px;
}
.pillar-list li {
    font-size: 0.82rem;
    color: var(--ink-2);
    padding: 4px 0;
    padding-left: 14px;
    position: relative;
}
.pillar-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 11px;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--brand);
}

/* ===================== FLEET CARDS (车型展厅 - 双CTA) ===================== */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.fleet-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
}
.fleet-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand);
}
.fleet-visual {
    background: linear-gradient(135deg, #F9FAFB 0%, var(--brand-light) 100%);
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    position: relative;
    overflow: hidden;
}
.fleet-svg {
    width: 75%;
    max-width: 220px;
}
.fleet-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.fleet-info {
    padding: 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.fleet-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
    background: var(--brand-light);
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
    align-self: flex-start;
}
.fleet-info h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin: 0 0 6px;
    color: var(--ink);
}
.fleet-specs {
    display: flex;
    gap: 14px;
    margin: 8px 0 12px;
    font-size: 12px;
    color: var(--muted);
}
.fleet-specs span { display: inline-flex; align-items: center; gap: 4px; }
.fleet-info p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.55;
    margin: 0 0 16px;
    flex: 1;
}
.fleet-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: auto;
}
.fleet-cta .btn-primary,
.fleet-cta .btn-ghost {
    padding: 9px 12px;
    font-size: 12.5px;
    justify-content: center;
}

/* ===================== FINANCIAL COMPARISON (金融方案对比) ===================== */
.financial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 48px;
}
.fin-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.25s;
    position: relative;
}
.fin-card.recommended {
    border-color: var(--brand);
    border-width: 2px;
    box-shadow: var(--shadow-md);
}
.fin-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.fin-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
}
.fin-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 8px;
}
.fin-subtitle {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0 0 22px;
}
.fin-price {
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: 22px;
}
.fin-price .price-label {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 4px;
}
.fin-price .price-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
}
.fin-price .price-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}
.fin-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.fin-features li {
    font-size: 0.88rem;
    color: var(--ink-2);
    padding: 8px 0;
    padding-left: 26px;
    position: relative;
    border-bottom: 1px solid var(--line-soft);
}
.fin-features li:last-child { border-bottom: 0; }
.fin-features li::before {
    content: '✓';
    position: absolute;
    left: 0; top: 8px;
    color: var(--green);
    font-weight: 700;
}

/* ===================== ABOUT / GENERAL CONTENT ===================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: start;
}
.about-text .lead {
    font-size: 1.15rem;
    line-height: 1.55;
    color: var(--ink);
    margin: 0 0 20px;
}
.about-text p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--muted);
    margin: 0 0 16px;
}
.about-text strong { color: var(--ink); font-weight: 600; }

.about-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.about-card-photo {
    height: 150px;
    overflow: hidden;
    position: relative;
    background: var(--brand-light);
}
.about-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--ink);
    padding: 20px 26px 14px;
    border-bottom: 1px solid var(--line);
}
.about-card-header svg { color: var(--brand); }
.about-card .loop-list,
.about-card .loop-arrow {
    margin: 0 26px 18px;
}
.loop-list {
    list-style: none;
    padding: 16px 0 0;
}
.loop-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 0.92rem;
    color: var(--muted);
}
.loop-list li:last-child { border-bottom: 0; }
.loop-list strong {
    color: var(--ink);
    font-family: var(--font-display);
    display: inline-block;
    min-width: 70px;
}
.loop-arrow {
    font-size: 12.5px;
    color: var(--brand);
    font-weight: 600;
    text-align: center;
    padding: 10px;
    background: var(--brand-light);
    border-radius: var(--radius);
}

/* ===================== CHARGING ===================== */
.charging-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.charging-text .lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--ink);
    margin: 0 0 24px;
}
.charging-text .lead strong { color: var(--brand); }
.charging-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.charging-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 0.95rem;
    color: var(--muted);
}
.charging-features li:last-child { border-bottom: 0; }
.charging-features strong { color: var(--ink); font-weight: 600; display: block; }
.feature-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    margin-top: 7px;
}

.charging-visual { position: relative; }
.charging-map {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, #0D2818 0%, #1F5520 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(74,222,128,0.2);
}
.map-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
}
.map-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}
.map-pin::before {
    content: '';
    width: 10px; height: 10px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
}
.map-pin span {
    font-size: 11px;
    color: #fff;
    margin-top: 6px;
    font-weight: 600;
}

.charging-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}
.cs-item {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px 12px;
    text-align: center;
}
.cs-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--brand);
    line-height: 1;
}
.cs-label {
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 5px;
}
.charging-jv {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--green-light);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius);
}
.jv-badge {
    background: var(--green);
    color: #fff;
    width: 36px; height: 36px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 12px;
    flex-shrink: 0;
}
.charging-jv strong {
    display: block;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 0.94rem;
}
.charging-jv p {
    margin: 2px 0 0;
    font-size: 0.82rem;
    color: var(--muted);
}

/* ===================== ASSEMBLY ===================== */
.section-assembly {
    background: radial-gradient(ellipse at 30% 40%, #0D2818 0%, #0A1F0D 70%, #06140A 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.assembly-bg-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.assembly-bg-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
}
.section-assembly .container { position: relative; z-index: 1; }
.section-assembly .eyebrow { color: var(--green-light); }
.section-assembly .section-title { color: #fff; }
.section-assembly .section-sub { color: rgba(255,255,255,0.7); }

.assembly-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 24px;
    margin-bottom: 32px;
}
.assembly-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.25s;
}
.assembly-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--green);
}
.assembly-card-featured {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.18) 0%, rgba(16, 185, 129, 0.12) 100%);
    border-color: rgba(0, 102, 255, 0.4);
}
.ac-phase {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-light);
    padding: 4px 12px;
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 999px;
    margin-bottom: 20px;
}
.assembly-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin: 0 0 6px;
    color: #fff;
}
.ac-location {
    color: var(--green-light);
    font-size: 0.88rem;
    margin: 0 0 16px;
    font-weight: 500;
}
.assembly-card > p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    font-size: 0.94rem;
    margin: 0 0 22px;
}
.assembly-card > p strong { color: #fff; }
.ac-stats {
    display: flex;
    gap: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.ac-stats > div { display: flex; flex-direction: column; }
.ac-stats strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: #fff;
    line-height: 1;
}
.ac-stats span {
    font-size: 11.5px;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
}
.assembly-banner {
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: var(--radius);
    padding: 22px 28px;
}
.banner-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.6;
}
.banner-text strong { color: var(--green-light); font-weight: 600; }

/* ===================== PARTNERS ===================== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.partner-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 22px;
    transition: all 0.2s;
}
.partner-card:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow-sm);
}
.partner-card-oem {
    background: linear-gradient(135deg, var(--brand-light) 0%, var(--green-light) 100%);
    border-color: rgba(0, 102, 255, 0.2);
    border-style: dashed;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-divider {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand);
    text-align: center;
}
.partner-icon {
    font-size: 28px;
    margin-bottom: 12px;
    line-height: 1;
}
.partner-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin: 0 0 6px;
    color: var(--ink);
}
.partner-card p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
    margin: 0 0 12px;
}
.partner-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--brand);
    background: var(--brand-light);
    padding: 3px 9px;
    border-radius: 999px;
}

/* ===================== IMPACT ===================== */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 48px;
}
.impact-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    transition: all 0.2s;
}
.impact-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand);
}
.impact-num {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-weight: 700;
    color: var(--brand);
    line-height: 1;
    margin-bottom: 12px;
}
.impact-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}
.impact-quote {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 44px 32px;
    background: linear-gradient(135deg, #0D2818 0%, #1F5520 100%);
    border-radius: var(--radius-lg);
    color: #fff;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(74,222,128,0.2);
}
.impact-quote-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}
.impact-quote blockquote,
.impact-quote cite {
    position: relative;
    z-index: 1;
}
.impact-quote blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1.5;
    margin: 0 0 16px;
    font-weight: 500;
}
.impact-quote cite {
    font-style: normal;
    color: var(--green-light);
    font-size: 0.92rem;
    font-weight: 500;
}

/* ===================== CONTACT ===================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: start;
}
.contact-text .lead {
    font-size: 1.1rem;
    color: var(--ink);
    line-height: 1.6;
    margin: 0 0 28px;
}
.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.channel {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.channel:last-child { border-bottom: 0; }
.channel svg {
    color: var(--brand);
    flex-shrink: 0;
    margin-top: 2px;
}
.channel strong {
    display: block;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 0.94rem;
}
.channel p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}
.contact-form {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper-2);
    font-family: inherit;
    font-size: 0.93rem;
    color: var(--ink);
    transition: all 0.2s;
    margin-bottom: 12px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}
.contact-form textarea {
    resize: vertical;
    min-height: 90px;
}
.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--muted);
    margin: 14px 0 0;
}

/* ===================== MAP EMBED ===================== */
.map-embed {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-top: 28px;
}
.map-embed iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

/* ===================== FOOTER ===================== */
.footer {
    background: radial-gradient(ellipse at 30% 0%, #0D2818 0%, #0A1F0D 60%, #060F08 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 56px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: #fff; }
.footer-slogan-main {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.footer-slogan-desc {
    font-size: 0.85rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.7);
    margin: 0 0 14px;
    max-width: 360px;
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 12px;
    max-width: 360px;
}
.footer-meta {
    font-size: 0.83rem;
    color: var(--green-light) !important;
    letter-spacing: 0.04em;
}
.footer-col h5 {
    font-family: var(--font-display);
    color: #fff;
    font-size: 0.92rem;
    margin: 0 0 16px;
    font-weight: 600;
}
.footer-col a {
    display: block;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.88rem;
    padding: 4px 0;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--green-light); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 22px;
    font-size: 0.83rem;
}
.footer-tagline { color: var(--green-light); }

/* ===================== PARTNER CATEGORIES & FORM PRIVACY ===================== */
.partner-cat { font-family: 'Noto Sans SC', 'Segoe UI', sans-serif; font-size: 1.15rem; font-weight: 600; color: var(--brand); margin: 36px 0 18px; padding-left: 14px; border-left: 3px solid var(--brand); }
.form-privacy { font-size: 0.8rem; color: #6B7280; margin-top: 12px; line-height: 1.5; }

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.25s;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    color: #fff;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}
.whatsapp-float svg { width: 30px; height: 30px; }

/* ===================== REVEAL ANIMATION (克制) ===================== */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: var(--reveal-delay, 0ms);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
    .nav-links, .nav-cta { display: none; }
    .nav-slogan { display: none; }
    .menu-toggle { display: flex; }
    .nav-right { gap: 8px; }
    .nav-container { padding: 14px 24px; }
    .logo-img { height: 60px; }
    .logo-text { font-size: 20px; }
    .nav-links.mobile-open {
        display: flex;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        padding: 20px 28px;
        gap: 14px;
        border-bottom: 1px solid var(--line);
        backdrop-filter: blur(12px);
    }
    .nav-links.mobile-open a { font-size: 15px; padding: 6px 0; }
}

@media (max-width: 1024px) {
    .pillars-grid { grid-template-columns: repeat(3, 1fr); }
    .fleet-grid { grid-template-columns: repeat(2, 1fr); }
    .solutions-grid { grid-template-columns: 1fr; }
    .financial-grid { grid-template-columns: 1fr; }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .charging-layout { grid-template-columns: 1fr; gap: 36px; }
    .assembly-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .hero-content { grid-template-columns: 1fr; gap: 36px; }
    .hero-visual { height: 360px; }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .hero { min-height: auto; padding: 100px 0 48px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .pillars-grid { grid-template-columns: 1fr; }
    .fleet-grid { grid-template-columns: 1fr; }
    .impact-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .charging-stats { grid-template-columns: 1fr 1fr 1fr; }
    .ac-stats { flex-wrap: wrap; gap: 14px; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero-cta-group { flex-direction: column; }
    .hero-cta-group .btn-primary,
    .hero-cta-group .btn-ghost { width: 100%; justify-content: center; }
    .nav-container { padding: 12px 20px; }
    .charging-stats { grid-template-columns: 1fr; }
    .fleet-cta { grid-template-columns: 1fr; }
}

/* ============== LEGAL PAGES (Privacy / Terms) ============== */
.legal-page { padding-top: 96px; }
.legal-doc {
    max-width: 820px;
    margin: 0 auto;
    padding: 48px 0 24px;
}
.legal-doc .eyebrow { display: inline-block; }
.legal-doc h1.legal-title {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--ink);
    margin: 14px 0 8px;
}
.legal-doc .legal-updated {
    color: var(--muted-2);
    font-size: 13px;
    margin-bottom: 28px;
}
.legal-doc .legal-note {
    background: var(--brand-light);
    border: 1px solid var(--line);
    border-left: 3px solid var(--brand);
    border-radius: var(--radius);
    padding: 14px 18px;
    font-size: 14px;
    color: var(--ink-2);
    margin-bottom: 32px;
}
.legal-doc h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin: 34px 0 12px;
    scroll-margin-top: 100px;
}
.legal-doc h2 .sec-num {
    color: var(--brand);
    font-weight: 700;
    margin-right: 10px;
}
.legal-doc p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 14px;
}
.legal-doc ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}
.legal-doc ul li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
}
.legal-doc ul li::before {
    content: "";
    position: absolute;
    left: 0; top: 10px;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--brand);
}
.legal-doc a.inline-link {
    color: var(--brand-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-doc strong { color: var(--ink-2); font-weight: 600; }
.legal-toc {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin: 0 0 32px;
}
.legal-toc h3 { font-size: 14px; color: var(--muted-2); margin: 0 0 12px; text-transform: uppercase; letter-spacing: .04em; }
.legal-toc a { display: block; color: var(--ink-2); font-size: 14px; padding: 4px 0; text-decoration: none; }
.legal-toc a:hover { color: var(--brand-dark); }
.legal-doc .legal-contact {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin-top: 28px;
    font-size: 15px;
    color: var(--ink-2);
    line-height: 1.7;
}
.legal-doc .legal-contact strong { color: var(--ink); }
@media (max-width: 640px) {
    .legal-doc h1.legal-title { font-size: 27px; }
}

/* ============== TRUSTED-BY STRIP ============== */
.trust-strip {
    background: #fff;
    padding: 36px 0;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}
.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px 40px;
    flex-wrap: wrap;
}
.trust-label {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9CA3AF;
    font-weight: 600;
    flex-shrink: 0;
}
.trust-logos {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
}
.trust-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
    white-space: nowrap;
    transition: color .2s, transform .2s;
}
.trust-logo:hover { color: var(--brand-dark); transform: translateY(-1px); }
.tm {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: linear-gradient(135deg, #0D2818, #1F5520);
    color: #4ADE80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
}
@media (max-width: 640px) {
    .trust-strip-inner { gap: 18px; flex-direction: column; }
    .trust-label { letter-spacing: 0.14em; }
}

/* ============== NEWS PAGE ============== */
.news-featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 36px;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    margin-bottom: 56px;
}
.news-featured-visual {
    position: relative;
    min-height: 360px;
    background: linear-gradient(135deg, var(--c1, #0D2818), var(--c2, #00D96B));
}
.news-featured-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    mix-blend-mode: luminosity;
    opacity: 0.85;
}
.news-featured-body {
    padding: 40px 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.news-featured-body h2 {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin: 4px 0 4px;
}
.news-featured-body p {
    color: var(--ink-2);
    line-height: 1.7;
    font-size: 15px;
}
.news-featured-body .btn-ghost { align-self: flex-start; margin-top: 8px; }
.news-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--brand);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
}
.news-badge-featured {
    background: var(--brand);
    color: #fff;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 64px;
}
.news-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
}
.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.10);
}
.news-card-visual {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--c1, #0D2818), var(--c2, #00D96B));
    overflow: hidden;
}
.news-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    mix-blend-mode: luminosity;
    opacity: 0.85;
}
.news-card-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.news-card-body h3 {
    font-family: var(--font-display);
    font-size: 17px;
    line-height: 1.4;
    color: var(--ink);
    margin: 0;
}
.news-card-body p {
    color: var(--ink-2);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}
.news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}
.news-tag {
    display: inline-block;
    background: var(--line-soft);
    color: var(--brand);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
}
.news-date {
    font-size: 12px;
    color: var(--ink-3, #6B7280);
    font-weight: 500;
}
.news-more {
    margin-top: 6px;
    color: var(--brand);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    align-self: flex-start;
    transition: color 0.2s;
}
.news-more:hover { color: var(--brand-dark, #082015); }
.news-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(135deg, #0D2818 0%, #0A1F0D 100%);
    color: #fff;
    padding: 36px 40px;
    border-radius: 20px;
    flex-wrap: wrap;
}
.news-cta h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin: 0 0 6px;
    color: #fff;
}
.news-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    max-width: 540px;
}
@media (max-width: 900px) {
    .news-featured { grid-template-columns: 1fr; }
    .news-featured-visual { min-height: 240px; }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .news-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
    .news-grid { grid-template-columns: 1fr; }
    .news-featured-body { padding: 28px 24px 24px; }
    .news-featured-body h2 { font-size: 22px; }
}
