    :root {
        --brand-primary: #A91F29;    
        --brand-deep: #77180D;
        --brand-accent: #CC624A;
        --brand-gray-dark: #333333;
        --brand-gray-light: #666666;
        --bg-soft: #FDF1F0;
        --white: #ffffff;
    }

    body {
        font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
        margin: 0;
        color: var(--brand-gray-dark);
        background: var(--white);
        overflow-x: hidden;
        line-height: 1.6;
    }

    .container-geo-audit { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

    /* --- 1. Banner & Radar --- */
    .hero-banner {
        padding: 100px 0;
        background: linear-gradient(135deg, var(--bg-soft) 0%, #ffffff 100%);
        min-height: 700px;
        display: flex;
        align-items: center;
    }

    .hero-flex {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        width: 100%;
    }

    .hero-content { flex: 1; z-index: 10; }
    .hero-content h1 { font-size: 52px; color: var(--brand-deep); margin: 0 0 20px; font-weight: 800; line-height: 1.2; }
    .hero-content .description { font-size: 19px; color: var(--brand-gray-light); margin-bottom: 35px; }

    /* 按鈕組佈局 */
    .banner-btns {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .hero-visual {
        flex: 0 0 580px; 
        height: 580px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .radar-viewport {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: radial-gradient(circle, #ffffff 0%, rgba(253, 241, 240, 0.5) 70%);
        border: 1px solid rgba(169, 31, 41, 0.05);
    }

    .scanner-line {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 45%; 
        height: 3px;
        background: linear-gradient(to right, transparent, var(--brand-primary));
        transform-origin: 0% 50%; 
        z-index: 5;
        box-shadow: 0 0 10px rgba(169, 31, 41, 0.3);
    }
    
    .scanner-line::after {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 300px;
        background: conic-gradient(from 90deg at 0% 0%, rgba(169, 31, 41, 0.1), transparent);
        transform: translateY(-100%);
        pointer-events: none;
    }

    /* 狀態標籤 - 已下移 20px */
    .radar-status { 
        margin-top: 65px; 
        font-size: 16px; 
        color: var(--brand-primary); 
        font-weight: 700; 
        letter-spacing: 3px;
        text-align: center;
        border: 2px solid var(--brand-primary);
        padding: 8px 30px;
        border-radius: 50px;
        background: #fff;
        box-shadow: 0 5px 15px rgba(169, 31, 41, 0.1);
    }

    /* 星星元素變色 */
    .star-element {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid #eee;
        border-radius: 10px;
        padding: 10px 18px;
        transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
        z-index: 10;
        white-space: nowrap;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        transform: translate(-50%, -50%);
    }
    
    .star-element.active {
        background: var(--brand-primary); 
        border-color: var(--brand-primary);
        box-shadow: 0 15px 35px rgba(169, 31, 41, 0.4);
        z-index: 30;
        transform: translate(-50%, -50%) scale(1.2);
    }

    .star-label { color: #333; font-weight: 600; font-size: 0.95rem; transition: color 0.3s; }
    .star-value { color: var(--brand-primary); font-weight: 900; font-family: 'Arial Black'; transition: color 0.3s; }

    .star-element.active .star-label { color: #ffffff; }
    .star-element.active .star-value { color: #ffffff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }

    .size-max .star-value { font-size: 2.6rem; }
    .size-high .star-value { font-size: 1.9rem; }
    .size-minor .star-value { font-size: 1.2rem; color: #888; }

    /* --- 2. 正文區塊 --- */
    .section-padding { padding: 100px 0; }
    .problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .problem-card { background: #fff; border-radius: 20px; padding: 40px 30px; text-align: center; border: 1px solid #eee; }
    .img-placeholder { background: #fcfcfc; border-radius: 15px; display: flex; align-items: center; justify-content: center; border: 2px dashed #ddd; color: #aaa; overflow: hidden; }
    .img-lg { height: 280px; margin-bottom: 25px; }

    /* 全屏章节样式 */
    .full-screen-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 100px 0;
        background: #fff;
    }
    
    .full-screen-section:nth-child(odd) {
        background: var(--bg-soft);
    }

    .feature-block {
        display: flex;
        align-items: center;
        gap: 80px;
        width: 100%;
    }
    
    .feature-block:nth-child(even) {
        flex-direction: row-reverse;
    }
    
    .feature-info {
        flex: 1;
    }
    
    .feature-info h3 {
        font-size: 36px;
        color: var(--brand-primary);
        margin-bottom: 25px;
        font-weight: 700;
    }
    
    .feature-info p {
        font-size: 18px;
        color: var(--brand-gray-light);
        margin-bottom: 30px;
        line-height: 1.8;
    }
    
    .feature-info ul {
        list-style: none;
        padding: 0;
        margin-bottom: 40px;
    }
    
    .feature-info li {
        margin-bottom: 15px;
        padding-left: 25px;
        position: relative;
        font-size: 16px;
        color: var(--brand-gray-dark);
    }
    
    .feature-info li:before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--brand-primary);
        font-weight: bold;
    }
    
    .feature-visual {
        flex: 1.2;
        border-radius: 40px;
        height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .feature-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 40px;
    }

    .growth-section { background: #111; color: var(--white); padding: 100px 0; text-align: center; }
    .growth-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
    .img-placeholder-dark { background: var(--brand-primary); border-radius: 24px; height: 450px; display: flex; align-items: center; justify-content: center; overflow: hidden !important; }
    .img-placeholder-dark img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important; /* 按比例填充容器，裁剪超出部分 */
        /* 如果不想裁剪图片，改用 object-fit: contain; 但会保留空白边 */
        display: block !important; /* 移除图片默认的行内空白 */
    }

    /* 按鈕樣式 */
    .btn { padding: 18px 35px; border-radius: 10px; text-decoration: none; font-weight: bold; transition: 0.3s; font-size: 17px; display: inline-block; }
    .btn-primary { background: var(--brand-primary); color: white; }
    .btn-outline { border: 2px solid var(--brand-gray-dark); color: var(--brand-gray-dark); }
    .btn-outline:hover { background: var(--brand-gray-dark); color: #fff; }
    
    /* 视频弹窗样式 */
    #videoModal {
        transition: opacity 0.3s ease;
    }
    
    #videoModal.hidden {
        opacity: 0;
        pointer-events: none;
    }
    
    #videoModal:not(.hidden) {
        opacity: 1;
        pointer-events: auto;
    }
    
    #closeModal {
        z-index: 10;
        cursor: pointer;
    }
    
    /* 适配移动端 */
    @media (max-width: 768px) {
        #videoModal .max-w-4xl {
            max-width: 95%;
        }
    }

    /* 在你的<style>标签内添加 */
    .feature-visual {
        background: #f8f8f8 !important; /* 图片背景色 */
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important; /* 柔和阴影 */
        padding: 20px !important; /* 内边距，让图片和阴影有间距 */
    }
    
    .feature-visual img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important; /* 完整显示图片，不裁剪 */
        border-radius: 40px !important; /* 保留圆角 */
    }

    .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        color: var(--brand-primary);
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        margin-bottom: 28px;
    }
    .eyebrow::before {
        content: '';
        width: 28px;
        height: 1px;
        background: var(--brand-primary);
    }
    .eyebrow a, .eyebrow a:visited { color: inherit; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: opacity 0.2s ease; }
    .eyebrow a:hover { opacity: 0.7; }

    /* 面包屑导航 */
    .breadcrumb-nav {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: var(--brand-gray-light);
        margin-bottom: 24px;
    }
    .breadcrumb-nav a {
        color: var(--brand-gray-light);
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .breadcrumb-nav a:hover {
        color: var(--brand-primary);
    }
    .breadcrumb-nav .sep {
        color: #c9c2c2;
        font-size: 12px;
    }
    .breadcrumb-nav .current {
        color: var(--brand-primary);
        font-weight: 600;
    }
    @media (max-width: 768px) {
        .breadcrumb-nav { font-size: 13px; margin-bottom: 18px; }
    }
