
        /* --- 1. Global Variables & Reset --- */
        :root {
            --hz-orange: #ec682e;
            --hz-black: #111111;
            --hz-gray: #666666;
            --hz-light-gray: #f9f9f9;
            --hz-border: #E5E5E5;
            --hz-bg: #ffffff;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body { 
            font-family: 'Open Sans', sans-serif; 
            background-color: var(--hz-bg); 
            color: var(--hz-gray); 
            line-height: 1.7; 
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        
        a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
        h1, h2, h3, h4 { margin: 0; font-family: 'Poppins', sans-serif; color: var(--hz-black); }
        
        .hz-container { max-width: 1440px; margin: 0 auto; padding: 0 40px; }

        /* --- 2. Typography System --- */
        .hz-section-tag {
            font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 12px; letter-spacing: 2px;
            text-transform: uppercase; color: var(--hz-orange); display: block; margin-bottom: 20px;
        }
        
        .hz-display-title {
            font-weight: 300; font-size: 56px; line-height: 1.1; letter-spacing: -1px; margin-bottom: 40px;
        }
        
        .hz-h2 { font-weight: 500; font-size: 32px; letter-spacing: -0.5px; }
        .hz-h3 { font-weight: 500; font-size: 20px; color: var(--hz-black); }
        
        .hz-line { width: 100%; height: 1px; background: var(--hz-border); margin: 0; }


        /* --- 3. HQ Section --- */
        .hq-section { padding: 120px 0 100px 0; }
        .hq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
        
        .hq-content { padding-right: 40px; }
        .hq-company-name { font-size: 36px; font-weight: 500; margin-bottom: 40px; line-height: 1.2; }
        
        .hq-details-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
        .hq-item { display: flex; align-items: flex-start; gap: 20px; }
        .hq-icon { 
            width: 24px; height: 24px; color: var(--hz-orange); 
            font-size: 18px; margin-top: 4px; 
        }
        .hq-label { font-size: 12px; font-weight: 600; text-transform: uppercase; color: #999; margin-bottom: 5px; font-family: 'Poppins', sans-serif; letter-spacing: 1px; }
        .hq-value { font-size: 16px; color: var(--hz-black); }

        .hq-map-wrap {
            position: relative;
            border-radius: 4px;
            overflow: hidden;
            background: #f4f4f4;
            aspect-ratio: 16/9;
        }
        .hq-map-img { 
            width: 100%; height: 100%; object-fit: cover; 
        }


        /* --- 4. Distributors Section --- */
        .dist-section { padding: 0 0 120px 0; }
        
        .region-block { margin-bottom: 100px; }
        .region-header { 
            display: flex; align-items: baseline; gap: 20px; margin-bottom: 40px; 
            padding-bottom: 20px; border-bottom: 2px solid var(--hz-black);
        }
        .region-num { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; color: var(--hz-orange); }
        
        .dist-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px;
            row-gap: 60px;
        }

        .dist-card {
            display: flex;
            flex-direction: column;
            height: 100%;
            transition: transform 0.3s ease;
            position: relative;
            padding-left: 20px;
            border-left: 1px solid transparent;
        }
        
        .dist-card:hover {
            border-left-color: var(--hz-orange);
            transform: translateX(10px);
        }

        .dist-top { margin-bottom: 15px; }
        .dist-name { font-size: 18px; font-weight: 600; color: var(--hz-black); font-family: 'Poppins', sans-serif; }
        .dist-country { 
            display: inline-flex; align-items: center; gap: 8px;
            font-size: 13px; color: #888; margin-top: 5px; font-weight: 600; 
        }
        .flag { font-size: 14px; }

        .dist-info { font-size: 14px; color: var(--hz-gray); margin-bottom: 20px; flex-grow: 1; }
        .dist-row { display: flex; gap: 10px; margin-bottom: 8px; line-height: 1.5; }
        .dist-row i { font-size: 12px; color: #ccc; margin-top: 5px; flex-shrink: 0; }
        .dist-card:hover .dist-row i { color: var(--hz-orange); transition: color 0.3s; }

        .dist-link {
            font-size: 13px; font-weight: 600; color: var(--hz-black);
            display: inline-flex; align-items: center; gap: 5px;
            border-bottom: 1px solid transparent; width: fit-content;
            font-family: 'Poppins', sans-serif;
        }
        .dist-link:hover { color: var(--hz-orange); }
        .dist-link i { font-size: 10px; transition: transform 0.3s; }
        .dist-link:hover i { transform: translateX(3px); }


        /* --- 5. Popup Modal (Partner CTA) --- */
        .modal-overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 9999;
            display: none;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .modal-overlay.show {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background: #f9f9f9; 
            width: 90%;
            max-width: 600px;
            padding: 60px 40px;
            border-radius: 8px; 
            text-align: center;
            position: relative;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            transform: translateY(30px);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .modal-overlay.show .modal-content {
            transform: translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 28px;
            color: #999;
            cursor: pointer;
            line-height: 1;
            transition: color 0.3s;
        }
        .modal-close:hover { color: var(--hz-black); }

        .modal-title {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 36px;
            color: var(--hz-black);
            margin-bottom: 20px;
        }

        .modal-desc {
            font-size: 16px;
            color: var(--hz-gray);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .btn-primary {
            display: inline-block;
            background-color: var(--hz-orange);
            color: #fff;
            padding: 16px 50px;
            border-radius: 2px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            text-decoration: none;
            transition: 0.3s;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-size: 14px;
            box-shadow: 0 10px 20px rgba(236, 104, 46, 0.2);
        }
        .btn-primary:hover {
            background-color: #d95a25;
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(236, 104, 46, 0.3);
        }

        /* --- Responsive --- */
        @media (max-width: 1024px) {
            .dist-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
            .hq-grid { grid-template-columns: 1fr; gap: 40px; }
        }
        @media (max-width: 768px) {
            .dist-grid { grid-template-columns: 1fr; }
            .hz-display-title { font-size: 42px; }
            .modal-content { padding: 40px 20px; }
        }
    