/* --- RESET & GLOBAL VARIABLES --- */
        :root {
            --primary: #0F172A;      /* Deep Navy */
            --text-dark: #1E293B;    /* Charcoal */
            --text-light: #64748B;   /* Slate */
            --bg-white: #FFFFFF;
            --bg-offwhite: #F8FAFC;
            --accent: #C2A376;       /* Muted Gold */
            --accent-light: #D4B891;
            --border: #E2E8F0;
            --container: 1400px;
            --header-height: 80px;
            --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
            --shadow-md: 0 4px 24px rgba(15, 23, 42, 0.08);
            --shadow-lg: 0 12px 48px rgba(15, 23, 42, 0.12);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html { scroll-behavior: smooth; }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            background-color: var(--bg-white);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            color: var(--primary);
            font-weight: 600;
            line-height: 1.2;
        }

        h2 {
            font-size: 3rem;
            margin-bottom: 2.5rem;
            text-align: left;
            letter-spacing: -0.02em;
        }

        h3 {
            font-size: 1.5rem;
            letter-spacing: -0.01em;
        }

        p { 
            margin-bottom: 1.5rem; 
            color: var(--text-light);
            font-size: 1.05rem;
        }

        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        
        ul { list-style: none; }

        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 60px;
        }

        /* --- ANIMATIONS --- */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes shimmer {
            0% { background-position: -1000px 0; }
            100% { background-position: 1000px 0; }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        /* --- BUTTONS --- */
        .btn {
            display: inline-block;
            padding: 16px 36px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.8px;
            border-radius: 6px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: none;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .btn:hover::before {
            transform: translateX(100%);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 100%);
            color: white;
            border: none;
            box-shadow: 0 4px 16px rgba(15, 23, 42, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(15, 23, 42, 0.3);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
        }

        section { 
            padding: 7rem 0;
            position: relative;
        }
        
        section:nth-child(even) { 
            background: linear-gradient(to bottom, var(--bg-offwhite), #ffffff);
        }

        /* --- HEADER --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            height: var(--header-height);
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        header.scrolled {
            box-shadow: var(--shadow-md);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 60px;
        }

        .logo {
            font-family: 'Inter', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: -0.5px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .logo:hover {
            color: var(--accent);
        }

        nav {
            display: flex;
            align-items: center;
            gap: 0;
        }

        nav ul {
            display: flex;
            gap: 32px;
            font-size: 0.9rem;
            font-weight: 500;
            margin: 0;
            padding: 0;
        }

        nav ul li a {
            position: relative;
            padding: 8px 0;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        nav ul li a:hover { 
            color: var(--accent); 
        }

        .mobile-toggle { display: none; }

        /* --- LANGUAGE SWITCHER --- */
        .lang-switcher {
            display: flex;
            gap: 6px;
            align-items: center;
            margin-left: 30px;
            padding-left: 30px;
            border-left: 1px solid var(--border);
        }

        .lang-btn {
            background: none;
            border: none;
            color: var(--text-dark);
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            padding: 8px 14px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .lang-btn:hover {
            background: var(--bg-offwhite);
            transform: translateY(-1px);
        }

        .lang-btn.active {
            background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 100%);
            color: white;
            box-shadow: var(--shadow-sm);
        }

        /* Hide inactive language content */
        [lang]:not([lang="en"]) { display: none; }
        body[data-lang="zh"] [lang="en"] { display: none; }
        body[data-lang="zh"] [lang="zh"] { display: block; }
        body[data-lang="zh"] [lang="zh"].inline { display: inline; }
        body[data-lang="en"] [lang="en"] { display: block; }
        body[data-lang="en"] [lang="zh"] { display: none; }

        /* --- HERO --- */
        #hero {
            padding-top: calc(var(--header-height) + 100px);
            padding-bottom: 120px;
            text-align: left;
            background: linear-gradient(180deg, #ffffff 0%, var(--bg-offwhite) 100%);
            position: relative;
            overflow: hidden;
        }

        #hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: -10%;
            width: 60%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(194, 163, 118, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

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

        #hero h1 { 
            font-size: 4.5rem; 
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
            line-height: 1.1;
            background: linear-gradient(135deg, var(--primary) 0%, #334155 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .tagline {
            font-size: 1.5rem;
            max-width: 100%;
            margin: 0 0 1.5rem 0;
            color: var(--text-dark);
            font-weight: 500;
            line-height: 1.6;
        }

        .sub-tagline {
            font-size: 1.1rem;
            max-width: 100%;
            margin: 0 0 3rem 0;
            color: var(--text-light);
            line-height: 1.8;
        }

        .hero-actions {
            display: flex;
            gap: 20px;
            justify-content: flex-start;
            margin-bottom: 5rem;
        }

        .quote-box {
            max-width: 100%;
            margin: 0;
            padding: 2.5rem 3rem;
            border-left: 5px solid var(--accent);
            background: white;
            text-align: left;
            box-shadow: var(--shadow-lg);
            border-radius: 8px;
            position: relative;
            transition: all 0.4s ease;
        }

        .quote-box:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 64px rgba(15, 23, 42, 0.15);
        }

        .quote-box::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 6rem;
            font-family: 'Inter', sans-serif;
            color: var(--accent);
            opacity: 0.1;
            line-height: 1;
        }

        .quote-box em {
            font-family: 'Inter', sans-serif;
            font-size: 1.15rem;
            color: var(--text-dark);
            display: block;
            margin-bottom: 0.8rem;
            font-style: italic;
            font-weight: 400;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        /* --- GRID LAYOUTS --- */
        .snapshot-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            margin-top: 3rem;
        }

        .snapshot-card {
            background: white;
            padding: 2rem;
            border: 1px solid var(--border);
            text-align: center;
            border-radius: 12px;
            transition: all 0.4s ease;
            box-shadow: var(--shadow-sm);
        }

        .snapshot-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-color: var(--accent);
        }
        
        .snapshot-card h4 { 
            font-size: 0.85rem; 
            text-transform: uppercase; 
            letter-spacing: 1.2px; 
            color: var(--text-light); 
            margin-bottom: 0.8rem; 
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }
        
        .snapshot-card span { 
            font-size: 1.4rem; 
            font-weight: 700; 
            color: var(--primary);
            display: block;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 36px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 36px;
        }

        .benefit-card, .value-card {
            background: var(--bg-white);
            padding: 2.5rem;
            border: 1px solid var(--border);
            border-radius: 12px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-sm);
        }

        .benefit-card:hover, .value-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }
        
        .benefit-card { 
            border-top: 3px solid var(--accent);
            background: linear-gradient(to bottom, white, var(--bg-offwhite));
        }
        
        .benefit-card h3, .value-card h3 { 
            font-size: 1.5rem; 
            margin-bottom: 1.2rem;
            color: var(--primary);
        }

        .benefit-card p, .value-card p {
            line-height: 1.8;
        }
        
        .value-card { 
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
        }
        
        .value-num {
            position: absolute;
            top: 20px;
            right: 20px;
            color: var(--accent);
            font-family: 'Inter', sans-serif;
            font-size: 2rem;
            opacity: 0.15;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .value-card:hover .value-num {
            opacity: 0.3;
            transform: scale(1.1);
        }

        /* --- COMPOUNDING TABLES --- */
        .table-responsive {
            overflow-x: auto;
            margin-bottom: 2rem;
            border: 1px solid var(--border);
            border-radius: 12px;
            box-shadow: var(--shadow-md);
        }

        table { 
            width: 100%; 
            border-collapse: collapse; 
            min-width: 600px;
        }
        
        th, td { 
            padding: 18px 20px; 
            text-align: left; 
            border-bottom: 1px solid var(--border);
        }
        
        th { 
            background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 100%);
            color: white; 
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        
        th span, td span { display: inline; }
        
        tr:nth-child(even) { 
            background-color: var(--bg-offwhite); 
        }

        tr:hover {
            background-color: rgba(194, 163, 118, 0.05);
        }

        td {
            font-size: 1.05rem;
            color: var(--text-dark);
            font-weight: 500;
        }

        /* --- MISC SECTIONS --- */
        .text-block-center {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.15rem;
            line-height: 1.9;
        }

        .principle-item {
            border-bottom: 1px solid var(--border);
            padding: 2rem 0;
            transition: all 0.3s ease;
        }

        .principle-item:hover {
            padding-left: 1rem;
            border-left: 4px solid var(--accent);
        }
        
        .formula-box {
            background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 100%);
            color: white;
            padding: 3rem;
            text-align: center;
            margin-top: 3rem;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }

        .formula-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: shimmer 3s infinite;
        }

        .formula-box h3 {
            color: var(--accent);
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .formula-box p {
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            line-height: 1.8;
            margin-bottom: 0;
            position: relative;
            z-index: 1;
        }

        .process-flow {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 28px;
            counter-reset: process-counter;
        }

        .process-step {
            flex: 1 1 200px;
            text-align: center;
            position: relative;
            padding: 1.5rem;
            background: white;
            border-radius: 12px;
            border: 1px solid var(--border);
            transition: all 0.4s ease;
        }

        .process-step:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-color: var(--accent);
        }

        .process-step::before {
            counter-increment: process-counter;
            content: "0" counter(process-counter);
            display: block;
            font-size: 2.5rem;
            color: var(--accent);
            font-family: 'Inter', sans-serif;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .risk-list {
            list-style-type: none;
            max-width: 900px;
            margin: 2rem auto;
        }
        
        .risk-list li {
            padding: 16px 20px;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin-bottom: 8px;
        }

        .risk-list li:hover {
            background: var(--bg-offwhite);
            padding-left: 28px;
        }
        
        .risk-list li::before {
            content: "✕";
            color: #ef4444;
            margin-right: 18px;
            font-weight: bold;
            font-size: 1.3rem;
        }

        .team-card {
            background: white;
            padding: 2.5rem;
            border: 1px solid var(--border);
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            gap: 24px;
            align-items: start;
            border-radius: 12px;
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
        }

        .team-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .team-photo-placeholder {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--bg-offwhite) 0%, #e2e8f0 100%);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 14px 16px;
            margin-bottom: 18px;
            border: 2px solid var(--border);
            font-family: inherit;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .contact-form input:focus, .contact-form textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(194, 163, 118, 0.1);
        }

        /* --- WRITINGS SECTION --- */
        .writings-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
            gap: 36px;
            margin-top: 3rem;
        }

        .blog-card {
            background: white;
            border: 1px solid var(--border);
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
            display: block;
        }

        .blog-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .blog-card:hover::before {
            transform: scaleX(1);
        }

        .blog-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-8px);
        }

        .blog-date {
            font-size: 0.85rem;
            color: var(--accent);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 0.8rem;
        }

        .blog-card h3 {
            font-size: 1.6rem;
            margin-bottom: 1.2rem;
            color: var(--primary);
            line-height: 1.4;
        }

        .blog-excerpt {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .read-more {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .read-more:hover {
            color: var(--accent);
            gap: 12px;
        }

        /* Blog Post Modal */
        .blog-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            z-index: 2000;
            overflow-y: auto;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .blog-overlay.active {
            display: block;
            opacity: 1;
        }

        .blog-content {
            max-width: 850px;
            margin: 0 auto;
            padding: 120px 32px;
        }

        .blog-content h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .blog-meta {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 3rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid var(--border);
        }

        .blog-body {
            font-size: 1.15rem;
            line-height: 1.9;
            color: var(--text-dark);
        }

        .blog-body h2 {
            font-size: 2rem;
            margin-top: 3.5rem;
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .blog-body h3 {
            font-size: 1.5rem;
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
        }

        .blog-body p {
            margin-bottom: 1.8rem;
        }

        .blog-body ul, .blog-body ol {
            margin-bottom: 1.8rem;
            padding-left: 2.5rem;
        }

        .blog-body li {
            margin-bottom: 0.8rem;
            color: var(--text-light);
        }

        footer {
            background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
            font-size: 0.95rem;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
            opacity: 0.3;
        }

        footer p { 
            color: rgba(255,255,255,0.6);
            position: relative;
            z-index: 1;
        }

        /* =========================================
           MANUAL OVERLAY STYLES
           ========================================= */
        #manual-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            z-index: 2000;
            overflow-y: auto;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        #manual-overlay.active {
            display: block;
            opacity: 1;
        }

        body.blog-page .blog-overlay,
        body.manual-page #manual-overlay {
            position: static;
            display: block;
            height: auto;
            opacity: 1;
        }

        .manual-nav {
            position: sticky;
            top: 0;
            background: rgba(255,255,255,0.98);
            border-bottom: 1px solid var(--border);
            padding: 18px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 2001;
            box-shadow: var(--shadow-md);
            backdrop-filter: blur(20px);
        }

        .manual-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 80px 32px 120px 32px;
        }

        .close-btn {
            background: var(--bg-offwhite);
            border: none;
            padding: 10px 20px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }
        
        .close-btn:hover { 
            background: #cbd5e1;
            transform: translateY(-1px);
        }

        /* Manual Content Typography */
        .manual-text { 
            font-size: 1.15rem; 
            line-height: 1.9; 
            color: #334155; 
            margin-bottom: 1.8rem; 
        }
        
        .manual-text strong { 
            color: var(--primary); 
            font-weight: 600;
        }
        
        .section-title {
            font-size: 1.8rem;
            margin-top: 3.5rem;
            margin-bottom: 1.8rem;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--accent);
            display: flex;
            gap: 15px;
            align-items: baseline;
        }
        
        .roman-numeral { 
            color: var(--accent); 
            font-weight: 600; 
            font-size: 1.5rem; 
            min-width: 40px; 
        }
        
        .styled-list { 
            list-style: none; 
            margin: 2rem 0 2.5rem 0; 
            padding-left: 1.5rem; 
        }
        
        .styled-list li { 
            position: relative; 
            padding-left: 28px; 
            margin-bottom: 14px; 
            font-size: 1.15rem; 
            color: #334155;
            line-height: 1.7;
        }
        
        .styled-list li::before { 
            content: "•"; 
            color: var(--accent); 
            position: absolute; 
            left: 0; 
            font-weight: bold;
            font-size: 1.5rem;
        }
        
        .not-doing-list li::before { 
            content: "✕"; 
            color: #ef4444; 
            font-size: 1.2rem; 
            top: 2px; 
        }

        .numbered-sublist { 
            counter-reset: sub-counter; 
            margin-top: 2rem; 
        }
        
        .sub-item { 
            margin-bottom: 2.5rem; 
        }
        
        .sub-item h3 { 
            font-size: 1.3rem; 
            margin-bottom: 0.8rem; 
            font-family: 'Inter', sans-serif; 
            color: var(--primary);
            font-weight: 600;
        }
        
        .sub-item h3::before { 
            counter-increment: sub-counter; 
            content: counter(sub-counter) ". "; 
            color: var(--accent);
            font-weight: 700;
        }

        .highlight-box {
            background: linear-gradient(to right, var(--bg-offwhite), white);
            border-left: 5px solid var(--accent);
            padding: 2.5rem;
            margin: 2.5rem 0;
            font-style: italic;
            font-family: 'Inter', sans-serif;
            font-size: 1.3rem;
            color: var(--text-dark);
            border-radius: 8px;
            box-shadow: var(--shadow-sm);
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            /* Typography adjustments */
            #hero h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            h3 { font-size: 1.3rem; }

            /* Container padding */
            .container {
                padding: 0 24px;
            }

            /* Header and navigation */
            .nav-container {
                padding: 0 24px;
            }

            nav ul { display: none; }
            .mobile-toggle { display: block; cursor: pointer; }
            .lang-switcher {
                margin-left: 15px;
                padding-left: 15px;
            }

            /* Hero section */
            #hero {
                padding-top: calc(var(--header-height) + 50px);
                padding-bottom: 80px;
            }

            .tagline { font-size: 1.2rem; }
            .sub-tagline { font-size: 1rem; }

            .hero-actions {
                flex-direction: column;
                width: 100%;
            }

            .hero-actions .btn {
                width: 100%;
                text-align: center;
            }

            .quote-box {
                padding: 2rem;
            }

            .quote-box em {
                font-size: 1rem;
            }

            /* Grid layouts - stack on mobile */
            .benefits-grid,
            .values-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .snapshot-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

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

            /* Section padding */
            section {
                padding: 4rem 0;
            }

            /* Cards */
            .benefit-card,
            .value-card {
                padding: 2rem;
            }

            .value-num {
                font-size: 1.5rem;
                top: 15px;
                right: 15px;
            }

            /* Tables */
            .table-responsive {
                font-size: 0.9rem;
            }

            th, td {
                padding: 12px 10px;
                font-size: 0.9rem;
            }

            /* Contact form */
            .contact-layout {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            /* Team card */
            .team-card {
                flex-direction: column;
                text-align: center;
                padding: 2rem;
            }

            .team-photo-placeholder { margin: 0 auto; }

            /* Blog cards */
            .blog-card {
                padding: 2rem;
            }

            /* Process flow */
            .process-flow {
                gap: 20px;
            }

            .process-step {
                flex: 1 1 100%;
            }
        }

        /* Smooth scroll reveal animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Scroll progress indicator */
        .scroll-progress {
            position: fixed;
            top: var(--header-height);
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
            z-index: 999;
            transition: width 0.1s ease;
        }
