.main-box.cps-test-page {
    padding: 0;
    max-width: none;
}

.cps-test-page {
    --cps-primary: #3b82f6;
    --cps-primary-glow: rgba(59, 130, 246, 0.3);
    --cps-bg-dark: #020617;
    --cps-text-muted: #94a3b8;
    --cps-border: rgba(255, 255, 255, 0.1);
}

.cps-test-page .cps-hero {
    min-height: calc(100vh - 99px);
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.7) 0%, rgba(2, 6, 23, 1) 100%),
                url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?q=80&w=1920');
    background-size: cover;
    background-position: center;
    padding-top: 0;
    display: flex;
    justify-content: center;
}

.cps-test-page .cps-hero-layout {
    width: 100%;
    display: flex;
    border-top: 1px solid var(--cps-border);
}

.cps-test-page .cps-hero-left {
    flex: 1;
    padding: 0 15px;
    border-right: 1px solid var(--cps-border);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cps-test-page .cps-hero-left h1 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
}

.cps-test-page .cps-hero-left .cps-desc {
    font-size: 16px;
    color: var(--cps-text-muted);
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

.cps-test-page .cps-mw {
    width: 100%;
    max-width: 1050px;
}

.cps-test-page .scroll-test-area {
    margin-bottom: 25px;
}

.cps-test-page .scroll-test-area .clk_box {
    border-radius: 16px;
    overflow: hidden;
}

.cps-test-page .spacebar-click-area {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    margin-bottom: 20px;
}

.cps-test-page .spacebar-stats {
    margin-bottom: 20px;
}

.cps-test-page .btn-spacebar-start {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    background: var(--cps-primary);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.cps-test-page .btn-spacebar-start:hover {
    background: #2563eb;
    transform: scale(1.02);
}

.cps-test-page .spacebar-evaluate,
.cps-test-page .spacebar-result,
.cps-test-page .spacebar-result-list {
    text-align: center;
    color: white;
    padding: 20px;
}

.cps-test-page .round-tracker {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.cps-test-page .round-dot {
    width: 40px;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.cps-test-page .round-dot.active {
    background: rgba(59, 130, 246, 0.3);
}

.cps-test-page .round-dot.completed {
    background: var(--cps-primary);
    box-shadow: 0 0 10px var(--cps-primary-glow);
}

.cps-test-page .test-stats-bar {
    display: flex;
    gap: 15px;
    width: 100%;
    margin-bottom: 20px;
}

.cps-test-page .stat-card {
    flex: 1;
    height: 60px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.cps-test-page .stat-card span {
    font-size: 17px;
    font-weight: 800;
}

.cps-test-page .stat-card label {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 600;
    text-transform: uppercase;
}

.cps-test-page .stat-card.timer {
    background: linear-gradient(135deg, #6366f1, #3b82f6);
}

.cps-test-page .stat-card.cps {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.cps-test-page .stat-card.score {
    background: linear-gradient(135deg, #10b981, #059669);
}

.cps-test-page .click-area-pro {
    width: 100%;
    height: 350px;
    background: #000;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid rgb(133 114 114);
}

.cps-test-page .aim-area-pro {
    width: 100%;
    height: 350px;
    background: #000;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: crosshair;
    border: 1px solid rgba(255,255,255,0.05);
}

.cps-test-page .aim-area-pro #background {
    position: absolute;
    inset: 0;
    background: #000;
}

.cps-test-page .aim-area-pro #target {
    position: absolute;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    z-index: 10;
    cursor: crosshair;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.cps-test-page .aim-area-pro #start {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    color: white;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cps-test-page .aim-area-pro #start:hover {
    opacity: 0.9;
}

.cps-test-page .btn-aim-start {
    padding: 20px 40px;
    background: var(--cps-primary);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.cps-test-page .aim-modal {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.cps-test-page .aim-modal__inner {
    background: #0f172a;
    border-radius: 20px;
    max-width: 480px;
    padding: 2.5em 3em;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.cps-test-page .aim-modal__header {
    position: absolute;
    top: 15px;
    right: 20px;
}

.cps-test-page .aim-modal__close {
    font-size: 28px;
    color: #94a3b8;
    cursor: pointer;
    line-height: 1;
}

.cps-test-page .aim-modal__close:hover {
    color: white;
}

.cps-test-page .aim-modal__content h3 {
    color: #10b981;
    font-size: 24px;
    margin-bottom: 15px;
}

.cps-test-page .aim-modal__precision {
    color: #e2e8f0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cps-test-page .aim-modal__stars {
    list-style: none;
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 20px 0;
    padding: 0;
}

.cps-test-page .aim-modal__stars img {
    width: 32px;
    height: 32px;
}

.cps-test-page .aim-modal__try {
    display: block;
    text-align: center;
    margin-top: 15px;
}

.cps-test-page .idle-text {
    color: white;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    z-index: 10;
    pointer-events: none;
    opacity: 0.6;
    text-align: center;
}

.cps-test-page .ripple-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.cps-test-page .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.4);
    transform: scale(0);
    animation: cpsRippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes cpsRippleEffect {
    to { transform: scale(4); opacity: 0; }
}

.cps-test-page .result-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.cps-test-page .round-hint {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 800;
    color: var(--cps-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    z-index: 10;
}

.cps-test-page .round-result-list {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.cps-test-page .mini-score-tag {
    background: rgba(255,255,255,0.1);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 13px;
}

.cps-test-page .btn-action {
    padding: 12px 30px;
    background: var(--cps-primary);
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    margin-top: 20px;
    text-decoration: none;
    display: inline-block;
}

.cps-test-page .time-options {
    display: flex;
    gap: 12px;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
    padding-bottom: 15px;
}

.cps-test-page .time-btn {
    padding: 12px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--cps-border);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.cps-test-page .time-btn:hover,
.cps-test-page .time-btn.active {
    background: var(--cps-primary);
    border-color: var(--cps-primary);
    transform: translateY(-2px);
}

.cps-test-page .time-btn {
    text-decoration: none;
}

.cps-test-page .cps-tip {
    color: var(--cps-text-muted);
    font-size: 13px;
    margin-top: 20px;
    text-align: center;
}

.cps-test-page .cps-section {
    padding: 80px 20px;
}

.cps-test-page .cps-bg-white {
    background: #fff;
}

.cps-test-page .cps-bg-gray {
    background: #f8fafc;
}

.cps-test-page .cps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cps-test-page .cps-section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 40px;
    color: #020617;
}

.cps-test-page .cps-feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cps-test-page .cps-feat-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    border: 1px solid #f1f5f9;
    border-radius: 15px;
    transition: 0.3s;
    background: white;
    text-decoration: none;
    color: inherit;
}

.cps-test-page .cps-feat-card:hover {
    border-color: var(--cps-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.cps-test-page .cps-seo-content h2 {
    font-size: 24px;
    color: #020617;
    margin: 30px 0 15px;
    font-weight: 800;
}

.cps-test-page .cps-seo-content p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .cps-test-page .cps-feat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* section / features-grid (与 index 结构一致) */
.cps-test-page .section {
    padding: 70px 0;
}

.cps-test-page .section.bg-white {
    background: #fff;
}

.cps-test-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cps-test-page .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 60px;
}

.cps-test-page .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cps-test-page .feat-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    transition: 0.3s;
    text-decoration: none;
    color: inherit;
    background: #fff;
}

.cps-test-page .feat-item:hover {
    background: #f8fafc;
    border-color: var(--cps-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-3px);
}

.cps-test-page .feat-icon {
    min-width: 48px;
    height: 48px;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 24px;
    color: var(--cps-primary);
    padding: 10px;
    flex-shrink: 0;
}

.cps-test-page .feat-icon img,
.cps-test-page .feat-icon svg {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.cps-test-page .feat-text h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #1e293b;
    font-weight: 700;
}

.cps-test-page .feat-text p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 600px) {
    .cps-test-page .features-grid {
        grid-template-columns: 1fr;
    }
}

/* --- CPS Result Page --- */
.main-box.cps-result-page {
    padding: 0;
    max-width: none;
}

.cps-result-page .cps-result-hero {
    min-height: 100vh;
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.8) 0%, rgba(2, 6, 23, 1) 100%),
                url('../images/bg1.webp');
    background-size: cover;
    background-position: center;
    padding-top: 0;
    display: flex;
    justify-content: center;
}

.cps-result-page .cps-result-layout {
    width: 100%;
    display: flex;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cps-result-page .cps-result-left {
    flex: 1;
    padding: 0 40px;
    border-right: 1px solid rgba(255,255,255,0.1);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cps-result-page .result-main-wrapper {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 15px;
}

.cps-result-page .result-top-row {
    display: flex;
    gap: 40px;
    align-items: center;
}

.cps-result-page .result-image-box {
    position: relative;
    width: 240px;
    height: 240px;
    background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(0,0,0,0.5));
    border: 2px solid #3b82f6;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(59,130,246,0.2);
}

.cps-result-page .rank-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    background: #3b82f6;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 12px;
}

.cps-result-page .animal-icon {
    font-size: 100px;
    filter: drop-shadow(0 0 15px #3b82f6);
}

.cps-result-page .result-headline .status-tag {
    color: #3b82f6;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
}

.cps-result-page .result-headline .main-score {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    margin: 10px 0;
}

.cps-result-page .result-headline .main-score span {
    font-size: 24px;
    opacity: 0.5;
}

.cps-result-page .result-headline h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.cps-result-page .result-headline .summary {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
    max-width: 500px;
}

.cps-result-page .data-dimension-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cps-result-page .dim-card {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}

.cps-result-page .dim-card label {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.cps-result-page .dim-value {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.cps-result-page .dim-value span {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.6;
}

.cps-result-page .dim-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.cps-result-page .dim-bar div {
    height: 100%;
    background: #3b82f6;
    border-radius: 2px;
}

.cps-result-page .action-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cps-result-page .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    flex-wrap: wrap;
}

.cps-result-page .btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 23%;
}

.cps-result-page .btn-primary {
    background: #3b82f6;
    color: white;
    border: none;
}

.cps-result-page .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59,130,246,0.3);
}

.cps-result-page .btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.cps-result-page .btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: white;
}

.cps-result-page .cps-result-right {
    width: 320px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cps-result-page .sidebar-nav {
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px;
}

.cps-result-page .sidebar-nav h4 {
    color: white;
    font-size: 14px;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 3px solid #3b82f6;
}

.cps-result-page .side-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.cps-result-page .side-item:hover {
    background: rgba(255,255,255,0.05);
    color: white;
}
.ads{
    min-height: 250px;
}

@media (max-width: 1100px) {
    .cps-result-page .cps-result-layout {
        flex-direction: column;
    }
    .cps-result-page .cps-result-left {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .cps-result-page .cps-result-right {
        width: 100%;
        align-items: center;
    }
    .cps-result-page .result-top-row {
        flex-direction: column-reverse;
    }
    .cps-result-page .data-dimension-grid {
        grid-template-columns: 1fr;
    }
    .cps-result-page .dim-card{
        padding: 10px;
    }
    .cps-result-page .btn-group{
        gap: 0px;
    }
}

/* SEO modules - how without image */
.cps-test-page .how-flex--no-img {
    justify-content: center;
}
.cps-test-page .how-flex--no-img .how-content {
    flex: 1;
    max-width: 640px;
}

/* ===== CPS SEO Pro - Premium editorial modules ===== */
.cps-seo-pro {
    --cps-pro-bg: #0c1222;
    --cps-pro-bg-alt: #fafbfc;
    --cps-pro-text: #0f172a;
    --cps-pro-text-muted: #475569;
    --cps-pro-accent: #d4a853;
    --cps-pro-accent-soft: rgba(212, 168, 83, 0.15);
    --cps-pro-border: rgba(15, 23, 42, 0.08);
}

.cps-seo-pro__container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}
.cps-seo-pro__container--narrow {
    max-width: 680px;
}

.cps-seo-pro__eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cps-pro-accent);
    margin-bottom: 12px;
}
.cps-seo-pro__eyebrow--light {
    color: rgba(212, 168, 83, 0.9);
}

.cps-seo-pro__title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--cps-pro-text);
    margin: 0 0 20px;
    line-height: 1.2;
}
.cps-seo-pro__title--light {
    color: #fff;
}

.cps-seo-pro__lead {
    font-size: 22px;
    font-weight: 700;
    color: var(--cps-pro-text);
    line-height: 1.4;
    margin: 0 0 24px;
}

.cps-seo-pro__body {
    font-size: 17px;
    line-height: 1.75;
    color: var(--cps-pro-text-muted);
    margin: 0 0 20px;
}
.cps-seo-pro__body:last-child {
    margin-bottom: 0;
}
.cps-seo-pro__body--light {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

/* How section */
.cps-seo-pro__how {
    padding: 100px 0;
    background: var(--cps-pro-bg-alt);
    border-top: 1px solid var(--cps-pro-border);
}
.cps-seo-pro__steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.cps-seo-pro__step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 32px 0;
    border-bottom: 1px solid var(--cps-pro-border);
}
.cps-seo-pro__step:last-child {
    border-bottom: none;
}
.cps-seo-pro__step-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--cps-pro-accent);
    background: var(--cps-pro-accent-soft);
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 8px;
}
.cps-seo-pro__step-body h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--cps-pro-text);
    margin: 0 0 8px;
}
.cps-seo-pro__step-body p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--cps-pro-text-muted);
    margin: 0;
}

/* Intro section */
.cps-seo-pro__intro {
    padding: 100px 0;
    background: #fff;
}
.cps-seo-pro__intro .cps-seo-pro__lead {
    margin-top: 0;
}

/* Why section */
.cps-seo-pro__why {
    padding: 100px 0;
    background: var(--cps-pro-bg-alt);
}
.cps-seo-pro__why-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 60px;
    align-items: center;
}
.cps-seo-pro__why-card {
    padding: 40px;
    background: linear-gradient(145deg, var(--cps-pro-bg) 0%, #151d30 100%);
    border-radius: 16px;
    border: 1px solid rgba(212, 168, 83, 0.2);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}
.cps-seo-pro__why-card-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cps-pro-accent);
    margin-bottom: 12px;
}
.cps-seo-pro__why-card-value {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

/* Tips section */
.cps-seo-pro__tips {
    padding: 100px 0;
    background: #fff;
}
.cps-seo-pro__tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.cps-seo-pro__tip {
    padding: 32px;
    background: var(--cps-pro-bg-alt);
    border: 1px solid var(--cps-pro-border);
    border-radius: 12px;
    border-left: 4px solid var(--cps-pro-accent);
    transition: border-color 0.25s, box-shadow 0.25s;
}
.cps-seo-pro__tip:hover {
    border-left-color: var(--cps-pro-accent);
    box-shadow: 0 0 0 1px rgba(212, 168, 83, 0.2);
}
.cps-seo-pro__tip-num {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--cps-pro-accent);
    margin-bottom: 16px;
}
.cps-seo-pro__tip p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--cps-pro-text-muted);
    margin: 0;
}

/* Benchmark section */
.cps-seo-pro__benchmark {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cps-pro-bg) 0%, #151d30 100%);
}
.cps-seo-pro__benchmark .cps-seo-pro__title--light {
    margin-bottom: 16px;
}
.cps-seo-pro__tiers {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cps-seo-pro__tier {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cps-seo-pro__tier-fill {
    height: 6px;
    border-radius: 3px;
    min-width: 80px;
}
.cps-seo-pro__tier-fill--1 { width: 25%; background: linear-gradient(90deg, var(--cps-pro-accent), rgba(212, 168, 83, 0.6)); }
.cps-seo-pro__tier-fill--2 { width: 50%; background: linear-gradient(90deg, var(--cps-pro-accent), rgba(212, 168, 83, 0.6)); }
.cps-seo-pro__tier-fill--3 { width: 85%; background: linear-gradient(90deg, var(--cps-pro-accent), rgba(212, 168, 83, 0.6)); }
.cps-seo-pro__tier-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    min-width: 90px;
}

/* FAQ section */
.cps-seo-pro__faq {
    padding: 100px 0;
    background: var(--cps-pro-bg-alt);
}
.cps-seo-pro__faq-list {
    margin: 40px 0 0;
    padding: 0;
    list-style: none;
}
.cps-seo-pro__faq-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--cps-pro-border);
}
.cps-seo-pro__faq-item:first-child {
    padding-top: 0;
}
.cps-seo-pro__faq-item dt {
    font-size: 18px;
    font-weight: 700;
    color: var(--cps-pro-text);
    margin: 0 0 12px;
}
.cps-seo-pro__faq-item dd {
    font-size: 16px;
    line-height: 1.65;
    color: var(--cps-pro-text-muted);
    margin: 0;
}

/* CTA section */
.cps-seo-pro__cta {
    padding: 100px 0;
    background: var(--cps-pro-bg);
    text-align: center;
}
.cps-seo-pro__cta-text {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.cps-seo-pro__cta-btn {
    display: inline-block;
    padding: 18px 48px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--cps-pro-bg);
    background: var(--cps-pro-accent);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
}
.cps-seo-pro__cta-btn:hover {
    background: #e0b85c;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .cps-seo-pro__why-grid {
        grid-template-columns: 1fr;
    }
    .cps-seo-pro__why-card {
        max-width: 320px;
        margin: 0 auto;
    }
    .cps-seo-pro__tips-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cps-seo-pro__how,
    .cps-seo-pro__intro,
    .cps-seo-pro__why,
    .cps-seo-pro__tips,
    .cps-seo-pro__benchmark,
    .cps-seo-pro__faq,
    .cps-seo-pro__cta {
        padding: 60px 0;
    }
    .cps-seo-pro__title {
        font-size: 26px;
    }
    .cps-seo-pro__step {
        flex-direction: column;
        gap: 16px;
    }
}

.cps-test-page .cps-hero-right {
    width: 320px;
    padding: 0 10px;
}

.cps-test-page .sidebar-nav {
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    border: 1px solid var(--cps-border);
    padding: 15px;
}

.cps-test-page .sidebar-nav h4 {
    color: white;
    font-size: 14px;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 3px solid var(--cps-primary);
}

.cps-test-page .side-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    color: var(--cps-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.cps-test-page .side-item:hover {
    background: rgba(255,255,255,0.05);
    color: white;
}

@media (max-width: 1100px) {
    .cps-test-page .cps-hero-layout {
        flex-direction: column;
    }
    .cps-test-page .cps-hero-left {
        border-right: none;
        border-bottom: 1px solid var(--cps-border);
    }
   
}
@media (max-height: 1080px) {
    .ad-placeholder{
        margin-top: 5px;
    }
    .ads{
        margin: 5px 0;
    }
    .cps-test-page .cps-hero-left h1{
        font-size: 27px;
        margin-bottom: 4px;  
    }
    .cps-test-page .cps-hero-left .cps-desc{
        margin-bottom: 3px;
        font-size: 12px;
        line-height: 16px;
    }
    .cps-test-page .round-tracker{
        margin-bottom: 5px;
    }
    .cps-test-page .test-stats-bar{
        margin-bottom: 5px;
    }
    .cps-test-page .click-area-pro{
        height: 260px;
        min-height: 260px !important;
    }
    .cps-test-page .cps-tip{
        margin: 5px 0;
    }
    .result-overlay p{
       
        font-size: 14px !important;
        line-height: auto !important;
        margin: 3px 0 !important;
    }
    .result-overlay p span{
        font-size: 12px !important;
    }
    .result-overlay h3{
        font-size: 17px !important; 
        margin: 3px !important;
    }
    .cps-test-page .btn-action{
        margin-top: 3px;
    }
    .cps-test-page .stat-card{
        height: 45px;
    }
    .cps-test-page .stat-card span{
        font-size: 15px;
    }
    .clk_box,.mheigth{
        height: 260px;
        min-height: 260px !important;
    }
    .imgs{
        margin: 3px 0 !important;
    }
    .tool_content p{
        margin-bottom: 0 !important;
    }
    .olbox{
        margin: 2px auto !important;
        padding: 3px !important;
    }
    .cps-test-page .reaction-test-area .flexbox svg{
        height: 78px !important;
    }
    .reactspan{
        font-size: 25px !important;
        line-height: 25px !important;
    }
}

@media (max-height: 800px) {
    .cps-test-page .click-area-pro{
        height: 235px;
    }
    .result-overlay p{
       
        font-size: 14px !important;
        line-height: auto !important;
        margin: 3px 0 !important;
    }
    .result-overlay p span{
        font-size: 12px !important;
    }
    .result-overlay h3{
        font-size: 17px !important; 
        margin: 3px !important;
    }
    .cps-test-page .btn-action{
        margin-top: 3px;
    }
}
@media (max-width: 860px) {
    .cps-test-page .reaction-test-area .flexbox svg{

    }
    .cps-result-page .result-top-row{
        gap: 5px;
    }
    .cps-test-page #textLine,.click-test span{
        font-size: 18px !important;
        line-height: 18px;
        font-weight: 700;
    }
    .cps-test-page .cps-hero-left{
        padding: 0 10px;
    }
    .cps-test-page .cps-hero-right {
        width: 100%;
        align-items: center;
    }
    .sidebar-nav{
        width: 100%;
    }
    .cps-test-page .cps-hero-left h1{
        font-size: 20px;
    }
    .cps-test-page .cps-hero-left .cps-desc{
        margin-bottom: 12px;
    }
    .cps-test-page .round-result-list{
        margin: 0 ;
    }
    .cps-test-page .time-btn{
        padding: 10px 24px;
    }
    .cps-desc{
        display: none;
    }
    .cps-test-page .stat-card span{
        font-size: 12px;
    }
    .cps-test-page .stat-card{
        height: 30px;
        border-radius: 5px;
    }
    .cps-test-page .stat-card label{
        font-size: 9px;
        margin-bottom: 0;
    }
    .cps-result-page .cps-result-left{
        padding: 0 10px;
    }
    .btn-group>.btn-group:not(:last-child)>.btn, .btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
    }
    .cps-result-page .result-headline .main-score{
        font-size: 38px;
    }
    .cps-result-page .result-headline h1{
        font-size: 28px;
    }
    .cps-result-page .result-main-wrapper{
        gap: 4px;
    }
    .cps-result-page .btn{
        justify-content: center;
    }
    .cps-test-page .time-btn{
        width: 48%;
    }
    .cps-test-page .time-options{
        padding-bottom: 20px;
    }
    .cps-test-page .idle-text{
        max-width: 98%;
    }
   
}