/* =========================================
   PRIME SEO PRO — SALES PAGE STYLES
   ========================================= */

/* --- PRO Nav CTA --- */
.nav-cta-pro {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    box-shadow: 0 4px 15px rgba(245,158,11,0.3);
}
.nav-cta-pro:hover {
    background: linear-gradient(135deg, #d97706, #ea580c);
    box-shadow: 0 6px 25px rgba(245,158,11,0.4);
}


/* =========================================
   REDDIT HERO — Two-Column with Mockup
   ========================================= */

.rd-hero {
    text-align: left;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 40px;
}

/* --- Scroll Indicator --- */
.rd-scroll-hint {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-bottom: 20px;
    cursor: pointer;
}

.rd-scroll-hint-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.04em;
}

.rd-scroll-hint-arrow {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.3);
    animation: rdScrollBounce 2s ease-in-out infinite;
}

@keyframes rdScrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(6px); opacity: 0.7; }
}

/* --- Social Proof Bar --- */
.rd-proof-bar {
    background: linear-gradient(135deg, #1e1b4b, #0f172a);
    border-top: 1px solid rgba(99, 102, 241, 0.15);
    border-bottom: 1px solid rgba(99, 102, 241, 0.15);
    padding: 20px 0;
    overflow: hidden;
}

.rd-proof-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.rd-proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.rd-proof-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fbbf24;
}

.rd-proof-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.4);
    flex-shrink: 0;
}

.rd-proof-highlight {
    color: #ef4444;
    font-weight: 600;
}

.rd-hero .hero-blob-1 {
    background: radial-gradient(circle, #f59e0b, transparent);
    opacity: 0.15;
}

.rd-hero .hero-blob-3 {
    background: radial-gradient(circle, #6366f1, transparent);
}

/* --- Hero Two-Column Grid --- */
.rd-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 0;
    padding-bottom: 32px;
    z-index: 1;
}

.rd-hero-content {
    z-index: 1;
}

.rd-hero-content .hero-title {
    margin-bottom: 20px;
}

.rd-hero-content .hero-subtitle {
    max-width: 520px;
    margin-bottom: 32px;
}

.rd-hero-cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.rd-hero-price-note {
    font-size: 0.85rem;
    color: var(--dark-text);
}

.rd-hero-price-note strong {
    color: #fbbf24;
}

/* --- Hero Visual (right column) --- */
.rd-hero-visual {
    z-index: 1;
    perspective: 1000px;
}

/* --- Interactive WP Admin Mockup --- */
.rd-hero-mockup {
    background: rgba(17, 17, 39, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.18);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(99, 102, 241, 0.08);
    transform: rotateY(-2deg) rotateX(1deg);
    transition: transform 0.5s ease;
    animation: rdMockFloat 6s ease-in-out infinite;
}

.rd-hero-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

@keyframes rdMockFloat {
    0%, 100% { transform: rotateY(-2deg) rotateX(1deg) translateY(0); }
    50% { transform: rotateY(-2deg) rotateX(1deg) translateY(-8px); }
}

/* Window chrome */
.rd-mock-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rd-mock-dots {
    display: flex;
    gap: 6px;
}

.rd-mock-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.rd-mock-dots span:nth-child(1) { background: #ef4444; }
.rd-mock-dots span:nth-child(2) { background: #f59e0b; }
.rd-mock-dots span:nth-child(3) { background: #10b981; }

.rd-mock-url {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
    font-weight: 500;
}

/* Metabox header */
.rd-mock-metabox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rd-mock-metabox-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
}

.rd-mock-metabox-title svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.rd-mock-pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(249,115,22,0.2));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 100px;
    color: #fbbf24;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

/* Mockup body */
.rd-mock-body {
    padding: 18px 20px;
}

.rd-mock-field {
    margin-bottom: 16px;
}

.rd-mock-field label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.rd-mock-output {
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 0.88rem;
    color: #fff;
    min-height: 40px;
    display: flex;
    align-items: center;
}

.rd-mock-output-multi {
    min-height: 56px;
    align-items: flex-start;
    line-height: 1.5;
}

.rd-mock-text {
    white-space: pre-wrap;
}

.rd-mock-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: var(--primary);
    margin-left: 1px;
    animation: rdBlink 1s step-end infinite;
    vertical-align: text-bottom;
}

.rd-mock-cursor.rd-hidden {
    display: none;
}

@keyframes rdBlink {
    50% { opacity: 0; }
}

.rd-mock-counter {
    display: block;
    text-align: right;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 4px;
    font-variant-numeric: tabular-nums;
}

.rd-mock-counter-num {
    color: var(--success);
    font-weight: 600;
}

/* Generate button */
.rd-mock-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    margin-top: 4px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 8px;
    cursor: default;
    overflow: hidden;
}

.rd-mock-btn-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #6366f1, #a78bfa, #6366f1);
    border-radius: 10px;
    opacity: 0;
    z-index: -1;
    animation: rdBtnPulse 3s ease-in-out infinite;
}

@keyframes rdBtnPulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.02); }
}

/* Score bar */
.rd-mock-score {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.rd-mock-score-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.rd-mock-score-label span {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
}

.rd-mock-score-val {
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.rd-mock-score-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    overflow: hidden;
}

.rd-mock-score-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #6366f1, #10b981);
    border-radius: 3px;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================
   AMBER PRO CTA BUTTON
   ========================================= */

.rd-cta-pro {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 20px rgba(245,158,11,0.35);
    transition: all 0.3s;
    text-decoration: none;
}

.rd-cta-pro:hover {
    background: linear-gradient(135deg, #d97706, #ea580c);
    box-shadow: 0 6px 30px rgba(245,158,11,0.45);
    transform: translateY(-2px);
}

.rd-cta-pro-lg {
    font-size: 1.2rem;
    padding: 20px 48px;
    border-radius: var(--radius);
}


/* =========================================
   PROBLEM / SOLUTION SECTION
   ========================================= */

.pro-problem {
    padding: 80px 0;
    background: var(--bg);
}

.pro-problem-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: stretch;
}

.pro-problem-card {
    border-radius: var(--radius-lg);
    padding: 36px 32px;
}

.pro-problem-bad {
    background: rgba(239,68,68,0.04);
    border: 1px solid rgba(239,68,68,0.12);
}

.pro-problem-good {
    background: rgba(16,185,129,0.04);
    border: 1px solid rgba(16,185,129,0.12);
}

.pro-problem-icon {
    margin-bottom: 16px;
}

.pro-problem-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.pro-problem-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pro-problem-card li {
    font-size: 0.92rem;
    color: var(--text-muted);
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.pro-problem-bad li::before {
    content: '\2717';
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: 700;
}

.pro-problem-good li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.pro-problem-vs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro-problem-vs span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--text-muted);
}


/* --- AI Stats (Problem section) --- */
.rd-ai-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 48px;
    padding: 32px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.rd-ai-stat {
    text-align: center;
}

.rd-ai-stat-num {
    font-size: 2.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.rd-ai-stat-suffix {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rd-ai-stat-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 500;
}

.rd-ai-stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
}


/* =========================================
   ROI SECTION
   ========================================= */

.rd-roi-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.rd-roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.rd-roi-card {
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.3s;
}

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

.rd-roi-without {
    background: rgba(239,68,68,0.03);
    border: 1px solid rgba(239,68,68,0.12);
}

.rd-roi-with {
    background: rgba(16,185,129,0.03);
    border: 1px solid rgba(16,185,129,0.12);
}

.rd-roi-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.rd-roi-card-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.rd-roi-lines {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rd-roi-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--border);
    font-size: 0.88rem;
    color: var(--text-muted);
}

.rd-roi-line:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.rd-roi-line strong {
    flex-shrink: 0;
    font-weight: 700;
    color: var(--text);
}

.rd-roi-line .rd-highlight {
    color: var(--success);
}

.rd-roi-cta {
    text-align: center;
    margin-top: 40px;
}


/* =========================================
   PRO FEATURES BLOCKS
   ========================================= */

.pro-features {
    padding: 100px 0;
    background: var(--bg-light);
}

.pro-feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--border);
}

.pro-feature-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.pro-feature-reverse {
    direction: rtl;
}

.pro-feature-reverse > * {
    direction: ltr;
}

.pro-feature-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--border);
    margin-bottom: 8px;
    line-height: 1;
}

.pro-feature-badge-unique {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.pro-feature-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.pro-feature-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pro-feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pro-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}


/* --- AI Generator Mockup --- */
.pro-mockup-gen {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pro-mockup-gen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.pro-mockup-gen-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
}

.pro-mockup-gen-model {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(99,102,241,0.08);
    padding: 3px 10px;
    border-radius: 100px;
}

.pro-mockup-gen-field {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.pro-mockup-gen-field:last-of-type {
    border-bottom: none;
}

.pro-mockup-gen-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.pro-mockup-gen-output {
    padding: 10px 14px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.pro-mockup-gen-output-multi {
    line-height: 1.5;
}

.typing-text {
    border-right: 2px solid var(--primary);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { border-color: transparent; }
}

.pro-mockup-gen-counter {
    display: block;
    text-align: right;
    font-size: 0.72rem;
    color: var(--text-light);
    margin-top: 4px;
}

.pro-mockup-gen-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: default;
}


/* --- Bulk Generator Mockup --- */
.pro-mockup-bulk {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pro-mockup-bulk-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
}

.pro-mockup-bulk-status {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
}

.pro-mockup-bulk-status.running {
    background: rgba(99,102,241,0.1);
    color: var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

.pro-mockup-bulk-progress {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.pro-mockup-bulk-bar {
    flex: 1;
    height: 10px;
    background: var(--bg-subtle);
    border-radius: 5px;
    overflow: hidden;
}

.pro-mockup-bulk-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 5px;
    width: 0%;
    animation: fillBar 2s ease forwards 0.5s;
}

@keyframes fillBar {
    to { width: var(--target-width, 73%); }
}

.pro-mockup-bulk-percent {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    min-width: 50px;
    text-align: right;
}

.pro-mockup-bulk-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pro-bulk-stat {
    background: var(--bg);
    padding: 14px;
    text-align: center;
}

.pro-bulk-stat-num {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 2px;
}

.pro-bulk-stat-label {
    font-size: 0.68rem;
    color: var(--text-light);
    font-weight: 500;
}

.pro-mockup-bulk-log {
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pro-bulk-log-row {
    font-size: 0.78rem;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.pro-bulk-log-row.success {
    background: rgba(16,185,129,0.06);
    color: var(--success);
}

.pro-bulk-log-row.processing {
    background: rgba(99,102,241,0.06);
    color: var(--primary);
    animation: pulse 1.5s ease-in-out infinite;
}


/* --- AI Content Score Mockup --- */
.pro-mockup-score {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.pro-score-ring {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 28px;
}

.pro-score-svg {
    width: 100%;
    height: 100%;
}

.pro-score-circle {
    animation: scoreReveal 1.5s ease forwards;
    stroke-dashoffset: 327;
}

@keyframes scoreReveal {
    to { stroke-dashoffset: 59; }
}

.pro-score-value {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pro-score-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
}

.pro-score-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 4px;
}

.pro-score-breakdown {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.pro-score-item {
    display: grid;
    grid-template-columns: 140px 1fr 40px;
    gap: 12px;
    align-items: center;
}

.pro-score-item-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pro-score-item-bar {
    height: 6px;
    background: var(--bg-subtle);
    border-radius: 3px;
    overflow: hidden;
}

.pro-score-item-bar div {
    height: 100%;
    border-radius: 3px;
    transition: width 1s ease;
}

.pro-score-item-val {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text);
    text-align: right;
}

.pro-score-tips {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.pro-score-tip {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
    padding: 8px 12px;
    background: rgba(245,158,11,0.04);
    border-radius: var(--radius-sm);
}

.pro-score-tip svg {
    flex-shrink: 0;
    margin-top: 1px;
}


/* --- Video Sitemap Mockup --- */
.pro-mockup-video {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pro-video-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.pro-video-list {
    padding: 8px 0;
}

.pro-video-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.pro-video-row:last-child {
    border-bottom: none;
}

.pro-video-row:hover {
    background: var(--bg-light);
}

.pro-video-thumb {
    width: 56px;
    height: 36px;
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro-video-thumb.yt { background: linear-gradient(135deg, #dc2626, #ef4444); }
.pro-video-thumb.vim { background: linear-gradient(135deg, #1ab7ea, #0ea5e9); }
.pro-video-thumb.self { background: linear-gradient(135deg, #6366f1, #8b5cf6); }

.pro-video-thumb::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid rgba(255,255,255,0.8);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.pro-video-info {
    flex: 1;
}

.pro-video-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.pro-video-platform {
    font-size: 0.72rem;
    color: var(--text-light);
}

.pro-video-indexed {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--success);
    background: rgba(16,185,129,0.08);
    padding: 3px 10px;
    border-radius: 100px;
}

.pro-video-footer {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    border-top: 1px solid var(--border);
    background: var(--bg-light);
    font-size: 0.72rem;
    color: var(--text-light);
}


/* =========================================
   FREE MODULES GRID
   ========================================= */

.rd-free-section {
    padding: 80px 0;
    background: var(--bg);
}

.rd-free-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.rd-free-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    transition: border-color 0.2s;
}

.rd-free-item:hover {
    border-color: rgba(16,185,129,0.3);
}

.rd-free-item svg {
    flex-shrink: 0;
}


/* =========================================
   PRICE ANCHOR CHART
   ========================================= */

.rd-anchor-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.rd-anchor-chart {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rd-anchor-row {
    display: grid;
    grid-template-columns: 140px 1fr 120px;
    gap: 16px;
    align-items: center;
}

.rd-anchor-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    text-align: right;
}

.rd-anchor-bar-wrap {
    height: 28px;
    background: var(--bg-subtle);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.rd-anchor-bar {
    height: 100%;
    background: linear-gradient(90deg, #cbd5e1, #94a3b8);
    border-radius: 6px;
    width: 0;
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.rd-anchor-bar-pro {
    background: linear-gradient(90deg, #f59e0b, #f97316);
    min-width: 28px;
}

.rd-anchor-amount {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.rd-anchor-amount-pro {
    color: #f59e0b;
    font-weight: 800;
    font-size: 0.95rem;
}

.rd-anchor-highlight {
    padding: 8px 0;
    border-radius: var(--radius-sm);
}

.rd-anchor-highlight .rd-anchor-label {
    color: #f59e0b;
    font-weight: 800;
}


/* =========================================
   GUARANTEE + TRUST
   ========================================= */

.rd-guarantee-section {
    padding: 80px 0;
    background: var(--bg);
}

.rd-guarantee-card {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 36px 40px;
    background: rgba(16,185,129,0.03);
    border: 2px solid rgba(16,185,129,0.15);
    border-radius: var(--radius-lg);
    max-width: 700px;
    margin: 0 auto 40px;
}

.rd-guarantee-icon {
    flex-shrink: 0;
}

.rd-guarantee-text h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}

.rd-guarantee-text p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Trust Grid --- */
.rd-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.rd-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
}

.rd-trust-item svg {
    flex-shrink: 0;
}


/* =========================================
   FINAL CTA ADDITIONS
   ========================================= */

.rd-final-price-card {
    text-align: center;
    margin-bottom: 28px;
}

.rd-final-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.rd-final-price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
}

.rd-final-price-period {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--dark-text);
}

.rd-final-price-note {
    display: block;
    font-size: 0.85rem;
    color: var(--dark-text);
    margin-top: 8px;
}

.rd-free-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.rd-free-link:hover {
    color: rgba(255,255,255,0.8);
}


/* =========================================
   MOBILE STICKY CTA
   ========================================= */

.rd-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(10,10,26,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(245,158,11,0.2);
    padding: 12px 20px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: none;
}

.rd-sticky-cta.visible {
    transform: translateY(0);
}

.rd-sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(245,158,11,0.35);
}


/* =========================================
   RESPONSIVE — PRO PAGE
   ========================================= */

@media (max-width: 1024px) {
    .rd-hero {
        padding-top: 90px;
        padding-bottom: 30px;
    }

    .rd-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .rd-hero-content .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .rd-hero-cta-row {
        justify-content: center;
    }

    .rd-hero-content .hero-trust {
        justify-content: center;
    }

    .rd-hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .rd-hero-mockup {
        transform: none;
        animation: none;
    }

    .pro-feature-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pro-feature-reverse {
        direction: ltr;
    }

    .rd-roi-grid {
        max-width: 100%;
    }

    .rd-free-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .rd-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .rd-hero {
        min-height: auto;
        padding-top: 80px;
    }

    .rd-scroll-hint {
        display: none;
    }

    .rd-proof-bar-inner {
        flex-direction: column;
        gap: 12px;
    }

    .rd-proof-divider {
        display: none;
    }

    .rd-hero-grid {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .rd-hero-cta-row {
        flex-direction: column;
        align-items: center;
    }

    .rd-hero-cta-row .rd-cta-pro {
        width: 100%;
    }

    .rd-hero-visual {
        max-width: 100%;
    }

    .rd-mock-body {
        padding: 14px 16px;
    }

    .rd-mock-output {
        font-size: 0.82rem;
    }

    .pro-problem-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pro-problem-vs {
        display: none;
    }

    .rd-ai-stats {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }

    .rd-ai-stat-divider {
        width: 60px;
        height: 1px;
    }

    .rd-roi-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .rd-free-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .rd-anchor-row {
        grid-template-columns: 100px 1fr 90px;
        gap: 10px;
    }

    .rd-anchor-label {
        font-size: 0.78rem;
    }

    .rd-anchor-amount {
        font-size: 0.78rem;
    }

    .rd-guarantee-card {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .rd-trust-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .pro-score-item {
        grid-template-columns: 100px 1fr 36px;
        gap: 8px;
    }

    .pro-mockup-bulk-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .rd-final-price-amount {
        font-size: 2.8rem;
    }

    .rd-cta-pro-lg {
        font-size: 1.05rem;
        padding: 16px 32px;
    }

    /* Show sticky CTA on mobile */
    .rd-sticky-cta {
        display: block;
    }

    /* Add bottom padding so footer isn't hidden behind sticky CTA */
    .footer {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .rd-anchor-row {
        grid-template-columns: 80px 1fr 80px;
        gap: 8px;
    }

    .rd-anchor-label {
        font-size: 0.72rem;
    }

    .rd-anchor-bar-wrap {
        height: 22px;
    }
}
