/* ===== SCOPED STYLES: .ap- PREFIX ===== */
        .ap-page *, .ap-page *::before, .ap-page *::after{
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }.ap-page{
            --ap-ink: #1f2a24;
            --ap-muted: #5d6b64;
            --ap-paper: #ffffff;
            --ap-soft: #f4f6f3;
            --ap-line: #d9e0db;
            --ap-olive: #4a5a40;
            --ap-olive-dark: #35482f;
            --ap-coral: #b85a46;
            --ap-gold: #e3d18a;
            --ap-font: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            font-family: var(--ap-font);
            color: var(--ap-ink);
            background: var(--ap-paper);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            width: 100%;
            overflow-x: hidden;
        }.ap-page a{
            color: inherit;
            text-decoration-thickness: 1px;
            text-underline-offset: 3px;
            transition: color 0.2s ease;
        }.ap-page a:hover{
            color: var(--ap-olive);
        }.ap-page img{
            display: block;
            max-width: 100%;
            height: auto;
        }.ap-page h1, .ap-page h2, .ap-page h3, .ap-page p{
            margin-top: 0;
        }.ap-page h1{
            font-size: 42px;
            line-height: 1.28;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
        }.ap-page h2{
            font-size: 32px;
            line-height: 1.22;
            font-weight: 700;
            letter-spacing: -0.015em;
            margin-bottom: 14px;
        }.ap-page h3{
            font-size: 20px;
            line-height: 1.30;
            font-weight: 700;
            margin-bottom: 10px;
        }#ap-aggregate .ap-container{
            width: min(1180px, calc(100% - 40px));
            margin: 0 auto;
        }#ap-aggregate .ap-section{
            padding: 72px 0;
        }#ap-aggregate .ap-section-soft{
            background: var(--ap-soft);
        }#ap-aggregate .ap-center-head{
            max-width: 720px;
            margin: 0 auto 40px;
            text-align: center;
        }#ap-aggregate .ap-lede{
            color: var(--ap-muted);
            font-size: 18px;
            max-width: 640px;
            margin: 0 auto;
            line-height: 1.65;
        }#ap-aggregate .ap-btn{
            display: inline-flex;
            min-height: 48px;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border: 1px solid var(--ap-ink);
            border-radius: 6px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
            cursor: pointer;
            line-height: 1.2;
        }#ap-aggregate .ap-btn-primary{
            color: #fff !important;
            background: var(--ap-olive);
            border-color: var(--ap-olive);
        }#ap-aggregate .ap-btn-primary:hover{
            background: var(--ap-olive-dark);
            border-color: var(--ap-olive-dark);
        }#ap-aggregate .ap-btn-secondary{
            color: var(--ap-ink) !important;
            background: transparent;
            border-color: var(--ap-ink);
        }#ap-aggregate .ap-btn-secondary:hover{
            color: #fff !important;
            background: var(--ap-ink);
        }#ap-aggregate /* ---- HERO ---- */
        .ap-hero{
            padding: 56px 0 60px;
            background: var(--ap-paper);
        }#ap-aggregate .ap-hero-grid{
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 56px;
        }#ap-aggregate .ap-hero-intro{
            font-size: 17px;
            line-height: 1.7;
            color: var(--ap-muted);
            margin-bottom: 0;
        }#ap-aggregate .ap-hero-intro .ap-keyword-link{
            font-weight: 700;
            text-decoration: underline;
            text-underline-offset: 3px;
        }#ap-aggregate .ap-hero-intro .ap-keyword-link:hover{
            color: var(--ap-olive);
        }#ap-aggregate .ap-hero-actions{
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 28px;
        }#ap-aggregate .ap-hero-facts{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-top: 34px;
        }#ap-aggregate .ap-hero-fact{
            padding: 14px 0;
            border-top: 2px solid var(--ap-ink);
        }#ap-aggregate .ap-hero-fact strong{
            display: block;
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 2px;
        }#ap-aggregate .ap-hero-fact span{
            color: var(--ap-muted);
            font-size: 13px;
            line-height: 1.4;
        }#ap-aggregate .ap-hero-media{
            position: relative;
        }#ap-aggregate .ap-hero-media::after{
            content: "";
            position: absolute;
            right: -12px;
            bottom: -12px;
            width: 30%;
            height: 30%;
            border-right: 6px solid var(--ap-gold);
            border-bottom: 6px solid var(--ap-gold);
            z-index: 0;
            pointer-events: none;
        }#ap-aggregate .ap-hero-img{
            position: relative;
            z-index: 1;
            width: 100%;
            max-height: 560px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 20px 48px rgba(31, 42, 36, 0.12);
        }#ap-aggregate /* ---- PRODUCT SPOTLIGHT ---- */
        .ap-spotlight{
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 50px;
            align-items: start;
        }#ap-aggregate .ap-spotlight-img{
            width: 100%;
            max-height: 520px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 12px 32px rgba(31, 42, 36, 0.08);
        }#ap-aggregate .ap-spotlight-sub{
            color: var(--ap-muted);
            font-size: 16px;
            margin-bottom: 20px;
        }#ap-aggregate .ap-feature-list{
            list-style: none;
            padding: 0;
            margin: 0 0 28px;
            display: grid;
            gap: 14px;
        }#ap-aggregate .ap-feature-list li{
            padding: 16px 18px;
            border-left: 4px solid var(--ap-olive);
            background: var(--ap-paper);
            border-radius: 0 6px 6px 0;
            font-size: 15px;
            line-height: 1.6;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
        }#ap-aggregate .ap-feature-list li strong{
            display: block;
            font-weight: 700;
            margin-bottom: 2px;
        }#ap-aggregate /* ---- DRIVER GRID ---- */
        .ap-driver-grid{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }#ap-aggregate .ap-driver-card{
            padding: 28px 24px 24px;
            background: var(--ap-paper);
            border-radius: 10px;
            box-shadow: 0 2px 12px rgba(31, 42, 36, 0.06);
            border: 1px solid var(--ap-line);
            transition: box-shadow 0.25s ease;
        }#ap-aggregate .ap-driver-card:hover{
            box-shadow: 0 8px 28px rgba(31, 42, 36, 0.10);
        }#ap-aggregate .ap-driver-icon{
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--ap-soft);
            margin-bottom: 16px;
            position: relative;
        }#ap-aggregate .ap-icon-accountability::after{
            content: "✓";
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            color: var(--ap-olive);
        }#ap-aggregate .ap-icon-speed::after{
            content: "⚡";
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }#ap-aggregate .ap-icon-scale::after{
            content: "📈";
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }#ap-aggregate .ap-driver-card p{
            color: var(--ap-muted);
            font-size: 15px;
            line-height: 1.65;
            margin-bottom: 16px;
        }#ap-aggregate .ap-driver-stat{
            font-size: 14px;
            font-weight: 700;
            color: var(--ap-olive);
            padding-top: 12px;
            border-top: 1px solid var(--ap-line);
        }#ap-aggregate /* ---- MATRIX GRID ---- */
        .ap-matrix-grid{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }#ap-aggregate .ap-matrix-card{
            display: flex;
            flex-direction: column;
            background: var(--ap-paper);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(31, 42, 36, 0.06);
            border: 1px solid var(--ap-line);
            text-decoration: none;
            transition: box-shadow 0.25s ease, transform 0.2s ease;
        }#ap-aggregate .ap-matrix-card:hover{
            box-shadow: 0 8px 28px rgba(31, 42, 36, 0.10);
            transform: translateY(-3px);
        }#ap-aggregate .ap-matrix-img-wrap{
            width: 100%;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            background: var(--ap-soft);
        }#ap-aggregate .ap-matrix-img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }#ap-aggregate .ap-matrix-body{
            padding: 18px 20px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }#ap-aggregate .ap-matrix-body h3{
            font-size: 17px;
            margin-bottom: 8px;
        }#ap-aggregate .ap-matrix-desc{
            color: var(--ap-muted);
            font-size: 14px;
            line-height: 1.6;
            flex: 1;
            margin-bottom: 14px;
        }#ap-aggregate .ap-matrix-link{
            font-weight: 700;
            font-size: 14px;
            color: var(--ap-olive);
            text-decoration: underline;
            text-underline-offset: 2px;
        }#ap-aggregate .ap-article-excerpt{
            color: var(--ap-muted);
            font-size: 14px;
            line-height: 1.65;
            flex: 1;
            margin-bottom: 16px;
        }#ap-aggregate .ap-article-link{
            font-weight: 700;
            font-size: 14px;
            color: var(--ap-olive);
            text-decoration: underline;
            text-underline-offset: 2px;
        }#ap-aggregate /* ---- FAQ ---- */
        .ap-faq-list{
            max-width: 820px;
            margin: 0 auto;
            display: grid;
            gap: 10px;
        }#ap-aggregate .ap-faq-item{
            background: var(--ap-paper);
            border-radius: 8px;
            border: 1px solid var(--ap-line);
            overflow: hidden;
            transition: box-shadow 0.2s ease;
        }#ap-aggregate .ap-faq-item[open]{
            box-shadow: 0 4px 16px rgba(31, 42, 36, 0.06);
        }#ap-aggregate .ap-faq-question{
            padding: 18px 22px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            user-select: none;
        }#ap-aggregate .ap-faq-question::-webkit-details-marker{
            display: none;
        }#ap-aggregate .ap-faq-question::after{
            content: "+";
            font-size: 22px;
            font-weight: 400;
            color: var(--ap-olive);
            transition: transform 0.25s ease;
            flex-shrink: 0;
        }#ap-aggregate .ap-faq-item[open] .ap-faq-question::after{
            content: "−";
            transform: rotate(0deg);
        }#ap-aggregate .ap-faq-answer{
            padding: 0 22px 18px;
            color: var(--ap-muted);
            font-size: 15px;
            line-height: 1.7;
        }#ap-aggregate .ap-faq-answer p{
            margin-bottom: 0;
        }#ap-aggregate /* ---- CONVERSION BANNER ---- */
        .ap-conversion{
            background: var(--ap-olive);
            color: #fff;
            text-align: center;
        }#ap-aggregate .ap-conversion-inner{
            max-width: 720px;
            margin: 0 auto;
        }#ap-aggregate .ap-conversion-inner h2{
            color: #fff;
            margin-bottom: 16px;
        }#ap-aggregate .ap-conversion-text{
            font-size: 17px;
            line-height: 1.7;
            opacity: 0.92;
            margin-bottom: 28px;
        }#ap-aggregate .ap-conversion-actions{
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
        }#ap-aggregate .ap-conversion .ap-btn-primary{
            background: #fff;
            color: var(--ap-olive) !important;
            border-color: #fff;
        }#ap-aggregate .ap-conversion .ap-btn-primary:hover{
            background: var(--ap-soft);
            border-color: var(--ap-soft);
        }#ap-aggregate .ap-conversion .ap-btn-secondary{
            color: #fff !important;
            border-color: #fff;
        }#ap-aggregate .ap-conversion .ap-btn-secondary:hover{
            background: #fff;
            color: var(--ap-olive) !important;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 900px) {.ap-page h1{
                font-size: 32px;
            }.ap-page h2{
                font-size: 26px;
            }#ap-aggregate .ap-hero-grid{
                grid-template-columns: 1fr;
                gap: 36px;
            }#ap-aggregate .ap-hero-media{
                order: -1;
            }#ap-aggregate .ap-hero-img{
                max-height: 400px;
            }#ap-aggregate .ap-spotlight{
                grid-template-columns: 1fr;
                gap: 32px;
            }#ap-aggregate .ap-driver-grid{
                grid-template-columns: 1fr;
                gap: 18px;
            }#ap-aggregate .ap-matrix-grid{
                grid-template-columns: 1fr;
                gap: 18px;
            }#ap-aggregate .ap-hero-facts{
                grid-template-columns: 1fr 1fr;
            }#ap-aggregate .ap-hero-facts .ap-hero-fact:last-child{
                grid-column: 1 / -1;
            }
        }
        @media (max-width: 600px) {.ap-page h1{
                font-size: 28px;
            }.ap-page h2{
                font-size: 22px;
            }#ap-aggregate .ap-hero{
                padding: 36px 0 40px;
            }#ap-aggregate .ap-section{
                padding: 48px 0;
            }#ap-aggregate .ap-hero-facts{
                grid-template-columns: 1fr;
            }#ap-aggregate .ap-hero-facts .ap-hero-fact:last-child{
                grid-column: auto;
            }#ap-aggregate .ap-hero-actions{
                flex-direction: column;
            }#ap-aggregate .ap-hero-actions .ap-btn{
                width: 100%;
            }#ap-aggregate .ap-conversion-actions{
                flex-direction: column;
            }#ap-aggregate .ap-conversion-actions .ap-btn{
                width: 100%;
            }#ap-aggregate .ap-container{
                width: calc(100% - 24px);
            }
        }
        @media (max-width: 390px) {.ap-page h1{
                font-size: 24px;
                line-height: 1.28;
            }.ap-page h2{
                font-size: 20px;
                line-height: 1.22;
            }.ap-page h3{
                font-size: 17px;
                line-height: 1.30;
            }#ap-aggregate .ap-hero-intro{
                font-size: 15px;
            }#ap-aggregate .ap-driver-card{
                padding: 20px 16px 18px;
            }#ap-aggregate .ap-matrix-body{
                padding: 14px 16px 16px;
            }#ap-aggregate .ap-faq-question{
                padding: 14px 16px;
                font-size: 15px;
            }#ap-aggregate .ap-faq-answer{
                padding: 0 16px 14px;
                font-size: 14px;
            }
        }
    