/* ==========================================================================
   /white-label — agency reseller landing page
   Page-specific styles (hero, how-it-works, volume pricing, CTA band).
   Shared homepage sections reused on this page (backlink exchange, link
   outreach, growth analytics, in-app agent, suggestions, writing examples)
   rely on the proof-section/card rules appended at the BOTTOM of this file,
   copied verbatim from the inline <style> block in templates/index.html.
   Keep that block in sync if the homepage cards change.
   ========================================================================== */

:root {
    --wl-red: #e11d2a;
    --wl-orange: #FF4500;
    --wl-ink: #0b0b0c;
}

/* ----- Hero ----- */
.wl-hero {
    position: relative;
    background: radial-gradient(1200px 600px at 50% -10%, rgba(225,29,42,0.16), transparent 60%), var(--wl-ink);
    color: #f5f5f5;
    text-align: center;
    padding: 6rem 1.5rem 4.5rem;
    overflow: hidden;
}
.wl-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin: 0 auto;
}
.wl-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #ff6a3d;
    background: rgba(225,29,42,0.12);
    border: 1px solid rgba(225,29,42,0.3);
    border-radius: 99px;
    padding: 5px 14px;
    margin-bottom: 1.25rem;
}
.wl-hero h1 {
    font-size: clamp(2.1rem, 5vw, 3.5rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 1.1rem;
    color: #fff;
}
.wl-hero h1 .wl-hl {
    background: linear-gradient(135deg, #ff7a4d, var(--wl-red));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.wl-hero-sub {
    font-size: clamp(1rem, 1.6vw, 1.22rem);
    line-height: 1.6;
    color: #c9c9cf;
    max-width: 680px;
    margin: 0 auto 2rem;
}
.wl-hero-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    margin-bottom: 1.4rem;
}
.wl-btn-primary,
.wl-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    padding: 0.95rem 1.8rem;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    cursor: pointer;
}
.wl-btn-primary {
    background: linear-gradient(135deg, var(--wl-orange), var(--wl-red));
    color: #fff;
    box-shadow: 0 10px 30px rgba(225,29,42,0.35);
}
.wl-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(225,29,42,0.45); }
.wl-btn-secondary {
    background: rgba(255,255,255,0.06);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.22);
}
.wl-btn-secondary:hover { background: rgba(255,255,255,0.12); }
.wl-hero-trust {
    font-size: 0.85rem;
    color: #8b8b93;
    margin: 0;
}

/* Faint grid glow behind hero */
.wl-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(700px 340px at 50% 0%, #000 0%, transparent 75%);
    mask-image: radial-gradient(700px 340px at 50% 0%, #000 0%, transparent 75%);
    z-index: 0;
}

/* ----- How white-label works ----- */
.wl-how {
    background: #fff;
    padding: 5rem 1.5rem 4rem;
}
.wl-how .wl-head, .wl-pricing .wl-head, .wl-reassure .wl-head {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}
.wl-head h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    line-height: 1.14;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0b0b0c;
    margin: 0 0 0.85rem;
}
.wl-head p {
    font-size: 1.08rem;
    line-height: 1.6;
    color: #52525b;
    margin: 0;
}
.wl-steps {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.wl-step {
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 1.75rem 1.6rem;
}
.wl-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--wl-orange), var(--wl-red));
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.wl-step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0b0b0c;
    margin: 0 0 0.55rem;
}
.wl-step p {
    font-size: 0.97rem;
    line-height: 1.58;
    color: #52525b;
    margin: 0;
}

/* ----- Pricing: homepage plans + volume ladder ----- */
.wl-pricing {
    background: #f8f9fa;
    padding: 5rem 1.5rem;
}
.wl-plans {
    max-width: 940px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}
.wl-plan {
    background: #fff;
    border: 1px solid #e6e6e9;
    border-radius: 18px;
    padding: 2rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(17,24,39,0.05);
}
.wl-plan--dark {
    background: var(--wl-ink);
    border-color: var(--wl-ink);
    box-shadow: 0 18px 46px rgba(11,11,12,0.28);
}
.wl-plan-head-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.35rem;
}
.wl-plan-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0b0b0c;
    margin: 0;
}
.wl-plan--dark .wl-plan-name { color: #fff; }
.wl-plan-badge {
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: linear-gradient(135deg, var(--wl-orange), var(--wl-red));
    padding: 4px 11px;
    border-radius: 99px;
}
.wl-plan-price {
    display: flex;
    align-items: flex-start;
    gap: 3px;
    font-size: 2.7rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #0b0b0c;
}
.wl-plan--dark .wl-plan-price { color: #fff; }
.wl-plan-price .wl-cur { font-size: 1.35rem; font-weight: 700; margin-top: 0.35rem; }
.wl-plan-price .wl-unit {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    align-self: flex-end;
    margin-bottom: 0.4rem;
    margin-left: 4px;
}
.wl-plan--dark .wl-plan-price .wl-unit { color: #9a9aa3; }
.wl-plan-strike {
    align-self: flex-end;
    margin-bottom: 0.45rem;
    margin-right: 6px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #9ca3af;
}
.wl-plan--dark .wl-plan-strike { color: #6b7280; }
.wl-plan-sub {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0.7rem 0 1.3rem;
}
.wl-plan--dark .wl-plan-sub { color: #9a9aa3; }
.wl-plan-feats {
    list-style: none;
    padding: 0;
    margin: 0 0 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex-grow: 1;
}
.wl-plan-feats li {
    position: relative;
    padding-left: 1.55rem;
    font-size: 0.9rem;
    line-height: 1.45;
    color: #374151;
}
.wl-plan--dark .wl-plan-feats li { color: #d4d4d8; }
.wl-plan-feats li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #f0fdf4 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%2315803d' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
    border: 1px solid #bbf7d0;
}
.wl-plan-feats li.wl-feat-hl {
    padding-left: 0;
    font-weight: 700;
    color: #0b0b0c;
}
.wl-plan--dark .wl-plan-feats li.wl-feat-hl { color: #fff; }
.wl-plan-feats li.wl-feat-hl::before { content: none; }
.wl-plan .wl-btn-primary,
.wl-plan .wl-btn-outline {
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
}
.wl-plan .wl-btn-outline {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    color: var(--wl-red);
    background: #fff;
    border: 1.5px solid var(--wl-red);
    transition: background 0.15s ease, color 0.15s ease;
}
.wl-plan .wl-btn-outline:hover { background: var(--wl-red); color: #fff; }

/* Volume ladder */
.wl-volume {
    max-width: 940px;
    margin: 2.5rem auto 0;
    background: #fff;
    border: 1px solid #e6e6e9;
    border-radius: 18px;
    padding: 1.75rem;
    box-shadow: 0 8px 24px rgba(17,24,39,0.05);
}
.wl-volume-head { text-align: center; margin-bottom: 1.4rem; }
.wl-volume-head h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0b0b0c;
    margin: 0 0 0.3rem;
}
.wl-volume-head p { font-size: 0.92rem; color: #6b7280; margin: 0; }
.wl-volume-levels {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
}
.wl-level {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 1.1rem 0.75rem 0.95rem;
}
.wl-level--hl {
    background: #fff;
    border-color: var(--wl-red);
    box-shadow: 0 10px 26px rgba(225,29,42,0.16);
}
.wl-level-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--wl-orange), var(--wl-red));
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 99px;
    white-space: nowrap;
}
.wl-level-sites {
    font-size: 0.82rem;
    font-weight: 700;
    color: #52525b;
}
.wl-level-off {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #0b0b0c;
    line-height: 1.1;
}
.wl-level--hl .wl-level-off { color: var(--wl-red); }
.wl-level-note {
    font-size: 0.72rem;
    line-height: 1.35;
    color: #6b7280;
}
.wl-pricing-note {
    max-width: 760px;
    margin: 2rem auto 0;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #6b7280;
}

/* ----- Reassurance intro ----- */
.wl-reassure {
    background: #fff;
    padding: 5rem 1.5rem 1rem;
}

/* The reused Bring-your-own-AI component ships a homepage "Start for Free Now"
   CTA. On this agency page the CTAs live in the hero, every pricing card, and
   the final band, so suppress that one off-tone button (leave the component
   itself untouched so the homepage keeps it). */
#agent-skill .hero-cta-buttons { display: none; }

/* ----- Final CTA band ----- */
.wl-cta-band {
    background: radial-gradient(900px 400px at 50% 120%, rgba(225,29,42,0.22), transparent 60%), var(--wl-ink);
    color: #fff;
    text-align: center;
    padding: 5rem 1.5rem;
}
.wl-cta-band h2 {
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.9rem;
    color: #fff;
}
.wl-cta-band p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #c9c9cf;
    max-width: 620px;
    margin: 0 auto 2rem;
}

/* ----- Responsive ----- */
@media (max-width: 960px) {
    .wl-volume-levels { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .wl-steps { grid-template-columns: 1fr; }
    .wl-hero { padding: 4.5rem 1.25rem 3.5rem; }
    .wl-btn-primary, .wl-btn-secondary { width: 100%; justify-content: center; }
}
@media (max-width: 700px) {
    .wl-plans { grid-template-columns: 1fr; max-width: 440px; }
    .wl-volume-levels { grid-template-columns: 1fr; }
    .wl-level { flex-direction: row; justify-content: space-between; text-align: left; }
    .wl-level-badge { position: static; transform: none; align-self: center; }
}

/* ==========================================================================
   Reused homepage proof-section / card styles — copied verbatim from the
   inline <style> block in templates/index.html (lines 93-395 at time of copy).
   Powers the backlink exchange, link outreach, growth analytics, in-app agent,
   proactive suggestions, and GBP cards when those sections are reused here.
   ========================================================================== */
            /* ===== Homepage: In-app Distribb Agent + AI-agent Skill sections ===== */
            /* In-app agent (dark, reuses .or-section / .or-layout from original-research) */
            /* Left-align eyebrow only on desktop; on mobile .or-heading centers, so let the eyebrow follow */
            @media (min-width: 769px) {
                #in-app-agent .or-eyebrow { text-align: left; }
            }
            .agent-chat-card {
                background: #1a1a1a;
                border: 1px solid rgba(255,255,255,0.1);
                border-radius: 14px;
                padding: 1.25rem;
                width: 100%;
                max-width: 460px;
                display: flex;
                flex-direction: column;
                gap: 0.55rem;
            }
            .agent-chat-head {
                display: flex;
                align-items: center;
                gap: 0.5rem;
                padding-bottom: 0.6rem;
                margin-bottom: 0.2rem;
                border-bottom: 1px solid rgba(255,255,255,0.08);
            }
            .agent-chat-dot {
                width: 10px; height: 10px;
                border-radius: 50%;
                background: linear-gradient(135deg, #FF4500, #e11d2a);
                box-shadow: 0 0 0 3px rgba(225,29,42,0.15);
                flex-shrink: 0;
            }
            .agent-chat-title { font-size: 0.8rem; font-weight: 600; color: #ddd; }
            .agent-chat-msg {
                font-size: 0.85rem;
                line-height: 1.5;
                padding: 0.55rem 0.8rem;
                border-radius: 12px;
                max-width: 92%;
            }
            .agent-chat-msg.user {
                align-self: flex-end;
                background: linear-gradient(135deg, #FF4500, #e11d2a);
                color: #fff;
                border-bottom-right-radius: 4px;
            }
            .agent-chat-msg.bot {
                align-self: flex-start;
                background: #262626;
                color: #cfcfcf;
                border-bottom-left-radius: 4px;
            }
            .agent-chat-msg.bot strong { color: #fff; }
            .agent-chat-applied {
                align-self: flex-start;
                display: inline-flex;
                align-items: center;
                gap: 0.45rem;
                font-size: 0.72rem;
                color: #86efac;
                background: rgba(134,239,172,0.08);
                border: 1px solid rgba(134,239,172,0.22);
                border-radius: 8px;
                padding: 0.35rem 0.65rem;
                margin-top: 0.1rem;
            }
            .agent-chat-applied span { color: #9ca3af; text-decoration: underline; }

            /* AI-agent Skill (light, centered; plain-language summary of /agentic) */
            .agent-skill-section {
                padding: 5rem 2rem 1.5rem;
                background: #fff;
                text-align: center;
            }
            .skill-eyebrow {
                display: block;
                font-size: 0.75rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.08em;
                color: #e11d2a;
                margin-bottom: 0.75rem;
            }
            .agent-skill-section .section-subtitle {
                max-width: 660px;
                margin: 0 auto 2rem;
            }
            .skill-demo-video {
                width: 100%;
                max-width: 760px;
                margin: 0 auto 1.75rem;
                border-radius: 16px;
                overflow: hidden;
                border: 1px solid #e5e7eb;
                box-shadow: 0 18px 50px rgba(17,24,39,0.12);
                background: #0f0f0f;
                line-height: 0;
            }
            .skill-demo-video video {
                width: 100%;
                height: auto;
                display: block;
            }
            .skill-pills {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                margin-bottom: 2rem;
            }
            .skill-pills-label {
                font-size: 0.85rem;
                color: #6b7280;
                font-weight: 600;
                margin-right: 0.15rem;
            }
            .skill-pill {
                display: inline-flex;
                align-items: center;
                padding: 5px 14px;
                background: #f3f4f6;
                border: 1px solid #e5e7eb;
                border-radius: 20px;
                font-size: 13px;
                font-weight: 600;
                color: #374151;
            }
            @media (max-width: 768px) {
                .agent-chat-card { max-width: 100%; }
                .agent-skill-section { padding: 3rem 1rem; }
            }

            /* ===== Homepage: Growth analytics (GSC + AI visibility) + Proactive suggestions ===== */
            /* Light gray split sections reusing the .or-layout copy/visual pattern.
               #growth-analytics opted out of this and uses the dark .or-section instead. */
            .proof-section {
                padding: 5rem 1.5rem;
                background: #f8f9fa;
            }
            #agent-suggestions {
                background: #fff;
            }
            .proof-section .container {
                align-items: stretch;
                width: 100%;
                max-width: 1100px;
                margin-left: auto;
                margin-right: auto;
                box-sizing: border-box;
            }
            .proof-section .or-heading { color: #000; }
            .proof-section .or-lead { color: #4b5563; }
            .proof-section .or-lead strong { color: #000; }
            @media (min-width: 769px) {
                .proof-section .or-eyebrow { text-align: left; }
            }

            /* #growth-analytics runs on the dark .or-section band, so the eyebrow needs the same
               desktop left-align the .proof-section rule above gives the light bands. */
            @media (min-width: 769px) {
                #growth-analytics .or-eyebrow { text-align: left; }
            }

            /* Analytics card (mirrors the in-app dashboard; dark palette to match .or-card) */
            .ga-card {
                background: #1a1a1a;
                border: 1px solid rgba(255,255,255,0.1);
                border-radius: 14px;
                padding: 1.25rem;
                width: 100%;
                max-width: 460px;
            }
            .ga-head {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 0.5rem;
                margin-bottom: 0.9rem;
            }
            .ga-head-title { font-size: 0.8rem; font-weight: 600; color: #fff; }
            .ga-head-range { font-size: 0.66rem; font-weight: 600; color: #999; background: rgba(255,255,255,0.06); padding: 2px 9px; border-radius: 99px; }
            .ga-metrics {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 0.5rem;
                margin-bottom: 0.9rem;
            }
            .ga-metric-value { font-size: 1rem; font-weight: 700; color: #fff; }
            .ga-metric-label { font-size: 0.58rem; font-weight: 600; color: #999; text-transform: uppercase; letter-spacing: 0.03em; }
            .ga-legend { display: flex; gap: 0.9rem; margin-bottom: 0.35rem; }
            .ga-legend span { display: inline-flex; align-items: center; gap: 5px; font-size: 0.62rem; font-weight: 600; color: #999; }
            .ga-legend i { width: 8px; height: 8px; border-radius: 50%; }
            .ga-legend .clicks i { background: #e11d2a; }
            .ga-legend .impr i { background: #6b7280; }
            .ga-chart { margin-bottom: 1rem; }
            .ga-chart svg { width: 100%; height: 92px; display: block; }
            .ga-aiv-head {
                display: flex;
                align-items: center;
                justify-content: space-between;
                border-top: 1px solid rgba(255,255,255,0.1);
                padding-top: 0.8rem;
                margin-bottom: 0.35rem;
            }
            .ga-aiv-title { font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: #777; }
            .ga-aiv-sub { font-size: 0.66rem; color: #777; }
            .ga-aiv-row { display: flex; align-items: center; gap: 0.6rem; padding: 0.42rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
            .ga-aiv-row:last-child { border-bottom: none; padding-bottom: 0; }
            .ga-aiv-name { flex: 1; font-size: 0.8rem; color: #ccc; }
            .ga-badge { font-size: 0.62rem; font-weight: 700; padding: 2px 9px; border-radius: 99px; }
            .ga-badge.cited { color: #fff; background: #e11d2a; }
            .ga-badge.mentioned { color: #ccc; border: 1px solid rgba(255,255,255,0.22); }

            /* Suggestions inbox card (mirrors the Suggestions page) */
            .sugg-card {
                background: #fff;
                border: 1px solid #e5e7eb;
                border-radius: 14px;
                box-shadow: 0 12px 32px rgba(17,24,39,0.08);
                padding: 1.25rem;
                width: 100%;
                max-width: 460px;
                display: flex;
                flex-direction: column;
                gap: 0.6rem;
            }
            .sugg-head { display: flex; align-items: center; gap: 0.5rem; padding-bottom: 0.6rem; border-bottom: 1px solid #f3f4f6; }
            .sugg-title { flex: 1; font-size: 0.8rem; font-weight: 600; color: #111827; }
            .sugg-new { font-size: 0.64rem; font-weight: 700; color: #fff; background: linear-gradient(135deg, #FF4500, #e11d2a); padding: 2px 9px; border-radius: 99px; }
            .sugg-item { display: flex; align-items: center; gap: 0.7rem; border: 1px solid #e5e7eb; border-radius: 10px; padding: 0.65rem 0.75rem; }
            .sugg-item-main { flex: 1; min-width: 0; }
            .sugg-chip { display: inline-block; font-size: 0.6rem; font-weight: 700; padding: 1px 8px; border-radius: 99px; margin-bottom: 0.25rem; }
            .sugg-chip.sd { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
            .sugg-chip.lb { background: #f0fdfa; color: #115e59; border: 1px solid #99f6e4; }
            .sugg-chip.rw { background: #eef2ff; color: #3730a3; border: 1px solid #c7d2fe; }
            .sugg-text { font-size: 0.78rem; color: #374151; line-height: 1.45; }
            .sugg-apply { flex-shrink: 0; font-size: 0.7rem; font-weight: 700; color: #fff; background: #111827; border-radius: 8px; padding: 0.4rem 0.85rem; }
            .sugg-item.applied { background: #f0fdf4; border-color: #bbf7d0; }
            .sugg-done { flex-shrink: 0; font-size: 0.7rem; font-weight: 700; color: #15803d; }
            /* GBP card (reviews + posts run by the agent or the skill) */
            .gbp-card {
                background: #fff;
                border: 1px solid #e5e7eb;
                border-radius: 14px;
                box-shadow: 0 12px 32px rgba(17,24,39,0.08);
                padding: 1.25rem;
                width: 100%;
                max-width: 460px;
                display: flex;
                flex-direction: column;
                gap: 0.7rem;
            }
            .gbp-head { display: flex; align-items: center; gap: 0.5rem; padding-bottom: 0.6rem; border-bottom: 1px solid #f3f4f6; }
            .gbp-title { flex: 1; font-size: 0.8rem; font-weight: 600; color: #111827; }
            .gbp-connected { display: inline-flex; align-items: center; font-size: 0.64rem; font-weight: 700; color: #15803d; background: #f0fdf4; border: 1px solid #bbf7d0; padding: 2px 9px; border-radius: 99px; }
            .gbp-stars { color: #fbbc04; font-size: 0.85rem; letter-spacing: 2px; }
            .gbp-review-meta { font-size: 0.7rem; color: #6b7280; margin-left: 0.5rem; }
            .gbp-review-text { font-size: 0.8rem; color: #374151; line-height: 1.45; margin-top: 0.25rem; }
            .gbp-reply { margin-top: 0.55rem; margin-left: 0.9rem; padding: 0.6rem 0.75rem; background: #f9fafb; border-left: 2px solid #e11d2a; border-radius: 0 10px 10px 0; }
            .gbp-reply-tag { display: block; font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: #e11d2a; margin-bottom: 0.2rem; }
            .gbp-reply-text { font-size: 0.78rem; color: #374151; line-height: 1.45; }
            .gbp-post { display: flex; align-items: center; gap: 0.6rem; border-top: 1px solid #f3f4f6; padding-top: 0.7rem; }
            .gbp-post-icon { flex-shrink: 0; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; background: #fef2f2; border-radius: 8px; font-size: 0.8rem; }
            .gbp-post-main { flex: 1; min-width: 0; }
            .gbp-post-title { font-size: 0.78rem; font-weight: 600; color: #111827; }
            .gbp-post-sub { font-size: 0.68rem; color: #6b7280; }
            .gbp-post-views { font-size: 0.68rem; font-weight: 700; color: #15803d; white-space: nowrap; }
            /* Link Outreach stays white: it's the light break between the dark .backlink-exchange-section
               above it and the dark #growth-analytics band below it */
            #link-outreach { background: #fff; }

            /* Link Outreach card (find "best of" lists, draft pitches, run campaigns) */
            .lo-card {
                background: #fff;
                border: 1px solid #e5e7eb;
                border-radius: 14px;
                box-shadow: 0 12px 32px rgba(17,24,39,0.08);
                padding: 1.25rem;
                width: 100%;
                max-width: 460px;
                display: flex;
                flex-direction: column;
                gap: 0.7rem;
            }
            .lo-head { display: flex; align-items: center; gap: 0.5rem; padding-bottom: 0.6rem; border-bottom: 1px solid #f3f4f6; }
            .lo-title { flex: 1; font-size: 0.8rem; font-weight: 600; color: #111827; }
            .lo-count { font-size: 0.66rem; font-weight: 700; color: #6b7280; background: #f3f4f6; padding: 2px 9px; border-radius: 99px; }
            .lo-target { display: flex; align-items: center; gap: 0.6rem; }
            .lo-target-icon { flex-shrink: 0; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; background: #fef2f2; border-radius: 8px; }
            .lo-target-main { flex: 1; min-width: 0; }
            .lo-target-title { font-size: 0.8rem; font-weight: 600; color: #111827; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
            .lo-target-sub { font-size: 0.68rem; color: #6b7280; }
            .lo-status { flex-shrink: 0; font-size: 0.62rem; font-weight: 700; padding: 2px 9px; border-radius: 99px; }
            .lo-status.drafted { background: #eef2ff; color: #3730a3; border: 1px solid #c7d2fe; }
            .lo-status.sent { color: #fff; background: #e11d2a; }
            .lo-draft { margin-left: 2.1rem; padding: 0.6rem 0.75rem; background: #f9fafb; border-left: 2px solid #e11d2a; border-radius: 0 10px 10px 0; }
            .lo-draft-tag { display: block; font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: #e11d2a; margin-bottom: 0.2rem; }
            .lo-draft-text { font-size: 0.78rem; color: #374151; line-height: 1.45; }
            @media (max-width: 768px) {
                .proof-section { padding: 3rem 1rem; }
                .ga-card, .sugg-card, .gbp-card, .lo-card { max-width: 100%; }
            }
