:root {
    --bg-primary: #F6F4EF;
    --bg-secondary: #EBE9E1;
    --bg-card: #FFFFFF;
    --bg-accent: #D4DDD2;
    --text-primary: #1A1A1A;
    --text-secondary: #5A5A5A;
    --text-muted: #8A8A7A;
    --accent: #4A6B5A;
    --accent-light: #6B9B7E;
    --accent-dark: #2E4A3C;
    --highlight: #D4A574;
    --highlight-light: #E8C9A0;
    --border: #D8D5CC;
    --shadow: rgba(26, 26, 26, 0.06);
    --shadow-md: rgba(26, 26, 26, 0.10);
    --radius: 12px;
    --radius-lg: 20px;
    --font-zh: 'Noto Sans TC', sans-serif;
    --font-en: 'DM Sans', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-zh);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(246, 244, 239, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

nav .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

nav .logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--accent-dark);
    letter-spacing: -0.5px;
    text-decoration: none;
}

nav .nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

nav .nav-links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    letter-spacing: 0.2px;
}

nav .nav-links a:hover {
    color: var(--accent);
}

.lang-toggle {
    display: flex;
    background: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.lang-toggle button {
    padding: 4px 12px;
    border: none;
    background: transparent;
    font-size: 0.75rem;
    font-family: var(--font-en);
    font-weight: 600;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s;
}

.lang-toggle button.active {
    background: var(--accent);
    color: white;
}

/* SECTION COMMON */
section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.8;
}

/* HERO */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--bg-accent) 0%, transparent 70%);
    opacity: 0.6;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--highlight-light) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px var(--shadow);
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-light);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.hero h1 .en-sub {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.hero .tagline {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin: 1.5rem 0 2.5rem;
    line-height: 1.9;
    max-width: 560px;
}

.hero .tagline .en {
    display: block;
    font-family: var(--font-en);
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 32px;
    background: var(--accent-dark);
    color: white;
    border: none;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-zh);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(46, 74, 60, 0.25);
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46, 74, 60, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 32px;
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-zh);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(74, 107, 90, 0.04);
}

/* PAIN POINTS */
.pain-section {
    background: var(--accent-dark);
    color: white;
    position: relative;
}

.pain-section .section-label {
    color: var(--highlight-light);
}

.pain-section .section-title {
    color: white;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.pain-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s ease;
}

.pain-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.pain-card .icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pain-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--highlight-light);
}

.pain-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.pain-card .en {
    font-family: var(--font-en);
    font-size: 0.8rem;
    display: block;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px var(--shadow-md);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.service-card .en-title {
    font-family: var(--font-en);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.service-tags span {
    padding: 4px 12px;
    background: var(--bg-secondary);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    margin-top: 1.5rem;
    transition: color 0.2s, gap 0.2s;
}

.service-cta:hover {
    color: var(--accent-dark);
    gap: 0.5rem;
}

/* INDUSTRIES */
.industries-section {
    background: var(--bg-secondary);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.industry-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow);
    border-color: var(--accent);
}

.industry-item .icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.industry-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.industry-item .en {
    font-family: var(--font-en);
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CASE STUDIES */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.cases-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.case-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px var(--shadow-md);
}

.case-header {
    padding: 1.5rem 2rem 1rem;
    border-bottom: 1px solid var(--border);
}

.case-type {
    font-family: var(--font-en);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.case-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.case-body {
    padding: 1.5rem 2rem;
}

.case-body p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.case-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.metric {
    background: var(--bg-primary);
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.metric .value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-dark);
}

.metric .label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ARTICLES */
.articles-section {
    background: var(--bg-secondary);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow);
    border-color: var(--accent);
}

.article-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--bg-accent);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 1rem;
}

.article-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.article-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.article-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--font-en);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 1rem;
}

/* ABOUT */
.about-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.about-photo {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--bg-accent);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.about-photo .placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--accent);
    background: linear-gradient(135deg, var(--bg-accent) 0%, var(--highlight-light) 100%);
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
}

.about-text .en-name {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.about-stat .number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-dark);
}

.about-stat .desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* PROCESS */
.process-section {
    background: var(--bg-secondary);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '→';
    position: absolute;
    right: -1rem;
    top: 2rem;
    font-size: 1.2rem;
    color: var(--text-muted);
}

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

.step-number {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 1rem;
}

.process-step h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
}

.cta-section .section-title {
    color: white;
    font-size: 2.2rem;
}

.cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto 2.5rem;
}

.cta-section .btn-primary {
    background: white;
    color: var(--accent-dark);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cta-section .btn-primary:hover {
    background: var(--highlight-light);
    transform: translateY(-2px);
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.contact-links a:hover {
    color: white;
}

/* FOOTER */
footer {
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    padding: 2rem;
    font-size: 0.8rem;
    font-family: var(--font-en);
}

/* PAGE HERO (for sub-pages) */
.page-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.page-hero .section-label {
    margin-bottom: 1rem;
}

.page-hero .section-title {
    font-size: 2.5rem;
}

.page-hero .section-subtitle {
    margin: 1rem auto 0;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    section {
        padding: 4rem 1.5rem;
    }

    .services-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .process-step::after {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-photo {
        max-width: 200px;
    }

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

    nav .nav-links a:not(.lang-toggle-wrapper) {
        display: none;
    }

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

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

@media (max-width: 480px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* BLOG LIST (editorial style) */
.blog-list {
    margin-top: 2.5rem;
}

.blog-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

.blog-list-item:first-child {
    border-top: 1px solid var(--border);
}

.blog-list-item:hover {
    opacity: 0.6;
}

.blog-tag {
    font-family: var(--font-en);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    background: var(--bg-accent);
    padding: 3px 9px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.blog-item-main {
    flex: 1;
    min-width: 0;
}

.blog-item-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
}

.blog-item-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
    line-height: 1.6;
}

.blog-item-meta {
    font-family: var(--font-en);
    font-size: 0.75rem;
    color: var(--accent);
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 0.2rem;
    font-weight: 600;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    margin-top: 1.75rem;
    transition: color 0.2s, gap 0.2s;
}

.view-all-link:hover {
    color: var(--accent-dark);
    gap: 0.5rem;
}

/* COMPACT SERVICES (homepage list style) */
.services-compact {
    margin-top: 2.5rem;
}

.service-compact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
    cursor: pointer;
}

.service-compact-item:first-child {
    border-top: 1px solid var(--border);
}

.service-compact-item:hover {
    opacity: 0.6;
}

.service-compact-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.service-compact-text {
    flex: 1;
    min-width: 0;
}

.service-compact-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.service-compact-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.15rem;
    line-height: 1.6;
}

.service-compact-arrow {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    flex-shrink: 0;
}

/* RESULTS GRID (compact stats for homepage) */
.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.result-stat .result-value {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 0.35rem;
}

.result-stat .result-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* MINIMAL ABOUT (homepage) */
.about-minimal {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 680px;
}

.about-minimal .about-photo {
    width: 100px;
    height: 100px;
    aspect-ratio: 1;
    border-radius: 50%;
}

.about-minimal .placeholder {
    font-size: 2.5rem;
}

.about-text-minimal h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
}

.about-text-minimal .en-name {
    font-family: var(--font-en);
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 0.9rem;
}

.about-text-minimal p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.85rem;
}

.about-links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.about-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.about-links a:hover {
    color: var(--accent);
}

/* SERVICES OVERVIEW PAGE */
.services-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-minimal {
        grid-template-columns: 80px 1fr;
        gap: 1.25rem;
    }

    .about-minimal .about-photo {
        width: 80px;
        height: 80px;
    }

    .services-overview-grid {
        grid-template-columns: 1fr;
    }

    .blog-list-item {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .blog-item-meta {
        order: 3;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* SERVICE DETAIL PAGES */
.concept-section {
    background: var(--accent-dark);
    color: white;
}

.concept-section .section-label {
    color: var(--highlight-light);
}

.concept-section .section-title {
    color: white;
}

.concept-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.concept-body {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-top: 2.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
}

.concept-body p + p {
    margin-top: 1rem;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}

.compare-card {
    border-radius: var(--radius);
    padding: 1.75rem;
}

.compare-card.is-old {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.75;
}

.compare-card.is-new {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.compare-card h4 {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.compare-card.is-new h4 {
    color: var(--highlight-light);
}

.compare-list {
    list-style: none;
}

.compare-list li {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.compare-list li:last-child {
    border-bottom: none;
}

.compare-list li::before {
    content: '✗';
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.compare-card.is-new .compare-list li {
    color: rgba(255, 255, 255, 0.9);
}

.compare-card.is-new .compare-list li::before {
    content: '✓';
    color: var(--accent-light);
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}

.detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.detail-card:hover {
    border-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--shadow);
}

.detail-card .icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.detail-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.detail-card .en-detail {
    font-family: var(--font-en);
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.detail-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.case-single {
    max-width: 680px;
    margin: 3rem auto 0;
}

/* ARTICLE PAGES */
.article-header-section {
    padding: 8rem 2rem 4rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-tag-label {
    background: var(--accent);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 2rem;
    font-family: var(--font-en);
}

.article-date,
.article-read-time {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-family: var(--font-en);
}

.article-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.25;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    max-width: 800px;
    margin-bottom: 1.25rem;
}

.article-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 680px;
}

.article-body-section {
    padding: 4rem 2rem 6rem;
}

.article-body {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.article-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article-body ul,
.article-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-body li {
    margin-bottom: 0.6rem;
}

.article-body strong {
    color: var(--text-primary);
    font-weight: 700;
}

.article-body blockquote {
    border-left: 3px solid var(--accent);
    padding: 0.75rem 1.25rem;
    margin: 2rem 0;
    background: var(--bg-secondary);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text-primary);
}

.article-body hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2.5rem 0;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 680px;
    margin: 0 auto 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.article-nav a {
    font-size: 0.85rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.article-nav a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .article-header-section {
        padding: 7rem 1.25rem 3rem;
    }
    .article-body-section {
        padding: 2.5rem 1.25rem 4rem;
    }
}

/* LANGUAGE TOGGLE */
/* Chinese mode (default): hide English elements */
body[data-lang="zh"] .lang-en,
body[data-lang="zh"] .en,
body[data-lang="zh"] .en-sub,
body[data-lang="zh"] .en-name,
body[data-lang="zh"] .en-title {
    display: none !important;
}

/* English mode: hide Chinese elements */
body[data-lang="en"] .lang-zh {
    display: none !important;
}
